diff --git a/.changeset/rare-trainers-kiss.md b/.changeset/rare-trainers-kiss.md new file mode 100644 index 0000000..9b570b2 --- /dev/null +++ b/.changeset/rare-trainers-kiss.md @@ -0,0 +1,53 @@ +--- +"simple-stack-query": minor +--- + +Revamps APIs to fix bugs and unlock a new suite of features. + +```astro + + + + + +``` + +- Support multiple instances of the same component. Before, only the first instance would become interactive. +- Enable data passing from the server to your client script using the `data` property. +- Add an `effect()` utility to interact with the [Signal polyfill](https://github.com/proposal-signals/signal-polyfill?tab=readme-ov-file#creating-a-simple-effect) for state management. + +[Visit revamped documentation page](https://simple-stack.dev/query) to learn how to use the new features. + +## Migration for v0.1 + +If you were an early adopter of v0.1, thank you! You'll a few small updates to use the new APIs: + +- Wrap any HTML you want to target with the global `RootElement` component. +- Remove the `$` from your `data-target` selector (`data-target={$('btn')}` -> `data-target="btn"`). Scoping is now handled automatically. +- Change `$.ready()` to `RootElement.ready()`, and retrieve the `$` selector from the first function argument. The `$` selector is no longer a global. + +```diff ++ +- ++ + + +``` + +Since the syntax for `data-target` is now simpler, we have also **removed the VS Code snippets prompt.** We recommend deleting the snippets file created by v0.1: `.vscode/simple-query.code-snippets`. \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 326cbb3..2fb3a5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,3 +51,24 @@ jobs: - name: Test packages run: pnpm test + e2e: + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + - name: Install dependencies + run: npm install -g pnpm && pnpm install + - name: Install Playwright Browsers + run: pnpm exec playwright install --with-deps + - name: Run Playwright tests + run: pnpm e2e + - uses: actions/upload-artifact@v4 + if: always() + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 + diff --git a/.vscode/settings.json b/.vscode/settings.json index d00f812..080b3fb 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,8 @@ "editor.defaultFormatter": "biomejs.biome", "[astro]": { "editor.defaultFormatter": "astro-build.astro-vscode" + }, + "[json]": { + "editor.defaultFormatter": "biomejs.biome" } } diff --git a/package.json b/package.json index 0e07801..657cbd7 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "build": "turbo build --filter='./packages/*'", "build:all": "turbo build", "test": "turbo test --filter='./packages/*'", + "e2e": "turbo e2e", "check": "biome check packages/", "check:apply": "biome check packages/ --apply", "lint": "biome lint packages/", @@ -16,13 +17,16 @@ "format:write": "biome format --write", "version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run check:apply" }, - "keywords": ["withastro"], + "keywords": [ + "withastro" + ], "author": "bholmesdev", "license": "MIT", "devDependencies": { "@biomejs/biome": "^1.8.3", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.1", + "@playwright/test": "^1.45.3", "@types/node": "^20.14.11", "turbo": "^1.11.2", "typescript": "^5.5.3" diff --git a/packages/query/.gitignore b/packages/query/.gitignore new file mode 100644 index 0000000..68c5d18 --- /dev/null +++ b/packages/query/.gitignore @@ -0,0 +1,5 @@ +node_modules/ +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ diff --git a/packages/query/README.md b/packages/query/README.md index 08defb1..18a345c 100644 --- a/packages/query/README.md +++ b/packages/query/README.md @@ -3,10 +3,12 @@ A simple library to query the DOM from your Astro components. ```astro - + + + ``` -## Installation - -Simple stack query is an Astro integration. You can install using the `astro add` CLI: - -```bash -astro add simple-stack-query -``` - -To install this integration manually, follow the [manual installation instructions](https://docs.astro.build/en/guides/integrations-guide/#manual-installation) - -## Global `$` selector - -The `$` is globally available to define targets from your server template, and to query those targets from your client script. - -Selectors should be applied to the `data-target` attribute. All selectors are scoped based on the component you're in, so we recommend the simplest name you can use: - -```astro - + + + diff --git a/packages/query/fixtures/basic/src/components/WithContext.astro b/packages/query/fixtures/basic/src/components/WithContext.astro new file mode 100644 index 0000000..50ffdd4 --- /dev/null +++ b/packages/query/fixtures/basic/src/components/WithContext.astro @@ -0,0 +1,9 @@ +--- +type Props = { + scope: typeof import("simple:scope").scope; +}; + +const { scope } = Astro.props; +--- + +

With context

\ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/Nested.astro b/packages/query/fixtures/basic/src/pages/Nested.astro deleted file mode 100644 index 5363aba..0000000 --- a/packages/query/fixtures/basic/src/pages/Nested.astro +++ /dev/null @@ -1 +0,0 @@ -

Nested

\ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/WithContext.astro b/packages/query/fixtures/basic/src/pages/WithContext.astro deleted file mode 100644 index 922317b..0000000 --- a/packages/query/fixtures/basic/src/pages/WithContext.astro +++ /dev/null @@ -1,9 +0,0 @@ ---- -type Props = { - $context: typeof $; -}; - -const { $context } = Astro.props; ---- - -

\ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/button.astro b/packages/query/fixtures/basic/src/pages/button.astro new file mode 100644 index 0000000..c359d4b --- /dev/null +++ b/packages/query/fixtures/basic/src/pages/button.astro @@ -0,0 +1,7 @@ +--- +import Counter from "../components/Counter.astro"; +--- + +

Counter

+ + \ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/effect.astro b/packages/query/fixtures/basic/src/pages/effect.astro new file mode 100644 index 0000000..976b49f --- /dev/null +++ b/packages/query/fixtures/basic/src/pages/effect.astro @@ -0,0 +1,21 @@ + + +

The count is 0

+
+ + diff --git a/packages/query/fixtures/basic/src/pages/index.astro b/packages/query/fixtures/basic/src/pages/index.astro index 029373b..1a34b4c 100644 --- a/packages/query/fixtures/basic/src/pages/index.astro +++ b/packages/query/fixtures/basic/src/pages/index.astro @@ -1,14 +1,9 @@ ---- -import Nested from "./Nested.astro"; -import WithContext from "./WithContext.astro"; ---- - -

Hey

- - + +

Heading JS loading

+
\ No newline at end of file + diff --git a/packages/query/fixtures/basic/src/pages/multi-counter.astro b/packages/query/fixtures/basic/src/pages/multi-counter.astro new file mode 100644 index 0000000..31fedb3 --- /dev/null +++ b/packages/query/fixtures/basic/src/pages/multi-counter.astro @@ -0,0 +1,11 @@ +--- +import Counter from "../components/Counter.astro"; +--- + +
+ +
+ +
+ +
\ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/scope-prop.astro b/packages/query/fixtures/basic/src/pages/scope-prop.astro new file mode 100644 index 0000000..bfd9895 --- /dev/null +++ b/packages/query/fixtures/basic/src/pages/scope-prop.astro @@ -0,0 +1,8 @@ +--- +import { scope } from "simple:scope"; +import WithContext from "../components/WithContext.astro"; +--- + +

Scope prop

+ + \ No newline at end of file diff --git a/packages/query/fixtures/basic/src/pages/server-data.astro b/packages/query/fixtures/basic/src/pages/server-data.astro new file mode 100644 index 0000000..4e20225 --- /dev/null +++ b/packages/query/fixtures/basic/src/pages/server-data.astro @@ -0,0 +1,9 @@ + +

Awaiting message

+
+ + diff --git a/packages/query/fixtures/view-transitions/.astro/settings.json b/packages/query/fixtures/view-transitions/.astro/settings.json new file mode 100644 index 0000000..1511253 --- /dev/null +++ b/packages/query/fixtures/view-transitions/.astro/settings.json @@ -0,0 +1,5 @@ +{ + "_variables": { + "lastUpdateCheck": 1722171998489 + } +} diff --git a/packages/query/fixtures/view-transitions/astro.config.mjs b/packages/query/fixtures/view-transitions/astro.config.mjs new file mode 100644 index 0000000..ea7118e --- /dev/null +++ b/packages/query/fixtures/view-transitions/astro.config.mjs @@ -0,0 +1,6 @@ +import { defineConfig } from "astro/config"; +import simpleStackQuery from "simple-stack-query"; + +export default defineConfig({ + integrations: [simpleStackQuery()], +}); diff --git a/packages/query/fixtures/view-transitions/package.json b/packages/query/fixtures/view-transitions/package.json new file mode 100644 index 0000000..0105c40 --- /dev/null +++ b/packages/query/fixtures/view-transitions/package.json @@ -0,0 +1,16 @@ +{ + "name": "@test/query-view-transitions", + "private": true, + "scripts": { + "dev": "astro dev", + "build": "astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "astro": "^4.12.0", + "signal-polyfill": "^0.1.2", + "simple-stack-query": "workspace:*", + "typescript": "^5.5.3" + } +} diff --git a/packages/query/fixtures/view-transitions/src/components/Counter.astro b/packages/query/fixtures/view-transitions/src/components/Counter.astro new file mode 100644 index 0000000..0bf296c --- /dev/null +++ b/packages/query/fixtures/view-transitions/src/components/Counter.astro @@ -0,0 +1,22 @@ +--- +type Props = { + initialCount?: number; +}; + +const { initialCount = 0 } = Astro.props; +--- + + + + + + diff --git a/packages/query/fixtures/view-transitions/src/env.d.ts b/packages/query/fixtures/view-transitions/src/env.d.ts new file mode 100644 index 0000000..f964fe0 --- /dev/null +++ b/packages/query/fixtures/view-transitions/src/env.d.ts @@ -0,0 +1 @@ +/// diff --git a/packages/query/fixtures/view-transitions/src/layouts/Layout.astro b/packages/query/fixtures/view-transitions/src/layouts/Layout.astro new file mode 100644 index 0000000..345b35c --- /dev/null +++ b/packages/query/fixtures/view-transitions/src/layouts/Layout.astro @@ -0,0 +1,22 @@ +--- +import { ViewTransitions } from "astro:transitions"; + +type Props = { + title: string; +}; + +const { title } = Astro.props; +--- + + + + + + + + {title} + + + + + \ No newline at end of file diff --git a/packages/query/fixtures/view-transitions/src/pages/page-1.astro b/packages/query/fixtures/view-transitions/src/pages/page-1.astro new file mode 100644 index 0000000..b54c4c9 --- /dev/null +++ b/packages/query/fixtures/view-transitions/src/pages/page-1.astro @@ -0,0 +1,9 @@ +--- +import Counter from "../components/Counter.astro"; +import Layout from "../layouts/Layout.astro"; +--- + + + Go to page 2 + + \ No newline at end of file diff --git a/packages/query/fixtures/view-transitions/src/pages/page-2.astro b/packages/query/fixtures/view-transitions/src/pages/page-2.astro new file mode 100644 index 0000000..c304cd1 --- /dev/null +++ b/packages/query/fixtures/view-transitions/src/pages/page-2.astro @@ -0,0 +1,9 @@ +--- +import Counter from "../components/Counter.astro"; +import Layout from "../layouts/Layout.astro"; +--- + + + Go to page 1 + + \ No newline at end of file diff --git a/packages/query/fixtures/view-transitions/tsconfig.json b/packages/query/fixtures/view-transitions/tsconfig.json new file mode 100644 index 0000000..a3f6981 --- /dev/null +++ b/packages/query/fixtures/view-transitions/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "astro/tsconfigs/strict" +} diff --git a/packages/query/package.json b/packages/query/package.json index 3045ab2..c4db42e 100644 --- a/packages/query/package.json +++ b/packages/query/package.json @@ -5,11 +5,14 @@ "type": "module", "scripts": { "test": "node --test test", + "e2e": "pnpm -r --filter=\"./fixtures/**\" build && pnpm exec playwright test", "test:watch": "node --test --watch test" }, "exports": { ".": "./src/index.ts", - "./internal": "./src/internal.ts" + "./internal": "./src/internal.ts", + "./effect": "./src/effect.ts", + "./internal.server": "./src/internal.server.ts" }, "keywords": ["withastro", "astro-integration"], "files": ["src", "ambient.d.ts"], @@ -29,9 +32,20 @@ "node": "^18.17.1 || ^20.3.0 || >=21.0.0" }, "devDependencies": { + "@playwright/test": "^1.45.3", + "@types/node": "^20.14.12", "astro": "^4.12.0", "linkedom": "^0.18.4", + "signal-polyfill": "^0.1.2", "typescript": "^5.5.3", "vite": "^5.0.10" + }, + "peerDependencies": { + "signal-polyfill": "^0.1.2" + }, + "peerDependenciesMeta": { + "signal-polyfill": { + "optional": true + } } } diff --git a/packages/query/playwright.config.ts b/packages/query/playwright.config.ts new file mode 100644 index 0000000..14f292b --- /dev/null +++ b/packages/query/playwright.config.ts @@ -0,0 +1,78 @@ +import { defineConfig, devices } from "@playwright/test"; + +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// import dotenv from 'dotenv'; +// dotenv.config({ path: path.resolve(__dirname, '.env') }); + +/** + * See https://playwright.dev/docs/test-configuration. + */ +export default defineConfig({ + testDir: "./e2e", + /* Run tests in files in parallel */ + fullyParallel: false, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 2 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: "html", + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('/')`. */ + // baseURL: 'http://127.0.0.1:3000', + + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: "on-first-retry", + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: "chromium", + use: { ...devices["Desktop Chrome"] }, + }, + + { + name: "firefox", + use: { ...devices["Desktop Firefox"] }, + }, + + { + name: "webkit", + use: { ...devices["Desktop Safari"] }, + }, + + /* Test against mobile viewports. */ + // { + // name: 'Mobile Chrome', + // use: { ...devices['Pixel 5'] }, + // }, + // { + // name: 'Mobile Safari', + // use: { ...devices['iPhone 12'] }, + // }, + + /* Test against branded browsers. */ + // { + // name: 'Microsoft Edge', + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, + // }, + // { + // name: 'Google Chrome', + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + // }, + ], + + /* Run your local dev server before starting the tests */ + // webServer: { + // command: 'npm run start', + // url: 'http://127.0.0.1:3000', + // reuseExistingServer: !process.env.CI, + // }, +}); diff --git a/packages/query/src/effect.ts b/packages/query/src/effect.ts new file mode 100644 index 0000000..9cbbe2b --- /dev/null +++ b/packages/query/src/effect.ts @@ -0,0 +1,51 @@ +// Sample effect implementation from signal-polyfill: +// https://github.com/proposal-signals/signal-polyfill?tab=readme-ov-file#creating-a-simple-effect + +import { Signal } from "signal-polyfill"; + +let needsEnqueue = true; + +const w = new Signal.subtle.Watcher(() => { + if (needsEnqueue) { + needsEnqueue = false; + queueMicrotask(processPending); + } +}); + +function processPending() { + needsEnqueue = true; + + for (const s of w.getPending()) { + s.get(); + } + + w.watch(); +} + +export type MaybePromise = T | Promise; +export type CleanupCallback = () => MaybePromise; + +export function effect( + this: { signal?: AbortSignal }, + callback: () => MaybePromise, +) { + let cleanup: undefined | CleanupCallback; + + const computed = new Signal.Computed(async () => { + typeof cleanup === "function" && (await cleanup()); + cleanup = await callback(); + }); + + w.watch(computed); + computed.get(); + + this.signal?.addEventListener( + "abort", + () => { + w.unwatch(computed); + typeof cleanup === "function" && cleanup(); + cleanup = undefined; + }, + { once: true }, + ); +} diff --git a/packages/query/src/index.ts b/packages/query/src/index.ts index 9af1107..12a2bb0 100644 --- a/packages/query/src/index.ts +++ b/packages/query/src/index.ts @@ -1,39 +1,22 @@ -import { mkdir, writeFile } from "node:fs/promises"; +/// + +import { createRequire } from "node:module"; import type { AstroConfig, AstroIntegration } from "astro"; -import { cyan } from "kleur/colors"; import vitePluginSimpleScope from "vite-plugin-simple-scope"; -import "../ambient.d.ts"; -import { existsSync } from "node:fs"; - type VitePlugin = Required["plugins"][number]; -type Options = { - bypassSnippetsPrompt?: boolean; -}; - -export default function simpleStackQueryIntegration( - opts?: Options, -): AstroIntegration { - let root: URL; - let command: "dev" | "build" | "preview"; +export default function simpleStackQueryIntegration(): AstroIntegration { return { name: "simple-stack-query", hooks: { - "astro:server:start": async () => { - if (command === "dev" && !opts?.bypassSnippetsPrompt) { - setTimeout(() => { - addSnippets({ root }); - }, 100); - } - }, async "astro:config:setup"(params) { - root = params.config.root; - command = params.command; - params.updateConfig({ vite: { - plugins: [vitePlugin(), vitePluginSimpleScope()], + plugins: [ + vitePlugin({ root: params.config.root }), + vitePluginSimpleScope(), + ], }, }); }, @@ -41,7 +24,9 @@ export default function simpleStackQueryIntegration( }; } -function vitePlugin(): VitePlugin { +const dataTargetRegex = /data-target="(.*?)"/g; + +function vitePlugin({ root }: { root: URL }): VitePlugin { return { name: "simple-stack-query", transform(code, id) { @@ -51,9 +36,17 @@ function vitePlugin(): VitePlugin { const isAstroFrontmatter = !search; if (isAstroFrontmatter) { + const codeWithTargetsReplaced = code.replace( + dataTargetRegex, + (_, target) => { + return `data-target=\${__scope(${JSON.stringify(target)})}`; + }, + ); return ` import { scope as __scope } from 'simple:scope'; - const $ = __scope;\n${code}`; + import * as __internals from 'simple-stack-query/internal.server'; + + const RootElement = __internals.createRootElement(__scope);\n${codeWithTargetsReplaced}`; } const searchParams = new URLSearchParams(search); @@ -61,59 +54,20 @@ function vitePlugin(): VitePlugin { return ` import { scope as __scope } from 'simple:scope'; - import * as __queryInternals from "simple-stack-query/internal"; + import * as __internals from "simple-stack-query/internal"; + ${hasSignalPolyfill(root) ? `import { effect as __effect } from "simple-stack-query/effect";` : "const __effect = undefined;"} - const $ = __queryInternals.create$(__scope);\n${code}`; + const RootElement = __internals.createRootElement(__scope, __effect);\n${code}`; }, }; } -async function addSnippets({ root }: { root: URL }) { - const dotAstroDir = new URL(".astro/", root); - const snippetsResponseFile = new URL( - "simple-query-snippets-response", - dotAstroDir, - ); - if (existsSync(snippetsResponseFile)) return; - - const { confirm, isCancel, outro } = await import("@clack/prompts"); - const shouldAddSnippets = await confirm({ - message: - "Simple query offers snippets for VS Code. Would you like to add them?", - }); - - if (isCancel(shouldAddSnippets)) process.exit(0); - - await mkdir(dotAstroDir, { recursive: true }); - await writeFile(snippetsResponseFile, shouldAddSnippets ? "true" : "false"); - - if (!shouldAddSnippets) { - outro(`No problem! Won't ask again. ${cyan("Dev server running.")}`); - return; +function hasSignalPolyfill(root: URL) { + const require = createRequire(root); + try { + require.resolve("signal-polyfill"); + return true; + } catch { + return false; } - - const vsCodeDir = new URL(".vscode/", root); - const vsCodeSnippetsFile = new URL("simple-query.code-snippets", vsCodeDir); - - await mkdir(vsCodeDir, { recursive: true }); - await writeFile( - vsCodeSnippetsFile, - JSON.stringify( - { - "query target": { - scope: "typescriptreact,javascriptreact", - prefix: "$:target", - body: ["data-target={$('$1')}"], - }, - "query ready block": { - scope: "typescript,javascript", - prefix: "$:ready", - body: ["$.ready(async () => {", " $1", "});"], - }, - }, - null, - 2, - ), - ); - outro(`Snippets added ✔️\n ${cyan("Dev server running.")}`); } diff --git a/packages/query/src/internal.server.ts b/packages/query/src/internal.server.ts new file mode 100644 index 0000000..65adfbc --- /dev/null +++ b/packages/query/src/internal.server.ts @@ -0,0 +1,23 @@ +import { type scope as scopeFn } from "simple:scope"; +import { + createComponent, + render, + renderComponent, +} from "astro/runtime/server/index.js"; + +export const createRootElement = (scope: typeof scopeFn) => + createComponent({ + factory(result, { data, ...props }, slots) { + return render`${renderComponent( + result, + "RootElement", + `simple-query-root-${scope()}`, + { + style: props.class ? "" : "display: contents", + ...props, + "data-stringified": JSON.stringify(data), + }, + slots, + )}`; + }, + }); diff --git a/packages/query/src/internal.ts b/packages/query/src/internal.ts index e66f923..efb2294 100644 --- a/packages/query/src/internal.ts +++ b/packages/query/src/internal.ts @@ -1,49 +1,87 @@ import type { scope as scopeFn } from "simple:scope"; -import { transitionEnabledOnThisPage } from "astro/virtual-modules/transitions-router.js"; +import type { + CleanupCallback, + MaybePromise, + effect as effectFn, +} from "./effect.js"; -export function create$(scope: typeof scopeFn) { - const anyMatchSelector = `[data-target$=${JSON.stringify(scope())}`; - function hasScopeElement() { - return Boolean(document.querySelector(anyMatchSelector)); - } +type ReadyCallback = ( + $: any, + context: { + effect: typeof effectFn; + data: any; + abortSignal: AbortSignal; + }, +) => MaybePromise; + +export function createRootElement( + scope: typeof scopeFn, + effect: typeof effectFn = () => { + throw new Error( + "Unable to call `effect()`. To use this function, install the `signal-polyfill` package.", + ); + }, +) { + return { + ready(callback: ReadyCallback) { + window.customElements.define( + `simple-query-root-${scope()}`, + createRootElementClass(scope, effect, callback), + ); + }, + }; +} + +export function createRootElementClass( + scope: typeof scopeFn, + effect: typeof effectFn, + readyCallback: ReadyCallback, +) { + return class extends HTMLElement { + #cleanupCallback?: CleanupCallback; + + #abortController = new AbortController(); + abortSignal = this.#abortController.signal; + + async connectedCallback() { + const stringifiedData = this.getAttribute("data-stringified")!; + const $ = create$(this, scope); + const data = JSON.parse(stringifiedData); + + this.#cleanupCallback = await readyCallback($, { + effect: effect.bind({ signal: this.abortSignal }), + data, + abortSignal: this.abortSignal, + }); + } + + disconnectedCallback() { + this.#cleanupCallback?.(); + this.#abortController.abort(); + } + }; +} + +function create$(self: HTMLElement, scope: typeof scopeFn) { function getSelector(scopeId: string) { return `[data-target=${JSON.stringify(scope(scopeId))}]`; } function $(scopeId: string) { const selector = getSelector(scopeId); - const element = document.querySelector(selector); + const element = self.querySelector(selector); if (!element) throw new Error(`Element not found: ${selector}`); return element; } Object.assign($, { + self, optional(scopeId: string) { const selector = getSelector(scopeId); - return document.querySelector(selector) ?? undefined; + return self.querySelector(selector) ?? undefined; }, all(scopeId: string) { const selector = getSelector(scopeId); - return [...document.querySelectorAll(selector)]; - }, - ready(callback: () => MaybePromise void)>) { - const fallback = document - .querySelector('meta[name="astro-view-transitions-fallback"]') - ?.getAttribute("content"); - if (transitionEnabledOnThisPage() && fallback !== "none") { - let cleanup: (() => void) | undefined; - - document.addEventListener("astro:page-load", async () => { - if (cleanup) cleanup(); - if (!hasScopeElement()) return; - - cleanup = await callback(); - }); - } else { - if (!hasScopeElement()) return; - callback(); - } + return [...self.querySelectorAll(selector)]; }, }); return $; } - -type MaybePromise = T | Promise; diff --git a/packages/query/test/basic.test.js b/packages/query/test/data-target.test.js similarity index 75% rename from packages/query/test/basic.test.js rename to packages/query/test/data-target.test.js index de64e13..1bb4ca3 100644 --- a/packages/query/test/basic.test.js +++ b/packages/query/test/data-target.test.js @@ -5,7 +5,7 @@ import { DOMParser } from "linkedom"; const parser = new DOMParser(); -describe("basic", () => { +describe("data-target", () => { describe("dev", () => { /** @type {Awaited>} */ let server; @@ -20,35 +20,39 @@ describe("basic", () => { server.stop(); }); + function getPath(path = "") { + return new URL(path, `http://localhost:${server.address.port}/`).href; + } + it("should generate scoped id", async () => { - const res = await fetch(`http://localhost:${server.address.port}`); + const res = await fetch(getPath()); const html = await res.text(); assert.ok(res.ok); const h1 = parser.parseFromString(html, "text/html").querySelector("h1"); - assert.match(h1?.getAttribute("data-target"), /^test-\w+/); + assert.match(h1?.getAttribute("data-target"), /^heading-\w+/); }); it("should generate a different scoped id for nested components", async () => { - const res = await fetch(`http://localhost:${server.address.port}`); + const res = await fetch(getPath("button")); const html = await res.text(); assert.ok(res.ok); const h1 = parser.parseFromString(html, "text/html").querySelector("h1"); const scopeHash = h1?.getAttribute("data-target").split("-")[1]; - const nestedH2 = parser + const nestedButton = parser .parseFromString(html, "text/html") - .querySelector("h2"); - const nestedScopeHash = nestedH2 + .querySelector("button"); + const nestedScopeHash = nestedButton ?.getAttribute("data-target") .split("-")[1]; assert.notEqual(scopeHash, nestedScopeHash); }); - it("allows passing $ as a prop", async () => { - const res = await fetch(`http://localhost:${server.address.port}`); + it("allows passing scope as a prop", async () => { + const res = await fetch(getPath("scope-prop")); const html = await res.text(); assert.ok(res.ok); diff --git a/packages/query/typescript b/packages/query/typescript new file mode 100644 index 0000000..dc0f8ee --- /dev/null +++ b/packages/query/typescript @@ -0,0 +1,9523 @@ +Script started on Sun Jul 28 09:01:01 2024 +scm_breeze: Design Assets management enabled +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query^C  +in simple-stack/packages/query is 📦 v0.1.1  + ﬌ [?1h=[?2004hcccd packages/queryco               code -r .coddecodee e p   packages/dbpaacckages/dbpack b  db   /db.  scodecode[?1l>[?2004l +]2;exec_scmb_expand_args '/usr/local/bin/code' packages.s]1;code% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1  + ﬌ [?1h=[?2004hcode packages.scode sjscodecodeon.json package.json[?1l>[?2004l +]2;exec_scmb_expand_args '/usr/local/bin/code' package.json]1;code% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1  + ﬌ [?1h=[?2004hcode package.jsoncode package.jsons.s  packages.s    pppnpm e2epnpnpnppmpnpmm m eee22e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [types] Generated 18… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:02:27 [types] Generated 20… +└─ Running... +│ 09:02:27 [build] output: "sta… +└─ Running... +│ 09:02:27 [build] directory: /… +└─ Running... +│ 09:02:27 [build] Collecting b… +└─ Running... +│ 09:02:27 [build] ✓ Completed … +└─ Running... +│ 09:02:27 [build] Building sta… +└─ Running... +│ 09:02:28 [vite] ✓ built in 42… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +│ 09:02:27 [types] Generated 20… +│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +└─ Running... +│ 09:02:28 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +│ 09:02:27 [types] Generated 20… +│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +│ 09:02:27 [types] Generated 20… +│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:02:28 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +│ 09:02:27 [ERROR] [vite] WebSo… +│ 09:02:27 [types] Generated 20… +│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +└─ Running... +│ 09:02:28 [vite] ✓ built in 44… +└─ Running... +│ 09:02:28 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:02:28 [vite] transforming.… +└─ Running... +2│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +3│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +4│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +5│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +6│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +7│ 09:02:28 [vite] ✓ built in 42… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +8│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +1│ 09:02:28 [vite] ✓ 15 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +2│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +3│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +4│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +5│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +6│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +7│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +8│ 09:02:28 [vite] dist/_astro/e… +│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +9│ 09:02:28 [vite] ✓ built in 43… +│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +1│ 09:02:28 ▶ src/pages/button.a… +│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +2│ 09:02:28 └─ /button/index.h… +│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +│ 09:02:28 ▶ src/pages/index.as… +3│ 09:02:28 ▶ src/pages/effect.a… +│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +│ 09:02:28 ▶ src/pages/index.as… +│ 09:02:28 └─ /index.html (+2… +4│ 09:02:28 └─ /effect/index.h… +│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +│ 09:02:28 ▶ src/pages/index.as… +│ 09:02:28 └─ /index.html (+2… +│ 09:02:28 ✓ Completed in 36ms. +5│ 09:02:28 ▶ src/pages/multi-co… +│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +│ 09:02:28 ▶ src/pages/index.as… +│ 09:02:28 └─ /index.html (+2… +│ 09:02:28 ✓ Completed in 36ms. +│ 09:02:28 [build] 6 page(s) bu… +6│ 09:02:28 └─ /multi-counter/… +│ 09:02:28 ▶ src/pages/scope-pr… +│ 09:02:28 └─ /scope-prop/ind… +│ 09:02:28 ▶ src/pages/server-d… +│ 09:02:28 └─ /server-data/in… +│ 09:02:28 ▶ src/pages/index.as… +│ 09:02:28 └─ /index.html (+2… +│ 09:02:28 ✓ Completed in 36ms. +│ 09:02:28 [build] 6 page(s) bu… +│ 09:02:28 [build] Complete! +└─ Done in 1.1s +2│ 09:02:27 [build] output: "sta… +│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +3│ 09:02:27 [build] directory: /… +│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +4│ 09:02:27 [build] Collecting b… +│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +5│ 09:02:27 [build] ✓ Completed … +│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +6│ 09:02:27 [build] Building sta… +│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +7│ 09:02:28 [vite] ✓ built in 44… +│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +8│ 09:02:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:02:28 [vite] transforming.… +│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +│ 09:02:28 ▶ src/pages/page-2.a… +1│ 09:02:28 [vite] ✓ 18 modules … +│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +│ 09:02:28 ▶ src/pages/page-2.a… +│ 09:02:28 └─ /page-2/index.h… +2│ 09:02:28 [vite] rendering chu… +│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +│ 09:02:28 ▶ src/pages/page-2.a… +│ 09:02:28 └─ /page-2/index.h… +│ 09:02:28 ✓ Completed in 9ms. +3│ 09:02:28 [vite] computing gzi… +│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +│ 09:02:28 ▶ src/pages/page-2.a… +│ 09:02:28 └─ /page-2/index.h… +│ 09:02:28 ✓ Completed in 9ms. +│ 09:02:28 [build] 2 page(s) bu… +4│ 09:02:28 [vite] dist/_astro/h… +│ 09:02:28 [vite] ✓ built in 10… +│ generating static routes  +│ 09:02:28 ▶ src/pages/page-1.a… +│ 09:02:28 └─ /page-1/index.h… +│ 09:02:28 ▶ src/pages/page-2.a… +│ 09:02:28 └─ /page-2/index.h… +│ 09:02:28 ✓ Completed in 9ms. +│ 09:02:28 [build] 2 page(s) bu… +│ 09:02:28 [build] Complete! +└─ Done in 1.2s + +Running 18 tests using 4 workers + +[1/18] …oads client JS for heading +[2/18] …oads client JS for heading +[3/18] …nteractive on initial load +[4/18] …nteractive on initial load +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9614/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9057/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9029/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 11 ms + +┃ Local http://localhost:9069/ +┃ Network use --host to expose + + +[5/18] …1 › reacts to button click +[6/18] … › reacts to button effect +[7/18] …8:1 › respects server data +[8/18] …nstances of button counter +[9/18] …1 › reacts to button click +[10/18] …› reacts to button effect +[11/18] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9940/ +┃ Network use --host to expose + + +[12/18] …:1 › respects server data +[13/18] …stances of button counter +[14/18] …teractive on initial load +… › is interactive on initial load + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9282/ +┃ Network use --host to expose + + +[15/18] … › reacts to button click +[16/18] …› reacts to button effect +[17/18] …:1 › respects server data +[18/18] …stances of button counter + 18 passed (6.4s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 9s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2ecode package.jsonckage.jsonpnpm e2e         [?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:05:54 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:05:54 [types] Generated 14… +└─ Running... +│ 09:05:54 [build] output: "sta… +└─ Running... +│ 09:05:54 [build] directory: /… +└─ Running... +│ 09:05:54 [build] Collecting b… +└─ Running... +│ 09:05:54 [build] ✓ Completed … +└─ Running... +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [types] Generated 18… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [vite] ✓ built in 43… +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +│ 09:05:54 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ 09:05:54 [types] Generated 14… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +└─ Running... +2│ 09:05:54 [types] Generated 18… +│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ built in 45… +└─ Running... +│ 09:05:54 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +│ 09:05:54 [vite] transforming.… +└─ Running... +3│ 09:05:54 [build] output: "sta… +│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +4│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +5│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +6│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +7│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +8│ 09:05:54 [vite] ✓ built in 43… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +9│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +[10 lines collapsed] +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +1│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +2│ 09:05:54 [vite] ✓ 15 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +3│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +4│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +5│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +6│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +7│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +8│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +9│ 09:05:54 [vite] dist/_astro/e… +│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +20│ 09:05:54 [vite] ✓ built in 42… +│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +1│ generating static routes  +│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +2│ 09:05:54 ▶ src/pages/button.a… +│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +3│ 09:05:54 └─ /button/index.h… +│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +│ 09:05:54 ▶ src/pages/index.as… +4│ 09:05:54 ▶ src/pages/effect.a… +│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +│ 09:05:54 ▶ src/pages/index.as… +│ 09:05:54 └─ /index.html (+1… +5│ 09:05:54 └─ /effect/index.h… +│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +│ 09:05:54 ▶ src/pages/index.as… +│ 09:05:54 └─ /index.html (+1… +│ 09:05:54 ✓ Completed in 25ms. +6│ 09:05:54 ▶ src/pages/multi-co… +│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +│ 09:05:54 ▶ src/pages/index.as… +│ 09:05:54 └─ /index.html (+1… +│ 09:05:54 ✓ Completed in 25ms. +│ 09:05:54 [build] 6 page(s) bu… +7│ 09:05:54 └─ /multi-counter/… +│ 09:05:54 ▶ src/pages/scope-pr… +│ 09:05:54 └─ /scope-prop/ind… +│ 09:05:54 ▶ src/pages/server-d… +│ 09:05:54 └─ /server-data/in… +│ 09:05:54 ▶ src/pages/index.as… +│ 09:05:54 └─ /index.html (+1… +│ 09:05:54 ✓ Completed in 25ms. +│ 09:05:54 [build] 6 page(s) bu… +│ 09:05:54 [build] Complete! +└─ Done in 1.1s +[1 lines collapsed] +│ 09:05:54 [vite] ✓ 18 modules … +└─ Running... +2│ 09:05:54 [build] directory: /… +│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 45… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +3│ 09:05:54 [build] Collecting b… +│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 45… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +4│ 09:05:54 [build] ✓ Completed … +│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 45… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +5│ 09:05:54 [build] Building sta… +│ 09:05:54 [vite] ✓ built in 45… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +6│ 09:05:54 [vite] ✓ built in 45… +│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +7│ 09:05:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +8│ building client (vite)  +│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +9│ 09:05:54 [vite] transforming.… +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +│ 09:05:54 ▶ src/pages/page-2.a… +[10 lines collapsed] +│ 09:05:54 [vite] ✓ 18 modules … +│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +│ 09:05:54 ▶ src/pages/page-2.a… +│ 09:05:54 └─ /page-2/index.h… +1│ 09:05:54 [vite] rendering chu… +│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +│ 09:05:54 ▶ src/pages/page-2.a… +│ 09:05:54 └─ /page-2/index.h… +│ 09:05:54 ✓ Completed in 11ms. +2│ 09:05:54 [vite] computing gzi… +│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +│ 09:05:54 ▶ src/pages/page-2.a… +│ 09:05:54 └─ /page-2/index.h… +│ 09:05:54 ✓ Completed in 11ms. +│ 09:05:54 [build] 2 page(s) bu… +3│ 09:05:54 [vite] dist/_astro/h… +│ 09:05:54 [vite] ✓ built in 96… +│ generating static routes  +│ 09:05:54 ▶ src/pages/page-1.a… +│ 09:05:54 └─ /page-1/index.h… +│ 09:05:54 ▶ src/pages/page-2.a… +│ 09:05:54 └─ /page-2/index.h… +│ 09:05:54 ✓ Completed in 11ms. +│ 09:05:54 [build] 2 page(s) bu… +│ 09:05:54 [build] Complete! +└─ Done in 1.1s + +Running 21 tests using 4 workers + +[1/21] …oads client JS for heading +[2/21] …nteractive on initial load +[3/21] …oads client JS for heading +[4/21] …nteractive on initial load +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9758/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9632/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9081/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9641/ +┃ Network use --host to expose + + +[5/21] …1 › reacts to button click +[6/21] … interactive on navigation +[7/21] … › reacts to button effect +[8/21] …8:1 › respects server data +[9/21] …nstances of button counter +[10/21] … › reacts to button click +[11/21] …interactive on navigation +[12/21] …› reacts to button effect +[13/21] …:1 › respects server data +[14/21] …stances of button counter +[15/21] …teractive on initial load +[16/21] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9741/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9455/ +┃ Network use --host to expose + + +[17/21] … › reacts to button click +[18/21] …interactive on navigation +[19/21] …› reacts to button effect +[20/21] …:1 › respects server data +[21/21] …stances of button counter + 1) [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + + Error: Timed out 5000ms waiting for expect(locator).toContainText(expected) + + Locator: getByRole('button') + Expected string: "2" + Received string: "1" + Call log: + - expect.toContainText with timeout 5000ms +  - waiting for getByRole('button') +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" + + +   40 | await expect(btn2).toHaveAttribute("data-ready"); +  41 | await btn2.click(); + > 42 | await expect(btn2).toContainText("2"); +  | ^ +  43 | }); +  44 | + +  at /Users/benholmes/Repositories/simple-stack/packages/query/e2e/view-transitions.spec.ts:42:21 + + + 1 failed + [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + 20 passed (11.1s) + + Serving HTML report at http://localhost:9323. Press Ctrl+C to quit. +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 35s  + ﬌ [?1h=[?2004hcccode package.jsoncd                packages/querycd cd f             fixtures/basicfiixtures/basicxtures/basic/     basic/v    viieew-transitions/s [?1l>[?2004l +]2;exec_scmb_expand_args builtin cd fixtures/view-transitions]1;cd% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query/fixtures/view-transitions]1;..w-transitions  +in simple-stack/packages/query/fixtures/view-transitions on  feat/root-element [$!?]  + ﬌ [?1h=[?2004hpppnpm e2epnpnppmpnpmm m d  devdedev[?1l>[?2004l +]2;pnpm dev]1;pnpm +> @test/query-view-transitions@ dev /Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions +> astro dev + +09:06:37 [types] Generated 1ms + + astro  v4.12.2 ready in 160 ms + +┃ Local http://localhost:4321/ +┃ Network use --host to expose + +09:06:37 watching for file changes... +09:06:40 [404] / 5ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+atkinson-hyperlegible@5.0.5/node_modules/@fontsource/atkinson-hyperlegible/files/atkinson-hyperlegible-latin-700-normal.woff2 2ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+ranga@5.0.18/node_modules/@fontsource/ranga/files/ranga-latin-700-normal.woff2 0ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+atkinson-hyperlegible@5.0.5/node_modules/@fontsource/atkinson-hyperlegible/files/atkinson-hyperlegible-latin-400-normal.woff2 0ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+ranga@5.0.18/node_modules/@fontsource/ranga/files/ranga-latin-400-normal.woff2 0ms +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/TOC.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/TOC.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/heading/WhiteboardContext.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/heading/WhiteboardContext.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/node_modules/.pnpm/astro@4.11.3_typescript@5.2.2/node_modules/astro/components/ViewTransitions.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/node_modules/.pnpm/astro@4.11.3_typescript@5.2.2/node_modules/astro/components/ViewTransitions.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/iBen/Frame.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/iBen/Frame.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/layouts/BaseLayout.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/layouts/BaseLayout.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/Nav.astro?astro&type=script&index=0&lang.ts". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/Nav.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [404] /node_modules/.pnpm/@fontsource+atkinson-hyperlegible@5.0.5/node_modules/@fontsource/atkinson-hyperlegible/400.css 1ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+ranga@5.0.18/node_modules/@fontsource/ranga/400.css 0ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+atkinson-hyperlegible@5.0.5/node_modules/@fontsource/atkinson-hyperlegible/700.css 1ms +09:06:40 [404] /node_modules/.pnpm/@fontsource+ranga@5.0.18/node_modules/@fontsource/ranga/700.css 1ms +09:06:40 [404] /node_modules/.pnpm/open-props@1.6.16/node_modules/open-props/easings.min.css 1ms +09:06:40 [404] /src/layouts/tailwind.css 2ms +09:06:40 [404] /node_modules/.pnpm/astro@4.11.3_typescript@5.2.2/node_modules/astro/components/viewtransitions.css 2ms +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/Nav.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/Nav.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/node_modules/.pnpm/astro@4.11.3_typescript@5.2.2/node_modules/astro/components/ViewTransitions.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/node_modules/.pnpm/astro@4.11.3_typescript@5.2.2/node_modules/astro/components/ViewTransitions.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/TOC.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/TOC.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/heading/Whiteboard.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/heading/Whiteboard.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/Nav.astro?astro&type=style&index=1&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/Nav.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [404] /apple-touch-icon-precomposed.png 1ms +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/iBen/CdDrive.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/iBen/CdDrive.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/heading/Heading.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/heading/Heading.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/layouts/BaseLayout.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/layouts/BaseLayout.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/iBen/Frame.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/iBen/Frame.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [ERROR] [vite] Internal server error: No cached compile metadata found for "/src/components/iBen/Button.astro?astro&type=style&index=0&lang.css". The main Astro module "/Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions/src/components/iBen/Button.astro" should have compiled and filled the metadata first, before its virtual modules can be requested. + at LoadPluginContext.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/astro@4.12.2_@types+node@20.14.12_typescript@5.5.3/node_modules/astro/dist/vite-plugin-astro/index.js:70:15) + at async PluginContainer.load (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:49556:22) + at async loadAndTransform (file:///Users/benholmes/Repositories/simple-stack/node_modules/.pnpm/vite@5.3.4_@types+node@20.14.12/node_modules/vite/dist/node/chunks/dep-D8YhmIY-.js:52351:22) +09:06:40 [404] /apple-touch-icon.png 0ms +09:06:40 [404] /src/stores.ts 1ms +09:06:40 [404] /src/utils.client.ts 1ms +09:06:40 [404] /node_modules/.pnpm/vite@5.3.2/node_modules/vite/dist/client/env.mjs 0ms +09:06:40 [404] /src/components/heading/canvas.ts 0ms +09:06:40 [404] /src/components/iBen/Frame.ts 0ms +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query/fixtures/view-transitions]1;..w-transitions  +in simple-stack/packages/query/fixtures/view-transitions on  feat/root-element [$!?] took 10s  + ﬌ [?1h=[?2004httturbo e2etr       trash node_modules/.vitetratraasshtrash node_modules/.vitenode_modules/.vite[?1l>[?2004l +]2;trash node_modules/.vite]1;trash% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query/fixtures/view-transitions]1;..w-transitions  +in simple-stack/packages/query/fixtures/view-transitions on  feat/root-element [$!?]  + ﬌ [?1h=[?2004hpppnpm devpnpnppmpnpmm m dddedev[?1l>[?2004l +]2;pnpm dev]1;pnpm +> @test/query-view-transitions@ dev /Users/benholmes/Repositories/simple-stack/packages/query/fixtures/view-transitions +> astro dev + +09:06:50 [types] Generated 1ms + + astro  v4.12.2 ready in 123 ms + +┃ Local http://localhost:4321/ +┃ Network use --host to expose + +09:06:50 watching for file changes... +09:06:53 [404] / 11ms +09:06:56 [200] /page-1 4ms +09:06:56 [vite] ✨ new dependencies optimized: signal-polyfill +09:06:56 [vite] ✨ optimized dependencies changed. reloading +09:06:58 [200] /page-2 3ms +09:06:59 [200] /page-2 4ms +09:07:01 [200] /page-1 4ms +09:07:01 [200] /page-1 4ms +09:07:03 [200] /page-2 5ms +09:07:05 [200] /page-1 7ms +09:07:49 [watch] src/layouts/Layout.astro +09:07:59 [watch] src/pages/page-1.astro +09:08:04 [watch] src/pages/page-2.astro +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query/fixtures/view-transitions]1;..w-transitions  +in simple-stack/packages/query/fixtures/view-transitions on  feat/root-element [$!?] took 2m 15s  + ﬌ [?1h=[?2004hpnpm devpnpmtrash node_modules/.vitesh node_modules/.vitepnpm dev                m devcd fixtures/view-transitionscd fpnpm e2e pnpm[?1l>[?2004l +]2;pnpm e2e]1;pnpm ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL  Command "e2e" not found +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query/fixtures/view-transitions]1;..w-transitions  +in simple-stack/packages/query/fixtures/view-transitions on  feat/root-element [$!?]  + ﬌ [?1h=[?2004h--[?1l>[?2004l +]2;exec_scmb_expand_args builtin cd -]1;~/Repositories/simple-stack/packages/query +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1  + ﬌ [?1h=[?2004h--pnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:09:12 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +└─ Running... +│ 09:09:12 [vite] Re-optimizing… +└─ Running... +│ 09:09:12 [types] Generated 20… +└─ Running... +│ 09:09:12 [build] output: "sta… +└─ Running... +│ 09:09:12 [build] directory: /… +└─ Running... +│ 09:09:12 [build] Collecting b… +└─ Running... +│ 09:09:12 [build] ✓ Completed … +└─ Running... +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [types] Generated 21… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [vite] ✓ built in 45… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:09:12 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:09:12 [vite] Re-optimizing… +│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +└─ Running... +│ 09:09:12 [vite] ✓ built in 46… +└─ Running... +│ 09:09:12 [build] ✓ Completed … +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +2│ 09:09:12 [types] Generated 20… +│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +2│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +3│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +4│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +5│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +6│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +7│ 09:09:12 [vite] ✓ built in 45… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +8│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +1│ 09:09:12 [vite] ✓ 15 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +2│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +3│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +4│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +5│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +6│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +7│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +8│ 09:09:12 [vite] dist/_astro/e… +│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +3│ 09:09:12 [build] output: "sta… +│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +9│ 09:09:12 [vite] ✓ built in 45… +│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +1│ 09:09:12 ▶ src/pages/button.a… +│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +2│ 09:09:12 └─ /button/index.h… +│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +│ 09:09:12 ▶ src/pages/index.as… +3│ 09:09:12 ▶ src/pages/effect.a… +│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +│ 09:09:12 ▶ src/pages/index.as… +│ 09:09:12 └─ /index.html (+1… +4│ 09:09:12 └─ /effect/index.h… +│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +│ 09:09:12 ▶ src/pages/index.as… +│ 09:09:12 └─ /index.html (+1… +│ 09:09:12 ✓ Completed in 36ms. +4│ 09:09:12 [build] directory: /… +│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +5│ 09:09:12 ▶ src/pages/multi-co… +│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +│ 09:09:12 ▶ src/pages/index.as… +│ 09:09:12 └─ /index.html (+1… +│ 09:09:12 ✓ Completed in 36ms. +│ 09:09:12 [build] 6 page(s) bu… +6│ 09:09:12 └─ /multi-counter/… +│ 09:09:12 ▶ src/pages/scope-pr… +│ 09:09:12 └─ /scope-prop/ind… +│ 09:09:12 ▶ src/pages/server-d… +│ 09:09:12 └─ /server-data/in… +│ 09:09:12 ▶ src/pages/index.as… +│ 09:09:12 └─ /index.html (+1… +│ 09:09:12 ✓ Completed in 36ms. +│ 09:09:12 [build] 6 page(s) bu… +│ 09:09:12 [build] Complete! +5│ 09:09:12 [build] Collecting b… +│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +6│ 09:09:12 [build] ✓ Completed … +│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +7│ 09:09:12 [build] Building sta… +│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +8│ 09:09:12 [vite] ✓ built in 46… +│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +└─ Done in 1.2s +9│ 09:09:12 [build] ✓ Completed … +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +[10 lines collapsed] +│ building client (vite)  +│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +1│ 09:09:12 [vite] transforming.… +│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +│ 09:09:12 ▶ src/pages/page-2.a… +2│ 09:09:12 [vite] ✓ 18 modules … +│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +│ 09:09:12 ▶ src/pages/page-2.a… +│ 09:09:12 └─ /page-2/index.h… +3│ 09:09:12 [vite] rendering chu… +│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +│ 09:09:12 ▶ src/pages/page-2.a… +│ 09:09:12 └─ /page-2/index.h… +│ 09:09:12 ✓ Completed in 11ms. +4│ 09:09:12 [vite] computing gzi… +│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +│ 09:09:12 ▶ src/pages/page-2.a… +│ 09:09:12 └─ /page-2/index.h… +│ 09:09:12 ✓ Completed in 11ms. +│ 09:09:12 [build] 2 page(s) bu… +5│ 09:09:12 [vite] dist/_astro/h… +│ 09:09:12 [vite] ✓ built in 78… +│ generating static routes  +│ 09:09:12 ▶ src/pages/page-1.a… +│ 09:09:12 └─ /page-1/index.h… +│ 09:09:12 ▶ src/pages/page-2.a… +│ 09:09:12 └─ /page-2/index.h… +│ 09:09:12 ✓ Completed in 11ms. +│ 09:09:12 [build] 2 page(s) bu… +│ 09:09:12 [build] Complete! +└─ Done in 1.2s + +Running 21 tests using 4 workers + +[1/21] …nteractive on initial load +[2/21] …oads client JS for heading +[3/21] …nteractive on initial load +[4/21] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9862/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9822/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 10 ms + +┃ Local http://localhost:9011/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 18 ms + +┃ Local http://localhost:9854/ +┃ Network use --host to expose + + +[5/21] …1 › reacts to button click +[6/21] … interactive on navigation +[7/21] … › reacts to button effect +[8/21] …8:1 › respects server data +[9/21] …nstances of button counter +[10/21] … › reacts to button click +[11/21] …interactive on navigation +[12/21] …› reacts to button effect +[13/21] …:1 › respects server data +[14/21] …ads client JS for heading +[15/21] …teractive on initial load +[16/21] …stances of button counter +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9809/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9981/ +┃ Network use --host to expose + + +[17/21] … › reacts to button click +[18/21] …interactive on navigation +[19/21] …› reacts to button effect +[20/21] …:1 › respects server data +[21/21] …stances of button counter + 1) [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + + Error: Timed out 5000ms waiting for expect(locator).toContainText(expected) + + Locator: getByRole('button') + Expected string: "2" + Received string: "1" + Call log: + - expect.toContainText with timeout 5000ms +  - waiting for getByRole('button') +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" + + +   41 | await expect(btn2).toHaveAttribute("data-ready"); +  42 | await btn2.click(); + > 43 | await expect(btn2).toContainText("2"); +  | ^ +  44 | }); +  45 | + +  at /Users/benholmes/Repositories/simple-stack/packages/query/e2e/view-transitions.spec.ts:43:21 + + + 1 failed + [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + 20 passed (11.3s) + + Serving HTML report at http://localhost:9323. Press Ctrl+C to quit. +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 43s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [types] Generated 18… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:09:59 [ERROR] [vite] WebSo… +└─ Running... +│ 09:09:59 [types] Generated 17… +└─ Running... +│ 09:09:59 [build] output: "sta… +└─ Running... +│ 09:09:59 [build] directory: /… +└─ Running... +│ 09:09:59 [build] Collecting b… +└─ Running... +│ 09:09:59 [build] ✓ Completed … +└─ Running... +│ 09:09:59 [build] Building sta… +└─ Running... +│ 09:10:00 [vite] ✓ built in 44… +└─ Running... +│ 09:10:00 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:10:00 [vite] transforming.… +└─ Running... +│ 09:10:00 [vite] ✓ built in 45… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:09:59 [types] Generated 17… +│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +└─ Running... +│ 09:10:00 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:09:59 [types] Generated 17… +│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:09:59 [types] Generated 17… +│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +└─ Running... +[1 lines collapsed] +│ 09:10:00 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:09:59 [types] Generated 17… +│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +└─ Running... +2│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +3│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +4│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +5│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +6│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +7│ 09:10:00 [vite] ✓ built in 44… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +8│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +1│ 09:10:00 [vite] ✓ 15 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +2│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +3│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +4│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +5│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +6│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +7│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +8│ 09:10:00 [vite] dist/_astro/e… +│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +9│ 09:10:00 [vite] ✓ built in 60… +│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +1│ 09:10:00 ▶ src/pages/button.a… +│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +2│ 09:10:00 └─ /button/index.h… +│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +│ 09:10:00 ▶ src/pages/index.as… +2│ 09:09:59 [build] output: "sta… +│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +3│ 09:10:00 ▶ src/pages/effect.a… +│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +│ 09:10:00 ▶ src/pages/index.as… +│ 09:10:00 └─ /index.html (+4… +4│ 09:10:00 └─ /effect/index.h… +│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +│ 09:10:00 ▶ src/pages/index.as… +│ 09:10:00 └─ /index.html (+4… +│ 09:10:00 ✓ Completed in 28ms. +5│ 09:10:00 ▶ src/pages/multi-co… +│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +│ 09:10:00 ▶ src/pages/index.as… +│ 09:10:00 └─ /index.html (+4… +│ 09:10:00 ✓ Completed in 28ms. +│ 09:10:00 [build] 6 page(s) bu… +6│ 09:10:00 └─ /multi-counter/… +│ 09:10:00 ▶ src/pages/scope-pr… +│ 09:10:00 └─ /scope-prop/ind… +│ 09:10:00 ▶ src/pages/server-d… +│ 09:10:00 └─ /server-data/in… +│ 09:10:00 ▶ src/pages/index.as… +│ 09:10:00 └─ /index.html (+4… +│ 09:10:00 ✓ Completed in 28ms. +│ 09:10:00 [build] 6 page(s) bu… +│ 09:10:00 [build] Complete! +└─ Done in 1.2s +3│ 09:09:59 [build] directory: /… +│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +4│ 09:09:59 [build] Collecting b… +│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +5│ 09:09:59 [build] ✓ Completed … +│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +6│ 09:09:59 [build] Building sta… +│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +7│ 09:10:00 [vite] ✓ built in 45… +│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +8│ 09:10:00 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:10:00 [vite] transforming.… +│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +│ 09:10:00 ▶ src/pages/page-2.a… +1│ 09:10:00 [vite] ✓ 18 modules … +│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +│ 09:10:00 ▶ src/pages/page-2.a… +│ 09:10:00 └─ /page-2/index.h… +2│ 09:10:00 [vite] rendering chu… +│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +│ 09:10:00 ▶ src/pages/page-2.a… +│ 09:10:00 └─ /page-2/index.h… +│ 09:10:00 ✓ Completed in 10ms. +3│ 09:10:00 [vite] computing gzi… +│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +│ 09:10:00 ▶ src/pages/page-2.a… +│ 09:10:00 └─ /page-2/index.h… +│ 09:10:00 ✓ Completed in 10ms. +│ 09:10:00 [build] 2 page(s) bu… +4│ 09:10:00 [vite] dist/_astro/h… +│ 09:10:00 [vite] ✓ built in 98… +│ generating static routes  +│ 09:10:00 ▶ src/pages/page-1.a… +│ 09:10:00 └─ /page-1/index.h… +│ 09:10:00 ▶ src/pages/page-2.a… +│ 09:10:00 └─ /page-2/index.h… +│ 09:10:00 ✓ Completed in 10ms. +│ 09:10:00 [build] 2 page(s) bu… +│ 09:10:00 [build] Complete! +└─ Done in 1.2s + +Running 21 tests using 4 workers + +[1/21] …oads client JS for heading +[2/21] …oads client JS for heading +[3/21] …nteractive on initial load +[4/21] …nteractive on initial load +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9683/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9323/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 11 ms + +┃ Local http://localhost:9431/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9727/ +┃ Network use --host to expose + + +[5/21] …1 › reacts to button click +[6/21] … interactive on navigation +[7/21] … › reacts to button effect +[8/21] …8:1 › respects server data +[9/21] …nstances of button counter +[10/21] … › reacts to button click +[11/21] …interactive on navigation +[12/21] …› reacts to button effect +[13/21] …:1 › respects server data +[14/21] …ads client JS for heading +[15/21] …teractive on initial load +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9231/ +┃ Network use --host to expose + + +[16/21] …stances of button counter +… › is interactive on initial load + + astro  v4.12.2 ready in 12 ms + +┃ Local http://localhost:9023/ +┃ Network use --host to expose + + +[17/21] … › reacts to button click +[18/21] …interactive on navigation +[19/21] …› reacts to button effect +[20/21] …:1 › respects server data +[21/21] …stances of button counter + 1) [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + + Error: Timed out 5000ms waiting for expect(locator).toContainText(expected) + + Locator: getByRole('button') + Expected string: "2" + Received string: "1" + Call log: + - expect.toContainText with timeout 5000ms +  - waiting for getByRole('button') +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" + + +   42 | await expect(btn2).toHaveAttribute("data-ready"); +  43 | await btn2.click(); + > 44 | await expect(btn2).toContainText("2"); +  | ^ +  45 | }); +  46 | + +  at /Users/benholmes/Repositories/simple-stack/packages/query/e2e/view-transitions.spec.ts:44:21 + + + 1 failed + [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + 20 passed (11.1s) + + Serving HTML report at http://localhost:9323. Press Ctrl+C to quit. +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 27s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [types] Generated 14… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +└─ Running... +│ 09:10:27 [types] Generated 16… +└─ Running... +│ 09:10:27 [build] output: "sta… +└─ Running... +│ 09:10:27 [build] directory: /… +└─ Running... +│ 09:10:27 [build] Collecting b… +└─ Running... +│ 09:10:27 [build] ✓ Completed … +└─ Running... +│ 09:10:27 [build] Building sta… +└─ Running... +│ 09:10:28 [vite] ✓ built in 45… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +│ 09:10:27 [types] Generated 16… +│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +└─ Running... +│ 09:10:28 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +│ 09:10:27 [types] Generated 16… +│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +│ 09:10:27 [types] Generated 16… +│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:10:28 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:10:27 [ERROR] [vite] WebSo… +│ 09:10:27 [types] Generated 16… +│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +└─ Running... +│ 09:10:28 [vite] ✓ built in 44… +└─ Running... +│ 09:10:28 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:10:28 [vite] transforming.… +└─ Running... +2│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +3│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +4│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +5│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +6│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +7│ 09:10:28 [vite] ✓ built in 44… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +8│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +1│ 09:10:28 [vite] ✓ 15 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +2│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +2│ 09:10:27 [build] output: "sta… +│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +3│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +4│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +5│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +6│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +7│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +8│ 09:10:28 [vite] dist/_astro/e… +│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +9│ 09:10:28 [vite] ✓ built in 58… +│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +3│ 09:10:27 [build] directory: /… +│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +20│ generating static routes  +│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +1│ 09:10:28 ▶ src/pages/button.a… +│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +4│ 09:10:27 [build] Collecting b… +│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +2│ 09:10:28 └─ /button/index.h… +│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +│ 09:10:28 ▶ src/pages/index.as… +5│ 09:10:27 [build] ✓ Completed … +│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +6│ 09:10:27 [build] Building sta… +│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +3│ 09:10:28 ▶ src/pages/effect.a… +│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +│ 09:10:28 ▶ src/pages/index.as… +│ 09:10:28 └─ /index.html (+1… +4│ 09:10:28 └─ /effect/index.h… +│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +│ 09:10:28 ▶ src/pages/index.as… +│ 09:10:28 └─ /index.html (+1… +│ 09:10:28 ✓ Completed in 28ms. +5│ 09:10:28 ▶ src/pages/multi-co… +│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +│ 09:10:28 ▶ src/pages/index.as… +│ 09:10:28 └─ /index.html (+1… +│ 09:10:28 ✓ Completed in 28ms. +│ 09:10:28 [build] 6 page(s) bu… +6│ 09:10:28 └─ /multi-counter/… +│ 09:10:28 ▶ src/pages/scope-pr… +│ 09:10:28 └─ /scope-prop/ind… +│ 09:10:28 ▶ src/pages/server-d… +│ 09:10:28 └─ /server-data/in… +│ 09:10:28 ▶ src/pages/index.as… +│ 09:10:28 └─ /index.html (+1… +│ 09:10:28 ✓ Completed in 28ms. +│ 09:10:28 [build] 6 page(s) bu… +│ 09:10:28 [build] Complete! +7│ 09:10:28 [vite] ✓ built in 45… +│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +8│ 09:10:28 [build] ✓ Completed … +│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +└─ Done in 1.1s +9│ building client (vite)  +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:10:28 [vite] transforming.… +│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +│ 09:10:28 ▶ src/pages/page-2.a… +1│ 09:10:28 [vite] ✓ 18 modules … +│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +│ 09:10:28 ▶ src/pages/page-2.a… +│ 09:10:28 └─ /page-2/index.h… +2│ 09:10:28 [vite] rendering chu… +│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +│ 09:10:28 ▶ src/pages/page-2.a… +│ 09:10:28 └─ /page-2/index.h… +│ 09:10:28 ✓ Completed in 11ms. +3│ 09:10:28 [vite] computing gzi… +│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +│ 09:10:28 ▶ src/pages/page-2.a… +│ 09:10:28 └─ /page-2/index.h… +│ 09:10:28 ✓ Completed in 11ms. +│ 09:10:28 [build] 2 page(s) bu… +4│ 09:10:28 [vite] dist/_astro/h… +│ 09:10:28 [vite] ✓ built in 99… +│ generating static routes  +│ 09:10:28 ▶ src/pages/page-1.a… +│ 09:10:28 └─ /page-1/index.h… +│ 09:10:28 ▶ src/pages/page-2.a… +│ 09:10:28 └─ /page-2/index.h… +│ 09:10:28 ✓ Completed in 11ms. +│ 09:10:28 [build] 2 page(s) bu… +│ 09:10:28 [build] Complete! +└─ Done in 1.1s + +Running 21 tests using 4 workers + +[1/21] …nteractive on initial load +[2/21] …oads client JS for heading +[3/21] …oads client JS for heading +[4/21] …nteractive on initial load +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9409/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9149/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 14 ms + +┃ Local http://localhost:9966/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9735/ +┃ Network use --host to expose + + +[5/21] …1 › reacts to button click +[6/21] … interactive on navigation +[7/21] … › reacts to button effect +[8/21] …8:1 › respects server data +[9/21] …nstances of button counter +[10/21] … › reacts to button click +[11/21] …interactive on navigation +[12/21] …› reacts to button effect +[13/21] …:1 › respects server data +[14/21] …stances of button counter +[15/21] …ads client JS for heading +[16/21] …teractive on initial load +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9405/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9446/ +┃ Network use --host to expose + + +[17/21] … › reacts to button click +[18/21] …interactive on navigation +[19/21] …› reacts to button effect +[20/21] …:1 › respects server data +[21/21] …stances of button counter + 1) [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + + Error: Timed out 5000ms waiting for expect(locator).toContainText(expected) + + Locator: getByRole('button') + Expected string: "2" + Received string: "1" + Call log: + - expect.toContainText with timeout 5000ms +  - waiting for getByRole('button') +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" +  - locator resolved to  +  - unexpected value "1" + + +   42 | await expect(btn2).toHaveAttribute("data-ready"); +  43 | await btn2.click(); + > 44 | await expect(btn2).toContainText("2"); +  | ^ +  45 | }); +  46 | + +  at /Users/benholmes/Repositories/simple-stack/packages/query/e2e/view-transitions.spec.ts:44:21 + + + 1 failed + [webkit] › view-transitions.spec.ts:30:1 › is interactive on navigation  + 20 passed (11.1s) + + Serving HTML report at http://localhost:9323. Press Ctrl+C to quit. +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 1m 4s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2ee e --ui[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [types] Generated 17… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:11:56 [ERROR] [vite] WebSo… +└─ Running... +│ 09:11:56 [types] Generated 18… +└─ Running... +│ 09:11:56 [build] output: "sta… +└─ Running... +│ 09:11:56 [build] directory: /… +└─ Running... +│ 09:11:56 [build] Collecting b… +└─ Running... +│ 09:11:56 [build] ✓ Completed … +└─ Running... +│ 09:11:56 [build] Building sta… +└─ Running... +│ 09:11:56 [vite] ✓ built in 42… +└─ Running... +│ 09:11:56 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:11:56 [vite] transforming.… +└─ Running... +2│ 09:11:56 [build] output: "sta… +│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +3│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] ✓ built in 46… +└─ Running... +fixtures/basic build$ astro bui… +[3 lines collapsed] +│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +└─ Running... +│ 09:11:56 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[3 lines collapsed] +│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[3 lines collapsed] +│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +└─ Running... +4│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +5│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +6│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +7│ 09:11:56 [vite] ✓ built in 42… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +8│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +[1 lines collapsed] +│ 09:11:56 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[10 lines collapsed] +│ 09:11:56 [vite] transforming.… +│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +└─ Running... +1│ 09:11:56 [vite] ✓ 15 modules … +│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +2│ 09:11:56 [vite] rendering chu… +│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +3│ 09:11:56 [vite] computing gzi… +│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +4│ 09:11:56 [vite] dist/_astro/h… +│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +5│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +6│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +7│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +8│ 09:11:56 [vite] dist/_astro/e… +│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +9│ 09:11:56 [vite] ✓ built in 40… +│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +1│ 09:11:56 ▶ src/pages/button.a… +│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +2│ 09:11:56 └─ /button/index.h… +│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +│ 09:11:56 ▶ src/pages/index.as… +3│ 09:11:56 ▶ src/pages/effect.a… +│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +│ 09:11:56 ▶ src/pages/index.as… +│ 09:11:56 └─ /index.html (+3… +4│ 09:11:56 └─ /effect/index.h… +│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +│ 09:11:56 ▶ src/pages/index.as… +│ 09:11:56 └─ /index.html (+3… +│ 09:11:56 ✓ Completed in 32ms. +5│ 09:11:56 ▶ src/pages/multi-co… +│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +│ 09:11:56 ▶ src/pages/index.as… +│ 09:11:56 └─ /index.html (+3… +│ 09:11:56 ✓ Completed in 32ms. +│ 09:11:56 [build] 6 page(s) bu… +6│ 09:11:56 └─ /multi-counter/… +│ 09:11:56 ▶ src/pages/scope-pr… +│ 09:11:56 └─ /scope-prop/ind… +│ 09:11:56 ▶ src/pages/server-d… +│ 09:11:56 └─ /server-data/in… +│ 09:11:56 ▶ src/pages/index.as… +│ 09:11:56 └─ /index.html (+3… +│ 09:11:56 ✓ Completed in 32ms. +│ 09:11:56 [build] 6 page(s) bu… +│ 09:11:56 [build] Complete! +└─ Done in 1.1s +2│ 09:11:56 [build] output: "sta… +│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +3│ 09:11:56 [build] directory: /… +│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +4│ 09:11:56 [build] Collecting b… +│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +5│ 09:11:56 [build] ✓ Completed … +│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +6│ 09:11:56 [build] Building sta… +│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +7│ 09:11:56 [vite] ✓ built in 46… +│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +8│ 09:11:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:11:56 [vite] transforming.… +│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +│ 09:11:57 ▶ src/pages/page-2.a… +1│ 09:11:57 [vite] ✓ 18 modules … +│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +│ 09:11:57 ▶ src/pages/page-2.a… +│ 09:11:57 └─ /page-2/index.h… +2│ 09:11:57 [vite] rendering chu… +│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +│ 09:11:57 ▶ src/pages/page-2.a… +│ 09:11:57 └─ /page-2/index.h… +│ 09:11:57 ✓ Completed in 9ms. +3│ 09:11:57 [vite] computing gzi… +│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +│ 09:11:57 ▶ src/pages/page-2.a… +│ 09:11:57 └─ /page-2/index.h… +│ 09:11:57 ✓ Completed in 9ms. +│ 09:11:57 [build] 2 page(s) bu… +4│ 09:11:57 [vite] dist/_astro/h… +│ 09:11:57 [vite] ✓ built in 80… +│ generating static routes  +│ 09:11:57 ▶ src/pages/page-1.a… +│ 09:11:57 └─ /page-1/index.h… +│ 09:11:57 ▶ src/pages/page-2.a… +│ 09:11:57 └─ /page-2/index.h… +│ 09:11:57 ✓ Completed in 9ms. +│ 09:11:57 [build] 2 page(s) bu… +│ 09:11:57 [build] Complete! +└─ Done in 1.1s +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 3m 24s  + ﬌ [?1h=[?2004hpnpm e2e --uipnpm e2e[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [ERROR] [vite] WebSo… +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [types] Generated 20… +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:15:38 [types] Generated 21… +└─ Running... +│ 09:15:38 [build] output: "sta… +└─ Running... +│ 09:15:38 [build] directory: /… +└─ Running... +│ 09:15:38 [build] Collecting b… +└─ Running... +│ 09:15:38 [build] ✓ Completed … +└─ Running... +│ 09:15:38 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:15:38 [types] Generated 21… +│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +└─ Running... +│ 09:15:38 [build] Building sta… +└─ Running... +│ 09:15:39 [vite] ✓ built in 44… +└─ Running... +│ 09:15:39 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +│ 09:15:39 [vite] transforming.… +└─ Running... +[1 lines collapsed] +│ 09:15:39 [vite] ✓ 15 modules … +└─ Running... +│ 09:15:39 [vite] ✓ built in 46… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +└─ Running... +│ 09:15:39 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +└─ Running... +2│ 09:15:38 [types] Generated 20… +│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +2│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +3│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +4│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +5│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +6│ 09:15:39 [vite] ✓ built in 44… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +7│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +8│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +9│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +[10 lines collapsed] +│ 09:15:39 [vite] ✓ 15 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +1│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +2│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +3│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +4│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +5│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +6│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +7│ 09:15:39 [vite] dist/_astro/e… +│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +8│ 09:15:39 [vite] ✓ built in 37… +│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +9│ generating static routes  +│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +20│ 09:15:39 ▶ src/pages/button.a… +│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +1│ 09:15:39 └─ /button/index.h… +│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +│ 09:15:39 ▶ src/pages/index.as… +2│ 09:15:39 ▶ src/pages/effect.a… +│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +│ 09:15:39 ▶ src/pages/index.as… +│ 09:15:39 └─ /index.html (+7… +3│ 09:15:39 └─ /effect/index.h… +│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +│ 09:15:39 ▶ src/pages/index.as… +│ 09:15:39 └─ /index.html (+7… +│ 09:15:39 ✓ Completed in 86ms. +4│ 09:15:39 ▶ src/pages/multi-co… +│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +│ 09:15:39 ▶ src/pages/index.as… +│ 09:15:39 └─ /index.html (+7… +│ 09:15:39 ✓ Completed in 86ms. +│ 09:15:39 [build] 6 page(s) bu… +5│ 09:15:39 └─ /multi-counter/… +│ 09:15:39 ▶ src/pages/scope-pr… +│ 09:15:39 └─ /scope-prop/ind… +│ 09:15:39 ▶ src/pages/server-d… +│ 09:15:39 └─ /server-data/in… +│ 09:15:39 ▶ src/pages/index.as… +│ 09:15:39 └─ /index.html (+7… +│ 09:15:39 ✓ Completed in 86ms. +│ 09:15:39 [build] 6 page(s) bu… +│ 09:15:39 [build] Complete! +└─ Done in 1.2s +3│ 09:15:38 [build] output: "sta… +│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +4│ 09:15:38 [build] directory: /… +│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +5│ 09:15:38 [build] Collecting b… +│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +6│ 09:15:38 [build] ✓ Completed … +│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +7│ 09:15:38 [build] Building sta… +│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +8│ 09:15:39 [vite] ✓ built in 46… +│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +9│ 09:15:39 [build] ✓ Completed … +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +[10 lines collapsed] +│ building client (vite)  +│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +1│ 09:15:39 [vite] transforming.… +│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +│ 09:15:39 ▶ src/pages/page-2.a… +2│ 09:15:39 [vite] ✓ 18 modules … +│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +│ 09:15:39 ▶ src/pages/page-2.a… +│ 09:15:39 └─ /page-2/index.h… +3│ 09:15:39 [vite] rendering chu… +│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +│ 09:15:39 ▶ src/pages/page-2.a… +│ 09:15:39 └─ /page-2/index.h… +│ 09:15:39 ✓ Completed in 20ms. +4│ 09:15:39 [vite] computing gzi… +│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +│ 09:15:39 ▶ src/pages/page-2.a… +│ 09:15:39 └─ /page-2/index.h… +│ 09:15:39 ✓ Completed in 20ms. +│ 09:15:39 [build] 2 page(s) bu… +5│ 09:15:39 [vite] dist/_astro/h… +│ 09:15:39 [vite] ✓ built in 17… +│ generating static routes  +│ 09:15:39 ▶ src/pages/page-1.a… +│ 09:15:39 └─ /page-1/index.h… +│ 09:15:39 ▶ src/pages/page-2.a… +│ 09:15:39 └─ /page-2/index.h… +│ 09:15:39 ✓ Completed in 20ms. +│ 09:15:39 [build] 2 page(s) bu… +│ 09:15:39 [build] Complete! +└─ Done in 1.3s +^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 46s  + ﬌ [?1h=[?2004hpnpm e2e --uipnpm e2e[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [types] Generated 17… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +└─ Running... +│ 09:16:25 [types] Generated 18… +└─ Running... +│ 09:16:25 [build] output: "sta… +└─ Running... +│ 09:16:25 [build] directory: /… +└─ Running... +│ 09:16:25 [build] Collecting b… +└─ Running... +│ 09:16:25 [build] ✓ Completed … +└─ Running... +│ 09:16:25 [build] Building sta… +└─ Running... +│ 09:16:26 [vite] ✓ built in 42… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +│ 09:16:25 [types] Generated 18… +│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +└─ Running... +│ 09:16:26 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +│ 09:16:25 [types] Generated 18… +│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +│ 09:16:25 [types] Generated 18… +│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:16:26 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +│ 09:16:25 [ERROR] [vite] WebSo… +│ 09:16:25 [types] Generated 18… +│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +└─ Running... +│ 09:16:26 [vite] ✓ built in 44… +└─ Running... +│ 09:16:26 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:16:26 [vite] transforming.… +└─ Running... +2│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +3│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +4│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +5│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +6│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +7│ 09:16:26 [vite] ✓ built in 42… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +8│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +1│ 09:16:26 [vite] ✓ 15 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +2│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +3│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +4│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +5│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +6│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +7│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +8│ 09:16:26 [vite] dist/_astro/e… +│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +9│ 09:16:26 [vite] ✓ built in 42… +│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +1│ 09:16:26 ▶ src/pages/button.a… +│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +2│ 09:16:26 └─ /button/index.h… +│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +│ 09:16:26 ▶ src/pages/index.as… +3│ 09:16:26 ▶ src/pages/effect.a… +│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +│ 09:16:26 ▶ src/pages/index.as… +│ 09:16:26 └─ /index.html (+2… +4│ 09:16:26 └─ /effect/index.h… +│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +│ 09:16:26 ▶ src/pages/index.as… +│ 09:16:26 └─ /index.html (+2… +│ 09:16:26 ✓ Completed in 28ms. +5│ 09:16:26 ▶ src/pages/multi-co… +│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +│ 09:16:26 ▶ src/pages/index.as… +│ 09:16:26 └─ /index.html (+2… +│ 09:16:26 ✓ Completed in 28ms. +│ 09:16:26 [build] 6 page(s) bu… +6│ 09:16:26 └─ /multi-counter/… +│ 09:16:26 ▶ src/pages/scope-pr… +│ 09:16:26 └─ /scope-prop/ind… +│ 09:16:26 ▶ src/pages/server-d… +│ 09:16:26 └─ /server-data/in… +│ 09:16:26 ▶ src/pages/index.as… +│ 09:16:26 └─ /index.html (+2… +│ 09:16:26 ✓ Completed in 28ms. +│ 09:16:26 [build] 6 page(s) bu… +│ 09:16:26 [build] Complete! +2│ 09:16:25 [build] output: "sta… +│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +└─ Done in 1.1s +3│ 09:16:25 [build] directory: /… +│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +4│ 09:16:25 [build] Collecting b… +│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +5│ 09:16:25 [build] ✓ Completed … +│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +6│ 09:16:25 [build] Building sta… +│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +7│ 09:16:26 [vite] ✓ built in 44… +│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +8│ 09:16:26 [build] ✓ Completed … +│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:16:26 [vite] transforming.… +│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +│ 09:16:26 ▶ src/pages/page-2.a… +1│ 09:16:26 [vite] ✓ 18 modules … +│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +│ 09:16:26 ▶ src/pages/page-2.a… +│ 09:16:26 └─ /page-2/index.h… +2│ 09:16:26 [vite] rendering chu… +│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +│ 09:16:26 ▶ src/pages/page-2.a… +│ 09:16:26 └─ /page-2/index.h… +│ 09:16:26 ✓ Completed in 11ms. +3│ 09:16:26 [vite] computing gzi… +│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +│ 09:16:26 ▶ src/pages/page-2.a… +│ 09:16:26 └─ /page-2/index.h… +│ 09:16:26 ✓ Completed in 11ms. +│ 09:16:26 [build] 2 page(s) bu… +4│ 09:16:26 [vite] dist/_astro/h… +│ 09:16:26 [vite] ✓ built in 83… +│ generating static routes  +│ 09:16:26 ▶ src/pages/page-1.a… +│ 09:16:26 └─ /page-1/index.h… +│ 09:16:26 ▶ src/pages/page-2.a… +│ 09:16:26 └─ /page-2/index.h… +│ 09:16:26 ✓ Completed in 11ms. +│ 09:16:26 [build] 2 page(s) bu… +│ 09:16:26 [build] Complete! +└─ Done in 1.2s +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 56s  + ﬌ [?1h=[?2004hpnpm e2e --uipnpm e2e[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [types] Generated 18… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:17:50 [ERROR] [vite] WebSo… +└─ Running... +│ 09:17:50 [types] Generated 19… +└─ Running... +│ 09:17:50 [build] output: "sta… +└─ Running... +│ 09:17:50 [build] directory: /… +└─ Running... +│ 09:17:50 [build] Collecting b… +└─ Running... +│ 09:17:50 [build] ✓ Completed … +└─ Running... +│ 09:17:50 [build] Building sta… +└─ Running... +│ 09:17:50 [vite] ✓ built in 42… +└─ Running... +│ 09:17:50 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:17:50 [vite] transforming.… +└─ Running... +│ 09:17:50 [vite] ✓ built in 44… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:17:50 [types] Generated 19… +│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +└─ Running... +│ 09:17:50 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:17:50 [types] Generated 19… +│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:17:50 [types] Generated 19… +│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +└─ Running... +[1 lines collapsed] +│ 09:17:50 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:17:50 [types] Generated 19… +│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +└─ Running... +2│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +3│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +4│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +5│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +6│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +7│ 09:17:50 [vite] ✓ built in 42… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +8│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +1│ 09:17:50 [vite] ✓ 15 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +2│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +3│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +4│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +5│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +6│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +7│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +8│ 09:17:50 [vite] dist/_astro/e… +│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +2│ 09:17:50 [build] output: "sta… +│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +9│ 09:17:50 [vite] ✓ built in 48… +│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +1│ 09:17:50 ▶ src/pages/button.a… +│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +2│ 09:17:50 └─ /button/index.h… +│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +│ 09:17:50 ▶ src/pages/index.as… +3│ 09:17:50 ▶ src/pages/effect.a… +│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +│ 09:17:50 ▶ src/pages/index.as… +│ 09:17:50 └─ /index.html (+1… +4│ 09:17:50 └─ /effect/index.h… +│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +│ 09:17:50 ▶ src/pages/index.as… +│ 09:17:50 └─ /index.html (+1… +│ 09:17:50 ✓ Completed in 42ms. +5│ 09:17:50 ▶ src/pages/multi-co… +│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +│ 09:17:50 ▶ src/pages/index.as… +│ 09:17:50 └─ /index.html (+1… +│ 09:17:50 ✓ Completed in 42ms. +│ 09:17:50 [build] 6 page(s) bu… +6│ 09:17:50 └─ /multi-counter/… +│ 09:17:50 ▶ src/pages/scope-pr… +│ 09:17:50 └─ /scope-prop/ind… +│ 09:17:50 ▶ src/pages/server-d… +│ 09:17:50 └─ /server-data/in… +│ 09:17:50 ▶ src/pages/index.as… +│ 09:17:50 └─ /index.html (+1… +│ 09:17:50 ✓ Completed in 42ms. +│ 09:17:50 [build] 6 page(s) bu… +│ 09:17:50 [build] Complete! +3│ 09:17:50 [build] directory: /… +│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +4│ 09:17:50 [build] Collecting b… +│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +5│ 09:17:50 [build] ✓ Completed … +│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +6│ 09:17:50 [build] Building sta… +│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +└─ Done in 1.1s +7│ 09:17:50 [vite] ✓ built in 44… +│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +8│ 09:17:50 [build] ✓ Completed … +│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:17:50 [vite] transforming.… +│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +│ 09:17:50 ▶ src/pages/page-2.a… +1│ 09:17:50 [vite] ✓ 18 modules … +│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +│ 09:17:50 ▶ src/pages/page-2.a… +│ 09:17:50 └─ /page-2/index.h… +2│ 09:17:50 [vite] rendering chu… +│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +│ 09:17:50 ▶ src/pages/page-2.a… +│ 09:17:50 └─ /page-2/index.h… +│ 09:17:50 ✓ Completed in 10ms. +3│ 09:17:50 [vite] computing gzi… +│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +│ 09:17:50 ▶ src/pages/page-2.a… +│ 09:17:50 └─ /page-2/index.h… +│ 09:17:50 ✓ Completed in 10ms. +│ 09:17:50 [build] 2 page(s) bu… +4│ 09:17:50 [vite] dist/_astro/h… +│ 09:17:50 [vite] ✓ built in 89… +│ generating static routes  +│ 09:17:50 ▶ src/pages/page-1.a… +│ 09:17:50 └─ /page-1/index.h… +│ 09:17:50 ▶ src/pages/page-2.a… +│ 09:17:50 └─ /page-2/index.h… +│ 09:17:50 ✓ Completed in 10ms. +│ 09:17:50 [build] 2 page(s) bu… +│ 09:17:50 [build] Complete! +└─ Done in 1.1s +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 16s  + ﬌ [?1h=[?2004hpnpm e2e --uipnpm e2e[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:18:23 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +└─ Running... +│ 09:18:23 [types] Generated 17… +└─ Running... +│ 09:18:23 [build] output: "sta… +└─ Running... +│ 09:18:23 [build] directory: /… +└─ Running... +│ 09:18:23 [build] Collecting b… +└─ Running... +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [types] Generated 18… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ 09:18:23 [build] Building sta… +└─ Running... +│ 09:18:23 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +└─ Running... +│ 09:18:23 [vite] ✓ built in 47… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +└─ Running... +│ 09:18:23 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:18:23 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:18:23 [types] Generated 17… +│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +└─ Running... +│ 09:18:23 [vite] ✓ built in 48… +└─ Running... +│ 09:18:23 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:18:23 [vite] transforming.… +└─ Running... +2│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +3│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +4│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +5│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +6│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +7│ 09:18:23 [vite] ✓ built in 47… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +8│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +1│ 09:18:23 [vite] ✓ 15 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +2│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +3│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +4│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +5│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +6│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +7│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +2│ 09:18:23 [build] output: "sta… +│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +8│ 09:18:23 [vite] dist/_astro/e… +│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +9│ 09:18:23 [vite] ✓ built in 54… +│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +1│ 09:18:23 ▶ src/pages/button.a… +│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +2│ 09:18:23 └─ /button/index.h… +│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +│ 09:18:23 ▶ src/pages/index.as… +3│ 09:18:23 ▶ src/pages/effect.a… +│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +│ 09:18:23 ▶ src/pages/index.as… +│ 09:18:23 └─ /index.html (+3… +4│ 09:18:23 └─ /effect/index.h… +│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +│ 09:18:23 ▶ src/pages/index.as… +│ 09:18:23 └─ /index.html (+3… +│ 09:18:23 ✓ Completed in 64ms. +5│ 09:18:23 ▶ src/pages/multi-co… +│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +│ 09:18:23 ▶ src/pages/index.as… +│ 09:18:23 └─ /index.html (+3… +│ 09:18:23 ✓ Completed in 64ms. +│ 09:18:23 [build] 6 page(s) bu… +6│ 09:18:23 └─ /multi-counter/… +│ 09:18:23 ▶ src/pages/scope-pr… +│ 09:18:23 └─ /scope-prop/ind… +│ 09:18:23 ▶ src/pages/server-d… +│ 09:18:23 └─ /server-data/in… +│ 09:18:23 ▶ src/pages/index.as… +│ 09:18:23 └─ /index.html (+3… +│ 09:18:23 ✓ Completed in 64ms. +│ 09:18:23 [build] 6 page(s) bu… +│ 09:18:23 [build] Complete! +3│ 09:18:23 [build] directory: /… +│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +4│ 09:18:23 [build] Collecting b… +│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +5│ 09:18:23 [build] ✓ Completed … +│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +6│ 09:18:23 [build] Building sta… +│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +└─ Done in 1.2s +7│ 09:18:23 [vite] ✓ built in 48… +│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +8│ 09:18:23 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:18:23 [vite] transforming.… +│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +│ 09:18:23 ▶ src/pages/page-2.a… +1│ 09:18:23 [vite] ✓ 18 modules … +│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +│ 09:18:23 ▶ src/pages/page-2.a… +│ 09:18:23 └─ /page-2/index.h… +2│ 09:18:23 [vite] rendering chu… +│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +│ 09:18:23 ▶ src/pages/page-2.a… +│ 09:18:23 └─ /page-2/index.h… +│ 09:18:23 ✓ Completed in 14ms. +3│ 09:18:23 [vite] computing gzi… +│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +│ 09:18:23 ▶ src/pages/page-2.a… +│ 09:18:23 └─ /page-2/index.h… +│ 09:18:23 ✓ Completed in 14ms. +│ 09:18:23 [build] 2 page(s) bu… +4│ 09:18:23 [vite] dist/_astro/h… +│ 09:18:23 [vite] ✓ built in 12… +│ generating static routes  +│ 09:18:23 ▶ src/pages/page-1.a… +│ 09:18:23 └─ /page-1/index.h… +│ 09:18:23 ▶ src/pages/page-2.a… +│ 09:18:23 └─ /page-2/index.h… +│ 09:18:23 ✓ Completed in 14ms. +│ 09:18:23 [build] 2 page(s) bu… +│ 09:18:23 [build] Complete! +└─ Done in 1.2s +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 12s  + ﬌ [?1h=[?2004hpnpm e2e --uipnpm e2e[?1l>[?2004l +]2;pnpm e2e --ui]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test "--ui" + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:18:53 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ 09:18:53 [types] Generated 16… +└─ Running... +│ 09:18:53 [build] output: "sta… +└─ Running... +│ 09:18:53 [build] directory: /… +└─ Running... +│ 09:18:53 [build] Collecting b… +└─ Running... +│ 09:18:53 [build] ✓ Completed … +└─ Running... +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [types] Generated 17… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +└─ Running... +│ 09:18:53 [vite] ✓ built in 44… +└─ Running... +│ 09:18:53 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +│ 09:18:53 [vite] transforming.… +└─ Running... +│ 09:18:53 [vite] ✓ built in 44… +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +└─ Running... +│ 09:18:53 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ 09:18:53 [types] Generated 16… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +└─ Running... +2│ 09:18:53 [types] Generated 17… +│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +3│ 09:18:53 [build] output: "sta… +│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +4│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +5│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +6│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +7│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +8│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +9│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +[10 lines collapsed] +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +1│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +[1 lines collapsed] +│ 09:18:53 [vite] ✓ 18 modules … +└─ Running... +2│ 09:18:53 [vite] ✓ 15 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +3│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +4│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +2│ 09:18:53 [build] directory: /… +│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +5│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +3│ 09:18:53 [build] Collecting b… +│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +6│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +4│ 09:18:53 [build] ✓ Completed … +│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +5│ 09:18:53 [build] Building sta… +│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +7│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +8│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +9│ 09:18:53 [vite] dist/_astro/e… +│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +6│ 09:18:53 [vite] ✓ built in 44… +│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +20│ 09:18:53 [vite] ✓ built in 48… +│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +1│ generating static routes  +│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +2│ 09:18:53 ▶ src/pages/button.a… +│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +7│ 09:18:53 [build] ✓ Completed … +│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +3│ 09:18:53 └─ /button/index.h… +│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +│ 09:18:53 ▶ src/pages/index.as… +4│ 09:18:53 ▶ src/pages/effect.a… +│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +│ 09:18:53 ▶ src/pages/index.as… +│ 09:18:53 └─ /index.html (+1… +5│ 09:18:53 └─ /effect/index.h… +│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +│ 09:18:53 ▶ src/pages/index.as… +│ 09:18:53 └─ /index.html (+1… +│ 09:18:53 ✓ Completed in 29ms. +8│ building client (vite)  +│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +6│ 09:18:53 ▶ src/pages/multi-co… +│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +│ 09:18:53 ▶ src/pages/index.as… +│ 09:18:53 └─ /index.html (+1… +│ 09:18:53 ✓ Completed in 29ms. +│ 09:18:53 [build] 6 page(s) bu… +7│ 09:18:53 └─ /multi-counter/… +│ 09:18:53 ▶ src/pages/scope-pr… +│ 09:18:53 └─ /scope-prop/ind… +│ 09:18:53 ▶ src/pages/server-d… +│ 09:18:53 └─ /server-data/in… +│ 09:18:53 ▶ src/pages/index.as… +│ 09:18:53 └─ /index.html (+1… +│ 09:18:53 ✓ Completed in 29ms. +│ 09:18:53 [build] 6 page(s) bu… +│ 09:18:53 [build] Complete! +9│ 09:18:53 [vite] transforming.… +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +│ 09:18:53 ▶ src/pages/page-2.a… +[10 lines collapsed] +│ 09:18:53 [vite] ✓ 18 modules … +│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +│ 09:18:53 ▶ src/pages/page-2.a… +│ 09:18:53 └─ /page-2/index.h… +1│ 09:18:53 [vite] rendering chu… +│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +│ 09:18:53 ▶ src/pages/page-2.a… +│ 09:18:53 └─ /page-2/index.h… +│ 09:18:53 ✓ Completed in 11ms. +2│ 09:18:53 [vite] computing gzi… +│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +│ 09:18:53 ▶ src/pages/page-2.a… +│ 09:18:53 └─ /page-2/index.h… +│ 09:18:53 ✓ Completed in 11ms. +│ 09:18:53 [build] 2 page(s) bu… +3│ 09:18:53 [vite] dist/_astro/h… +│ 09:18:53 [vite] ✓ built in 83… +│ generating static routes  +│ 09:18:53 ▶ src/pages/page-1.a… +│ 09:18:53 └─ /page-1/index.h… +│ 09:18:53 ▶ src/pages/page-2.a… +│ 09:18:53 └─ /page-2/index.h… +│ 09:18:53 ✓ Completed in 11ms. +│ 09:18:53 [build] 2 page(s) bu… +│ 09:18:53 [build] Complete! +└─ Done in 1.1s +└─ Done in 1.1s +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 13s  + ﬌ [?1h=[?2004hpppnpm e2e --uipnpnpnppmpnpmm m eee22e     [?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:19:20 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +└─ Running... +│ 09:19:20 [types] Generated 18… +└─ Running... +│ 09:19:20 [build] output: "sta… +└─ Running... +│ 09:19:20 [build] directory: /… +└─ Running... +│ 09:19:20 [build] Collecting b… +└─ Running... +│ 09:19:20 [build] ✓ Completed … +└─ Running... +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [types] Generated 19… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +└─ Running... +│ 09:19:20 [vite] ✓ built in 43… +└─ Running... +│ 09:19:20 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:19:20 [vite] transforming.… +└─ Running... +│ 09:19:20 [vite] ✓ built in 44… +└─ Running... +fixtures/view-transitions build$ +[1 lines collapsed] +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +└─ Running... +│ 09:19:20 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +[1 lines collapsed] +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +[1 lines collapsed] +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +└─ Running... +[1 lines collapsed] +│ 09:19:20 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +[1 lines collapsed] +│ 09:19:20 [types] Generated 18… +│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +└─ Running... +2│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +3│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +2│ 09:19:20 [build] output: "sta… +│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +4│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +5│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +6│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +7│ 09:19:20 [vite] ✓ built in 44… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +8│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +1│ 09:19:20 [vite] ✓ 15 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +2│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +3│ 09:19:20 [build] directory: /… +│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +3│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +4│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +4│ 09:19:20 [build] Collecting b… +│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +5│ 09:19:20 [build] ✓ Completed … +│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +6│ 09:19:20 [build] Building sta… +│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +5│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +6│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +7│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +8│ 09:19:20 [vite] dist/_astro/e… +│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +9│ 09:19:20 [vite] ✓ built in 56… +│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +7│ 09:19:20 [vite] ✓ built in 43… +│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +1│ 09:19:20 ▶ src/pages/button.a… +│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +2│ 09:19:20 └─ /button/index.h… +│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +│ 09:19:20 ▶ src/pages/index.as… +3│ 09:19:20 ▶ src/pages/effect.a… +│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +│ 09:19:20 ▶ src/pages/index.as… +│ 09:19:20 └─ /index.html (+1… +4│ 09:19:20 └─ /effect/index.h… +│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +│ 09:19:20 ▶ src/pages/index.as… +│ 09:19:20 └─ /index.html (+1… +│ 09:19:20 ✓ Completed in 21ms. +8│ 09:19:20 [build] ✓ Completed … +│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +5│ 09:19:20 ▶ src/pages/multi-co… +│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +│ 09:19:20 ▶ src/pages/index.as… +│ 09:19:20 └─ /index.html (+1… +│ 09:19:20 ✓ Completed in 21ms. +│ 09:19:20 [build] 6 page(s) bu… +6│ 09:19:20 └─ /multi-counter/… +│ 09:19:20 ▶ src/pages/scope-pr… +│ 09:19:20 └─ /scope-prop/ind… +│ 09:19:20 ▶ src/pages/server-d… +│ 09:19:20 └─ /server-data/in… +│ 09:19:20 ▶ src/pages/index.as… +│ 09:19:20 └─ /index.html (+1… +│ 09:19:20 ✓ Completed in 21ms. +│ 09:19:20 [build] 6 page(s) bu… +│ 09:19:20 [build] Complete! +9│ building client (vite)  +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:19:20 [vite] transforming.… +│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +│ 09:19:20 ▶ src/pages/page-2.a… +1│ 09:19:20 [vite] ✓ 18 modules … +│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +│ 09:19:20 ▶ src/pages/page-2.a… +│ 09:19:20 └─ /page-2/index.h… +2│ 09:19:20 [vite] rendering chu… +│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +│ 09:19:20 ▶ src/pages/page-2.a… +│ 09:19:20 └─ /page-2/index.h… +│ 09:19:20 ✓ Completed in 12ms. +└─ Done in 1.1s +3│ 09:19:20 [vite] computing gzi… +│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +│ 09:19:20 ▶ src/pages/page-2.a… +│ 09:19:20 └─ /page-2/index.h… +│ 09:19:20 ✓ Completed in 12ms. +│ 09:19:20 [build] 2 page(s) bu… +4│ 09:19:20 [vite] dist/_astro/h… +│ 09:19:20 [vite] ✓ built in 88… +│ generating static routes  +│ 09:19:20 ▶ src/pages/page-1.a… +│ 09:19:20 └─ /page-1/index.h… +│ 09:19:20 ▶ src/pages/page-2.a… +│ 09:19:20 └─ /page-2/index.h… +│ 09:19:20 ✓ Completed in 12ms. +│ 09:19:20 [build] 2 page(s) bu… +│ 09:19:20 [build] Complete! +└─ Done in 1.1s + +Running 21 tests using 4 workers + +[1/21] …nteractive on initial load +[2/21] …oads client JS for heading +[3/21] …nteractive on initial load +[4/21] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9722/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9638/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 10 ms + +┃ Local http://localhost:9748/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9530/ +┃ Network use --host to expose + + +[5/21] …1 › reacts to button click +[6/21] … interactive on navigation +[7/21] … › reacts to button effect +[8/21] …8:1 › respects server data +[9/21] …nstances of button counter +[10/21] … › reacts to button click +[11/21] …interactive on navigation +[12/21] …teractive on initial load +[13/21] …› reacts to button effect +[14/21] …ads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 12 ms + +┃ Local http://localhost:9204/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9640/ +┃ Network use --host to expose + + +[15/21] …:1 › respects server data +[16/21] …stances of button counter +[17/21] … › reacts to button click +[18/21] …interactive on navigation +[19/21] …› reacts to button effect +[20/21] …:1 › respects server data +[21/21] …stances of button counter + 21 passed (6.2s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 8s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:20:55 [ERROR] [vite] WebSo… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +└─ Running... +│ 09:20:55 [types] Generated 17… +└─ Running... +│ 09:20:55 [build] output: "sta… +└─ Running... +│ 09:20:55 [build] directory: /… +└─ Running... +│ 09:20:55 [build] Collecting b… +└─ Running... +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [types] Generated 15… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ 09:20:55 [build] Building sta… +└─ Running... +│ 09:20:55 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:20:55 [types] Generated 17… +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +└─ Running... +│ 09:20:55 [vite] ✓ built in 46… +└─ Running... +│ 09:20:55 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:20:55 [vite] transforming.… +└─ Running... +2│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] ✓ built in 48… +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +└─ Running... +│ 09:20:56 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +└─ Running... +[1 lines collapsed] +│ 09:20:56 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +└─ Running... +3│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +4│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +5│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +6│ 09:20:55 [build] Building sta… +│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +7│ 09:20:55 [vite] ✓ built in 46… +│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +8│ 09:20:55 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:20:55 [vite] transforming.… +│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +1│ 09:20:56 [vite] ✓ 15 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +2│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +3│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +4│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +5│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +6│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +7│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +8│ 09:20:56 [vite] dist/_astro/e… +│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +9│ 09:20:56 [vite] ✓ built in 42… +│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +1│ 09:20:56 ▶ src/pages/button.a… +│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +2│ 09:20:56 └─ /button/index.h… +│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +│ 09:20:56 ▶ src/pages/index.as… +3│ 09:20:56 ▶ src/pages/effect.a… +│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +│ 09:20:56 ▶ src/pages/index.as… +│ 09:20:56 └─ /index.html (+2… +4│ 09:20:56 └─ /effect/index.h… +│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +│ 09:20:56 ▶ src/pages/index.as… +│ 09:20:56 └─ /index.html (+2… +│ 09:20:56 ✓ Completed in 40ms. +2│ 09:20:55 [build] output: "sta… +│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +5│ 09:20:56 ▶ src/pages/multi-co… +│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +│ 09:20:56 ▶ src/pages/index.as… +│ 09:20:56 └─ /index.html (+2… +│ 09:20:56 ✓ Completed in 40ms. +│ 09:20:56 [build] 6 page(s) bu… +6│ 09:20:56 └─ /multi-counter/… +│ 09:20:56 ▶ src/pages/scope-pr… +│ 09:20:56 └─ /scope-prop/ind… +│ 09:20:56 ▶ src/pages/server-d… +│ 09:20:56 └─ /server-data/in… +│ 09:20:56 ▶ src/pages/index.as… +│ 09:20:56 └─ /index.html (+2… +│ 09:20:56 ✓ Completed in 40ms. +│ 09:20:56 [build] 6 page(s) bu… +│ 09:20:56 [build] Complete! +3│ 09:20:55 [build] directory: /… +│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +4│ 09:20:55 [build] Collecting b… +│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +└─ Done in 1.2s +5│ 09:20:55 [build] ✓ Completed … +│ 09:20:55 [build] Building sta… +│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +6│ 09:20:55 [build] Building sta… +│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +7│ 09:20:56 [vite] ✓ built in 48… +│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +8│ 09:20:56 [build] ✓ Completed … +│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:20:56 [vite] transforming.… +│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +│ 09:20:56 ▶ src/pages/page-2.a… +1│ 09:20:56 [vite] ✓ 18 modules … +│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +│ 09:20:56 ▶ src/pages/page-2.a… +│ 09:20:56 └─ /page-2/index.h… +2│ 09:20:56 [vite] rendering chu… +│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +│ 09:20:56 ▶ src/pages/page-2.a… +│ 09:20:56 └─ /page-2/index.h… +│ 09:20:56 ✓ Completed in 12ms. +3│ 09:20:56 [vite] computing gzi… +│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +│ 09:20:56 ▶ src/pages/page-2.a… +│ 09:20:56 └─ /page-2/index.h… +│ 09:20:56 ✓ Completed in 12ms. +│ 09:20:56 [build] 2 page(s) bu… +4│ 09:20:56 [vite] dist/_astro/h… +│ 09:20:56 [vite] ✓ built in 89… +│ generating static routes  +│ 09:20:56 ▶ src/pages/page-1.a… +│ 09:20:56 └─ /page-1/index.h… +│ 09:20:56 ▶ src/pages/page-2.a… +│ 09:20:56 └─ /page-2/index.h… +│ 09:20:56 ✓ Completed in 12ms. +│ 09:20:56 [build] 2 page(s) bu… +│ 09:20:56 [build] Complete! +└─ Done in 1.2s + +Running 24 tests using 4 workers + +[1/24] …nteractive on initial load +[2/24] …nteractive on initial load +[3/24] …oads client JS for heading +[4/24] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9497/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9262/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 10 ms + +┃ Local http://localhost:9817/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9608/ +┃ Network use --host to expose + + +[5/24] …1 › reacts to button click +[6/24] … interactive on navigation +[7/24] … › reacts to button effect +[8/24] …8:1 › respects server data +[9/24] …nstances of button counter +[10/24] …ing back to previous page +[11/24] … › reacts to button click +[12/24] …interactive on navigation +[13/24] …› reacts to button effect +[14/24] …:1 › respects server data +[15/24] …ing back to previous page +[16/24] …stances of button counter +[17/24] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9917/ +┃ Network use --host to expose + + +[18/24] …teractive on initial load +[19/24] … › reacts to button click +… › is interactive on initial load + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9298/ +┃ Network use --host to expose + + +[20/24] …› reacts to button effect +[21/24] …:1 › respects server data +[22/24] …interactive on navigation +[23/24] …stances of button counter +[24/24] …ing back to previous page + 24 passed (7.7s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 10s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [types] Generated 16… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ WebSocket server error: Port … +│ 09:21:10 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:10 [types] Generated 18… +└─ Running... +│ 09:21:10 [build] output: "sta… +└─ Running... +│ 09:21:10 [build] directory: /… +└─ Running... +│ 09:21:10 [build] Collecting b… +└─ Running... +│ 09:21:10 [build] ✓ Completed … +└─ Running... +│ 09:21:10 [build] Building sta… +└─ Running... +│ 09:21:11 [vite] ✓ built in 45… +└─ Running... +│ 09:21:11 [build] ✓ Completed … +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +2│ 09:21:10 [types] Generated 18… +│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ built in 47… +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:21:10 [types] Generated 18… +│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +└─ Running... +│ 09:21:11 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:21:10 [types] Generated 18… +│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:21:10 [types] Generated 18… +│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +└─ Running... +│ 09:21:11 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:21:10 [types] Generated 18… +│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +└─ Running... +3│ 09:21:10 [build] output: "sta… +│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +4│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +5│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +6│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +7│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +8│ 09:21:11 [vite] ✓ built in 45… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +9│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +[10 lines collapsed] +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +1│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +2│ 09:21:11 [vite] ✓ 15 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +3│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +4│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +5│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +6│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +7│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +8│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +9│ 09:21:11 [vite] dist/_astro/e… +│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +20│ 09:21:11 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +1│ generating static routes  +│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +2│ 09:21:11 ▶ src/pages/button.a… +│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +3│ 09:21:11 └─ /button/index.h… +│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +4│ 09:21:11 ▶ src/pages/effect.a… +│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +│ 09:21:11 └─ /index.html (+1… +5│ 09:21:11 └─ /effect/index.h… +│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +│ 09:21:11 └─ /index.html (+1… +│ 09:21:11 ✓ Completed in 24ms. +6│ 09:21:11 ▶ src/pages/multi-co… +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +│ 09:21:11 └─ /index.html (+1… +│ 09:21:11 ✓ Completed in 24ms. +│ 09:21:11 [build] 6 page(s) bu… +7│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +│ 09:21:11 └─ /index.html (+1… +│ 09:21:11 ✓ Completed in 24ms. +│ 09:21:11 [build] 6 page(s) bu… +│ 09:21:11 [build] Complete! +└─ Done in 1.1s +[1 lines collapsed] +│ 09:21:11 [vite] ✓ 18 modules … +└─ Running... +fixtures/basic build$ astro bui… +[27 lines collapsed] +│ 09:21:11 └─ /multi-counter/… +│ 09:21:11 ▶ src/pages/scope-pr… +│ 09:21:11 └─ /scope-prop/ind… +│ 09:21:11 ▶ src/pages/server-d… +│ 09:21:11 └─ /server-data/in… +│ 09:21:11 ▶ src/pages/index.as… +│ 09:21:11 └─ /index.html (+1… +│ 09:21:11 ✓ Completed in 24ms. +│ 09:21:11 [build] 6 page(s) bu… +│ 09:21:11 [build] Complete! +└─ Done in 1.1s +2│ 09:21:10 [build] directory: /… +│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 47… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +3│ 09:21:10 [build] Collecting b… +│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 47… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +4│ 09:21:10 [build] ✓ Completed … +│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 47… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +5│ 09:21:10 [build] Building sta… +│ 09:21:11 [vite] ✓ built in 47… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +6│ 09:21:11 [vite] ✓ built in 47… +│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +7│ 09:21:11 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +8│ building client (vite)  +│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +9│ 09:21:11 [vite] transforming.… +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +│ 09:21:11 ▶ src/pages/page-2.a… +[10 lines collapsed] +│ 09:21:11 [vite] ✓ 18 modules … +│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +│ 09:21:11 ▶ src/pages/page-2.a… +│ 09:21:11 └─ /page-2/index.h… +1│ 09:21:11 [vite] rendering chu… +│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +│ 09:21:11 ▶ src/pages/page-2.a… +│ 09:21:11 └─ /page-2/index.h… +│ 09:21:11 ✓ Completed in 10ms. +2│ 09:21:11 [vite] computing gzi… +│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +│ 09:21:11 ▶ src/pages/page-2.a… +│ 09:21:11 └─ /page-2/index.h… +│ 09:21:11 ✓ Completed in 10ms. +│ 09:21:11 [build] 2 page(s) bu… +3│ 09:21:11 [vite] dist/_astro/h… +│ 09:21:11 [vite] ✓ built in 79… +│ generating static routes  +│ 09:21:11 ▶ src/pages/page-1.a… +│ 09:21:11 └─ /page-1/index.h… +│ 09:21:11 ▶ src/pages/page-2.a… +│ 09:21:11 └─ /page-2/index.h… +│ 09:21:11 ✓ Completed in 10ms. +│ 09:21:11 [build] 2 page(s) bu… +│ 09:21:11 [build] Complete! +└─ Done in 1.2s + +Running 24 tests using 4 workers + +[1/24] …nteractive on initial load +[2/24] …nteractive on initial load +[3/24] …oads client JS for heading +[4/24] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9393/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9305/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9379/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9520/ +┃ Network use --host to expose + + +[5/24] …1 › reacts to button click +[6/24] … interactive on navigation +[7/24] … › reacts to button effect +[8/24] …8:1 › respects server data +[9/24] …nstances of button counter +[10/24] …ing back to previous page +[11/24] … › reacts to button click +[12/24] …interactive on navigation +[13/24] …› reacts to button effect +[14/24] …ads client JS for heading +[15/24] …:1 › respects server data +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9648/ +┃ Network use --host to expose + + +[16/24] …ing back to previous page +[17/24] …stances of button counter +[18/24] … › reacts to button click +[19/24] …teractive on initial load +… › is interactive on initial load + + astro  v4.12.2 ready in 5 ms + +┃ Local http://localhost:9334/ +┃ Network use --host to expose + + +[20/24] …› reacts to button effect +[21/24] …:1 › respects server data +[22/24] …stances of button counter +[23/24] …interactive on navigation +[24/24] …ing back to previous page +√^C% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 31s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/view-transitions build$ +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ WebSocket server error: Port … +└─ Running... +fixtures/basic build$ astro bui… +└─ Running... +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [types] Generated 17… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [build] output: "sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [build] directory: /… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [build] Collecting b… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [build] Building sta… +└─ Running... +fixtures/basic build$ astro bui… +│ 09:21:43 [ERROR] [vite] WebSo… +└─ Running... +│ 09:21:43 [types] Generated 16… +└─ Running... +│ 09:21:43 [build] output: "sta… +└─ Running... +│ 09:21:43 [build] directory: /… +└─ Running... +│ 09:21:43 [build] Collecting b… +└─ Running... +│ 09:21:43 [build] ✓ Completed … +└─ Running... +│ 09:21:43 [build] Building sta… +└─ Running... +│ 09:21:44 [vite] ✓ built in 45… +└─ Running... +│ 09:21:44 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:21:44 [vite] transforming.… +└─ Running... +│ 09:21:44 [vite] ✓ built in 48… +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:21:43 [types] Generated 16… +│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +└─ Running... +│ 09:21:44 [build] ✓ Completed … +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:21:43 [types] Generated 16… +│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/basic build$ astro bui… +[1 lines collapsed] +│ 09:21:43 [types] Generated 16… +│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +└─ Running... +2│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +[1 lines collapsed] +│ 09:21:44 [vite] transforming.… +└─ Running... +fixtures/basic build$ astro bui… +[2 lines collapsed] +│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +└─ Running... +3│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +4│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +5│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +6│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +7│ 09:21:44 [vite] ✓ built in 45… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +8│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +1│ 09:21:44 [vite] ✓ 15 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +2│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +3│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +4│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +5│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +6│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +7│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +8│ 09:21:44 [vite] dist/_astro/e… +│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +9│ 09:21:44 [vite] ✓ built in 40… +│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +1│ 09:21:44 ▶ src/pages/button.a… +│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +2│ 09:21:44 └─ /button/index.h… +│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +│ 09:21:44 ▶ src/pages/index.as… +3│ 09:21:44 ▶ src/pages/effect.a… +│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +│ 09:21:44 ▶ src/pages/index.as… +│ 09:21:44 └─ /index.html (+1… +4│ 09:21:44 └─ /effect/index.h… +│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +│ 09:21:44 ▶ src/pages/index.as… +│ 09:21:44 └─ /index.html (+1… +│ 09:21:44 ✓ Completed in 30ms. +5│ 09:21:44 ▶ src/pages/multi-co… +│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +│ 09:21:44 ▶ src/pages/index.as… +│ 09:21:44 └─ /index.html (+1… +│ 09:21:44 ✓ Completed in 30ms. +│ 09:21:44 [build] 6 page(s) bu… +6│ 09:21:44 └─ /multi-counter/… +│ 09:21:44 ▶ src/pages/scope-pr… +│ 09:21:44 └─ /scope-prop/ind… +│ 09:21:44 ▶ src/pages/server-d… +│ 09:21:44 └─ /server-data/in… +│ 09:21:44 ▶ src/pages/index.as… +│ 09:21:44 └─ /index.html (+1… +│ 09:21:44 ✓ Completed in 30ms. +│ 09:21:44 [build] 6 page(s) bu… +│ 09:21:44 [build] Complete! +└─ Done in 1.1s +2│ 09:21:43 [build] output: "sta… +│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +3│ 09:21:43 [build] directory: /… +│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +4│ 09:21:43 [build] Collecting b… +│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +5│ 09:21:43 [build] ✓ Completed … +│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +6│ 09:21:43 [build] Building sta… +│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +7│ 09:21:44 [vite] ✓ built in 48… +│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +8│ 09:21:44 [build] ✓ Completed … +│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:21:44 [vite] transforming.… +│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +│ 09:21:44 ▶ src/pages/page-2.a… +1│ 09:21:44 [vite] ✓ 18 modules … +│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +│ 09:21:44 ▶ src/pages/page-2.a… +│ 09:21:44 └─ /page-2/index.h… +2│ 09:21:44 [vite] rendering chu… +│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +│ 09:21:44 ▶ src/pages/page-2.a… +│ 09:21:44 └─ /page-2/index.h… +│ 09:21:44 ✓ Completed in 56ms. +3│ 09:21:44 [vite] computing gzi… +│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +│ 09:21:44 ▶ src/pages/page-2.a… +│ 09:21:44 └─ /page-2/index.h… +│ 09:21:44 ✓ Completed in 56ms. +│ 09:21:44 [build] 2 page(s) bu… +4│ 09:21:44 [vite] dist/_astro/h… +│ 09:21:44 [vite] ✓ built in 82… +│ generating static routes  +│ 09:21:44 ▶ src/pages/page-1.a… +│ 09:21:44 └─ /page-1/index.h… +│ 09:21:44 ▶ src/pages/page-2.a… +│ 09:21:44 └─ /page-2/index.h… +│ 09:21:44 ✓ Completed in 56ms. +│ 09:21:44 [build] 2 page(s) bu… +│ 09:21:44 [build] Complete! +└─ Done in 1.2s + +Running 24 tests using 4 workers + +[1/24] …nteractive on initial load +[2/24] …nteractive on initial load +[3/24] …oads client JS for heading +[4/24] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9156/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 11 ms + +┃ Local http://localhost:9569/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9302/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 10 ms + +┃ Local http://localhost:9631/ +┃ Network use --host to expose + + +[5/24] …1 › reacts to button click +[6/24] … interactive on navigation +[7/24] … › reacts to button effect +[8/24] …8:1 › respects server data +[9/24] …nstances of button counter +[10/24] …ing back to previous page +[11/24] … › reacts to button click +[12/24] …interactive on navigation +[13/24] …› reacts to button effect +[14/24] …:1 › respects server data +[15/24] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9144/ +┃ Network use --host to expose + + +[16/24] …ing back to previous page +[17/24] …stances of button counter +[18/24] … › reacts to button click +[19/24] …teractive on initial load +[20/24] …› reacts to button effect +… › is interactive on initial load + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9141/ +┃ Network use --host to expose + + +[21/24] …:1 › respects server data +[22/24] …stances of button counter +[23/24] …interactive on navigation +[24/24] …ing back to previous page + 24 passed (7.3s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 10s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:23:53 [ERROR] [vite] WebSo… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +└─ Running... +│ 09:23:53 [types] Generated 20… +└─ Running... +│ 09:23:53 [build] output: "sta… +└─ Running... +│ 09:23:53 [build] directory: /… +└─ Running... +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [types] Generated 21… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +└─ Running... +│ 09:23:53 [build] ✓ Completed … +└─ Running... +│ 09:23:53 [build] Building sta… +└─ Running... +│ 09:23:53 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +└─ Running... +│ 09:23:54 [vite] ✓ built in 44… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +└─ Running... +│ 09:23:54 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +└─ Running... +[1 lines collapsed] +│ 09:23:54 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:23:53 [types] Generated 20… +│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +└─ Running... +│ 09:23:54 [vite] ✓ built in 44… +└─ Running... +│ 09:23:54 [build] ✓ Completed … +└─ Running... +│ building client (vite) +└─ Running... +[1 lines collapsed] +│ 09:23:54 [vite] transforming.… +└─ Running... +2│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +3│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +4│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +5│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +6│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +7│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +8│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +9│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +[10 lines collapsed] +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +1│ 09:23:54 [vite] ✓ 15 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +2│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +3│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +4│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +5│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +6│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +2│ 09:23:53 [build] output: "sta… +│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +7│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +8│ 09:23:54 [vite] dist/_astro/e… +│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +9│ 09:23:54 [vite] ✓ built in 43… +│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +20│ generating static routes  +│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +1│ 09:23:54 ▶ src/pages/button.a… +│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +2│ 09:23:54 └─ /button/index.h… +│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +│ 09:23:54 ▶ src/pages/index.as… +3│ 09:23:54 ▶ src/pages/effect.a… +│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +│ 09:23:54 ▶ src/pages/index.as… +│ 09:23:54 └─ /index.html (+2… +4│ 09:23:54 └─ /effect/index.h… +│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +│ 09:23:54 ▶ src/pages/index.as… +│ 09:23:54 └─ /index.html (+2… +│ 09:23:54 ✓ Completed in 37ms. +5│ 09:23:54 ▶ src/pages/multi-co… +│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +│ 09:23:54 ▶ src/pages/index.as… +│ 09:23:54 └─ /index.html (+2… +│ 09:23:54 ✓ Completed in 37ms. +│ 09:23:54 [build] 6 page(s) bu… +6│ 09:23:54 └─ /multi-counter/… +│ 09:23:54 ▶ src/pages/scope-pr… +│ 09:23:54 └─ /scope-prop/ind… +│ 09:23:54 ▶ src/pages/server-d… +│ 09:23:54 └─ /server-data/in… +│ 09:23:54 ▶ src/pages/index.as… +│ 09:23:54 └─ /index.html (+2… +│ 09:23:54 ✓ Completed in 37ms. +│ 09:23:54 [build] 6 page(s) bu… +│ 09:23:54 [build] Complete! +3│ 09:23:53 [build] directory: /… +│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +4│ 09:23:53 [build] Collecting b… +│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +5│ 09:23:53 [build] ✓ Completed … +│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +6│ 09:23:53 [build] Building sta… +│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +└─ Done in 1.1s +7│ 09:23:54 [vite] ✓ built in 44… +│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +8│ 09:23:54 [build] ✓ Completed … +│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +9│ building client (vite)  +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +[10 lines collapsed] +│ 09:23:54 [vite] transforming.… +│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +│ 09:23:54 ▶ src/pages/page-2.a… +1│ 09:23:54 [vite] ✓ 18 modules … +│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +│ 09:23:54 ▶ src/pages/page-2.a… +│ 09:23:54 └─ /page-2/index.h… +2│ 09:23:54 [vite] rendering chu… +│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +│ 09:23:54 ▶ src/pages/page-2.a… +│ 09:23:54 └─ /page-2/index.h… +│ 09:23:54 ✓ Completed in 11ms. +3│ 09:23:54 [vite] computing gzi… +│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +│ 09:23:54 ▶ src/pages/page-2.a… +│ 09:23:54 └─ /page-2/index.h… +│ 09:23:54 ✓ Completed in 11ms. +│ 09:23:54 [build] 2 page(s) bu… +4│ 09:23:54 [vite] dist/_astro/h… +│ 09:23:54 [vite] ✓ built in 90… +│ generating static routes  +│ 09:23:54 ▶ src/pages/page-1.a… +│ 09:23:54 └─ /page-1/index.h… +│ 09:23:54 ▶ src/pages/page-2.a… +│ 09:23:54 └─ /page-2/index.h… +│ 09:23:54 ✓ Completed in 11ms. +│ 09:23:54 [build] 2 page(s) bu… +│ 09:23:54 [build] Complete! +└─ Done in 1.1s + +Running 24 tests using 4 workers + +[1/24] …oads client JS for heading +[2/24] …nteractive on initial load +[3/24] …nteractive on initial load +[4/24] …oads client JS for heading +… › is interactive on initial load + + astro  v4.12.2 ready in 7 ms + +┃ Local http://localhost:9052/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9438/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9351/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 8 ms + +┃ Local http://localhost:9515/ +┃ Network use --host to expose + + +[5/24] …1 › reacts to button click +[6/24] … interactive on navigation +[7/24] … › reacts to button effect +[8/24] …8:1 › respects server data +[9/24] …nstances of button counter +[10/24] …ing back to previous page +[11/24] … › reacts to button click +[12/24] …interactive on navigation +[13/24] …› reacts to button effect +[14/24] …:1 › respects server data +[15/24] …ing back to previous page +[16/24] …stances of button counter +[17/24] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9922/ +┃ Network use --host to expose + + +[18/24] …teractive on initial load +[19/24] … › reacts to button click +… › is interactive on initial load + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9515/ +┃ Network use --host to expose + + +[20/24] …› reacts to button effect +[21/24] …:1 › respects server data +[22/24] …interactive on navigation +[23/24] …stances of button counter +[24/24] …ing back to previous page + 24 passed (8.2s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 11s  + ﬌ [?1h=[?2004hpnpm e2epnpm e2e[?1l>[?2004l +]2;pnpm e2e]1;pnpm +> simple-stack-query@0.1.1 e2e /Users/benholmes/Repositories/simple-stack/packages/query +> pnpm -r --filter="./fixtures/**" build && pnpm exec playwright test + +Scope: 2 of 11 workspace projects +fixtures/basic build$ astro bui… +└─ Running... +fixtures/view-transitions build$ +└─ Running... +│ WebSocket server error: Port … +└─ Running... +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [types] Generated 15… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [build] output: "sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [build] directory: /… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [build] Collecting b… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +└─ Running... +│ 09:24:16 [types] Generated 18… +└─ Running... +│ 09:24:16 [build] output: "sta… +└─ Running... +│ 09:24:16 [build] directory: /… +└─ Running... +│ 09:24:16 [build] Collecting b… +└─ Running... +│ 09:24:16 [build] ✓ Completed … +└─ Running... +│ 09:24:16 [build] Building sta… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +└─ Running... +│ 09:24:16 [build] Building sta… +└─ Running... +│ 09:24:16 [vite] ✓ built in 44… +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +└─ Running... +│ 09:24:16 [build] ✓ Completed … +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +└─ Running... +│ building client (vite) +└─ Running... +fixtures/view-transitions build$ +│ WebSocket server error: Port … +│ 09:24:16 [ERROR] [vite] WebSo… +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +└─ Running... +│ 09:24:16 [vite] ✓ built in 44… +└─ Running... +│ 09:24:16 [build] ✓ Completed … +└─ Running... +[1 lines collapsed] +│ building client (vite) +└─ Running... +│ 09:24:16 [vite] transforming.… +└─ Running... +fixtures/view-transitions build$ +[1 lines collapsed] +│ 09:24:16 [ERROR] [vite] WebSo… +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite) +└─ Running... +2│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +[1 lines collapsed] +│ 09:24:16 [vite] ✓ 15 modules … +└─ Running... +fixtures/view-transitions build$ +[2 lines collapsed] +│ 09:24:16 [types] Generated 18… +│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +└─ Running... +2│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +3│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +4│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +5│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +6│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +7│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +8│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +9│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +[10 lines collapsed] +│ 09:24:16 [vite] ✓ 15 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +1│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +3│ 09:24:16 [build] output: "sta… +│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +2│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +3│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +4│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +5│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +6│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +7│ 09:24:16 [vite] dist/_astro/e… +│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +8│ 09:24:16 [vite] ✓ built in 45… +│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +9│ generating static routes  +│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +4│ 09:24:16 [build] directory: /… +│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +20│ 09:24:16 ▶ src/pages/button.a… +│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +5│ 09:24:16 [build] Collecting b… +│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +1│ 09:24:16 └─ /button/index.h… +│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +│ 09:24:16 ▶ src/pages/index.as… +6│ 09:24:16 [build] ✓ Completed … +│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +7│ 09:24:16 [build] Building sta… +│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +2│ 09:24:16 ▶ src/pages/effect.a… +│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +│ 09:24:16 ▶ src/pages/index.as… +│ 09:24:16 └─ /index.html (+1… +3│ 09:24:16 └─ /effect/index.h… +│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +│ 09:24:16 ▶ src/pages/index.as… +│ 09:24:16 └─ /index.html (+1… +│ 09:24:16 ✓ Completed in 27ms. +4│ 09:24:16 ▶ src/pages/multi-co… +│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +│ 09:24:16 ▶ src/pages/index.as… +│ 09:24:16 └─ /index.html (+1… +│ 09:24:16 ✓ Completed in 27ms. +│ 09:24:16 [build] 6 page(s) bu… +5│ 09:24:16 └─ /multi-counter/… +│ 09:24:16 ▶ src/pages/scope-pr… +│ 09:24:16 └─ /scope-prop/ind… +│ 09:24:16 ▶ src/pages/server-d… +│ 09:24:16 └─ /server-data/in… +│ 09:24:16 ▶ src/pages/index.as… +│ 09:24:16 └─ /index.html (+1… +│ 09:24:16 ✓ Completed in 27ms. +│ 09:24:16 [build] 6 page(s) bu… +│ 09:24:16 [build] Complete! +8│ 09:24:16 [vite] ✓ built in 44… +│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +└─ Done in 1.1s +9│ 09:24:16 [build] ✓ Completed … +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +[10 lines collapsed] +│ building client (vite)  +│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +1│ 09:24:16 [vite] transforming.… +│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +│ 09:24:16 ▶ src/pages/page-2.a… +2│ 09:24:16 [vite] ✓ 18 modules … +│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +│ 09:24:16 ▶ src/pages/page-2.a… +│ 09:24:16 └─ /page-2/index.h… +3│ 09:24:16 [vite] rendering chu… +│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +│ 09:24:16 ▶ src/pages/page-2.a… +│ 09:24:16 └─ /page-2/index.h… +│ 09:24:16 ✓ Completed in 14ms. +4│ 09:24:16 [vite] computing gzi… +│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +│ 09:24:16 ▶ src/pages/page-2.a… +│ 09:24:16 └─ /page-2/index.h… +│ 09:24:16 ✓ Completed in 14ms. +│ 09:24:16 [build] 2 page(s) bu… +5│ 09:24:16 [vite] dist/_astro/h… +│ 09:24:16 [vite] ✓ built in 75… +│ generating static routes  +│ 09:24:16 ▶ src/pages/page-1.a… +│ 09:24:16 └─ /page-1/index.h… +│ 09:24:16 ▶ src/pages/page-2.a… +│ 09:24:16 └─ /page-2/index.h… +│ 09:24:16 ✓ Completed in 14ms. +│ 09:24:16 [build] 2 page(s) bu… +│ 09:24:16 [build] Complete! +└─ Done in 1.1s + +Running 24 tests using 4 workers + +[1/24] …oads client JS for heading +[2/24] …oads client JS for heading +[3/24] …nteractive on initial load +[4/24] …nteractive on initial load +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 10 ms + +┃ Local http://localhost:9623/ +┃ Network use --host to expose + + +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 18 ms + +┃ Local http://localhost:9346/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 13 ms + +┃ Local http://localhost:9958/ +┃ Network use --host to expose + + +… › is interactive on initial load + + astro  v4.12.2 ready in 29 ms + +┃ Local http://localhost:9280/ +┃ Network use --host to expose + + +[5/24] …1 › reacts to button click +[6/24] … interactive on navigation +[7/24] … › reacts to button effect +[8/24] …8:1 › respects server data +[9/24] …nstances of button counter +[10/24] …ing back to previous page +[11/24] … › reacts to button click +[12/24] …interactive on navigation +[13/24] …› reacts to button effect +[14/24] …:1 › respects server data +[15/24] …ads client JS for heading +…9:1 › loads client JS for heading + + astro  v4.12.2 ready in 9 ms + +┃ Local http://localhost:9907/ +┃ Network use --host to expose + + +[16/24] …ing back to previous page +[17/24] …stances of button counter +[18/24] …teractive on initial load +… › is interactive on initial load + + astro  v4.12.2 ready in 6 ms + +┃ Local http://localhost:9168/ +┃ Network use --host to expose + + +[19/24] … › reacts to button click +[20/24] …› reacts to button effect +[21/24] …interactive on navigation +[22/24] …:1 › respects server data +[23/24] …stances of button counter +[24/24] …ing back to previous page + 24 passed (7.4s) + +To open last HTML report run: + + pnpm exec playwright show-report + +% ]2;benholmes@BenBook-Air:~/Repositories/simple-stack/packages/query]1;..ackages/query  +in simple-stack/packages/query on  feat/root-element [$!?] is 📦 v0.1.1 took 10s  + ﬌ [?1h=[?2004h \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index cd02a65..99c918b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '9.0' settings: autoInstallPeers: true @@ -17,6 +17,9 @@ importers: '@changesets/cli': specifier: ^2.27.1 version: 2.27.7 + '@playwright/test': + specifier: ^1.45.3 + version: 1.45.3 '@types/node': specifier: ^20.14.11 version: 20.14.11 @@ -31,7 +34,7 @@ importers: dependencies: next: specifier: 14.0.4 - version: 14.0.4(react-dom@18.3.1)(react@18.3.1) + version: 14.0.4(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18 version: 18.3.1 @@ -40,7 +43,7 @@ importers: version: 18.3.1(react@18.3.1) simple-stack-form: specifier: ^0.1.7 - version: link:../../packages/form + version: 0.1.12(astro@4.12.2(@types/node@20.14.11)(typescript@5.5.3))(zod@3.23.8) tailwind-merge: specifier: ^2.2.0 version: 2.4.0 @@ -74,19 +77,19 @@ importers: dependencies: '@astrojs/node': specifier: ^7.0.0 - version: 7.0.4(astro@4.12.2) + version: 7.0.4(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) '@astrojs/preact': specifier: ^3.0.1 - version: 3.5.1(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4) + version: 3.5.1(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12)) '@astrojs/react': specifier: ^3.0.7 - version: 3.6.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)(vite@5.3.4) + version: 3.6.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@20.14.12)) '@astrojs/solid-js': specifier: ^3.0.3 - version: 3.0.3(solid-js@1.8.18)(vite@5.3.4) + version: 3.0.3(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.12)) '@astrojs/tailwind': specifier: ^5.0.3 - version: 5.1.0(astro@4.12.2)(tailwindcss@3.4.6) + version: 5.1.0(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))(tailwindcss@3.4.6) '@types/react': specifier: ^18.0.21 version: 18.3.3 @@ -95,7 +98,7 @@ importers: version: 18.3.0 astro: specifier: ^4.0.7 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) open-props: specifier: ^1.6.13 version: 1.7.5 @@ -113,10 +116,10 @@ importers: version: 2.13.0 simple-stack-form: specifier: ^0.1.7 - version: link:../../packages/form + version: 0.1.12(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))(zod@3.23.8) simple-stack-stream: specifier: ^0.3.0 - version: link:../../packages/stream + version: 0.3.4(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) solid-js: specifier: ^1.8.7 version: 1.8.18 @@ -125,7 +128,7 @@ importers: version: 3.4.6 vite-plugin-simple-scope: specifier: ^2.0.0 - version: link:../../packages/scope + version: 2.0.2(@types/node@20.14.12) zod: specifier: ^3.22.4 version: 3.23.8 @@ -181,17 +184,17 @@ importers: dependencies: astro-integration-kit: specifier: ^0.15.0 - version: 0.15.0(astro@4.12.2) + version: 0.15.0(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) devDependencies: astro: specifier: ^4.5.5 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) typescript: specifier: ^5.5.3 version: 5.5.3 vite: specifier: ^5.0.10 - version: 5.3.4(@types/node@20.14.11) + version: 5.3.4(@types/node@20.14.12) packages/query: dependencies: @@ -205,24 +208,51 @@ importers: specifier: workspace:* version: link:../scope devDependencies: + '@playwright/test': + specifier: ^1.45.3 + version: 1.45.3 + '@types/node': + specifier: ^20.14.12 + version: 20.14.12 astro: specifier: ^4.12.0 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) linkedom: specifier: ^0.18.4 version: 0.18.4 + signal-polyfill: + specifier: ^0.1.2 + version: 0.1.2 typescript: specifier: ^5.5.3 version: 5.5.3 vite: specifier: ^5.0.10 - version: 5.3.4(@types/node@20.14.11) + version: 5.3.4(@types/node@20.14.12) packages/query/fixtures/basic: dependencies: astro: specifier: ^4.12.0 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + signal-polyfill: + specifier: ^0.1.2 + version: 0.1.2 + simple-stack-query: + specifier: workspace:* + version: link:../.. + typescript: + specifier: ^5.5.3 + version: 5.5.3 + + packages/query/fixtures/view-transitions: + dependencies: + astro: + specifier: ^4.12.0 + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + signal-polyfill: + specifier: ^0.1.2 + version: 0.1.2 simple-stack-query: specifier: workspace:* version: link:../.. @@ -237,11 +267,11 @@ importers: version: 5.5.3 vite: specifier: ^5.0.10 - version: 5.3.4(@types/node@20.14.11) + version: 5.3.4(@types/node@20.14.12) devDependencies: astro: specifier: ^4.12.2 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) packages/stream: dependencies: @@ -251,7 +281,7 @@ importers: devDependencies: astro: specifier: ^4.0.7 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) typescript: specifier: ^5.5.3 version: 5.5.3 @@ -263,13 +293,13 @@ importers: version: 0.5.10(typescript@5.5.3) '@astrojs/starlight': specifier: ^0.21.1 - version: 0.21.5(astro@4.12.2) + version: 0.21.5(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) '@fontsource/atkinson-hyperlegible': specifier: ^5.0.18 version: 5.0.20 astro: specifier: ^4.5.5 - version: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + version: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) sharp: specifier: ^0.32.5 version: 0.32.6 @@ -279,41 +309,27 @@ importers: packages: - /@alloc/quick-lru@5.2.0: + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - /@ampproject/remapping@2.3.0: + '@ampproject/remapping@2.3.0': resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - /@astrojs/check@0.5.10(typescript@5.5.3): + '@astrojs/check@0.5.10': resolution: {integrity: sha512-vliHXM9cu/viGeKiksUM4mXfO816ohWtawTl2ADPgTsd4nUMjFiyAl7xFZhF34yy4hq4qf7jvK1F2PlR3b5I5w==} hasBin: true peerDependencies: typescript: ^5.0.0 - dependencies: - '@astrojs/language-server': 2.12.1(typescript@5.5.3) - chokidar: 3.6.0 - fast-glob: 3.3.2 - kleur: 4.1.5 - typescript: 5.5.3 - yargs: 17.7.2 - transitivePeerDependencies: - - prettier - - prettier-plugin-astro - dev: false - /@astrojs/compiler@2.9.2: + '@astrojs/compiler@2.9.2': resolution: {integrity: sha512-Vpu0Ffsj8SoV+N0DFHlxxOMKHwSC9059Xy/OlG1t6uFYSoJXxkBC2WyF6igO7x10V+8uJrhOxaXr3nA90kJXow==} - /@astrojs/internal-helpers@0.4.1: + '@astrojs/internal-helpers@0.4.1': resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==} - /@astrojs/language-server@2.12.1(typescript@5.5.3): + '@astrojs/language-server@2.12.1': resolution: {integrity: sha512-CCibE6XwSmrZEKlPDr48LZJN7NWxOurOJK1yOzqZFMNV8Y6DIqF6s1e60gbNNHMZkthWYBNTPno4Ni/XyviinQ==} hasBin: true peerDependencies: @@ -324,141 +340,35 @@ packages: optional: true prettier-plugin-astro: optional: true - dependencies: - '@astrojs/compiler': 2.9.2 - '@jridgewell/sourcemap-codec': 1.5.0 - '@volar/kit': 2.4.0-alpha.17(typescript@5.5.3) - '@volar/language-core': 2.4.0-alpha.17 - '@volar/language-server': 2.4.0-alpha.17 - '@volar/language-service': 2.4.0-alpha.17 - '@volar/typescript': 2.4.0-alpha.17 - fast-glob: 3.3.2 - muggle-string: 0.4.1 - volar-service-css: 0.0.59(@volar/language-service@2.4.0-alpha.17) - volar-service-emmet: 0.0.59(@volar/language-service@2.4.0-alpha.17) - volar-service-html: 0.0.59(@volar/language-service@2.4.0-alpha.17) - volar-service-prettier: 0.0.59(@volar/language-service@2.4.0-alpha.17) - volar-service-typescript: 0.0.59(@volar/language-service@2.4.0-alpha.17) - volar-service-typescript-twoslash-queries: 0.0.59(@volar/language-service@2.4.0-alpha.17) - vscode-html-languageservice: 5.3.0 - vscode-uri: 3.0.8 - transitivePeerDependencies: - - typescript - dev: false - /@astrojs/markdown-remark@5.1.0: + '@astrojs/markdown-remark@5.1.0': resolution: {integrity: sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==} - dependencies: - '@astrojs/prism': 3.1.0 - github-slugger: 2.0.0 - hast-util-from-html: 2.0.1 - hast-util-to-text: 4.0.2 - import-meta-resolve: 4.1.0 - mdast-util-definitions: 6.0.0 - rehype-raw: 7.0.0 - rehype-stringify: 10.0.0 - remark-gfm: 4.0.0 - remark-parse: 11.0.0 - remark-rehype: 11.1.0 - remark-smartypants: 2.1.0 - shiki: 1.11.0 - unified: 11.0.5 - unist-util-remove-position: 5.0.0 - unist-util-visit: 5.0.0 - unist-util-visit-parents: 6.0.1 - vfile: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /@astrojs/markdown-remark@5.2.0: + '@astrojs/markdown-remark@5.2.0': resolution: {integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==} - dependencies: - '@astrojs/prism': 3.1.0 - github-slugger: 2.0.0 - hast-util-from-html: 2.0.1 - hast-util-to-text: 4.0.2 - import-meta-resolve: 4.1.0 - mdast-util-definitions: 6.0.0 - rehype-raw: 7.0.0 - rehype-stringify: 10.0.0 - remark-gfm: 4.0.0 - remark-parse: 11.0.0 - remark-rehype: 11.1.0 - remark-smartypants: 3.0.2 - shiki: 1.11.0 - unified: 11.0.5 - unist-util-remove-position: 5.0.0 - unist-util-visit: 5.0.0 - unist-util-visit-parents: 6.0.1 - vfile: 6.0.2 - transitivePeerDependencies: - - supports-color - /@astrojs/mdx@2.3.1(astro@4.12.2): + '@astrojs/mdx@2.3.1': resolution: {integrity: sha512-BOQFKD2Pi9cRntNQJlpF2fh4xV8doNpmVy9NKI95r4jsitrY4X5aTOhAowi+fkQgP/zW1A4HwCyQ6Pdam6z8zQ==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} peerDependencies: astro: ^4.0.0 - dependencies: - '@astrojs/markdown-remark': 5.1.0 - '@mdx-js/mdx': 3.0.1 - acorn: 8.12.1 - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) - es-module-lexer: 1.5.4 - estree-util-visit: 2.0.0 - github-slugger: 2.0.0 - gray-matter: 4.0.3 - hast-util-to-html: 9.0.1 - kleur: 4.1.5 - rehype-raw: 7.0.0 - remark-gfm: 4.0.0 - remark-smartypants: 2.1.0 - source-map: 0.7.4 - unist-util-visit: 5.0.0 - vfile: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /@astrojs/node@7.0.4(astro@4.12.2): + '@astrojs/node@7.0.4': resolution: {integrity: sha512-og36WkHZ+v32filXWx2Iu9iwj6v9QUQaBl5GcTHVGmw1lrGdztl0MtbqbY56az4ew/HkWq3GPSSQ70aZd0u86Q==} peerDependencies: astro: ^4.0.0 - dependencies: - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) - send: 0.18.0 - server-destroy: 1.0.1 - transitivePeerDependencies: - - supports-color - dev: false - /@astrojs/preact@3.5.1(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4): + '@astrojs/preact@3.5.1': resolution: {integrity: sha512-sKF0Di7kwr2pMAc0PbEGuNF9AhJdLImQqtbgUUP3x75zaBg6mJsHmVt5jMqYpW4zWBfLuqACTaNLxWwu6u4nzw==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} peerDependencies: preact: ^10.6.5 - dependencies: - '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.9) - '@preact/preset-vite': 2.8.2(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4) - '@preact/signals': 1.3.0(preact@10.22.1) - babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.24.9) - preact: 10.22.1 - preact-render-to-string: 6.5.6(preact@10.22.1) - transitivePeerDependencies: - - '@babel/core' - - supports-color - - vite - dev: false - /@astrojs/prism@3.1.0: + '@astrojs/prism@3.1.0': resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} - dependencies: - prismjs: 1.29.0 - /@astrojs/react@3.6.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1)(vite@5.3.4): + '@astrojs/react@3.6.0': resolution: {integrity: sha512-YGLxy5jCU9xKG/HAvYsWMcvrQVIhqVe0Sda3Z5UtP32rfXeG6B9J1xQvnx+kRSFTpIrj+7AwPSDSehLbCHJ56w==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} peerDependencies: @@ -466,306 +376,3769 @@ packages: '@types/react-dom': ^17.0.17 || ^18.0.6 react: ^17.0.2 || ^18.0.0 || ^19.0.0-beta react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0-beta - dependencies: - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - '@vitejs/plugin-react': 4.3.1(vite@5.3.4) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - ultrahtml: 1.5.3 - transitivePeerDependencies: - - supports-color - - vite - dev: false - /@astrojs/sitemap@3.1.6: + '@astrojs/sitemap@3.1.6': resolution: {integrity: sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==} - dependencies: - sitemap: 7.1.2 - stream-replace-string: 2.0.0 - zod: 3.23.8 - dev: false - /@astrojs/solid-js@3.0.3(solid-js@1.8.18)(vite@5.3.4): + '@astrojs/solid-js@3.0.3': resolution: {integrity: sha512-MS/SoKUNByBjclhXn004DEsfi4rDNrg0LVbjgSnVfGHrdjP1dQd5bnm0wah04QuhqJCfsIF0ba9c02qJhaj/2w==} engines: {node: '>=18.14.1'} peerDependencies: solid-js: ^1.4.3 - dependencies: - solid-js: 1.8.18 - vite-plugin-solid: 2.10.2(solid-js@1.8.18)(vite@5.3.4) - transitivePeerDependencies: - - '@testing-library/jest-dom' - - supports-color - - vite - dev: false - /@astrojs/starlight@0.21.5(astro@4.12.2): + '@astrojs/starlight@0.21.5': resolution: {integrity: sha512-cvftxu7DM4C25KGSxqyIk81DiQGX0zx9s5sfmprd1kKQK1h/MQXaRVDCpJrK4SjrgWtpG1UoKLJZBgD5w4k9kw==} peerDependencies: astro: ^4.2.7 - dependencies: - '@astrojs/mdx': 2.3.1(astro@4.12.2) - '@astrojs/sitemap': 3.1.6 - '@pagefind/default-ui': 1.1.0 - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) - astro-expressive-code: 0.33.5(astro@4.12.2) - bcp-47: 2.1.0 - hast-util-from-html: 2.0.1 - hast-util-select: 6.0.2 - hast-util-to-string: 3.0.0 - hastscript: 8.0.0 - mdast-util-directive: 3.0.0 - mdast-util-to-markdown: 2.1.0 - pagefind: 1.1.0 - rehype: 13.0.1 - remark-directive: 3.0.0 - unified: 11.0.5 - unist-util-visit: 5.0.0 - vfile: 6.0.2 - transitivePeerDependencies: - - supports-color - dev: false - /@astrojs/tailwind@5.1.0(astro@4.12.2)(tailwindcss@3.4.6): + '@astrojs/tailwind@5.1.0': resolution: {integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==} peerDependencies: astro: ^3.0.0 || ^4.0.0 tailwindcss: ^3.0.24 - dependencies: - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) - autoprefixer: 10.4.19(postcss@8.4.39) - postcss: 8.4.39 - postcss-load-config: 4.0.2(postcss@8.4.39) - tailwindcss: 3.4.6 - transitivePeerDependencies: - - ts-node - dev: false - /@astrojs/telemetry@3.1.0: + '@astrojs/telemetry@3.1.0': resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==} engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} - dependencies: - ci-info: 4.0.0 - debug: 4.3.5 - dlv: 1.1.3 - dset: 3.1.3 - is-docker: 3.0.0 - is-wsl: 3.1.0 - which-pm-runs: 1.1.0 - transitivePeerDependencies: - - supports-color - /@babel/code-frame@7.24.7: + '@babel/code-frame@7.24.7': resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.0.1 - /@babel/compat-data@7.24.9: + '@babel/compat-data@7.24.9': resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==} engines: {node: '>=6.9.0'} - /@babel/core@7.24.9: + '@babel/core@7.24.9': resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==} engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.24.10 - '@babel/helper-compilation-targets': 7.24.8 - '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9) - '@babel/helpers': 7.24.8 - '@babel/parser': 7.24.8 - '@babel/template': 7.24.7 - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.9 - convert-source-map: 2.0.0 - debug: 4.3.5 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - /@babel/generator@7.24.10: + '@babel/generator@7.24.10': resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.24.7: + '@babel/helper-annotate-as-pure@7.24.7': resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - /@babel/helper-compilation-targets@7.24.8: + '@babel/helper-compilation-targets@7.24.8': resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/compat-data': 7.24.9 - '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.2 - lru-cache: 5.1.1 - semver: 6.3.1 - /@babel/helper-environment-visitor@7.24.7: + '@babel/helper-environment-visitor@7.24.7': resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - /@babel/helper-function-name@7.24.7: + '@babel/helper-function-name@7.24.7': resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.9 - /@babel/helper-hoist-variables@7.24.7: + '@babel/helper-hoist-variables@7.24.7': resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - /@babel/helper-module-imports@7.18.6: + '@babel/helper-module-imports@7.18.6': resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - dev: false - /@babel/helper-module-imports@7.24.7: + '@babel/helper-module-imports@7.24.7': resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.9 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9): + '@babel/helper-module-transforms@7.24.9': resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.24.9 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-split-export-declaration': 7.24.7 - '@babel/helper-validator-identifier': 7.24.7 - transitivePeerDependencies: - - supports-color - /@babel/helper-plugin-utils@7.24.8: + '@babel/helper-plugin-utils@7.24.8': resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} engines: {node: '>=6.9.0'} - /@babel/helper-simple-access@7.24.7: + '@babel/helper-simple-access@7.24.7': resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/traverse': 7.24.8 - '@babel/types': 7.24.9 - transitivePeerDependencies: - - supports-color - /@babel/helper-split-export-declaration@7.24.7: + '@babel/helper-split-export-declaration@7.24.7': resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.24.9 - /@babel/helper-string-parser@7.24.8: + '@babel/helper-string-parser@7.24.8': resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.24.7: + '@babel/helper-validator-identifier@7.24.7': resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.24.8: + '@babel/helper-validator-option@7.24.8': resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} engines: {node: '>=6.9.0'} - /@babel/helpers@7.24.8: + '@babel/helpers@7.24.8': resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.24.7 - '@babel/types': 7.24.9 - /@babel/highlight@7.24.7: + '@babel/highlight@7.24.7': resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} engines: {node: '>=6.9.0'} + + '@babel/parser@7.24.8': + resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-syntax-jsx@7.24.7': + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.24.7': + resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.24.7': + resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.24.7': + resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.24.7': + resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.24.8': + resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.7': + resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.8': + resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.9': + resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==} + engines: {node: '>=6.9.0'} + + '@biomejs/biome@1.8.3': + resolution: {integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==} + engines: {node: '>=14.21.3'} + hasBin: true + + '@biomejs/cli-darwin-arm64@1.8.3': + resolution: {integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [darwin] + + '@biomejs/cli-darwin-x64@1.8.3': + resolution: {integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [darwin] + + '@biomejs/cli-linux-arm64-musl@1.8.3': + resolution: {integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-arm64@1.8.3': + resolution: {integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [linux] + + '@biomejs/cli-linux-x64-musl@1.8.3': + resolution: {integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-linux-x64@1.8.3': + resolution: {integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [linux] + + '@biomejs/cli-win32-arm64@1.8.3': + resolution: {integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==} + engines: {node: '>=14.21.3'} + cpu: [arm64] + os: [win32] + + '@biomejs/cli-win32-x64@1.8.3': + resolution: {integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==} + engines: {node: '>=14.21.3'} + cpu: [x64] + os: [win32] + + '@changesets/apply-release-plan@7.0.4': + resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} + + '@changesets/assemble-release-plan@6.0.3': + resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} + + '@changesets/changelog-git@0.2.0': + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + + '@changesets/changelog-github@0.5.0': + resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} + + '@changesets/cli@2.27.7': + resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} + hasBin: true + + '@changesets/config@3.0.2': + resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.1': + resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} + + '@changesets/get-github-info@0.6.0': + resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} + + '@changesets/get-release-plan@4.0.3': + resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.0': + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + + '@changesets/logger@0.1.0': + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + + '@changesets/parse@0.4.0': + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + + '@changesets/pre@2.0.0': + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + + '@changesets/read@0.6.0': + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + + '@changesets/should-skip-package@0.1.0': + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@6.0.0': + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + + '@changesets/write@0.3.1': + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + + '@clack/core@0.3.4': + resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} + + '@clack/prompts@0.7.0': + resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} + bundledDependencies: + - is-unicode-supported + + '@ctrl/tinycolor@3.6.1': + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} + engines: {node: '>=10'} + + '@emmetio/abbreviation@2.3.3': + resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} + + '@emmetio/css-abbreviation@2.1.8': + resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} + + '@emmetio/css-parser@0.4.0': + resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==} + + '@emmetio/html-matcher@1.3.0': + resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==} + + '@emmetio/scanner@1.0.4': + resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==} + + '@emmetio/stream-reader-utils@0.1.0': + resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==} + + '@emmetio/stream-reader@2.2.0': + resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} + + '@emnapi/runtime@1.2.0': + resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@expressive-code/core@0.33.5': + resolution: {integrity: sha512-KL0EkKAvd7SSIQL3ZIP19xqe4xNjBaQYNvcJC6RmoBUnQpvxaJNFwRxCBEF/X0ftJEMaSG7WTrabZ9c/zFeqmA==} + + '@expressive-code/plugin-frames@0.33.5': + resolution: {integrity: sha512-lFt/gbnZscBSxHovg4XiWohp5nrxk4McS6RGABdj6+0gJcX8/YrFTM23GKBIkaDePxdDidVY0jQYGYDL/RrQHw==} + + '@expressive-code/plugin-shiki@0.33.5': + resolution: {integrity: sha512-LWgttQTUrIPE1X+Lya1qFWiX47tH2AS2hkbj/cZoWkdiSjn6zUvtTypK/2Xn6Rgn6z6ClzpgHvkXRqFn7nAB4A==} + + '@expressive-code/plugin-text-markers@0.33.5': + resolution: {integrity: sha512-JxSHL1MGrJAPNaUMjFXex3K+9NJDbfew9H6PmX8LQ+fm9VNQdtBYTAz/x7nqOk7bkTrtAZK5RfDqUfb8U5M+2A==} + + '@fontsource/atkinson-hyperlegible@5.0.20': + resolution: {integrity: sha512-YczGmDvJ23lheBaEJGNdUDTUwl1uG6xrU1rG+ftOVCdkmOaXtuZI/zq1KW+02d1eGsqKCrtaabHQMrtLjCYQbg==} + + '@img/sharp-darwin-arm64@0.33.4': + resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==} + engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.33.4': + resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==} + engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.0.2': + resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==} + engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.0.2': + resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==} + engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.0.2': + resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==} + engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.0.2': + resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==} + engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.0.2': + resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==} + engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.0.2': + resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==} + engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.0.2': + resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==} + engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.0.2': + resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==} + engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.33.4': + resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==} + engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.33.4': + resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==} + engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-s390x@0.33.4': + resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==} + engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.33.4': + resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} + engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.33.4': + resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==} + engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.33.4': + resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==} + engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.33.4': + resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [wasm32] + + '@img/sharp-win32-ia32@0.33.4': + resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.33.4': + resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} + cpu: [x64] + os: [win32] + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@mdx-js/mdx@3.0.1': + resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==} + + '@next/env@14.0.4': + resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==} + + '@next/swc-darwin-arm64@14.0.4': + resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@14.0.4': + resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@14.0.4': + resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@14.0.4': + resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@14.0.4': + resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@14.0.4': + resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@14.0.4': + resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-ia32-msvc@14.0.4': + resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@next/swc-win32-x64-msvc@14.0.4': + resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@pagefind/darwin-arm64@1.1.0': + resolution: {integrity: sha512-SLsXNLtSilGZjvqis8sX42fBWsWAVkcDh1oerxwqbac84HbiwxpxOC2jm8hRwcR0Z55HPZPWO77XeRix/8GwTg==} + cpu: [arm64] + os: [darwin] + + '@pagefind/darwin-x64@1.1.0': + resolution: {integrity: sha512-QjQSE/L5oS1C8N8GdljGaWtjCBMgMtfrPAoiCmINTu9Y9dp0ggAyXvF8K7Qg3VyIMYJ6v8vg2PN7Z3b+AaAqUA==} + cpu: [x64] + os: [darwin] + + '@pagefind/default-ui@1.1.0': + resolution: {integrity: sha512-+XiAJAK++C64nQcD7s3Prdmd5S92lT05fwjOxm0L1jj80jbL+tmvcqkkFnPpoqhnicIPgcAX/Y5W0HRZnBt35w==} + + '@pagefind/linux-arm64@1.1.0': + resolution: {integrity: sha512-8zjYCa2BtNEL7KnXtysPtBELCyv5DSQ4yHeK/nsEq6w4ToAMTBl0K06khqxdSGgjMSwwrxvLzq3so0LC5Q14dA==} + cpu: [arm64] + os: [linux] + + '@pagefind/linux-x64@1.1.0': + resolution: {integrity: sha512-4lsg6VB7A6PWTwaP8oSmXV4O9H0IHX7AlwTDcfyT+YJo/sPXOVjqycD5cdBgqNLfUk8B9bkWcTDCRmJbHrKeCw==} + cpu: [x64] + os: [linux] + + '@pagefind/windows-x64@1.1.0': + resolution: {integrity: sha512-OboCM76BcMKT9IoSfZuFhiqMRgTde8x4qDDvKulFmycgiJrlL5WnIqBHJLQxZq+o2KyZpoHF97iwsGAm8c32sQ==} + cpu: [x64] + os: [win32] + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@playwright/test@1.45.3': + resolution: {integrity: sha512-UKF4XsBfy+u3MFWEH44hva1Q8Da28G6RFtR2+5saw+jgAFQV5yYnB1fu68Mz7fO+5GJF3wgwAIs0UelU8TxFrA==} + engines: {node: '>=18'} + hasBin: true + + '@preact/preset-vite@2.8.2': + resolution: {integrity: sha512-m3tl+M8IO8jgiHnk+7LSTFl8axdPXloewi7iGVLdmCwf34XOzEUur0bZVewW4DUbUipFjTS2CXu27+5f/oexBA==} + peerDependencies: + '@babel/core': 7.x + vite: 2.x || 3.x || 4.x || 5.x + + '@preact/signals-core@1.7.0': + resolution: {integrity: sha512-bEZLgmJGSBVP5PUPDowhPW3bVdMmp9Tr5OEl+SQK+8Tv9T7UsIfyN905cfkmmeqw8z4xp8T6zrl4M1uj9+HAfg==} + + '@preact/signals@1.3.0': + resolution: {integrity: sha512-EOMeg42SlLS72dhoq6Vjq08havnLseWmPQ8A0YsgIAqMgWgx7V1a39+Pxo6i7SY5NwJtH4849JogFq3M67AzWg==} + peerDependencies: + preact: 10.x + + '@prefresh/babel-plugin@0.5.1': + resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==} + + '@prefresh/core@1.5.2': + resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==} + peerDependencies: + preact: ^10.0.0 + + '@prefresh/utils@1.2.0': + resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==} + + '@prefresh/vite@2.4.6': + resolution: {integrity: sha512-miYbTl2J1YNaQJWyWHJzyIpNh7vKUuXC1qCDRzPeWjhQ+9bxeXkUBGDGd9I1f37R5GQYi1S65AN5oR0BR2WzvQ==} + peerDependencies: + preact: ^10.4.0 + vite: '>=2.0.0' + + '@rollup/pluginutils@4.2.1': + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + + '@rollup/rollup-android-arm-eabi@4.19.0': + resolution: {integrity: sha512-JlPfZ/C7yn5S5p0yKk7uhHTTnFlvTgLetl2VxqE518QgyM7C9bSfFTYvB/Q/ftkq0RIPY4ySxTz+/wKJ/dXC0w==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.19.0': + resolution: {integrity: sha512-RDxUSY8D1tWYfn00DDi5myxKgOk6RvWPxhmWexcICt/MEC6yEMr4HNCu1sXXYLw8iAsg0D44NuU+qNq7zVWCrw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.19.0': + resolution: {integrity: sha512-emvKHL4B15x6nlNTBMtIaC9tLPRpeA5jMvRLXVbl/W9Ie7HhkrE7KQjvgS9uxgatL1HmHWDXk5TTS4IaNJxbAA==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.19.0': + resolution: {integrity: sha512-fO28cWA1dC57qCd+D0rfLC4VPbh6EOJXrreBmFLWPGI9dpMlER2YwSPZzSGfq11XgcEpPukPTfEVFtw2q2nYJg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.19.0': + resolution: {integrity: sha512-2Rn36Ubxdv32NUcfm0wB1tgKqkQuft00PtM23VqLuCUR4N5jcNWDoV5iBC9jeGdgS38WK66ElncprqgMUOyomw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.19.0': + resolution: {integrity: sha512-gJuzIVdq/X1ZA2bHeCGCISe0VWqCoNT8BvkQ+BfsixXwTOndhtLUpOg0A1Fcx/+eA6ei6rMBzlOz4JzmiDw7JQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.19.0': + resolution: {integrity: sha512-0EkX2HYPkSADo9cfeGFoQ7R0/wTKb7q6DdwI4Yn/ULFE1wuRRCHybxpl2goQrx4c/yzK3I8OlgtBu4xvted0ug==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.19.0': + resolution: {integrity: sha512-GlIQRj9px52ISomIOEUq/IojLZqzkvRpdP3cLgIE1wUWaiU5Takwlzpz002q0Nxxr1y2ZgxC2obWxjr13lvxNQ==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.19.0': + resolution: {integrity: sha512-N6cFJzssruDLUOKfEKeovCKiHcdwVYOT1Hs6dovDQ61+Y9n3Ek4zXvtghPPelt6U0AH4aDGnDLb83uiJMkWYzQ==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.19.0': + resolution: {integrity: sha512-2DnD3mkS2uuam/alF+I7M84koGwvn3ZVD7uG+LEWpyzo/bq8+kKnus2EVCkcvh6PlNB8QPNFOz6fWd5N8o1CYg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.19.0': + resolution: {integrity: sha512-D6pkaF7OpE7lzlTOFCB2m3Ngzu2ykw40Nka9WmKGUOTS3xcIieHe82slQlNq69sVB04ch73thKYIWz/Ian8DUA==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.19.0': + resolution: {integrity: sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.19.0': + resolution: {integrity: sha512-HxfbvfCKJe/RMYJJn0a12eiOI9OOtAUF4G6ozrFUK95BNyoJaSiBjIOHjZskTUffUrB84IPKkFG9H9nEvJGW6A==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.19.0': + resolution: {integrity: sha512-HxDMKIhmcguGTiP5TsLNolwBUK3nGGUEoV/BO9ldUBoMLBssvh4J0X8pf11i1fTV7WShWItB1bKAKjX4RQeYmg==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.19.0': + resolution: {integrity: sha512-xItlIAZZaiG/u0wooGzRsx11rokP4qyc/79LkAOdznGRAbOFc+SfEdfUOszG1odsHNgwippUJavag/+W/Etc6Q==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.19.0': + resolution: {integrity: sha512-xNo5fV5ycvCCKqiZcpB65VMR11NJB+StnxHz20jdqRAktfdfzhgjTiJ2doTDQE/7dqGaV5I7ZGqKpgph6lCIag==} + cpu: [x64] + os: [win32] + + '@shikijs/core@1.11.0': + resolution: {integrity: sha512-VbEhDAhT/2ozO0TPr5/ZQBO/NWLqtk4ZiBf6NplYpF38mKjNfMMied5fNEfIfYfN+cdKvhDB4VMcKvG/g9c3zg==} + + '@swc/helpers@0.5.2': + resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/fs-extra@11.0.4': + resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/jsonfile@6.1.4': + resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/nlcst@1.0.4': + resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==} + + '@types/nlcst@2.0.3': + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@17.0.45': + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} + + '@types/node@20.14.11': + resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==} + + '@types/node@20.14.12': + resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==} + + '@types/parse5@6.0.3': + resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + + '@types/react@18.3.3': + resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + + '@types/sanitize-html@2.11.0': + resolution: {integrity: sha512-7oxPGNQHXLHE48r/r/qjn7q0hlrs3kL7oZnGj0Wf/h9tj/6ibFyRkNbsDxaBBZ4XUZ0Dx5LGCyDJ04ytSofacQ==} + + '@types/sax@1.2.7': + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + + '@vitejs/plugin-react@4.3.1': + resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 + + '@volar/kit@2.4.0-alpha.17': + resolution: {integrity: sha512-GH2h5qD1FIBmy9xmaPHll645F9K0CQQWBdDpZA0J4GDAPpKfP5M4WW5B+PS5pMIVl8cazibhsNPn1pJCDzVXIw==} + peerDependencies: + typescript: '*' + + '@volar/language-core@2.4.0-alpha.17': + resolution: {integrity: sha512-FF9g89QZUVJpgZvrNpA+v5Sgo7MdUjeA1celxCe4nFTpfp4P/FUdZ1lgeYy7ZS5r13oC4Ei6HqWpfLN7PFM60w==} + + '@volar/language-server@2.4.0-alpha.17': + resolution: {integrity: sha512-K+ffVR484Zzq9tTeoRxwtvGzvhR8qCpKhcgsPkCPeCh904yr1zxkMX728fhTePB9nZtKpI0jDuqdQA+338Gl1Q==} + + '@volar/language-service@2.4.0-alpha.17': + resolution: {integrity: sha512-rq+O/Nf7krrq611khGOH6+f9c5i7vQiDPXOLuGks2bBWjPUqaN7dR8agMm+9BTlAj0IItArKqUncYr5mYU78kQ==} + + '@volar/snapshot-document@2.4.0-alpha.17': + resolution: {integrity: sha512-7h8cf8r+gKU0EEn68pulM1yER1iFshQR/fVT0Bw7T7cbRLe7afnaXbU+jg9yKoEUuJ/B8GU3a/5IBLofY6ZqVg==} + + '@volar/source-map@2.4.0-alpha.17': + resolution: {integrity: sha512-6LOuR2nIloQCSNMNcUPRPLjL5CInIE1pYZ8lifOCSxQRiz8GcWaOm34kAvdm7pzPQqMRHBBnV/Ihkdt/w7oWAQ==} + + '@volar/typescript@2.4.0-alpha.17': + resolution: {integrity: sha512-oJlz5xJd0O1Xe/I7AV3kPpV6gXlcyxfpMcj/w4/wGY5AxFHxyy5i7VhaE/BVk99zsT6M2KxcZyUSsL55RlNXlQ==} + + '@vscode/emmet-helper@2.9.3': + resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==} + + '@vscode/l10n@0.0.18': + resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.12.1: + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + array-iterate@2.0.1: + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + ast-types@0.16.1: + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} + + astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + + astro-expressive-code@0.33.5: + resolution: {integrity: sha512-9JAyllueMUN8JTl/h/yTdbKinNmfalEWcV11s3lSf/UJQbAZfWJuy+IlGcArZDI/CmD21GXhFHLqYthpdY33ug==} + peerDependencies: + astro: ^4.0.0-beta || ^3.3.0 + + astro-integration-kit@0.15.0: + resolution: {integrity: sha512-wzU5Z1GHmdAMbuci+shlJA076xCIh51nM2AkPsA6jPorOln6RBvPMckFjIPN5JvvvuvupuQFr7QuspTtogTYDQ==} + peerDependencies: + astro: ^4.12.0 + + astro@4.12.2: + resolution: {integrity: sha512-l6OmqlL+FiuSi9x6F+EGZitteOznq1JffOil7st7cdqeMCTEIym4oagI1a6zp6QekliKWEEZWdplGhgh1k1f7Q==} + engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} + hasBin: true + + autoprefixer@10.4.19: + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + b4a@1.6.6: + resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} + + babel-plugin-jsx-dom-expressions@0.37.23: + resolution: {integrity: sha512-Y/r8LyLi/njnwPTaDuPEReWk30FJ1KplloYvcFUhHmiH1F7yVVj5mWojD7mbO/IruKyvOs9OIPUoeMi3Z++J4w==} + peerDependencies: + '@babel/core': ^7.20.12 + + babel-plugin-transform-hook-names@1.0.2: + resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} + peerDependencies: + '@babel/core': ^7.12.10 + + babel-preset-solid@1.8.18: + resolution: {integrity: sha512-ky0FA4cCS9dk+xYBBItHoxtbRnaDIOGpmHLFqKPaR81hpMbJBOiLOZia2hT0JBwx4zn/D2OjMRvRr6kqtRMoUw==} + peerDependencies: + '@babel/core': ^7.0.0 + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + bare-events@2.4.2: + resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} + + bare-fs@2.3.1: + resolution: {integrity: sha512-W/Hfxc/6VehXlsgFtbB5B4xFcsCl+pAh30cYhoFyXErf6oGrwjh8SwiPAdHgpmWonKuYpZgGywN0SXt7dgsADA==} + + bare-os@2.4.0: + resolution: {integrity: sha512-v8DTT08AS/G0F9xrhyLtepoo9EJBJ85FRSMbu1pQUlAf6A8T0tEEQGMVObWeqpjhSPXsE0VGlluFBJu2fdoTNg==} + + bare-path@2.1.3: + resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==} + + bare-stream@2.1.3: + resolution: {integrity: sha512-tiDAH9H/kP+tvNO5sczyn9ZAA7utrSMobyDchsnyyXBuUe2FSQWbxhtuHB8jwpHYYevVo2UJpcmvvjrbHboUUQ==} + + base-64@1.0.0: + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + bcp-47-match@2.0.3: + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} + + bcp-47@2.1.0: + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@7.1.1: + resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} + engines: {node: '>=14.16'} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.23.2: + resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + + camelcase@7.0.1: + resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} + engines: {node: '>=14.16'} + + caniuse-lite@1.0.30001643: + resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} + + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + + cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + collapse-white-space@2.1.0: + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + + color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cookie@0.6.0: + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + + css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + + css-selector-parser@3.0.5: + resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssom@0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.3.5: + resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + + decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-libc@2.0.3: + resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} + engines: {node: '>=8'} + + deterministic-object-hash@2.0.2: + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} + engines: {node: '>=18'} + + devalue@5.0.0: + resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + direction@2.0.1: + resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} + hasBin: true + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + dset@3.1.3: + resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} + engines: {node: '>=4'} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + + electron-to-chromium@1.4.832: + resolution: {integrity: sha512-cTen3SB0H2SGU7x467NRe1eVcQgcuS6jckKfWJHia2eo0cHIGOqHoAxevIYZD4eRHcWjkvFzo93bi3vJ9W+1lA==} + + emmet@2.4.7: + resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==} + + emoji-regex@10.3.0: + resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + + escalade@3.1.2: + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} + + escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + estree-util-attach-comments@3.0.0: + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + + estree-util-build-jsx@3.0.1: + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-util-to-js@2.0.0: + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + + estree-util-visit@2.0.0: + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + + expressive-code@0.33.5: + resolution: {integrity: sha512-UPg2jSvZEfXPiCa4MKtMoMQ5Hwiv7In5/LSCa/ukhjzZqPO48iVsCcEBgXWEUmEAQ02P0z00/xFfBmVnUKH+Zw==} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fastq@1.17.1: + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-yarn-workspace-root2@1.2.16: + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + + flattie@1.1.1: + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} + engines: {node: '>=8'} + + foreground-child@3.2.1: + resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + engines: {node: '>=14'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.2.0: + resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} + engines: {node: '>=18'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + 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'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-util-from-html@2.0.1: + resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} + + hast-util-from-parse5@7.1.2: + resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + + hast-util-from-parse5@8.0.1: + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} + + hast-util-has-property@3.0.0: + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} + + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + + hast-util-parse-selector@3.1.1: + resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-raw@7.2.3: + resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + + hast-util-raw@9.0.4: + resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} + + hast-util-select@6.0.2: + resolution: {integrity: sha512-hT/SD/d/Meu+iobvgkffo1QecV8WeKWxwsNMzcTJsKw1cKTQKSR/7ArJeURLNJF9HDjp9nVoORyNNJxrvBye8Q==} + + hast-util-to-estree@3.1.0: + resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} + + hast-util-to-html@8.0.4: + resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + + hast-util-to-html@9.0.1: + resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==} + + hast-util-to-jsx-runtime@2.3.0: + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} + + hast-util-to-parse5@7.1.0: + resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + + hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + + hast-util-to-string@3.0.0: + resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==} + + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + + hast-util-whitespace@2.0.1: + resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + + 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==} + + hastscript@8.0.0: + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} + + he@1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + + html-entities@2.3.3: + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} + + html-escaper@3.0.3: + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} + + html-void-elements@2.0.1: + resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} + + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + + htmlparser2@8.0.2: + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + + htmlparser2@9.1.0: + resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + + human-id@1.0.2: + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.1: + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} + + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + inline-style-parser@0.2.3: + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-core-module@2.15.0: + resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==} + engines: {node: '>= 0.4'} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-unicode-supported@1.3.0: + resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} + engines: {node: '>=12'} + + is-unicode-supported@2.0.0: + resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} + engines: {node: '>=18'} + + is-what@4.1.16: + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jiti@1.21.6: + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + hasBin: true + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-parser@2.3.1: + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + just-map-values@3.2.0: + resolution: {integrity: sha512-TyqCKtK3NxiUgOjRYMIKURvBTHesi3XzomDY0QVPZ3rYzLCF+nNq5rSi0B/L5aOd/WMTZo6ukzA4wih4HUbrDg==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lilconfig@3.1.2: + resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linkedom@0.18.4: + resolution: {integrity: sha512-JhLErxMIEOKByMi3fURXgI1fYOzR87L1Cn0+MI9GlMckFrqFZpV1SUGox1jcKtsKN3y6JgclcQf0FzZT//BuGw==} + + load-yaml-file@0.2.0: + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + log-symbols@6.0.0: + resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} + engines: {node: '>=18'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + + magic-string@0.30.5: + resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} + engines: {node: '>=12'} + + markdown-extensions@2.0.0: + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} + + markdown-table@3.0.3: + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + + mdast-util-definitions@6.0.0: + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + + mdast-util-directive@3.0.0: + resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} + + mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + + mdast-util-from-markdown@2.0.1: + resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} + + mdast-util-gfm-autolink-literal@2.0.0: + resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} + + mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + + 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.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + + mdast-util-mdx-expression@2.0.0: + resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} + + mdast-util-mdx-jsx@3.1.2: + resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} + + mdast-util-mdx@3.0.0: + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@2.1.0: + resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + merge-anything@5.1.7: + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} + engines: {node: '>=12.13'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromark-core-commonmark@2.0.1: + resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} + + micromark-extension-directive@3.0.1: + resolution: {integrity: sha512-VGV2uxUzhEZmaP7NSFo2vtq7M2nUD+WfmYQD+d8i/1nHbzE+rMy9uzTvUybBbNiVbrhOZibg3gbyoARGqgDWyg==} + + 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.0: + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + + 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@3.0.0: + resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} + + micromark-extension-mdx-jsx@3.0.0: + resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==} + + micromark-extension-mdx-md@2.0.0: + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + + micromark-extension-mdxjs-esm@3.0.0: + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} + + micromark-extension-mdxjs@3.0.0: + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} + + micromark-factory-destination@2.0.0: + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + + micromark-factory-label@2.0.0: + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + + micromark-factory-mdx-expression@2.0.1: + resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==} + + micromark-factory-space@2.0.0: + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + + micromark-factory-title@2.0.0: + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + + micromark-factory-whitespace@2.0.0: + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + + micromark-util-character@2.1.0: + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + + micromark-util-chunked@2.0.0: + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + + micromark-util-classify-character@2.0.0: + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + + micromark-util-combine-extensions@2.0.0: + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + + micromark-util-decode-numeric-character-reference@2.0.1: + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + + micromark-util-decode-string@2.0.0: + resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} + + micromark-util-encode@2.0.0: + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + + micromark-util-events-to-acorn@2.0.2: + resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} + + micromark-util-html-tag-name@2.0.0: + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + + micromark-util-normalize-identifier@2.0.0: + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + + micromark-util-resolve-all@2.0.0: + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + + micromark-util-sanitize-uri@2.0.0: + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + + micromark-util-subtokenize@2.0.1: + resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} + + micromark-util-symbol@2.0.0: + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + + micromark-util-types@2.0.0: + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + + micromark@4.0.0: + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + + micromatch@4.0.7: + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} + + mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + + ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + + mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + + nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@5.0.7: + resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==} + engines: {node: ^18 || >=20} + hasBin: true + + napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + + next@14.0.4: + resolution: {integrity: sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + sass: + optional: true + + nlcst-to-string@3.1.1: + resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==} + + nlcst-to-string@4.0.0: + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} + + node-abi@3.65.0: + resolution: {integrity: sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==} + engines: {node: '>=10'} + + node-addon-api@6.1.0: + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-html-parser@6.1.13: + resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} + + node-releases@2.0.17: + resolution: {integrity: sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + not@0.1.0: + resolution: {integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + + on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + open-props@1.7.5: + resolution: {integrity: sha512-DajjLQDJgIa0i+QdB2q5M8lNLo2ICk+DbDh4TsqNsT1tAO8Zm8F7dndSkLMQkobT98lbvDMMpJWO8NT0ibjrjA==} + + ora@8.0.1: + resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} + engines: {node: '>=18'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@6.1.0: + resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} + engines: {node: '>=18'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-queue@8.0.1: + resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} + engines: {node: '>=18'} + + p-timeout@6.1.2: + resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==} + engines: {node: '>=14.16'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + package-json-from-dist@1.0.0: + resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + + pagefind@1.1.0: + resolution: {integrity: sha512-1nmj0/vfYcMxNEQj0YDRp6bTVv9hI7HLdPhK/vBBYlrnwjATndQvHyicj5Y7pUHrpCFZpFnLVQXIF829tpFmaw==} + hasBin: true + + parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + + parse-latin@5.0.1: + resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==} + + parse-latin@7.0.0: + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} + + parse-srcset@1.0.2: + resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} + + parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + + parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + + path-browserify@1.0.1: + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-to-regexp@6.2.2: + resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + + pkg-dir@4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + + playwright-core@1.45.3: + resolution: {integrity: sha512-+ym0jNbcjikaOwwSZycFbwkWgfruWvYlJfThKYAlImbxUgdWFO2oW70ojPm4OpE4t6TAo2FY/smM+hpVTtkhDA==} + engines: {node: '>=18'} + hasBin: true + + playwright@1.45.3: + resolution: {integrity: sha512-QhVaS+lpluxCaioejDZ95l4Y4jSFCsBvl2UZkpeXlzxmqS+aABr5c82YmfMHrL6x27nvrvykJAFpkzT2eWdJww==} + engines: {node: '>=18'} + hasBin: true + + postcss-import@15.1.0: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-js@4.0.1: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + + postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-nested@6.2.0: + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.1.1: + resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} + engines: {node: '>=4'} + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.4.39: + resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} + engines: {node: ^10 || ^12 || >=14} + + preact-render-to-string@6.5.6: + resolution: {integrity: sha512-msFdv7/ooTV6OIodAnU87V4ct+m2DA1rwaRYV+DNvTYpm/ZInQfoGrcHmbTkV7TOcJaHh5wt1NjiALA46Jyxhw==} + peerDependencies: + preact: '>=10' + + preact@10.22.1: + resolution: {integrity: sha512-jRYbDDgMpIb5LHq3hkI0bbl+l/TQ9UnkdQ0ww+lp+4MMOdqaUYdFc5qeyP+IV8FAd/2Em7drVPeKdQxsiWCf/A==} + + prebuild-install@7.1.2: + resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} + engines: {node: '>=10'} + hasBin: true + + preferred-pm@3.1.4: + resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} + engines: {node: '>=10'} + + preferred-pm@4.0.0: + resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} + engines: {node: '>=18.12'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + prismjs@1.29.0: + resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + engines: {node: '>=6'} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + queue-tick@1.0.1: + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} + + range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + recast@0.23.9: + resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} + engines: {node: '>= 4'} + + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + rehype-parse@9.0.0: + resolution: {integrity: sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==} + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + + rehype-stringify@10.0.0: + resolution: {integrity: sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==} + + rehype@13.0.1: + resolution: {integrity: sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==} + + remark-directive@3.0.0: + resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} + + remark-expressive-code@0.33.5: + resolution: {integrity: sha512-E4CZq3AuUXLu6or0AaDKkgsHYqmnm4ZL8/+1/8YgwtKcogHwTMRJfQtxkZpth90QQoNUpsapvm5x5n3Np2OC9w==} + + remark-gfm@4.0.0: + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + + remark-mdx@3.0.1: + resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.0: + resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} + + remark-smartypants@2.1.0: + resolution: {integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + remark-smartypants@3.0.2: + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} + engines: {node: '>=16.0.0'} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + + request-light@0.7.0: + resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + + restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + retext-latin@3.1.0: + resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==} + + retext-latin@4.0.0: + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} + + retext-smartypants@5.2.0: + resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==} + + retext-smartypants@6.1.0: + resolution: {integrity: sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==} + + retext-stringify@3.1.0: + resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} + + retext-stringify@4.0.0: + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} + + retext@8.1.0: + resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==} + + retext@9.0.0: + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rollup@4.19.0: + resolution: {integrity: sha512-5r7EYSQIowHsK4eTZ0Y81qpZuJz+MUuYeqmmYmRMl1nwhdmbiYqt5jwzf6u7wyOzJgYqtCRMtVRKOtHANBz7rA==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sanitize-html@2.13.0: + resolution: {integrity: sha512-Xff91Z+4Mz5QiNSLdLWwjgBDm5b1RU6xBT0+12rapjiaR7SwfRdjw8f+6Rir2MXKLrDicRFHdb51hGOAxmsUIA==} + + sax@1.4.1: + resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + + seroval-plugins@1.1.0: + resolution: {integrity: sha512-KtcJg590L3X3dd7ixs6am4UGVcV69TyjYhHtanIdQJq4dy2OceWXmmvWrYx7oFDNe+LNdxdWd0I5BQXuV5fBhA==} + engines: {node: '>=10'} + peerDependencies: + seroval: ^1.0 + + seroval@1.1.0: + resolution: {integrity: sha512-74Wpe+hhPx4V8NFe00I2Fu9gTJopKoH5vE7nCqFzVgKOXV8AnN23T58K79QLYQotzGpH93UZ+UN2Y11j9huZJg==} + engines: {node: '>=10'} + + server-destroy@1.0.1: + resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} + + setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + + sharp@0.32.6: + resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==} + engines: {node: '>=14.15.0'} + + sharp@0.33.4: + resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==} + engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shiki@1.11.0: + resolution: {integrity: sha512-NqH/O1zRHvnuk/WfSL6b7+DtI7/kkMMSQGlZhm9DyzSU+SoIHhaw/fBZMr+zp9R8KjdIzkk3JKSC6hORuGDyng==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + signal-polyfill@0.1.2: + resolution: {integrity: sha512-HT9d+L9NMiTzMxb/tU2Baym6129ROyRETSjvchvSkQa7wN0+SrG/IUlsaBLqKn2c+4mlze6CgQBEvgBjxOpiaQ==} + + simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + + simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + + simple-stack-form@0.1.12: + resolution: {integrity: sha512-cqxiA0/91WddM9Jya8Es1wfDurBfm8pUOmgMb08OB32wpmQLz2JQpjcarFNYkj5ZXfmE3qkGqakvx+6TCwxqUQ==} + hasBin: true + peerDependencies: + astro: ^3.6.0 || ^4.0.0 + zod: ^3.22.4 + + simple-stack-stream@0.3.4: + resolution: {integrity: sha512-jsWGcXVLt9h4gyqJpSM4zlYW4a/sbk7OO/1uNPKcXlbgjqcXhFazSOLjggZ4AZRRekWSO0BIhlFCz8EYl5p0dQ==} + peerDependencies: + astro: ^3.6.0 || ^4.0.0 + + simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + sitemap@7.1.2: + resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==} + engines: {node: '>=12.0.0', npm: '>=5.6.0'} + hasBin: true + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + solid-js@1.8.18: + resolution: {integrity: sha512-cpkxDPvO/AuKBugVv6xKFd1C9VC0XZMu4VtF56IlHoux8HgyW44uqNSWbozMnVcpIzHIhS3vVXPAVZYM26jpWw==} + + solid-refresh@0.6.3: + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} + peerDependencies: + solid-js: ^1.3 + + source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + spawndamnit@2.0.0: + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + stack-trace@1.0.0-pre2: + resolution: {integrity: sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==} + engines: {node: '>=16'} + + statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + + stdin-discarder@0.2.2: + resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} + engines: {node: '>=18'} + + stream-replace-string@2.0.0: + resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + streamx@2.18.0: + resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + + style-to-object@1.0.6: + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + + styled-jsx@5.1.1: + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + tailwind-merge@2.4.0: + resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==} + + tailwindcss@3.4.6: + resolution: {integrity: sha512-1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==} + engines: {node: '>=14.0.0'} + hasBin: true + + tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + + tar-fs@3.0.6: + resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + text-decoder@1.1.1: + resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==} + + thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + + thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + + tsconfck@3.1.1: + resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tslib@2.6.3: + resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + + tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + + turbo-darwin-64@1.13.4: + resolution: {integrity: sha512-A0eKd73R7CGnRinTiS7txkMElg+R5rKFp9HV7baDiEL4xTG1FIg/56Vm7A5RVgg8UNgG2qNnrfatJtb+dRmNdw==} + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@1.13.4: + resolution: {integrity: sha512-eG769Q0NF6/Vyjsr3mKCnkG/eW6dKMBZk6dxWOdrHfrg6QgfkBUk0WUUujzdtVPiUIvsh4l46vQrNVd9EOtbyA==} + cpu: [arm64] + os: [darwin] + + turbo-linux-64@1.13.4: + resolution: {integrity: sha512-Bq0JphDeNw3XEi+Xb/e4xoKhs1DHN7OoLVUbTIQz+gazYjigVZvtwCvgrZI7eW9Xo1eOXM2zw2u1DGLLUfmGkQ==} + cpu: [x64] + os: [linux] + + turbo-linux-arm64@1.13.4: + resolution: {integrity: sha512-BJcXw1DDiHO/okYbaNdcWN6szjXyHWx9d460v6fCHY65G8CyqGU3y2uUTPK89o8lq/b2C8NK0yZD+Vp0f9VoIg==} + cpu: [arm64] + os: [linux] + + turbo-windows-64@1.13.4: + resolution: {integrity: sha512-OFFhXHOFLN7A78vD/dlVuuSSVEB3s9ZBj18Tm1hk3aW1HTWTuAw0ReN6ZNlVObZUHvGy8d57OAGGxf2bT3etQw==} + cpu: [x64] + os: [win32] + + turbo-windows-arm64@1.13.4: + resolution: {integrity: sha512-u5A+VOKHswJJmJ8o8rcilBfU5U3Y1TTAfP9wX8bFh8teYF1ghP0EhtMRLjhtp6RPa+XCxHHVA2CiC3gbh5eg5g==} + cpu: [arm64] + os: [win32] + + turbo@1.13.4: + resolution: {integrity: sha512-1q7+9UJABuBAHrcC4Sxp5lOqYS5mvxRrwa33wpIyM18hlOCpRD/fTJNxZ0vhbMcJmz15o9kkVm743mPn7p6jpQ==} + hasBin: true + + type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + + typesafe-path@0.2.2: + resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} + + typescript-auto-import-cache@0.3.3: + resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} + + typescript@5.5.3: + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} + engines: {node: '>=14.17'} + hasBin: true + + uhyphen@0.2.0: + resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} + + ultrahtml@1.5.3: + resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + unherit@3.0.1: + resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==} + + unified@10.1.2: + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + + unist-util-is@5.2.1: + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-modify-children@3.1.1: + resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==} + + unist-util-modify-children@4.0.0: + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} + + unist-util-position-from-estree@2.0.0: + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} + + unist-util-position@4.0.4: + resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-stringify-position@3.0.3: + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-children@2.0.2: + resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==} + + unist-util-visit-children@3.0.0: + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} + + unist-util-visit-parents@5.1.3: + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@4.1.2: + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + update-browserslist-db@1.1.0: + resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + validate-html-nesting@1.2.2: + resolution: {integrity: sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==} + + vfile-location@4.1.0: + resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-message@3.1.4: + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + + vfile-message@4.0.2: + resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + + vfile@5.3.7: + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + + vfile@6.0.2: + resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==} + + vite-plugin-simple-scope@2.0.2: + resolution: {integrity: sha512-UvF++rRZbmGK4A+JsTo0YVKw55wk5IyBTgURspzlkjbt66FXWMOND5yZmGB/2CtFky7wKNz6LHB2B6gHCVrfAw==} + engines: {node: '>=18.14.1'} + + vite-plugin-solid@2.10.2: + resolution: {integrity: sha512-AOEtwMe2baBSXMXdo+BUwECC8IFHcKS6WQV/1NEd+Q7vHPap5fmIhLcAzr+DUJ04/KHx/1UBU0l1/GWP+rMAPQ==} + peerDependencies: + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* + solid-js: ^1.7.2 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + '@testing-library/jest-dom': + optional: true + + vite@5.3.4: + resolution: {integrity: sha512-Cw+7zL3ZG9/NZBB8C+8QbQZmR54GwqIz+WMI4b3JgdYJvX+ny9AjJXqkGQlDXSXRP9rP0B4tbciRMOVEKulVOA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitefu@0.2.5: + resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + vite: + optional: true + + volar-service-css@0.0.59: + resolution: {integrity: sha512-gLNjJnECbalPvQB7qeJjhkDN8sR5M3ItbVYjnyio61aHaWptIiXm/HfDahcQ2ApwmvWidkMWWegjGq5L0BENDA==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + volar-service-emmet@0.0.59: + resolution: {integrity: sha512-6EynHcuMwMBETpK29TbZvIMmvzdVG+Tkokk9VWfZeI+SwDptk2tgdhEqiXXvIkqYNgbuu73Itp66lpH76cAU+Q==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + volar-service-html@0.0.59: + resolution: {integrity: sha512-hEXOsYpILDlITZxnqRLV9OepVWD63GZBsyjMxszwdzlxvGZjzbGcBBinJGGJRwFIV8djdJwnt91bkdg1V5tj6Q==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + volar-service-prettier@0.0.59: + resolution: {integrity: sha512-FmBR4lsgFRGR3V0LnxZZal0WqdOJjuLL6mQSj4p57M15APtQwuocG/FiF+ONGFnwRXMOIBDBTCARdth+TKgL3A==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + prettier: ^2.2 || ^3.0 + peerDependenciesMeta: + '@volar/language-service': + optional: true + prettier: + optional: true + + volar-service-typescript-twoslash-queries@0.0.59: + resolution: {integrity: sha512-skm8e6yhCIkqLwJB6S9MqT5lO9LNFuMD3dYxKpmOZs1CKbXmCZZTmLfEaD5VkJae1xdleEDZFFTHl2O5HLjOGQ==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + volar-service-typescript@0.0.59: + resolution: {integrity: sha512-VCOpfiu+lUo5lapWLB5L5vmQGtwzmNWn5MueV915eku7blpphmE+Z7hCNcL1NApn7AetXWhiblv8ZhmUx/dGIA==} + peerDependencies: + '@volar/language-service': ~2.4.0-alpha.12 + peerDependenciesMeta: + '@volar/language-service': + optional: true + + vscode-css-languageservice@6.3.0: + resolution: {integrity: sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==} + + vscode-html-languageservice@5.3.0: + resolution: {integrity: sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==} + + vscode-jsonrpc@8.2.0: + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} + engines: {node: '>=14.0.0'} + + vscode-languageserver-protocol@3.17.5: + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} + + vscode-languageserver-textdocument@1.0.11: + resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} + + vscode-languageserver-types@3.17.5: + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + + vscode-languageserver@9.0.1: + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} + hasBin: true + + vscode-nls@5.2.0: + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} + + vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} + + vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + + watchpack@2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-pm-runs@1.1.0: + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} + + which-pm@2.2.0: + resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} + engines: {node: '>=8.15'} + + which-pm@3.0.0: + resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} + engines: {node: '>=18.12'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + widest-line@4.0.1: + resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} + engines: {node: '>=12'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yaml@2.4.5: + resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} + engines: {node: '>= 14'} + hasBin: true + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} + + zod-to-json-schema@3.23.1: + resolution: {integrity: sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==} + peerDependencies: + zod: ^3.23.3 + + zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@alloc/quick-lru@5.2.0': {} + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + + '@astrojs/check@0.5.10(typescript@5.5.3)': + dependencies: + '@astrojs/language-server': 2.12.1(typescript@5.5.3) + chokidar: 3.6.0 + fast-glob: 3.3.2 + kleur: 4.1.5 + typescript: 5.5.3 + yargs: 17.7.2 + transitivePeerDependencies: + - prettier + - prettier-plugin-astro + + '@astrojs/compiler@2.9.2': {} + + '@astrojs/internal-helpers@0.4.1': {} + + '@astrojs/language-server@2.12.1(typescript@5.5.3)': + dependencies: + '@astrojs/compiler': 2.9.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@volar/kit': 2.4.0-alpha.17(typescript@5.5.3) + '@volar/language-core': 2.4.0-alpha.17 + '@volar/language-server': 2.4.0-alpha.17 + '@volar/language-service': 2.4.0-alpha.17 + '@volar/typescript': 2.4.0-alpha.17 + fast-glob: 3.3.2 + muggle-string: 0.4.1 + volar-service-css: 0.0.59(@volar/language-service@2.4.0-alpha.17) + volar-service-emmet: 0.0.59(@volar/language-service@2.4.0-alpha.17) + volar-service-html: 0.0.59(@volar/language-service@2.4.0-alpha.17) + volar-service-prettier: 0.0.59(@volar/language-service@2.4.0-alpha.17) + volar-service-typescript: 0.0.59(@volar/language-service@2.4.0-alpha.17) + volar-service-typescript-twoslash-queries: 0.0.59(@volar/language-service@2.4.0-alpha.17) + vscode-html-languageservice: 5.3.0 + vscode-uri: 3.0.8 + transitivePeerDependencies: + - typescript + + '@astrojs/markdown-remark@5.1.0': + dependencies: + '@astrojs/prism': 3.1.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.1 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.1.0 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.0 + remark-gfm: 4.0.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + remark-smartypants: 2.1.0 + shiki: 1.11.0 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 + unist-util-visit: 5.0.0 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.2 + transitivePeerDependencies: + - supports-color + + '@astrojs/markdown-remark@5.2.0': + dependencies: + '@astrojs/prism': 3.1.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.1 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.1.0 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.0 + remark-gfm: 4.0.0 + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + remark-smartypants: 3.0.2 + shiki: 1.11.0 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 + unist-util-visit: 5.0.0 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.2 + transitivePeerDependencies: + - supports-color + + '@astrojs/mdx@2.3.1(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))': + dependencies: + '@astrojs/markdown-remark': 5.1.0 + '@mdx-js/mdx': 3.0.1 + acorn: 8.12.1 + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + es-module-lexer: 1.5.4 + estree-util-visit: 2.0.0 + github-slugger: 2.0.0 + gray-matter: 4.0.3 + hast-util-to-html: 9.0.1 + kleur: 4.1.5 + rehype-raw: 7.0.0 + remark-gfm: 4.0.0 + remark-smartypants: 2.1.0 + source-map: 0.7.4 + unist-util-visit: 5.0.0 + vfile: 6.0.2 + transitivePeerDependencies: + - supports-color + + '@astrojs/node@7.0.4(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))': + dependencies: + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + send: 0.18.0 + server-destroy: 1.0.1 + transitivePeerDependencies: + - supports-color + + '@astrojs/preact@3.5.1(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12))': + dependencies: + '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9) + '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.9) + '@preact/preset-vite': 2.8.2(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12)) + '@preact/signals': 1.3.0(preact@10.22.1) + babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.24.9) + preact: 10.22.1 + preact-render-to-string: 6.5.6(preact@10.22.1) + transitivePeerDependencies: + - '@babel/core' + - supports-color + - vite + + '@astrojs/prism@3.1.0': + dependencies: + prismjs: 1.29.0 + + '@astrojs/react@3.6.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.4(@types/node@20.14.12))': + dependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + '@vitejs/plugin-react': 4.3.1(vite@5.3.4(@types/node@20.14.12)) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + ultrahtml: 1.5.3 + transitivePeerDependencies: + - supports-color + - vite + + '@astrojs/sitemap@3.1.6': + dependencies: + sitemap: 7.1.2 + stream-replace-string: 2.0.0 + zod: 3.23.8 + + '@astrojs/solid-js@3.0.3(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.12))': + dependencies: + solid-js: 1.8.18 + vite-plugin-solid: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.12)) + transitivePeerDependencies: + - '@testing-library/jest-dom' + - supports-color + - vite + + '@astrojs/starlight@0.21.5(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))': + dependencies: + '@astrojs/mdx': 2.3.1(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) + '@astrojs/sitemap': 3.1.6 + '@pagefind/default-ui': 1.1.0 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + astro-expressive-code: 0.33.5(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)) + bcp-47: 2.1.0 + hast-util-from-html: 2.0.1 + hast-util-select: 6.0.2 + hast-util-to-string: 3.0.0 + hastscript: 8.0.0 + mdast-util-directive: 3.0.0 + mdast-util-to-markdown: 2.1.0 + pagefind: 1.1.0 + rehype: 13.0.1 + remark-directive: 3.0.0 + unified: 11.0.5 + unist-util-visit: 5.0.0 + vfile: 6.0.2 + transitivePeerDependencies: + - supports-color + + '@astrojs/tailwind@5.1.0(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))(tailwindcss@3.4.6)': + dependencies: + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + autoprefixer: 10.4.19(postcss@8.4.39) + postcss: 8.4.39 + postcss-load-config: 4.0.2(postcss@8.4.39) + tailwindcss: 3.4.6 + transitivePeerDependencies: + - ts-node + + '@astrojs/telemetry@3.1.0': + dependencies: + ci-info: 4.0.0 + debug: 4.3.5 + dlv: 1.1.3 + dset: 3.1.3 + is-docker: 3.0.0 + is-wsl: 3.1.0 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color + + '@babel/code-frame@7.24.7': + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.0.1 + + '@babel/compat-data@7.24.9': {} + + '@babel/core@7.24.9': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.24.10 + '@babel/helper-compilation-targets': 7.24.8 + '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9) + '@babel/helpers': 7.24.8 + '@babel/parser': 7.24.8 + '@babel/template': 7.24.7 + '@babel/traverse': 7.24.8 + '@babel/types': 7.24.9 + convert-source-map: 2.0.0 + debug: 4.3.5 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.24.10': + dependencies: + '@babel/types': 7.24.9 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + '@babel/helper-annotate-as-pure@7.24.7': + dependencies: + '@babel/types': 7.24.9 + + '@babel/helper-compilation-targets@7.24.8': + dependencies: + '@babel/compat-data': 7.24.9 + '@babel/helper-validator-option': 7.24.8 + browserslist: 4.23.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-environment-visitor@7.24.7': + dependencies: + '@babel/types': 7.24.9 + + '@babel/helper-function-name@7.24.7': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.9 + + '@babel/helper-hoist-variables@7.24.7': + dependencies: + '@babel/types': 7.24.9 + + '@babel/helper-module-imports@7.18.6': + dependencies: + '@babel/types': 7.24.9 + + '@babel/helper-module-imports@7.24.7': + dependencies: + '@babel/traverse': 7.24.8 + '@babel/types': 7.24.9 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)': + dependencies: + '@babel/core': 7.24.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-split-export-declaration': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-plugin-utils@7.24.8': {} + + '@babel/helper-simple-access@7.24.7': + dependencies: + '@babel/traverse': 7.24.8 + '@babel/types': 7.24.9 + transitivePeerDependencies: + - supports-color + + '@babel/helper-split-export-declaration@7.24.7': + dependencies: + '@babel/types': 7.24.9 + + '@babel/helper-string-parser@7.24.8': {} + + '@babel/helper-validator-identifier@7.24.7': {} + + '@babel/helper-validator-option@7.24.8': {} + + '@babel/helpers@7.24.8': + dependencies: + '@babel/template': 7.24.7 + '@babel/types': 7.24.9 + + '@babel/highlight@7.24.7': dependencies: '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.1 - /@babel/parser@7.24.8: - resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==} - engines: {node: '>=6.0.0'} - hasBin: true + '@babel/parser@7.24.8': dependencies: '@babel/types': 7.24.9 - /@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9): - resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 '@babel/helper-plugin-utils': 7.24.8 - /@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.9): - resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9) transitivePeerDependencies: - supports-color - dev: false - /@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.9): - resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 '@babel/helper-plugin-utils': 7.24.8 - dev: false - /@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.9): - resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 '@babel/helper-plugin-utils': 7.24.8 - dev: false - /@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.9): - resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 '@babel/helper-annotate-as-pure': 7.24.7 @@ -776,24 +4149,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/runtime@7.24.8: - resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==} - engines: {node: '>=6.9.0'} + '@babel/runtime@7.24.8': dependencies: regenerator-runtime: 0.14.1 - dev: true - /@babel/template@7.24.7: - resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==} - engines: {node: '>=6.9.0'} + '@babel/template@7.24.7': dependencies: '@babel/code-frame': 7.24.7 '@babel/parser': 7.24.8 '@babel/types': 7.24.9 - /@babel/traverse@7.24.8: - resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==} - engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.8': dependencies: '@babel/code-frame': 7.24.7 '@babel/generator': 7.24.10 @@ -808,19 +4174,13 @@ packages: transitivePeerDependencies: - supports-color - /@babel/types@7.24.9: - resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==} - engines: {node: '>=6.9.0'} + '@babel/types@7.24.9': dependencies: '@babel/helper-string-parser': 7.24.8 '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - /@biomejs/biome@1.8.3: - resolution: {integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==} - engines: {node: '>=14.21.3'} - hasBin: true - requiresBuild: true + '@biomejs/biome@1.8.3': optionalDependencies: '@biomejs/cli-darwin-arm64': 1.8.3 '@biomejs/cli-darwin-x64': 1.8.3 @@ -830,82 +4190,32 @@ packages: '@biomejs/cli-linux-x64-musl': 1.8.3 '@biomejs/cli-win32-arm64': 1.8.3 '@biomejs/cli-win32-x64': 1.8.3 - dev: true - /@biomejs/cli-darwin-arm64@1.8.3: - resolution: {integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + '@biomejs/cli-darwin-arm64@1.8.3': optional: true - /@biomejs/cli-darwin-x64@1.8.3: - resolution: {integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + '@biomejs/cli-darwin-x64@1.8.3': optional: true - /@biomejs/cli-linux-arm64-musl@1.8.3: - resolution: {integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@biomejs/cli-linux-arm64-musl@1.8.3': optional: true - /@biomejs/cli-linux-arm64@1.8.3: - resolution: {integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + '@biomejs/cli-linux-arm64@1.8.3': optional: true - /@biomejs/cli-linux-x64-musl@1.8.3: - resolution: {integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@biomejs/cli-linux-x64-musl@1.8.3': optional: true - /@biomejs/cli-linux-x64@1.8.3: - resolution: {integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + '@biomejs/cli-linux-x64@1.8.3': optional: true - /@biomejs/cli-win32-arm64@1.8.3: - resolution: {integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==} - engines: {node: '>=14.21.3'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + '@biomejs/cli-win32-arm64@1.8.3': optional: true - /@biomejs/cli-win32-x64@1.8.3: - resolution: {integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==} - engines: {node: '>=14.21.3'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + '@biomejs/cli-win32-x64@1.8.3': optional: true - /@changesets/apply-release-plan@7.0.4: - resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} + '@changesets/apply-release-plan@7.0.4': dependencies: '@babel/runtime': 7.24.8 '@changesets/config': 3.0.2 @@ -921,10 +4231,8 @@ packages: prettier: 2.8.8 resolve-from: 5.0.0 semver: 7.6.3 - dev: true - /@changesets/assemble-release-plan@6.0.3: - resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} + '@changesets/assemble-release-plan@6.0.3': dependencies: '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 @@ -933,27 +4241,20 @@ packages: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 semver: 7.6.3 - dev: true - /@changesets/changelog-git@0.2.0: - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + '@changesets/changelog-git@0.2.0': dependencies: '@changesets/types': 6.0.0 - dev: true - /@changesets/changelog-github@0.5.0: - resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} + '@changesets/changelog-github@0.5.0': dependencies: '@changesets/get-github-info': 0.6.0 '@changesets/types': 6.0.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding - dev: true - /@changesets/cli@2.27.7: - resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} - hasBin: true + '@changesets/cli@2.27.7': dependencies: '@babel/runtime': 7.24.8 '@changesets/apply-release-plan': 7.0.4 @@ -987,10 +4288,8 @@ packages: semver: 7.6.3 spawndamnit: 2.0.0 term-size: 2.2.1 - dev: true - /@changesets/config@3.0.2: - resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} + '@changesets/config@3.0.2': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.1 @@ -999,35 +4298,27 @@ packages: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 - dev: true - /@changesets/errors@0.2.0: - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - dev: true - /@changesets/get-dependents-graph@2.1.1: - resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} + '@changesets/get-dependents-graph@2.1.1': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.3 - dev: true - /@changesets/get-github-info@0.6.0: - resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} + '@changesets/get-github-info@0.6.0': dependencies: dataloader: 1.4.0 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - dev: true - /@changesets/get-release-plan@4.0.3: - resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} + '@changesets/get-release-plan@4.0.3': dependencies: '@babel/runtime': 7.24.8 '@changesets/assemble-release-plan': 6.0.3 @@ -1036,14 +4327,10 @@ packages: '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/get-version-range-type@0.4.0: - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - dev: true + '@changesets/get-version-range-type@0.4.0': {} - /@changesets/git@3.0.0: - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + '@changesets/git@3.0.0': dependencies: '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 @@ -1052,33 +4339,25 @@ packages: is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 - dev: true - /@changesets/logger@0.1.0: - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + '@changesets/logger@0.1.0': dependencies: chalk: 2.4.2 - dev: true - /@changesets/parse@0.4.0: - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + '@changesets/parse@0.4.0': dependencies: '@changesets/types': 6.0.0 js-yaml: 3.14.1 - dev: true - /@changesets/pre@2.0.0: - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + '@changesets/pre@2.0.0': dependencies: '@babel/runtime': 7.24.8 '@changesets/errors': 0.2.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - dev: true - /@changesets/read@0.6.0: - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + '@changesets/read@0.6.0': dependencies: '@babel/runtime': 7.24.8 '@changesets/git': 3.0.0 @@ -1088,536 +4367,270 @@ packages: chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 - dev: true - /@changesets/should-skip-package@0.1.0: - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + '@changesets/should-skip-package@0.1.0': dependencies: '@babel/runtime': 7.24.8 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - dev: true - /@changesets/types@4.1.0: - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - dev: true + '@changesets/types@4.1.0': {} - /@changesets/types@6.0.0: - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - dev: true + '@changesets/types@6.0.0': {} - /@changesets/write@0.3.1: - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + '@changesets/write@0.3.1': dependencies: '@babel/runtime': 7.24.8 '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - dev: true - /@clack/core@0.3.4: - resolution: {integrity: sha512-H4hxZDXgHtWTwV3RAVenqcC4VbJZNegbBjlPvzOzCouXtS2y3sDvlO3IsbrPNWuLWPPlYVYPghQdSF64683Ldw==} + '@clack/core@0.3.4': dependencies: picocolors: 1.0.1 sisteransi: 1.0.5 - dev: false - /@clack/prompts@0.7.0: - resolution: {integrity: sha512-0MhX9/B4iL6Re04jPrttDm+BsP8y6mS7byuv0BvXgdXhbV5PdlsHt55dvNsuBCPZ7xq1oTAOOuotR9NFbQyMSA==} + '@clack/prompts@0.7.0': dependencies: '@clack/core': 0.3.4 picocolors: 1.0.1 sisteransi: 1.0.5 - dev: false - bundledDependencies: - - is-unicode-supported - /@ctrl/tinycolor@3.6.1: - resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} - engines: {node: '>=10'} - dev: false + '@ctrl/tinycolor@3.6.1': {} - /@emmetio/abbreviation@2.3.3: - resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} + '@emmetio/abbreviation@2.3.3': dependencies: '@emmetio/scanner': 1.0.4 - dev: false - /@emmetio/css-abbreviation@2.1.8: - resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} + '@emmetio/css-abbreviation@2.1.8': dependencies: '@emmetio/scanner': 1.0.4 - dev: false - /@emmetio/css-parser@0.4.0: - resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==} + '@emmetio/css-parser@0.4.0': dependencies: '@emmetio/stream-reader': 2.2.0 '@emmetio/stream-reader-utils': 0.1.0 - dev: false - /@emmetio/html-matcher@1.3.0: - resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==} + '@emmetio/html-matcher@1.3.0': dependencies: '@emmetio/scanner': 1.0.4 - dev: false - /@emmetio/scanner@1.0.4: - resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==} - dev: false + '@emmetio/scanner@1.0.4': {} - /@emmetio/stream-reader-utils@0.1.0: - resolution: {integrity: sha512-ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==} - dev: false + '@emmetio/stream-reader-utils@0.1.0': {} - /@emmetio/stream-reader@2.2.0: - resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} - dev: false + '@emmetio/stream-reader@2.2.0': {} - /@emnapi/runtime@1.2.0: - resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} - requiresBuild: true + '@emnapi/runtime@1.2.0': dependencies: tslib: 2.6.3 optional: true - /@esbuild/aix-ppc64@0.21.5: - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [aix] - requiresBuild: true + '@esbuild/aix-ppc64@0.21.5': optional: true - /@esbuild/android-arm64@0.21.5: - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true + '@esbuild/android-arm64@0.21.5': optional: true - /@esbuild/android-arm@0.21.5: - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true + '@esbuild/android-arm@0.21.5': optional: true - /@esbuild/android-x64@0.21.5: - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true + '@esbuild/android-x64@0.21.5': optional: true - /@esbuild/darwin-arm64@0.21.5: - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@esbuild/darwin-arm64@0.21.5': optional: true - /@esbuild/darwin-x64@0.21.5: - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@esbuild/darwin-x64@0.21.5': optional: true - /@esbuild/freebsd-arm64@0.21.5: - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true + '@esbuild/freebsd-arm64@0.21.5': optional: true - /@esbuild/freebsd-x64@0.21.5: - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true + '@esbuild/freebsd-x64@0.21.5': optional: true - /@esbuild/linux-arm64@0.21.5: - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@esbuild/linux-arm64@0.21.5': optional: true - /@esbuild/linux-arm@0.21.5: - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@esbuild/linux-arm@0.21.5': optional: true - /@esbuild/linux-ia32@0.21.5: - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true + '@esbuild/linux-ia32@0.21.5': optional: true - /@esbuild/linux-loong64@0.21.5: - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true + '@esbuild/linux-loong64@0.21.5': optional: true - /@esbuild/linux-mips64el@0.21.5: - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true + '@esbuild/linux-mips64el@0.21.5': optional: true - /@esbuild/linux-ppc64@0.21.5: - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true + '@esbuild/linux-ppc64@0.21.5': optional: true - /@esbuild/linux-riscv64@0.21.5: - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true + '@esbuild/linux-riscv64@0.21.5': optional: true - /@esbuild/linux-s390x@0.21.5: - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@esbuild/linux-s390x@0.21.5': optional: true - /@esbuild/linux-x64@0.21.5: - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@esbuild/linux-x64@0.21.5': optional: true - /@esbuild/netbsd-x64@0.21.5: - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true + '@esbuild/netbsd-x64@0.21.5': optional: true - /@esbuild/openbsd-x64@0.21.5: - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true + '@esbuild/openbsd-x64@0.21.5': optional: true - /@esbuild/sunos-x64@0.21.5: - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true + '@esbuild/sunos-x64@0.21.5': optional: true - /@esbuild/win32-arm64@0.21.5: - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@esbuild/win32-arm64@0.21.5': optional: true - /@esbuild/win32-ia32@0.21.5: - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@esbuild/win32-ia32@0.21.5': optional: true - /@esbuild/win32-x64@0.21.5: - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@esbuild/win32-x64@0.21.5': optional: true - /@expressive-code/core@0.33.5: - resolution: {integrity: sha512-KL0EkKAvd7SSIQL3ZIP19xqe4xNjBaQYNvcJC6RmoBUnQpvxaJNFwRxCBEF/X0ftJEMaSG7WTrabZ9c/zFeqmA==} + '@expressive-code/core@0.33.5': dependencies: '@ctrl/tinycolor': 3.6.1 hast-util-to-html: 8.0.4 hastscript: 7.2.0 postcss: 8.4.39 postcss-nested: 6.2.0(postcss@8.4.39) - dev: false - /@expressive-code/plugin-frames@0.33.5: - resolution: {integrity: sha512-lFt/gbnZscBSxHovg4XiWohp5nrxk4McS6RGABdj6+0gJcX8/YrFTM23GKBIkaDePxdDidVY0jQYGYDL/RrQHw==} + '@expressive-code/plugin-frames@0.33.5': dependencies: '@expressive-code/core': 0.33.5 hastscript: 7.2.0 - dev: false - /@expressive-code/plugin-shiki@0.33.5: - resolution: {integrity: sha512-LWgttQTUrIPE1X+Lya1qFWiX47tH2AS2hkbj/cZoWkdiSjn6zUvtTypK/2Xn6Rgn6z6ClzpgHvkXRqFn7nAB4A==} + '@expressive-code/plugin-shiki@0.33.5': dependencies: '@expressive-code/core': 0.33.5 shiki: 1.11.0 - dev: false - /@expressive-code/plugin-text-markers@0.33.5: - resolution: {integrity: sha512-JxSHL1MGrJAPNaUMjFXex3K+9NJDbfew9H6PmX8LQ+fm9VNQdtBYTAz/x7nqOk7bkTrtAZK5RfDqUfb8U5M+2A==} + '@expressive-code/plugin-text-markers@0.33.5': dependencies: '@expressive-code/core': 0.33.5 hastscript: 7.2.0 unist-util-visit-parents: 5.1.3 - dev: false - /@fontsource/atkinson-hyperlegible@5.0.20: - resolution: {integrity: sha512-YczGmDvJ23lheBaEJGNdUDTUwl1uG6xrU1rG+ftOVCdkmOaXtuZI/zq1KW+02d1eGsqKCrtaabHQMrtLjCYQbg==} - dev: false + '@fontsource/atkinson-hyperlegible@5.0.20': {} - /@img/sharp-darwin-arm64@0.33.4: - resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==} - engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@img/sharp-darwin-arm64@0.33.4': optionalDependencies: '@img/sharp-libvips-darwin-arm64': 1.0.2 optional: true - - /@img/sharp-darwin-x64@0.33.4: - resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==} - engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [darwin] - requiresBuild: true + + '@img/sharp-darwin-x64@0.33.4': optionalDependencies: '@img/sharp-libvips-darwin-x64': 1.0.2 optional: true - /@img/sharp-libvips-darwin-arm64@1.0.2: - resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==} - engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@img/sharp-libvips-darwin-arm64@1.0.2': optional: true - /@img/sharp-libvips-darwin-x64@1.0.2: - resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==} - engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@img/sharp-libvips-darwin-x64@1.0.2': optional: true - /@img/sharp-libvips-linux-arm64@1.0.2: - resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==} - engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-arm64@1.0.2': optional: true - /@img/sharp-libvips-linux-arm@1.0.2: - resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==} - engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-arm@1.0.2': optional: true - /@img/sharp-libvips-linux-s390x@1.0.2: - resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==} - engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-s390x@1.0.2': optional: true - /@img/sharp-libvips-linux-x64@1.0.2: - resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==} - engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linux-x64@1.0.2': optional: true - /@img/sharp-libvips-linuxmusl-arm64@1.0.2: - resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==} - engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linuxmusl-arm64@1.0.2': optional: true - /@img/sharp-libvips-linuxmusl-x64@1.0.2: - resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==} - engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-libvips-linuxmusl-x64@1.0.2': optional: true - /@img/sharp-linux-arm64@0.33.4: - resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==} - engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-linux-arm64@0.33.4': optionalDependencies: '@img/sharp-libvips-linux-arm64': 1.0.2 optional: true - /@img/sharp-linux-arm@0.33.4: - resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==} - engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm] - os: [linux] - requiresBuild: true + '@img/sharp-linux-arm@0.33.4': optionalDependencies: '@img/sharp-libvips-linux-arm': 1.0.2 optional: true - /@img/sharp-linux-s390x@0.33.4: - resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==} - engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@img/sharp-linux-s390x@0.33.4': optionalDependencies: '@img/sharp-libvips-linux-s390x': 1.0.2 optional: true - /@img/sharp-linux-x64@0.33.4: - resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==} - engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-linux-x64@0.33.4': optionalDependencies: '@img/sharp-libvips-linux-x64': 1.0.2 optional: true - /@img/sharp-linuxmusl-arm64@0.33.4: - resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==} - engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@img/sharp-linuxmusl-arm64@0.33.4': optionalDependencies: '@img/sharp-libvips-linuxmusl-arm64': 1.0.2 optional: true - /@img/sharp-linuxmusl-x64@0.33.4: - resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==} - engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [linux] - requiresBuild: true + '@img/sharp-linuxmusl-x64@0.33.4': optionalDependencies: '@img/sharp-libvips-linuxmusl-x64': 1.0.2 optional: true - /@img/sharp-wasm32@0.33.4: - resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [wasm32] - requiresBuild: true + '@img/sharp-wasm32@0.33.4': dependencies: '@emnapi/runtime': 1.2.0 optional: true - /@img/sharp-win32-ia32@0.33.4: - resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@img/sharp-win32-ia32@0.33.4': optional: true - /@img/sharp-win32-x64@0.33.4: - resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'} - cpu: [x64] - os: [win32] - requiresBuild: true + '@img/sharp-win32-x64@0.33.4': optional: true - /@isaacs/cliui@8.0.2: - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 - string-width-cjs: /string-width@4.2.3 + string-width-cjs: string-width@4.2.3 strip-ansi: 7.1.0 - strip-ansi-cjs: /strip-ansi@6.0.1 + strip-ansi-cjs: strip-ansi@6.0.1 wrap-ansi: 8.1.0 - wrap-ansi-cjs: /wrap-ansi@7.0.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 - /@jridgewell/gen-mapping@0.3.5: - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 - /@jridgewell/resolve-uri@3.1.2: - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} - engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.2': {} - /@jridgewell/set-array@1.2.1: - resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} - engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': {} - /@jridgewell/sourcemap-codec@1.5.0: - resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.0': {} - /@jridgewell/trace-mapping@0.3.25: - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - /@manypkg/find-root@1.1.0: - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + '@manypkg/find-root@1.1.0': dependencies: '@babel/runtime': 7.24.8 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - dev: true - /@manypkg/get-packages@1.1.3: - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + '@manypkg/get-packages@1.1.3': dependencies: '@babel/runtime': 7.24.8 '@changesets/types': 4.1.0 @@ -1625,10 +4638,8 @@ packages: fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - dev: true - /@mdx-js/mdx@3.0.1: - resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==} + '@mdx-js/mdx@3.0.1': dependencies: '@types/estree': 1.0.5 '@types/estree-jsx': 1.0.5 @@ -1655,171 +4666,78 @@ packages: vfile: 6.0.2 transitivePeerDependencies: - supports-color - dev: false - /@next/env@14.0.4: - resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==} - dev: false + '@next/env@14.0.4': {} - /@next/swc-darwin-arm64@14.0.4: - resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false + '@next/swc-darwin-arm64@14.0.4': optional: true - /@next/swc-darwin-x64@14.0.4: - resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false + '@next/swc-darwin-x64@14.0.4': optional: true - /@next/swc-linux-arm64-gnu@14.0.4: - resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@next/swc-linux-arm64-gnu@14.0.4': optional: true - /@next/swc-linux-arm64-musl@14.0.4: - resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@next/swc-linux-arm64-musl@14.0.4': optional: true - /@next/swc-linux-x64-gnu@14.0.4: - resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@next/swc-linux-x64-gnu@14.0.4': optional: true - /@next/swc-linux-x64-musl@14.0.4: - resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==} - engines: {node: '>= 10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@next/swc-linux-x64-musl@14.0.4': optional: true - /@next/swc-win32-arm64-msvc@14.0.4: - resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==} - engines: {node: '>= 10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: false + '@next/swc-win32-arm64-msvc@14.0.4': optional: true - /@next/swc-win32-ia32-msvc@14.0.4: - resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==} - engines: {node: '>= 10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: false + '@next/swc-win32-ia32-msvc@14.0.4': optional: true - /@next/swc-win32-x64-msvc@14.0.4: - resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==} - engines: {node: '>= 10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@next/swc-win32-x64-msvc@14.0.4': optional: true - /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + '@nodelib/fs.stat@2.0.5': {} - /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - /@pagefind/darwin-arm64@1.1.0: - resolution: {integrity: sha512-SLsXNLtSilGZjvqis8sX42fBWsWAVkcDh1oerxwqbac84HbiwxpxOC2jm8hRwcR0Z55HPZPWO77XeRix/8GwTg==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: false + '@pagefind/darwin-arm64@1.1.0': optional: true - /@pagefind/darwin-x64@1.1.0: - resolution: {integrity: sha512-QjQSE/L5oS1C8N8GdljGaWtjCBMgMtfrPAoiCmINTu9Y9dp0ggAyXvF8K7Qg3VyIMYJ6v8vg2PN7Z3b+AaAqUA==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: false + '@pagefind/darwin-x64@1.1.0': optional: true - /@pagefind/default-ui@1.1.0: - resolution: {integrity: sha512-+XiAJAK++C64nQcD7s3Prdmd5S92lT05fwjOxm0L1jj80jbL+tmvcqkkFnPpoqhnicIPgcAX/Y5W0HRZnBt35w==} - dev: false + '@pagefind/default-ui@1.1.0': {} - /@pagefind/linux-arm64@1.1.0: - resolution: {integrity: sha512-8zjYCa2BtNEL7KnXtysPtBELCyv5DSQ4yHeK/nsEq6w4ToAMTBl0K06khqxdSGgjMSwwrxvLzq3so0LC5Q14dA==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: false + '@pagefind/linux-arm64@1.1.0': optional: true - /@pagefind/linux-x64@1.1.0: - resolution: {integrity: sha512-4lsg6VB7A6PWTwaP8oSmXV4O9H0IHX7AlwTDcfyT+YJo/sPXOVjqycD5cdBgqNLfUk8B9bkWcTDCRmJbHrKeCw==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: false + '@pagefind/linux-x64@1.1.0': optional: true - /@pagefind/windows-x64@1.1.0: - resolution: {integrity: sha512-OboCM76BcMKT9IoSfZuFhiqMRgTde8x4qDDvKulFmycgiJrlL5WnIqBHJLQxZq+o2KyZpoHF97iwsGAm8c32sQ==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: false + '@pagefind/windows-x64@1.1.0': optional: true - /@pkgjs/parseargs@0.11.0: - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - requiresBuild: true + '@pkgjs/parseargs@0.11.0': optional: true - /@preact/preset-vite@2.8.2(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4): - resolution: {integrity: sha512-m3tl+M8IO8jgiHnk+7LSTFl8axdPXloewi7iGVLdmCwf34XOzEUur0bZVewW4DUbUipFjTS2CXu27+5f/oexBA==} - peerDependencies: - '@babel/core': 7.x - vite: 2.x || 3.x || 4.x || 5.x + '@playwright/test@1.45.3': + dependencies: + playwright: 1.45.3 + + '@preact/preset-vite@2.8.2(@babel/core@7.24.9)(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12))': dependencies: '@babel/core': 7.24.9 '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9) '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.24.9) - '@prefresh/vite': 2.4.6(preact@10.22.1)(vite@5.3.4) + '@prefresh/vite': 2.4.6(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12)) '@rollup/pluginutils': 4.2.1 babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.24.9) debug: 4.3.5 @@ -1829,46 +4747,27 @@ packages: resolve: 1.22.8 source-map: 0.7.4 stack-trace: 1.0.0-pre2 - vite: 5.3.4(@types/node@20.14.11) + vite: 5.3.4(@types/node@20.14.12) transitivePeerDependencies: - preact - supports-color - dev: false - /@preact/signals-core@1.7.0: - resolution: {integrity: sha512-bEZLgmJGSBVP5PUPDowhPW3bVdMmp9Tr5OEl+SQK+8Tv9T7UsIfyN905cfkmmeqw8z4xp8T6zrl4M1uj9+HAfg==} - dev: false + '@preact/signals-core@1.7.0': {} - /@preact/signals@1.3.0(preact@10.22.1): - resolution: {integrity: sha512-EOMeg42SlLS72dhoq6Vjq08havnLseWmPQ8A0YsgIAqMgWgx7V1a39+Pxo6i7SY5NwJtH4849JogFq3M67AzWg==} - peerDependencies: - preact: 10.x + '@preact/signals@1.3.0(preact@10.22.1)': dependencies: '@preact/signals-core': 1.7.0 preact: 10.22.1 - dev: false - /@prefresh/babel-plugin@0.5.1: - resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==} - dev: false + '@prefresh/babel-plugin@0.5.1': {} - /@prefresh/core@1.5.2(preact@10.22.1): - resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==} - peerDependencies: - preact: ^10.0.0 + '@prefresh/core@1.5.2(preact@10.22.1)': dependencies: preact: 10.22.1 - dev: false - /@prefresh/utils@1.2.0: - resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==} - dev: false + '@prefresh/utils@1.2.0': {} - /@prefresh/vite@2.4.6(preact@10.22.1)(vite@5.3.4): - resolution: {integrity: sha512-miYbTl2J1YNaQJWyWHJzyIpNh7vKUuXC1qCDRzPeWjhQ+9bxeXkUBGDGd9I1f37R5GQYi1S65AN5oR0BR2WzvQ==} - peerDependencies: - preact: ^10.4.0 - vite: '>=2.0.0' + '@prefresh/vite@2.4.6(preact@10.22.1)(vite@5.3.4(@types/node@20.14.12))': dependencies: '@babel/core': 7.24.9 '@prefresh/babel-plugin': 0.5.1 @@ -1876,150 +4775,76 @@ packages: '@prefresh/utils': 1.2.0 '@rollup/pluginutils': 4.2.1 preact: 10.22.1 - vite: 5.3.4(@types/node@20.14.11) + vite: 5.3.4(@types/node@20.14.12) transitivePeerDependencies: - supports-color - dev: false - /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + '@rollup/pluginutils@4.2.1': dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - dev: false - /@rollup/rollup-android-arm-eabi@4.19.0: - resolution: {integrity: sha512-JlPfZ/C7yn5S5p0yKk7uhHTTnFlvTgLetl2VxqE518QgyM7C9bSfFTYvB/Q/ftkq0RIPY4ySxTz+/wKJ/dXC0w==} - cpu: [arm] - os: [android] - requiresBuild: true + '@rollup/rollup-android-arm-eabi@4.19.0': optional: true - /@rollup/rollup-android-arm64@4.19.0: - resolution: {integrity: sha512-RDxUSY8D1tWYfn00DDi5myxKgOk6RvWPxhmWexcICt/MEC6yEMr4HNCu1sXXYLw8iAsg0D44NuU+qNq7zVWCrw==} - cpu: [arm64] - os: [android] - requiresBuild: true + '@rollup/rollup-android-arm64@4.19.0': optional: true - /@rollup/rollup-darwin-arm64@4.19.0: - resolution: {integrity: sha512-emvKHL4B15x6nlNTBMtIaC9tLPRpeA5jMvRLXVbl/W9Ie7HhkrE7KQjvgS9uxgatL1HmHWDXk5TTS4IaNJxbAA==} - cpu: [arm64] - os: [darwin] - requiresBuild: true + '@rollup/rollup-darwin-arm64@4.19.0': optional: true - /@rollup/rollup-darwin-x64@4.19.0: - resolution: {integrity: sha512-fO28cWA1dC57qCd+D0rfLC4VPbh6EOJXrreBmFLWPGI9dpMlER2YwSPZzSGfq11XgcEpPukPTfEVFtw2q2nYJg==} - cpu: [x64] - os: [darwin] - requiresBuild: true + '@rollup/rollup-darwin-x64@4.19.0': optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.19.0: - resolution: {integrity: sha512-2Rn36Ubxdv32NUcfm0wB1tgKqkQuft00PtM23VqLuCUR4N5jcNWDoV5iBC9jeGdgS38WK66ElncprqgMUOyomw==} - cpu: [arm] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-arm-gnueabihf@4.19.0': optional: true - /@rollup/rollup-linux-arm-musleabihf@4.19.0: - resolution: {integrity: sha512-gJuzIVdq/X1ZA2bHeCGCISe0VWqCoNT8BvkQ+BfsixXwTOndhtLUpOg0A1Fcx/+eA6ei6rMBzlOz4JzmiDw7JQ==} - cpu: [arm] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-arm-musleabihf@4.19.0': optional: true - /@rollup/rollup-linux-arm64-gnu@4.19.0: - resolution: {integrity: sha512-0EkX2HYPkSADo9cfeGFoQ7R0/wTKb7q6DdwI4Yn/ULFE1wuRRCHybxpl2goQrx4c/yzK3I8OlgtBu4xvted0ug==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-arm64-gnu@4.19.0': optional: true - /@rollup/rollup-linux-arm64-musl@4.19.0: - resolution: {integrity: sha512-GlIQRj9px52ISomIOEUq/IojLZqzkvRpdP3cLgIE1wUWaiU5Takwlzpz002q0Nxxr1y2ZgxC2obWxjr13lvxNQ==} - cpu: [arm64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-arm64-musl@4.19.0': optional: true - /@rollup/rollup-linux-powerpc64le-gnu@4.19.0: - resolution: {integrity: sha512-N6cFJzssruDLUOKfEKeovCKiHcdwVYOT1Hs6dovDQ61+Y9n3Ek4zXvtghPPelt6U0AH4aDGnDLb83uiJMkWYzQ==} - cpu: [ppc64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-powerpc64le-gnu@4.19.0': optional: true - /@rollup/rollup-linux-riscv64-gnu@4.19.0: - resolution: {integrity: sha512-2DnD3mkS2uuam/alF+I7M84koGwvn3ZVD7uG+LEWpyzo/bq8+kKnus2EVCkcvh6PlNB8QPNFOz6fWd5N8o1CYg==} - cpu: [riscv64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-riscv64-gnu@4.19.0': optional: true - /@rollup/rollup-linux-s390x-gnu@4.19.0: - resolution: {integrity: sha512-D6pkaF7OpE7lzlTOFCB2m3Ngzu2ykw40Nka9WmKGUOTS3xcIieHe82slQlNq69sVB04ch73thKYIWz/Ian8DUA==} - cpu: [s390x] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-s390x-gnu@4.19.0': optional: true - /@rollup/rollup-linux-x64-gnu@4.19.0: - resolution: {integrity: sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-x64-gnu@4.19.0': optional: true - /@rollup/rollup-linux-x64-musl@4.19.0: - resolution: {integrity: sha512-HxfbvfCKJe/RMYJJn0a12eiOI9OOtAUF4G6ozrFUK95BNyoJaSiBjIOHjZskTUffUrB84IPKkFG9H9nEvJGW6A==} - cpu: [x64] - os: [linux] - requiresBuild: true + '@rollup/rollup-linux-x64-musl@4.19.0': optional: true - /@rollup/rollup-win32-arm64-msvc@4.19.0: - resolution: {integrity: sha512-HxDMKIhmcguGTiP5TsLNolwBUK3nGGUEoV/BO9ldUBoMLBssvh4J0X8pf11i1fTV7WShWItB1bKAKjX4RQeYmg==} - cpu: [arm64] - os: [win32] - requiresBuild: true + '@rollup/rollup-win32-arm64-msvc@4.19.0': optional: true - /@rollup/rollup-win32-ia32-msvc@4.19.0: - resolution: {integrity: sha512-xItlIAZZaiG/u0wooGzRsx11rokP4qyc/79LkAOdznGRAbOFc+SfEdfUOszG1odsHNgwippUJavag/+W/Etc6Q==} - cpu: [ia32] - os: [win32] - requiresBuild: true + '@rollup/rollup-win32-ia32-msvc@4.19.0': optional: true - /@rollup/rollup-win32-x64-msvc@4.19.0: - resolution: {integrity: sha512-xNo5fV5ycvCCKqiZcpB65VMR11NJB+StnxHz20jdqRAktfdfzhgjTiJ2doTDQE/7dqGaV5I7ZGqKpgph6lCIag==} - cpu: [x64] - os: [win32] - requiresBuild: true + '@rollup/rollup-win32-x64-msvc@4.19.0': optional: true - /@shikijs/core@1.11.0: - resolution: {integrity: sha512-VbEhDAhT/2ozO0TPr5/ZQBO/NWLqtk4ZiBf6NplYpF38mKjNfMMied5fNEfIfYfN+cdKvhDB4VMcKvG/g9c3zg==} + '@shikijs/core@1.11.0': dependencies: '@types/hast': 3.0.4 - /@swc/helpers@0.5.2: - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + '@swc/helpers@0.5.2': dependencies: tslib: 2.6.3 - dev: false - /@types/acorn@4.0.6: - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + '@types/acorn@4.0.6': dependencies: '@types/estree': 1.0.5 - dev: false - /@types/babel__core@7.20.5: - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@types/babel__core@7.20.5': dependencies: '@babel/parser': 7.24.8 '@babel/types': 7.24.9 @@ -2027,163 +4852,117 @@ packages: '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 - /@types/babel__generator@7.6.8: - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + '@types/babel__generator@7.6.8': dependencies: '@babel/types': 7.24.9 - /@types/babel__template@7.4.4: - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@types/babel__template@7.4.4': dependencies: '@babel/parser': 7.24.8 '@babel/types': 7.24.9 - /@types/babel__traverse@7.20.6: - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/babel__traverse@7.20.6': dependencies: '@babel/types': 7.24.9 - /@types/cookie@0.6.0: - resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + '@types/cookie@0.6.0': {} - /@types/debug@4.1.12: - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/debug@4.1.12': dependencies: '@types/ms': 0.7.34 - /@types/estree-jsx@1.0.5: - resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + '@types/estree-jsx@1.0.5': dependencies: '@types/estree': 1.0.5 - dev: false - /@types/estree@1.0.5: - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@1.0.5': {} - /@types/fs-extra@11.0.4: - resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + '@types/fs-extra@11.0.4': dependencies: '@types/jsonfile': 6.1.4 '@types/node': 20.14.11 - dev: true - /@types/hast@2.3.10: - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + '@types/hast@2.3.10': dependencies: '@types/unist': 2.0.10 - dev: false - /@types/hast@3.0.4: - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.2 - /@types/jsonfile@6.1.4: - resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + '@types/jsonfile@6.1.4': dependencies: '@types/node': 20.14.11 - dev: true - /@types/mdast@4.0.4: - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + '@types/mdast@4.0.4': dependencies: '@types/unist': 3.0.2 - /@types/mdx@2.0.13: - resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - dev: false + '@types/mdx@2.0.13': {} - /@types/ms@0.7.34: - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/ms@0.7.34': {} - /@types/nlcst@1.0.4: - resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==} + '@types/nlcst@1.0.4': dependencies: '@types/unist': 2.0.10 - dev: false - /@types/nlcst@2.0.3: - resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} + '@types/nlcst@2.0.3': dependencies: '@types/unist': 3.0.2 - /@types/node@12.20.55: - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - dev: true + '@types/node@12.20.55': {} - /@types/node@17.0.45: - resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - dev: false + '@types/node@17.0.45': {} - /@types/node@20.14.11: - resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==} + '@types/node@20.14.11': dependencies: undici-types: 5.26.5 - /@types/parse5@6.0.3: - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - dev: false + '@types/node@20.14.12': + dependencies: + undici-types: 5.26.5 - /@types/prop-types@15.7.12: - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + '@types/parse5@6.0.3': {} - /@types/react-dom@18.3.0: - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + '@types/prop-types@15.7.12': {} + + '@types/react-dom@18.3.0': dependencies: '@types/react': 18.3.3 - /@types/react@18.3.3: - resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + '@types/react@18.3.3': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 - /@types/sanitize-html@2.11.0: - resolution: {integrity: sha512-7oxPGNQHXLHE48r/r/qjn7q0hlrs3kL7oZnGj0Wf/h9tj/6ibFyRkNbsDxaBBZ4XUZ0Dx5LGCyDJ04ytSofacQ==} + '@types/sanitize-html@2.11.0': dependencies: htmlparser2: 8.0.2 - dev: true - /@types/sax@1.2.7: - resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + '@types/sax@1.2.7': dependencies: '@types/node': 20.14.11 - dev: false - - /@types/semver@7.5.8: - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - dev: true - - /@types/unist@2.0.10: - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - dev: false - - /@types/unist@3.0.2: - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - /@ungap/structured-clone@1.2.0: - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + '@types/semver@7.5.8': {} - /@vitejs/plugin-react@4.3.1(vite@5.3.4): - resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - vite: ^4.2.0 || ^5.0.0 + '@types/unist@2.0.10': {} + + '@types/unist@3.0.2': {} + + '@ungap/structured-clone@1.2.0': {} + + '@vitejs/plugin-react@4.3.1(vite@5.3.4(@types/node@20.14.12))': dependencies: '@babel/core': 7.24.9 '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.9) '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.3.4(@types/node@20.14.11) + vite: 5.3.4(@types/node@20.14.12) transitivePeerDependencies: - supports-color - dev: false - /@volar/kit@2.4.0-alpha.17(typescript@5.5.3): - resolution: {integrity: sha512-GH2h5qD1FIBmy9xmaPHll645F9K0CQQWBdDpZA0J4GDAPpKfP5M4WW5B+PS5pMIVl8cazibhsNPn1pJCDzVXIw==} - peerDependencies: - typescript: '*' + '@volar/kit@2.4.0-alpha.17(typescript@5.5.3)': dependencies: '@volar/language-service': 2.4.0-alpha.17 '@volar/typescript': 2.4.0-alpha.17 @@ -2191,16 +4970,12 @@ packages: typescript: 5.5.3 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - dev: false - /@volar/language-core@2.4.0-alpha.17: - resolution: {integrity: sha512-FF9g89QZUVJpgZvrNpA+v5Sgo7MdUjeA1celxCe4nFTpfp4P/FUdZ1lgeYy7ZS5r13oC4Ei6HqWpfLN7PFM60w==} + '@volar/language-core@2.4.0-alpha.17': dependencies: '@volar/source-map': 2.4.0-alpha.17 - dev: false - /@volar/language-server@2.4.0-alpha.17: - resolution: {integrity: sha512-K+ffVR484Zzq9tTeoRxwtvGzvhR8qCpKhcgsPkCPeCh904yr1zxkMX728fhTePB9nZtKpI0jDuqdQA+338Gl1Q==} + '@volar/language-server@2.4.0-alpha.17': dependencies: '@volar/language-core': 2.4.0-alpha.17 '@volar/language-service': 2.4.0-alpha.17 @@ -2212,167 +4987,105 @@ packages: vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - dev: false - /@volar/language-service@2.4.0-alpha.17: - resolution: {integrity: sha512-rq+O/Nf7krrq611khGOH6+f9c5i7vQiDPXOLuGks2bBWjPUqaN7dR8agMm+9BTlAj0IItArKqUncYr5mYU78kQ==} + '@volar/language-service@2.4.0-alpha.17': dependencies: '@volar/language-core': 2.4.0-alpha.17 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - dev: false - /@volar/snapshot-document@2.4.0-alpha.17: - resolution: {integrity: sha512-7h8cf8r+gKU0EEn68pulM1yER1iFshQR/fVT0Bw7T7cbRLe7afnaXbU+jg9yKoEUuJ/B8GU3a/5IBLofY6ZqVg==} + '@volar/snapshot-document@2.4.0-alpha.17': dependencies: vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.11 - dev: false - /@volar/source-map@2.4.0-alpha.17: - resolution: {integrity: sha512-6LOuR2nIloQCSNMNcUPRPLjL5CInIE1pYZ8lifOCSxQRiz8GcWaOm34kAvdm7pzPQqMRHBBnV/Ihkdt/w7oWAQ==} - dev: false + '@volar/source-map@2.4.0-alpha.17': {} - /@volar/typescript@2.4.0-alpha.17: - resolution: {integrity: sha512-oJlz5xJd0O1Xe/I7AV3kPpV6gXlcyxfpMcj/w4/wGY5AxFHxyy5i7VhaE/BVk99zsT6M2KxcZyUSsL55RlNXlQ==} + '@volar/typescript@2.4.0-alpha.17': dependencies: '@volar/language-core': 2.4.0-alpha.17 path-browserify: 1.0.1 vscode-uri: 3.0.8 - dev: false - /@vscode/emmet-helper@2.9.3: - resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==} + '@vscode/emmet-helper@2.9.3': dependencies: emmet: 2.4.7 jsonc-parser: 2.3.1 vscode-languageserver-textdocument: 1.0.11 vscode-languageserver-types: 3.17.5 vscode-uri: 2.1.2 - dev: false - /@vscode/l10n@0.0.18: - resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==} - dev: false + '@vscode/l10n@0.0.18': {} - /acorn-jsx@5.3.2(acorn@8.12.1): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-jsx@5.3.2(acorn@8.12.1): dependencies: acorn: 8.12.1 - dev: false - /acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} - engines: {node: '>=0.4.0'} - hasBin: true + acorn@8.12.1: {} - /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + ansi-align@3.0.1: dependencies: string-width: 4.2.3 - /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} - dev: true + ansi-colors@4.1.3: {} - /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + ansi-regex@5.0.1: {} - /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + ansi-regex@6.0.1: {} - /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 - /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - /ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + ansi-styles@6.2.1: {} - /any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + any-promise@1.3.0: {} - /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + arg@5.0.2: {} - /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 - /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + argparse@2.0.1: {} - /aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + aria-query@5.3.0: dependencies: dequal: 2.0.3 - /array-iterate@2.0.1: - resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + array-iterate@2.0.1: {} - /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - dev: true + array-union@2.1.0: {} - /ast-types@0.16.1: - resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} - engines: {node: '>=4'} + ast-types@0.16.1: dependencies: tslib: 2.6.3 - dev: false - /astring@1.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} - hasBin: true - dev: false + astring@1.8.6: {} - /astro-expressive-code@0.33.5(astro@4.12.2): - resolution: {integrity: sha512-9JAyllueMUN8JTl/h/yTdbKinNmfalEWcV11s3lSf/UJQbAZfWJuy+IlGcArZDI/CmD21GXhFHLqYthpdY33ug==} - peerDependencies: - astro: ^4.0.0-beta || ^3.3.0 + astro-expressive-code@0.33.5(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)): dependencies: - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) hast-util-to-html: 8.0.4 remark-expressive-code: 0.33.5 - dev: false - /astro-integration-kit@0.15.0(astro@4.12.2): - resolution: {integrity: sha512-wzU5Z1GHmdAMbuci+shlJA076xCIh51nM2AkPsA6jPorOln6RBvPMckFjIPN5JvvvuvupuQFr7QuspTtogTYDQ==} - peerDependencies: - astro: ^4.12.0 + astro-integration-kit@0.15.0(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)): dependencies: - astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) pathe: 1.1.2 recast: 0.23.9 - dev: false - /astro@4.12.2(@types/node@20.14.11)(typescript@5.5.3): - resolution: {integrity: sha512-l6OmqlL+FiuSi9x6F+EGZitteOznq1JffOil7st7cdqeMCTEIym4oagI1a6zp6QekliKWEEZWdplGhgh1k1f7Q==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} - hasBin: true + astro@4.12.2(@types/node@20.14.11)(typescript@5.5.3): dependencies: '@astrojs/compiler': 2.9.2 '@astrojs/internal-helpers': 0.4.1 @@ -2431,7 +5144,7 @@ packages: unist-util-visit: 5.0.0 vfile: 6.0.2 vite: 5.3.4(@types/node@20.14.11) - vitefu: 0.2.5(vite@5.3.4) + vitefu: 0.2.5(vite@5.3.4(@types/node@20.14.11)) which-pm: 3.0.0 yargs-parser: 21.1.1 zod: 3.23.8 @@ -2449,12 +5162,84 @@ packages: - terser - typescript - /autoprefixer@10.4.19(postcss@8.4.39): - resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 + astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3): + dependencies: + '@astrojs/compiler': 2.9.2 + '@astrojs/internal-helpers': 0.4.1 + '@astrojs/markdown-remark': 5.2.0 + '@astrojs/telemetry': 3.1.0 + '@babel/core': 7.24.9 + '@babel/generator': 7.24.10 + '@babel/parser': 7.24.8 + '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.24.9) + '@babel/traverse': 7.24.8 + '@babel/types': 7.24.9 + '@types/babel__core': 7.20.5 + '@types/cookie': 0.6.0 + acorn: 8.12.1 + aria-query: 5.3.0 + axobject-query: 4.1.0 + boxen: 7.1.1 + chokidar: 3.6.0 + ci-info: 4.0.0 + clsx: 2.1.1 + common-ancestor-path: 1.0.1 + cookie: 0.6.0 + cssesc: 3.0.0 + debug: 4.3.5 + deterministic-object-hash: 2.0.2 + devalue: 5.0.0 + diff: 5.2.0 + dlv: 1.1.3 + dset: 3.1.3 + es-module-lexer: 1.5.4 + esbuild: 0.21.5 + estree-walker: 3.0.3 + execa: 8.0.1 + fast-glob: 3.3.2 + flattie: 1.1.1 + github-slugger: 2.0.0 + gray-matter: 4.0.3 + html-escaper: 3.0.3 + http-cache-semantics: 4.1.1 + js-yaml: 4.1.0 + kleur: 4.1.5 + magic-string: 0.30.10 + mrmime: 2.0.0 + ora: 8.0.1 + p-limit: 6.1.0 + p-queue: 8.0.1 + path-to-regexp: 6.2.2 + preferred-pm: 4.0.0 + prompts: 2.4.2 + rehype: 13.0.1 + semver: 7.6.3 + shiki: 1.11.0 + string-width: 7.2.0 + strip-ansi: 7.1.0 + tsconfck: 3.1.1(typescript@5.5.3) + unist-util-visit: 5.0.0 + vfile: 6.0.2 + vite: 5.3.4(@types/node@20.14.12) + vitefu: 0.2.5(vite@5.3.4(@types/node@20.14.12)) + which-pm: 3.0.0 + yargs-parser: 21.1.1 + zod: 3.23.8 + zod-to-json-schema: 3.23.1(zod@3.23.8) + optionalDependencies: + sharp: 0.33.4 + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - supports-color + - terser + - typescript + + autoprefixer@10.4.19(postcss@8.4.39): dependencies: browserslist: 4.23.2 caniuse-lite: 1.0.30001643 @@ -2464,18 +5249,11 @@ packages: postcss: 8.4.39 postcss-value-parser: 4.2.0 - /axobject-query@4.1.0: - resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} - engines: {node: '>= 0.4'} + axobject-query@4.1.0: {} - /b4a@1.6.6: - resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} - dev: false + b4a@1.6.6: {} - /babel-plugin-jsx-dom-expressions@0.37.23(@babel/core@7.24.9): - resolution: {integrity: sha512-Y/r8LyLi/njnwPTaDuPEReWk30FJ1KplloYvcFUhHmiH1F7yVVj5mWojD7mbO/IruKyvOs9OIPUoeMi3Z++J4w==} - peerDependencies: - '@babel/core': ^7.20.12 + babel-plugin-jsx-dom-expressions@0.37.23(@babel/core@7.24.9): dependencies: '@babel/core': 7.24.9 '@babel/helper-module-imports': 7.18.6 @@ -2483,113 +5261,70 @@ packages: '@babel/types': 7.24.9 html-entities: 2.3.3 validate-html-nesting: 1.2.2 - dev: false - /babel-plugin-transform-hook-names@1.0.2(@babel/core@7.24.9): - resolution: {integrity: sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==} - peerDependencies: - '@babel/core': ^7.12.10 + babel-plugin-transform-hook-names@1.0.2(@babel/core@7.24.9): dependencies: '@babel/core': 7.24.9 - dev: false - /babel-preset-solid@1.8.18(@babel/core@7.24.9): - resolution: {integrity: sha512-ky0FA4cCS9dk+xYBBItHoxtbRnaDIOGpmHLFqKPaR81hpMbJBOiLOZia2hT0JBwx4zn/D2OjMRvRr6kqtRMoUw==} - peerDependencies: - '@babel/core': ^7.0.0 + babel-preset-solid@1.8.18(@babel/core@7.24.9): dependencies: '@babel/core': 7.24.9 babel-plugin-jsx-dom-expressions: 0.37.23(@babel/core@7.24.9) - dev: false - /bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + bail@2.0.2: {} - /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@1.0.2: {} - /bare-events@2.4.2: - resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} - requiresBuild: true - dev: false + bare-events@2.4.2: optional: true - /bare-fs@2.3.1: - resolution: {integrity: sha512-W/Hfxc/6VehXlsgFtbB5B4xFcsCl+pAh30cYhoFyXErf6oGrwjh8SwiPAdHgpmWonKuYpZgGywN0SXt7dgsADA==} - requiresBuild: true + bare-fs@2.3.1: dependencies: bare-events: 2.4.2 bare-path: 2.1.3 bare-stream: 2.1.3 - dev: false optional: true - /bare-os@2.4.0: - resolution: {integrity: sha512-v8DTT08AS/G0F9xrhyLtepoo9EJBJ85FRSMbu1pQUlAf6A8T0tEEQGMVObWeqpjhSPXsE0VGlluFBJu2fdoTNg==} - requiresBuild: true - dev: false + bare-os@2.4.0: optional: true - /bare-path@2.1.3: - resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==} - requiresBuild: true + bare-path@2.1.3: dependencies: bare-os: 2.4.0 - dev: false optional: true - /bare-stream@2.1.3: - resolution: {integrity: sha512-tiDAH9H/kP+tvNO5sczyn9ZAA7utrSMobyDchsnyyXBuUe2FSQWbxhtuHB8jwpHYYevVo2UJpcmvvjrbHboUUQ==} - requiresBuild: true + bare-stream@2.1.3: dependencies: streamx: 2.18.0 - dev: false optional: true - /base-64@1.0.0: - resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + base-64@1.0.0: {} - /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - dev: false + base64-js@1.5.1: {} - /bcp-47-match@2.0.3: - resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} - dev: false + bcp-47-match@2.0.3: {} - /bcp-47@2.1.0: - resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} + bcp-47@2.1.0: dependencies: is-alphabetical: 2.0.1 is-alphanumerical: 2.0.1 is-decimal: 2.0.1 - dev: false - /better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - dev: true - /binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + binary-extensions@2.3.0: {} - /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 - dev: false - /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + boolbase@1.0.0: {} - /boxen@7.1.1: - resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} - engines: {node: '>=14.16'} + boxen@7.1.1: dependencies: ansi-align: 3.0.1 camelcase: 7.0.1 @@ -2600,87 +5335,57 @@ packages: widest-line: 4.0.1 wrap-ansi: 8.1.0 - /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 - /braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + braces@3.0.3: dependencies: fill-range: 7.1.1 - /browserslist@4.23.2: - resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true + browserslist@4.23.2: dependencies: caniuse-lite: 1.0.30001643 electron-to-chromium: 1.4.832 node-releases: 2.0.17 update-browserslist-db: 1.1.0(browserslist@4.23.2) - /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + buffer@5.7.1: dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - dev: false - /busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + busboy@1.6.0: dependencies: streamsearch: 1.1.0 - dev: false - /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + camelcase-css@2.0.1: {} - /camelcase@7.0.1: - resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} - engines: {node: '>=14.16'} + camelcase@7.0.1: {} - /caniuse-lite@1.0.30001643: - resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==} + caniuse-lite@1.0.30001643: {} - /ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + ccount@2.0.1: {} - /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + chalk@5.3.0: {} - /character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + character-entities-html4@2.1.0: {} - /character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + character-entities-legacy@3.0.0: {} - /character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + character-entities@2.0.2: {} - /character-reference-invalid@2.0.1: - resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - dev: false + character-reference-invalid@2.0.1: {} - /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} - dev: true + chardet@0.7.0: {} - /chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -2692,119 +5397,77 @@ packages: optionalDependencies: fsevents: 2.3.3 - /chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - dev: false + chownr@1.1.4: {} - /ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} - dev: true + ci-info@3.9.0: {} - /ci-info@4.0.0: - resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} - engines: {node: '>=8'} + ci-info@4.0.0: {} - /cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: '>=10'} + cli-boxes@3.0.0: {} - /cli-cursor@4.0.0: - resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + cli-cursor@4.0.0: dependencies: restore-cursor: 4.0.0 - /cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} + cli-spinners@2.9.2: {} - /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} - dev: false + client-only@0.0.1: {} - /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + cliui@8.0.1: dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: false - /clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} + clsx@2.1.1: {} - /collapse-white-space@2.1.0: - resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} - dev: false + collapse-white-space@2.1.0: {} - /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + color-convert@1.9.3: dependencies: color-name: 1.1.3 - /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + color-convert@2.0.1: dependencies: color-name: 1.1.4 - /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + color-name@1.1.3: {} - /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + color-name@1.1.4: {} - /color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + color-string@1.9.1: dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 - /color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} + color@4.2.3: dependencies: color-convert: 2.0.1 color-string: 1.9.1 - /comma-separated-tokens@2.0.3: - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + comma-separated-tokens@2.0.3: {} - /commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + commander@4.1.1: {} - /common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + common-ancestor-path@1.0.1: {} - /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + convert-source-map@2.0.0: {} - /cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} + cookie@0.6.0: {} - /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 - dev: true - /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cross-spawn@7.0.3: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + css-select@5.1.0: dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -2812,222 +5475,125 @@ packages: domutils: 3.1.0 nth-check: 2.1.1 - /css-selector-parser@3.0.5: - resolution: {integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==} - dev: false - - /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + css-selector-parser@3.0.5: {} - /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true + css-what@6.1.0: {} - /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - dev: true + cssesc@3.0.0: {} - /csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + cssom@0.5.0: {} - /dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} - dev: true + csstype@3.1.3: {} - /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - dev: false + dataloader@1.4.0: {} - /debug@4.3.5: - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true + debug@2.6.9: + dependencies: + ms: 2.0.0 + + debug@4.3.5: dependencies: ms: 2.1.2 - /decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + decode-named-character-reference@1.0.2: dependencies: character-entities: 2.0.2 - /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + decompress-response@6.0.0: dependencies: mimic-response: 3.1.0 - dev: false - /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} - dev: false + deep-extend@0.6.0: {} - /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} - dev: false + deepmerge@4.3.1: {} - /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} - dev: false + depd@2.0.0: {} - /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + dequal@2.0.3: {} - /destroy@1.2.0: - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - dev: false + destroy@1.2.0: {} - /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - dev: true + detect-indent@6.1.0: {} - /detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} - engines: {node: '>=8'} + detect-libc@2.0.3: {} - /deterministic-object-hash@2.0.2: - resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} - engines: {node: '>=18'} + deterministic-object-hash@2.0.2: dependencies: base-64: 1.0.0 - /devalue@5.0.0: - resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==} + devalue@5.0.0: {} - /devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + devlop@1.1.0: dependencies: dequal: 2.0.3 - /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + didyoumean@1.2.2: {} - /diff@5.2.0: - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} - engines: {node: '>=0.3.1'} + diff@5.2.0: {} - /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + dir-glob@3.0.1: dependencies: path-type: 4.0.0 - dev: true - /direction@2.0.1: - resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} - hasBin: true - dev: false + direction@2.0.1: {} - /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dlv@1.1.3: {} - /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 entities: 4.5.0 - /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + domelementtype@2.3.0: {} - /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + domhandler@5.0.3: dependencies: domelementtype: 2.3.0 - /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + domutils@3.1.0: dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 - /dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} - dev: true + dotenv@8.6.0: {} - /dset@3.1.3: - resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} - engines: {node: '>=4'} + dset@3.1.3: {} - /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + eastasianwidth@0.2.0: {} - /ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - dev: false + ee-first@1.1.1: {} - /electron-to-chromium@1.4.832: - resolution: {integrity: sha512-cTen3SB0H2SGU7x467NRe1eVcQgcuS6jckKfWJHia2eo0cHIGOqHoAxevIYZD4eRHcWjkvFzo93bi3vJ9W+1lA==} + electron-to-chromium@1.4.832: {} - /emmet@2.4.7: - resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==} + emmet@2.4.7: dependencies: '@emmetio/abbreviation': 2.3.3 '@emmetio/css-abbreviation': 2.1.8 - dev: false - /emoji-regex@10.3.0: - resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} + emoji-regex@10.3.0: {} - /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + emoji-regex@8.0.0: {} - /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emoji-regex@9.2.2: {} - /encodeurl@1.0.2: - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} - engines: {node: '>= 0.8'} - dev: false + encodeurl@1.0.2: {} - /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + end-of-stream@1.4.4: dependencies: once: 1.4.0 - dev: false - /enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 strip-ansi: 6.0.1 - dev: true - /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + entities@4.5.0: {} - /es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@1.5.4: {} - /esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true + esbuild@0.21.5: optionalDependencies: '@esbuild/aix-ppc64': 0.21.5 '@esbuild/android-arm': 0.21.5 @@ -3053,86 +5619,53 @@ packages: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - /escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + escalade@3.1.2: {} - /escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - dev: false + escape-html@1.0.3: {} - /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + escape-string-regexp@1.0.5: {} - /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - dev: false + escape-string-regexp@4.0.0: {} - /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + escape-string-regexp@5.0.0: {} - /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + esprima@4.0.1: {} - /estree-util-attach-comments@3.0.0: - resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + estree-util-attach-comments@3.0.0: dependencies: '@types/estree': 1.0.5 - dev: false - /estree-util-build-jsx@3.0.1: - resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + estree-util-build-jsx@3.0.1: dependencies: '@types/estree-jsx': 1.0.5 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 estree-walker: 3.0.3 - dev: false - /estree-util-is-identifier-name@3.0.0: - resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} - dev: false + estree-util-is-identifier-name@3.0.0: {} - /estree-util-to-js@2.0.0: - resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + estree-util-to-js@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 astring: 1.8.6 source-map: 0.7.4 - dev: false - /estree-util-visit@2.0.0: - resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + estree-util-visit@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 '@types/unist': 3.0.2 - dev: false - /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - dev: false + estree-walker@2.0.2: {} - /estree-walker@3.0.3: - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + estree-walker@3.0.3: dependencies: '@types/estree': 1.0.5 - /etag@1.8.1: - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} - engines: {node: '>= 0.6'} - dev: false + etag@1.8.1: {} - /eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + eventemitter3@5.0.1: {} - /execa@8.0.1: - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} - engines: {node: '>=16.17'} + execa@8.0.1: dependencies: cross-spawn: 7.0.3 get-stream: 8.0.1 @@ -3144,49 +5677,32 @@ packages: signal-exit: 4.1.0 strip-final-newline: 3.0.0 - /expand-template@2.0.3: - resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} - engines: {node: '>=6'} - dev: false + expand-template@2.0.3: {} - /expressive-code@0.33.5: - resolution: {integrity: sha512-UPg2jSvZEfXPiCa4MKtMoMQ5Hwiv7In5/LSCa/ukhjzZqPO48iVsCcEBgXWEUmEAQ02P0z00/xFfBmVnUKH+Zw==} + expressive-code@0.33.5: dependencies: '@expressive-code/core': 0.33.5 '@expressive-code/plugin-frames': 0.33.5 '@expressive-code/plugin-shiki': 0.33.5 '@expressive-code/plugin-text-markers': 0.33.5 - dev: false - /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + extend-shallow@2.0.1: dependencies: is-extendable: 0.1.1 - /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + extend@3.0.2: {} - /extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} - dev: true + extendable-error@0.1.7: {} - /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + external-editor@3.1.0: dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 tmp: 0.0.33 - dev: true - /fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} - dev: false + fast-fifo@1.3.2: {} - /fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -3194,145 +5710,93 @@ packages: merge2: 1.4.1 micromatch: 4.0.7 - /fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fastq@1.17.1: dependencies: reusify: 1.0.4 - /fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 - /find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} + find-up-simple@1.0.0: {} - /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - dev: true - /find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + find-yarn-workspace-root2@1.2.16: dependencies: micromatch: 4.0.7 pkg-dir: 4.2.0 - /flattie@1.1.1: - resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} - engines: {node: '>=8'} + flattie@1.1.1: {} - /foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} - engines: {node: '>=14'} + foreground-child@3.2.1: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - /fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + fraction.js@4.3.7: {} - /fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} - dev: false + fresh@0.5.2: {} - /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - dev: false + fs-constants@1.0.0: {} - /fs-extra@11.2.0: - resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} - engines: {node: '>=14.14'} + fs-extra@11.2.0: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.1 - dev: false - /fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + fs-extra@8.1.0: dependencies: graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 - dev: true - /fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - requiresBuild: true + fsevents@2.3.2: optional: true - /function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + fsevents@2.3.3: + optional: true - /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + function-bind@1.1.2: {} - /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} - dev: false + gensync@1.0.0-beta.2: {} - /get-east-asian-width@1.2.0: - resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} - engines: {node: '>=18'} + get-caller-file@2.0.5: {} - /get-stream@8.0.1: - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} - engines: {node: '>=16'} + get-east-asian-width@1.2.0: {} - /github-from-package@0.0.0: - resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} - dev: false + get-stream@8.0.1: {} - /github-slugger@2.0.0: - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + github-from-package@0.0.0: {} - /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + github-slugger@2.0.0: {} + + glob-parent@5.1.2: dependencies: is-glob: 4.0.3 - /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + glob-parent@6.0.2: dependencies: is-glob: 4.0.3 - /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: false + glob-to-regexp@0.4.1: {} - /glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} - hasBin: true + glob@10.4.5: dependencies: foreground-child: 3.2.1 jackspeak: 3.4.3 @@ -3341,13 +5805,9 @@ packages: package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + globals@11.12.0: {} - /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + globby@11.1.0: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -3355,32 +5815,23 @@ packages: ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 - dev: true - /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graceful-fs@4.2.11: {} - /gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} + gray-matter@4.0.3: dependencies: js-yaml: 3.14.1 kind-of: 6.0.3 section-matter: 1.0.0 strip-bom-string: 1.0.0 - /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + has-flag@3.0.0: {} - /hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + hasown@2.0.2: dependencies: function-bind: 1.1.2 - /hast-util-from-html@2.0.1: - resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} + hast-util-from-html@2.0.1: dependencies: '@types/hast': 3.0.4 devlop: 1.1.0 @@ -3389,8 +5840,7 @@ packages: vfile: 6.0.2 vfile-message: 4.0.2 - /hast-util-from-parse5@7.1.2: - resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + hast-util-from-parse5@7.1.2: dependencies: '@types/hast': 2.3.10 '@types/unist': 2.0.10 @@ -3399,10 +5849,8 @@ packages: vfile: 5.3.7 vfile-location: 4.1.0 web-namespaces: 2.0.1 - dev: false - /hast-util-from-parse5@8.0.1: - resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} + hast-util-from-parse5@8.0.1: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -3413,30 +5861,23 @@ packages: vfile-location: 5.0.3 web-namespaces: 2.0.1 - /hast-util-has-property@3.0.0: - resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} + hast-util-has-property@3.0.0: dependencies: '@types/hast': 3.0.4 - dev: false - /hast-util-is-element@3.0.0: - resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + hast-util-is-element@3.0.0: dependencies: '@types/hast': 3.0.4 - /hast-util-parse-selector@3.1.1: - resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + hast-util-parse-selector@3.1.1: dependencies: '@types/hast': 2.3.10 - dev: false - /hast-util-parse-selector@4.0.0: - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + hast-util-parse-selector@4.0.0: dependencies: '@types/hast': 3.0.4 - /hast-util-raw@7.2.3: - resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + hast-util-raw@7.2.3: dependencies: '@types/hast': 2.3.10 '@types/parse5': 6.0.3 @@ -3449,10 +5890,8 @@ packages: vfile: 5.3.7 web-namespaces: 2.0.1 zwitch: 2.0.4 - dev: false - /hast-util-raw@9.0.4: - resolution: {integrity: sha512-LHE65TD2YiNsHD3YuXcKPHXPLuYh/gjp12mOfU8jxSrm1f/yJpsb0F/KKljS6U9LJoP0Ux+tCe8iJ2AsPzTdgA==} + hast-util-raw@9.0.4: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -3468,8 +5907,7 @@ packages: web-namespaces: 2.0.1 zwitch: 2.0.4 - /hast-util-select@6.0.2: - resolution: {integrity: sha512-hT/SD/d/Meu+iobvgkffo1QecV8WeKWxwsNMzcTJsKw1cKTQKSR/7ArJeURLNJF9HDjp9nVoORyNNJxrvBye8Q==} + hast-util-select@6.0.2: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -3487,10 +5925,8 @@ packages: space-separated-tokens: 2.0.2 unist-util-visit: 5.0.0 zwitch: 2.0.4 - dev: false - /hast-util-to-estree@3.1.0: - resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} + hast-util-to-estree@3.1.0: dependencies: '@types/estree': 1.0.5 '@types/estree-jsx': 1.0.5 @@ -3510,10 +5946,8 @@ packages: zwitch: 2.0.4 transitivePeerDependencies: - supports-color - dev: false - /hast-util-to-html@8.0.4: - resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + hast-util-to-html@8.0.4: dependencies: '@types/hast': 2.3.10 '@types/unist': 2.0.10 @@ -3526,10 +5960,8 @@ packages: space-separated-tokens: 2.0.2 stringify-entities: 4.0.4 zwitch: 2.0.4 - dev: false - /hast-util-to-html@9.0.1: - resolution: {integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==} + hast-util-to-html@9.0.1: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -3544,8 +5976,7 @@ packages: stringify-entities: 4.0.4 zwitch: 2.0.4 - /hast-util-to-jsx-runtime@2.3.0: - resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} + hast-util-to-jsx-runtime@2.3.0: dependencies: '@types/estree': 1.0.5 '@types/hast': 3.0.4 @@ -3564,10 +5995,8 @@ packages: vfile-message: 4.0.2 transitivePeerDependencies: - supports-color - dev: false - /hast-util-to-parse5@7.1.0: - resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + hast-util-to-parse5@7.1.0: dependencies: '@types/hast': 2.3.10 comma-separated-tokens: 2.0.3 @@ -3575,10 +6004,8 @@ packages: space-separated-tokens: 2.0.2 web-namespaces: 2.0.1 zwitch: 2.0.4 - dev: false - /hast-util-to-parse5@8.0.0: - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + hast-util-to-parse5@8.0.0: dependencies: '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -3588,41 +6015,32 @@ packages: web-namespaces: 2.0.1 zwitch: 2.0.4 - /hast-util-to-string@3.0.0: - resolution: {integrity: sha512-OGkAxX1Ua3cbcW6EJ5pT/tslVb90uViVkcJ4ZZIMW/R33DX/AkcJcRrPebPwJkHYwlDHXz4aIwvAAaAdtrACFA==} + hast-util-to-string@3.0.0: dependencies: '@types/hast': 3.0.4 - dev: false - /hast-util-to-text@4.0.2: - resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + hast-util-to-text@4.0.2: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 hast-util-is-element: 3.0.0 unist-util-find-after: 5.0.0 - /hast-util-whitespace@2.0.1: - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} - dev: false + hast-util-whitespace@2.0.1: {} - /hast-util-whitespace@3.0.0: - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + hast-util-whitespace@3.0.0: dependencies: '@types/hast': 3.0.4 - /hastscript@7.2.0: - resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + 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 - dev: false - /hastscript@8.0.0: - resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} + hastscript@8.0.0: dependencies: '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -3630,411 +6048,250 @@ packages: property-information: 6.5.0 space-separated-tokens: 2.0.2 - /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - dev: false + he@1.2.0: {} - /html-entities@2.3.3: - resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} - dev: false + html-entities@2.3.3: {} - /html-escaper@3.0.3: - resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} + html-escaper@3.0.3: {} - /html-void-elements@2.0.1: - resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} - dev: false + html-void-elements@2.0.1: {} - /html-void-elements@3.0.0: - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + html-void-elements@3.0.0: {} - /htmlparser2@8.0.2: - resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + htmlparser2@8.0.2: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 domutils: 3.1.0 entities: 4.5.0 - /htmlparser2@9.1.0: - resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} + htmlparser2@9.1.0: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 domutils: 3.1.0 entities: 4.5.0 - dev: true - /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + http-cache-semantics@4.1.1: {} - /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + http-errors@2.0.0: dependencies: depd: 2.0.0 inherits: 2.0.4 setprototypeof: 1.2.0 statuses: 2.0.1 toidentifier: 1.0.1 - dev: false - /human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - dev: true + human-id@1.0.2: {} - /human-signals@5.0.0: - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} - engines: {node: '>=16.17.0'} + human-signals@5.0.0: {} - /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - dev: true - /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - dev: false + ieee754@1.2.1: {} - /ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} - dev: true + ignore@5.3.1: {} - /import-meta-resolve@4.1.0: - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + import-meta-resolve@4.1.0: {} - /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - dev: false + inherits@2.0.4: {} - /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - dev: false + ini@1.3.8: {} - /inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} - dev: false + inline-style-parser@0.1.1: {} - /inline-style-parser@0.2.3: - resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} - dev: false + inline-style-parser@0.2.3: {} - /is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} - dev: false + is-alphabetical@2.0.1: {} - /is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + is-alphanumerical@2.0.1: dependencies: is-alphabetical: 2.0.1 is-decimal: 2.0.1 - dev: false - /is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + is-arrayish@0.3.2: {} - /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 - /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} - dev: false + is-buffer@2.0.5: {} - /is-core-module@2.15.0: - resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==} - engines: {node: '>= 0.4'} + is-core-module@2.15.0: dependencies: hasown: 2.0.2 - /is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} - dev: false + is-decimal@2.0.1: {} - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true + is-docker@3.0.0: {} - /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + is-extendable@0.1.1: {} - /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + is-extglob@2.1.1: {} - /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + is-fullwidth-code-point@3.0.0: {} - /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + is-glob@4.0.3: dependencies: is-extglob: 2.1.1 - /is-hexadecimal@2.0.1: - resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} - dev: false + is-hexadecimal@2.0.1: {} - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true + is-inside-container@1.0.0: dependencies: is-docker: 3.0.0 - /is-interactive@2.0.0: - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} - engines: {node: '>=12'} + is-interactive@2.0.0: {} - /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + is-number@7.0.0: {} - /is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} + is-plain-obj@4.1.0: {} - /is-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} - dev: false + is-plain-object@5.0.0: {} - /is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + is-reference@3.0.2: dependencies: '@types/estree': 1.0.5 - dev: false - /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-stream@3.0.0: {} - /is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + is-subdir@1.2.0: dependencies: better-path-resolve: 1.0.0 - dev: true - /is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} + is-unicode-supported@1.3.0: {} - /is-unicode-supported@2.0.0: - resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==} - engines: {node: '>=18'} + is-unicode-supported@2.0.0: {} - /is-what@4.1.16: - resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} - engines: {node: '>=12.13'} - dev: false + is-what@4.1.16: {} - /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} - dev: true + is-windows@1.0.2: {} - /is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} - engines: {node: '>=16'} + is-wsl@3.1.0: dependencies: is-inside-container: 1.0.0 - /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + isexe@2.0.0: {} - /jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + jackspeak@3.4.3: dependencies: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - /jiti@1.21.6: - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} - hasBin: true + jiti@1.21.6: {} - /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-tokens@4.0.0: {} - /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true + js-yaml@3.14.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true + js-yaml@4.1.0: dependencies: argparse: 2.0.1 - /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} - hasBin: true + jsesc@2.5.2: {} - /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true + json5@2.2.3: {} - /jsonc-parser@2.3.1: - resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} - dev: false + jsonc-parser@2.3.1: {} - /jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + jsonfile@4.0.0: optionalDependencies: graceful-fs: 4.2.11 - dev: true - /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonfile@6.1.0: dependencies: universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 - dev: false - /just-map-values@3.2.0: - resolution: {integrity: sha512-TyqCKtK3NxiUgOjRYMIKURvBTHesi3XzomDY0QVPZ3rYzLCF+nNq5rSi0B/L5aOd/WMTZo6ukzA4wih4HUbrDg==} - dev: false + just-map-values@3.2.0: {} - /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + kind-of@6.0.3: {} - /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + kleur@3.0.3: {} - /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + kleur@4.1.5: {} - /kolorist@1.8.0: - resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} - dev: false + kolorist@1.8.0: {} - /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + lilconfig@2.1.0: {} - /lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} + lilconfig@3.1.2: {} - /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@1.2.4: {} - /linkedom@0.18.4: - resolution: {integrity: sha512-JhLErxMIEOKByMi3fURXgI1fYOzR87L1Cn0+MI9GlMckFrqFZpV1SUGox1jcKtsKN3y6JgclcQf0FzZT//BuGw==} + linkedom@0.18.4: dependencies: css-select: 5.1.0 cssom: 0.5.0 html-escaper: 3.0.3 htmlparser2: 9.1.0 uhyphen: 0.2.0 - dev: true - /load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + load-yaml-file@0.2.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + locate-path@5.0.0: dependencies: p-locate: 4.1.0 - /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + locate-path@6.0.0: dependencies: p-locate: 5.0.0 - dev: true - /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - dev: true + lodash.startcase@4.4.0: {} - /log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} - engines: {node: '>=18'} + log-symbols@6.0.0: dependencies: chalk: 5.3.0 is-unicode-supported: 1.3.0 - /longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + longest-streak@3.1.0: {} - /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} - hasBin: true + loose-envify@1.4.0: dependencies: js-tokens: 4.0.0 - /lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@10.4.3: {} - /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - dev: true - /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 - /magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + magic-string@0.30.10: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - /magic-string@0.30.5: - resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} - engines: {node: '>=12'} + magic-string@0.30.5: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - dev: false - /markdown-extensions@2.0.0: - resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} - engines: {node: '>=16'} - dev: false + markdown-extensions@2.0.0: {} - /markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + markdown-table@3.0.3: {} - /mdast-util-definitions@6.0.0: - resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + mdast-util-definitions@6.0.0: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 unist-util-visit: 5.0.0 - /mdast-util-directive@3.0.0: - resolution: {integrity: sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==} + mdast-util-directive@3.0.0: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -4046,18 +6303,15 @@ packages: unist-util-visit-parents: 6.0.1 transitivePeerDependencies: - supports-color - dev: false - /mdast-util-find-and-replace@3.0.1: - resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + mdast-util-find-and-replace@3.0.1: dependencies: '@types/mdast': 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - /mdast-util-from-markdown@2.0.1: - resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==} + mdast-util-from-markdown@2.0.1: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -4074,8 +6328,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-gfm-autolink-literal@2.0.0: - resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} + mdast-util-gfm-autolink-literal@2.0.0: dependencies: '@types/mdast': 4.0.4 ccount: 2.0.1 @@ -4083,8 +6336,7 @@ packages: mdast-util-find-and-replace: 3.0.1 micromark-util-character: 2.1.0 - /mdast-util-gfm-footnote@2.0.0: - resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + mdast-util-gfm-footnote@2.0.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 @@ -4094,8 +6346,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-gfm-strikethrough@2.0.0: - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + mdast-util-gfm-strikethrough@2.0.0: dependencies: '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.1 @@ -4103,8 +6354,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-gfm-table@2.0.0: - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + mdast-util-gfm-table@2.0.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 @@ -4114,8 +6364,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-gfm-task-list-item@2.0.0: - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + mdast-util-gfm-task-list-item@2.0.0: dependencies: '@types/mdast': 4.0.4 devlop: 1.1.0 @@ -4124,8 +6373,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-gfm@3.0.0: - resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + mdast-util-gfm@3.0.0: dependencies: mdast-util-from-markdown: 2.0.1 mdast-util-gfm-autolink-literal: 2.0.0 @@ -4137,8 +6385,7 @@ packages: transitivePeerDependencies: - supports-color - /mdast-util-mdx-expression@2.0.0: - resolution: {integrity: sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==} + mdast-util-mdx-expression@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -4148,10 +6395,8 @@ packages: mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color - dev: false - /mdast-util-mdx-jsx@3.1.2: - resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==} + mdast-util-mdx-jsx@3.1.2: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -4168,10 +6413,8 @@ packages: vfile-message: 4.0.2 transitivePeerDependencies: - supports-color - dev: false - /mdast-util-mdx@3.0.0: - resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} + mdast-util-mdx@3.0.0: dependencies: mdast-util-from-markdown: 2.0.1 mdast-util-mdx-expression: 2.0.0 @@ -4180,10 +6423,8 @@ packages: mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color - dev: false - /mdast-util-mdxjs-esm@2.0.1: - resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + mdast-util-mdxjs-esm@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 @@ -4193,16 +6434,13 @@ packages: mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: - supports-color - dev: false - /mdast-util-phrasing@4.1.0: - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + mdast-util-phrasing@4.1.0: dependencies: '@types/mdast': 4.0.4 unist-util-is: 6.0.0 - /mdast-util-to-hast@13.2.0: - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + mdast-util-to-hast@13.2.0: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -4214,8 +6452,7 @@ packages: unist-util-visit: 5.0.0 vfile: 6.0.2 - /mdast-util-to-markdown@2.1.0: - resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==} + mdast-util-to-markdown@2.1.0: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.2 @@ -4226,27 +6463,19 @@ packages: unist-util-visit: 5.0.0 zwitch: 2.0.4 - /mdast-util-to-string@4.0.0: - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + mdast-util-to-string@4.0.0: dependencies: '@types/mdast': 4.0.4 - /merge-anything@5.1.7: - resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} - engines: {node: '>=12.13'} + merge-anything@5.1.7: dependencies: is-what: 4.1.16 - dev: false - /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + merge-stream@2.0.0: {} - /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + merge2@1.4.1: {} - /micromark-core-commonmark@2.0.1: - resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==} + micromark-core-commonmark@2.0.1: dependencies: decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -4265,8 +6494,7 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-directive@3.0.1: - resolution: {integrity: sha512-VGV2uxUzhEZmaP7NSFo2vtq7M2nUD+WfmYQD+d8i/1nHbzE+rMy9uzTvUybBbNiVbrhOZibg3gbyoARGqgDWyg==} + micromark-extension-directive@3.0.1: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -4275,18 +6503,15 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 parse-entities: 4.0.1 - dev: false - /micromark-extension-gfm-autolink-literal@2.1.0: - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + micromark-extension-gfm-autolink-literal@2.1.0: dependencies: micromark-util-character: 2.1.0 micromark-util-sanitize-uri: 2.0.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-gfm-footnote@2.1.0: - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + micromark-extension-gfm-footnote@2.1.0: dependencies: devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -4297,8 +6522,7 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-gfm-strikethrough@2.1.0: - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + micromark-extension-gfm-strikethrough@2.1.0: dependencies: devlop: 1.1.0 micromark-util-chunked: 2.0.0 @@ -4307,8 +6531,7 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-gfm-table@2.1.0: - resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + micromark-extension-gfm-table@2.1.0: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -4316,13 +6539,11 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-gfm-tagfilter@2.0.0: - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + micromark-extension-gfm-tagfilter@2.0.0: dependencies: micromark-util-types: 2.0.0 - /micromark-extension-gfm-task-list-item@2.1.0: - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + micromark-extension-gfm-task-list-item@2.1.0: dependencies: devlop: 1.1.0 micromark-factory-space: 2.0.0 @@ -4330,8 +6551,7 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-gfm@3.0.0: - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + micromark-extension-gfm@3.0.0: dependencies: micromark-extension-gfm-autolink-literal: 2.1.0 micromark-extension-gfm-footnote: 2.1.0 @@ -4342,8 +6562,7 @@ packages: micromark-util-combine-extensions: 2.0.0 micromark-util-types: 2.0.0 - /micromark-extension-mdx-expression@3.0.0: - resolution: {integrity: sha512-sI0nwhUDz97xyzqJAbHQhp5TfaxEvZZZ2JDqUo+7NvyIYG6BZ5CPPqj2ogUoPJlmXHBnyZUzISg9+oUmU6tUjQ==} + micromark-extension-mdx-expression@3.0.0: dependencies: '@types/estree': 1.0.5 devlop: 1.1.0 @@ -4353,10 +6572,8 @@ packages: micromark-util-events-to-acorn: 2.0.2 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - dev: false - /micromark-extension-mdx-jsx@3.0.0: - resolution: {integrity: sha512-uvhhss8OGuzR4/N17L1JwvmJIpPhAd8oByMawEKx6NVdBCbesjH4t+vjEp3ZXft9DwvlKSD07fCeI44/N0Vf2w==} + micromark-extension-mdx-jsx@3.0.0: dependencies: '@types/acorn': 4.0.6 '@types/estree': 1.0.5 @@ -4368,16 +6585,12 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 vfile-message: 4.0.2 - dev: false - /micromark-extension-mdx-md@2.0.0: - resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + micromark-extension-mdx-md@2.0.0: dependencies: micromark-util-types: 2.0.0 - dev: false - /micromark-extension-mdxjs-esm@3.0.0: - resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} + micromark-extension-mdxjs-esm@3.0.0: dependencies: '@types/estree': 1.0.5 devlop: 1.1.0 @@ -4388,10 +6601,8 @@ packages: micromark-util-types: 2.0.0 unist-util-position-from-estree: 2.0.0 vfile-message: 4.0.2 - dev: false - /micromark-extension-mdxjs@3.0.0: - resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} + micromark-extension-mdxjs@3.0.0: dependencies: acorn: 8.12.1 acorn-jsx: 5.3.2(acorn@8.12.1) @@ -4401,25 +6612,21 @@ packages: micromark-extension-mdxjs-esm: 3.0.0 micromark-util-combine-extensions: 2.0.0 micromark-util-types: 2.0.0 - dev: false - /micromark-factory-destination@2.0.0: - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + micromark-factory-destination@2.0.0: dependencies: micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-factory-label@2.0.0: - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + micromark-factory-label@2.0.0: dependencies: devlop: 1.1.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-factory-mdx-expression@2.0.1: - resolution: {integrity: sha512-F0ccWIUHRLRrYp5TC9ZYXmZo+p2AM13ggbsW4T0b5CRKP8KHVRB8t4pwtBgTxtjRmwrK0Irwm7vs2JOZabHZfg==} + micromark-factory-mdx-expression@2.0.1: dependencies: '@types/estree': 1.0.5 devlop: 1.1.0 @@ -4429,72 +6636,60 @@ packages: micromark-util-types: 2.0.0 unist-util-position-from-estree: 2.0.0 vfile-message: 4.0.2 - dev: false - /micromark-factory-space@2.0.0: - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + micromark-factory-space@2.0.0: dependencies: micromark-util-character: 2.1.0 micromark-util-types: 2.0.0 - /micromark-factory-title@2.0.0: - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + micromark-factory-title@2.0.0: dependencies: micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-factory-whitespace@2.0.0: - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + micromark-factory-whitespace@2.0.0: dependencies: micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + micromark-util-character@2.1.0: dependencies: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-util-chunked@2.0.0: - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + micromark-util-chunked@2.0.0: dependencies: micromark-util-symbol: 2.0.0 - /micromark-util-classify-character@2.0.0: - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + micromark-util-classify-character@2.0.0: dependencies: micromark-util-character: 2.1.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-util-combine-extensions@2.0.0: - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + micromark-util-combine-extensions@2.0.0: dependencies: micromark-util-chunked: 2.0.0 micromark-util-types: 2.0.0 - /micromark-util-decode-numeric-character-reference@2.0.1: - resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + micromark-util-decode-numeric-character-reference@2.0.1: dependencies: micromark-util-symbol: 2.0.0 - /micromark-util-decode-string@2.0.0: - resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==} + micromark-util-decode-string@2.0.0: dependencies: decode-named-character-reference: 1.0.2 micromark-util-character: 2.1.0 micromark-util-decode-numeric-character-reference: 2.0.1 micromark-util-symbol: 2.0.0 - /micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + micromark-util-encode@2.0.0: {} - /micromark-util-events-to-acorn@2.0.2: - resolution: {integrity: sha512-Fk+xmBrOv9QZnEDguL9OI9/NQQp6Hz4FuQ4YmCb/5V7+9eAh1s6AYSvL20kHkD67YIg7EpE54TiSlcsf3vyZgA==} + micromark-util-events-to-acorn@2.0.2: dependencies: '@types/acorn': 4.0.6 '@types/estree': 1.0.5 @@ -4504,44 +6699,35 @@ packages: micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 vfile-message: 4.0.2 - dev: false - /micromark-util-html-tag-name@2.0.0: - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + micromark-util-html-tag-name@2.0.0: {} - /micromark-util-normalize-identifier@2.0.0: - resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + micromark-util-normalize-identifier@2.0.0: dependencies: micromark-util-symbol: 2.0.0 - /micromark-util-resolve-all@2.0.0: - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + micromark-util-resolve-all@2.0.0: dependencies: micromark-util-types: 2.0.0 - /micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + micromark-util-sanitize-uri@2.0.0: dependencies: micromark-util-character: 2.1.0 micromark-util-encode: 2.0.0 micromark-util-symbol: 2.0.0 - /micromark-util-subtokenize@2.0.1: - resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==} + micromark-util-subtokenize@2.0.1: dependencies: devlop: 1.1.0 micromark-util-chunked: 2.0.0 micromark-util-symbol: 2.0.0 micromark-util-types: 2.0.0 - /micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + micromark-util-symbol@2.0.0: {} - /micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + micromark-util-types@2.0.0: {} - /micromark@4.0.0: - resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + micromark@4.0.0: dependencies: '@types/debug': 4.1.12 debug: 4.3.5 @@ -4563,110 +6749,54 @@ packages: transitivePeerDependencies: - supports-color - /micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} + micromatch@4.0.7: dependencies: braces: 3.0.3 picomatch: 2.3.1 - /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} - hasBin: true - dev: false + mime@1.6.0: {} - /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + mimic-fn@2.1.0: {} - /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + mimic-fn@4.0.0: {} - /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} - dev: false + mimic-response@3.1.0: {} - /minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 - /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: false + minimist@1.2.8: {} - /minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} + minipass@7.1.2: {} - /mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} - dev: false + mkdirp-classic@0.5.3: {} - /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - dev: true + mri@1.2.0: {} - /mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} - engines: {node: '>=10'} + mrmime@2.0.0: {} - /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - dev: false + ms@2.0.0: {} - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.1.2: {} - /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - dev: false + ms@2.1.3: {} - /muggle-string@0.4.1: - resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} - dev: false + muggle-string@0.4.1: {} - /mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + mz@2.7.0: dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - /nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true + nanoid@3.3.7: {} - /nanoid@5.0.7: - resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==} - engines: {node: ^18 || >=20} - hasBin: true - dev: false + nanoid@5.0.7: {} - /napi-build-utils@1.0.2: - resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} - dev: false + napi-build-utils@1.0.2: {} - /next@14.0.4(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==} - engines: {node: '>=18.17.0'} - hasBin: true - peerDependencies: - '@opentelemetry/api': ^1.1.0 - react: ^18.2.0 - react-dom: ^18.2.0 - sass: ^1.3.0 - peerDependenciesMeta: - '@opentelemetry/api': - optional: true - sass: - optional: true + next@14.0.4(@babel/core@7.24.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@next/env': 14.0.4 '@swc/helpers': 0.5.2 @@ -4676,7 +6806,7 @@ packages: postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.24.9)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: '@next/swc-darwin-arm64': 14.0.4 @@ -4691,115 +6821,69 @@ packages: transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - dev: false - /nlcst-to-string@3.1.1: - resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==} + nlcst-to-string@3.1.1: dependencies: '@types/nlcst': 1.0.4 - dev: false - /nlcst-to-string@4.0.0: - resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} + nlcst-to-string@4.0.0: dependencies: '@types/nlcst': 2.0.3 - /node-abi@3.65.0: - resolution: {integrity: sha512-ThjYBfoDNr08AWx6hGaRbfPwxKV9kVzAzOzlLKbk2CuqXE2xnCh+cbAGnwM3t8Lq4v9rUB7VfondlkBckcJrVA==} - engines: {node: '>=10'} + node-abi@3.65.0: dependencies: semver: 7.6.3 - dev: false - /node-addon-api@6.1.0: - resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} - dev: false + node-addon-api@6.1.0: {} - /node-fetch@2.7.0: - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 - dev: true - /node-html-parser@6.1.13: - resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} + node-html-parser@6.1.13: dependencies: css-select: 5.1.0 he: 1.2.0 - dev: false - /node-releases@2.0.17: - resolution: {integrity: sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==} + node-releases@2.0.17: {} - /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + normalize-path@3.0.0: {} - /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + normalize-range@0.1.2: {} - /not@0.1.0: - resolution: {integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==} - dev: false + not@0.1.0: {} - /npm-run-path@5.3.0: - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 - /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + nth-check@2.1.1: dependencies: boolbase: 1.0.0 - /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + object-assign@4.1.1: {} - /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + object-hash@3.0.0: {} - /on-finished@2.4.1: - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} - engines: {node: '>= 0.8'} + on-finished@2.4.1: dependencies: ee-first: 1.1.1 - dev: false - /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + once@1.4.0: dependencies: wrappy: 1.0.2 - dev: false - /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + onetime@5.1.2: dependencies: mimic-fn: 2.1.0 - /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + onetime@6.0.0: dependencies: mimic-fn: 4.0.0 - /open-props@1.7.5: - resolution: {integrity: sha512-DajjLQDJgIa0i+QdB2q5M8lNLo2ICk+DbDh4TsqNsT1tAO8Zm8F7dndSkLMQkobT98lbvDMMpJWO8NT0ibjrjA==} - dev: false + open-props@1.7.5: {} - /ora@8.0.1: - resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} - engines: {node: '>=18'} + ora@8.0.1: dependencies: chalk: 5.3.0 cli-cursor: 4.0.0 @@ -4811,90 +6895,56 @@ packages: string-width: 7.2.0 strip-ansi: 7.1.0 - /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - dev: true + os-tmpdir@1.0.2: {} - /outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} - dev: true + outdent@0.5.0: {} - /p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + p-filter@2.1.0: dependencies: p-map: 2.1.0 - dev: true - /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + p-limit@2.3.0: dependencies: p-try: 2.2.0 - /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - dev: true - /p-limit@6.1.0: - resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} - engines: {node: '>=18'} + p-limit@6.1.0: dependencies: yocto-queue: 1.1.1 - /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-locate@4.1.0: dependencies: p-limit: 2.3.0 - /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + p-locate@5.0.0: dependencies: p-limit: 3.1.0 - dev: true - /p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} - dev: true + p-map@2.1.0: {} - /p-queue@8.0.1: - resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} - engines: {node: '>=18'} + p-queue@8.0.1: dependencies: eventemitter3: 5.0.1 p-timeout: 6.1.2 - /p-timeout@6.1.2: - resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==} - engines: {node: '>=14.16'} + p-timeout@6.1.2: {} - /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + p-try@2.2.0: {} - /package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-json-from-dist@1.0.0: {} - /pagefind@1.1.0: - resolution: {integrity: sha512-1nmj0/vfYcMxNEQj0YDRp6bTVv9hI7HLdPhK/vBBYlrnwjATndQvHyicj5Y7pUHrpCFZpFnLVQXIF829tpFmaw==} - hasBin: true + pagefind@1.1.0: optionalDependencies: '@pagefind/darwin-arm64': 1.1.0 '@pagefind/darwin-x64': 1.1.0 '@pagefind/linux-arm64': 1.1.0 '@pagefind/linux-x64': 1.1.0 '@pagefind/windows-x64': 1.1.0 - dev: false - /parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + parse-entities@4.0.1: dependencies: '@types/unist': 2.0.10 character-entities: 2.0.2 @@ -4904,18 +6954,14 @@ packages: is-alphanumerical: 2.0.1 is-decimal: 2.0.1 is-hexadecimal: 2.0.1 - dev: false - /parse-latin@5.0.1: - resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==} + parse-latin@5.0.1: dependencies: nlcst-to-string: 3.1.1 unist-util-modify-children: 3.1.1 unist-util-visit-children: 2.0.2 - dev: false - /parse-latin@7.0.0: - resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} + parse-latin@7.0.0: dependencies: '@types/nlcst': 2.0.3 '@types/unist': 3.0.2 @@ -4924,177 +6970,113 @@ packages: unist-util-visit-children: 3.0.0 vfile: 6.0.2 - /parse-srcset@1.0.2: - resolution: {integrity: sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==} - dev: false + parse-srcset@1.0.2: {} - /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - dev: false + parse5@6.0.1: {} - /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + parse5@7.1.2: dependencies: entities: 4.5.0 - /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} - dev: false + path-browserify@1.0.1: {} - /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + path-exists@4.0.0: {} - /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + path-key@3.1.1: {} - /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + path-key@4.0.0: {} - /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-parse@1.0.7: {} - /path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - /path-to-regexp@6.2.2: - resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==} + path-to-regexp@6.2.2: {} - /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - dev: true + path-type@4.0.0: {} - /pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - dev: false + pathe@1.1.2: {} - /periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + periscopic@3.1.0: dependencies: '@types/estree': 1.0.5 estree-walker: 3.0.3 is-reference: 3.0.2 - dev: false - /picocolors@1.0.1: - resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.0.1: {} - /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + picomatch@2.3.1: {} - /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + pify@2.3.0: {} - /pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + pify@4.0.1: {} - /pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + pirates@4.0.6: {} - /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 - /postcss-import@15.1.0(postcss@8.4.39): - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 + playwright-core@1.45.3: {} + + playwright@1.45.3: + dependencies: + playwright-core: 1.45.3 + optionalDependencies: + fsevents: 2.3.2 + + postcss-import@15.1.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - - /postcss-js@4.0.1(postcss@8.4.39): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 + + postcss-js@4.0.1(postcss@8.4.39): dependencies: camelcase-css: 2.0.1 postcss: 8.4.39 - /postcss-load-config@4.0.2(postcss@8.4.39): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true + postcss-load-config@4.0.2(postcss@8.4.39): dependencies: lilconfig: 3.1.2 - postcss: 8.4.39 yaml: 2.4.5 + optionalDependencies: + postcss: 8.4.39 - /postcss-nested@6.2.0(postcss@8.4.39): - resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 + postcss-nested@6.2.0(postcss@8.4.39): dependencies: postcss: 8.4.39 postcss-selector-parser: 6.1.1 - /postcss-selector-parser@6.1.1: - resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} - engines: {node: '>=4'} + postcss-selector-parser@6.1.1: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss-value-parser@4.2.0: {} - /postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.31: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 source-map-js: 1.2.0 - dev: false - /postcss@8.4.39: - resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==} - engines: {node: ^10 || ^12 || >=14} + postcss@8.4.39: dependencies: nanoid: 3.3.7 picocolors: 1.0.1 source-map-js: 1.2.0 - /preact-render-to-string@6.5.6(preact@10.22.1): - resolution: {integrity: sha512-msFdv7/ooTV6OIodAnU87V4ct+m2DA1rwaRYV+DNvTYpm/ZInQfoGrcHmbTkV7TOcJaHh5wt1NjiALA46Jyxhw==} - peerDependencies: - preact: '>=10' + preact-render-to-string@6.5.6(preact@10.22.1): dependencies: preact: 10.22.1 - dev: false - /preact@10.22.1: - resolution: {integrity: sha512-jRYbDDgMpIb5LHq3hkI0bbl+l/TQ9UnkdQ0ww+lp+4MMOdqaUYdFc5qeyP+IV8FAd/2Em7drVPeKdQxsiWCf/A==} + preact@10.22.1: {} - /prebuild-install@7.1.2: - resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} - engines: {node: '>=10'} - hasBin: true + prebuild-install@7.1.2: dependencies: detect-libc: 2.0.3 expand-template: 2.0.3 @@ -5108,176 +7090,120 @@ packages: simple-get: 4.0.1 tar-fs: 2.1.1 tunnel-agent: 0.6.0 - dev: false - /preferred-pm@3.1.4: - resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} - engines: {node: '>=10'} + preferred-pm@3.1.4: dependencies: find-up: 5.0.0 find-yarn-workspace-root2: 1.2.16 path-exists: 4.0.0 which-pm: 2.2.0 - dev: true - /preferred-pm@4.0.0: - resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} - engines: {node: '>=18.12'} + preferred-pm@4.0.0: dependencies: find-up-simple: 1.0.0 find-yarn-workspace-root2: 1.2.16 which-pm: 3.0.0 - /prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true + prettier@2.8.8: {} - /prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} + prismjs@1.29.0: {} - /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + prompts@2.4.2: dependencies: kleur: 3.0.3 sisteransi: 1.0.5 - /property-information@6.5.0: - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + property-information@6.5.0: {} - /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - dev: true + pseudomap@1.0.2: {} - /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.0: dependencies: end-of-stream: 1.4.4 once: 1.4.0 - dev: false - /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + queue-microtask@1.2.3: {} - /queue-tick@1.0.1: - resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} - dev: false + queue-tick@1.0.1: {} - /range-parser@1.2.1: - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} - engines: {node: '>= 0.6'} - dev: false + range-parser@1.2.1: {} - /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} - hasBin: true + rc@1.2.8: dependencies: deep-extend: 0.6.0 ini: 1.3.8 minimist: 1.2.8 strip-json-comments: 2.0.1 - dev: false - /react-dom@18.3.1(react@18.3.1): - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} - peerDependencies: - react: ^18.3.1 + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 react: 18.3.1 scheduler: 0.23.2 - dev: false - /react-refresh@0.14.2: - resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} - engines: {node: '>=0.10.0'} - dev: false + react-refresh@0.14.2: {} - /react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + react@18.3.1: dependencies: loose-envify: 1.4.0 - /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.0: dependencies: pify: 2.3.0 - /read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 js-yaml: 3.14.1 pify: 4.0.1 strip-bom: 3.0.0 - dev: true - /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - dev: false - /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@3.6.0: dependencies: picomatch: 2.3.1 - /recast@0.23.9: - resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==} - engines: {node: '>= 4'} + recast@0.23.9: dependencies: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 tiny-invariant: 1.3.3 tslib: 2.6.3 - dev: false - /regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} - dev: true + regenerator-runtime@0.14.1: {} - /rehype-parse@9.0.0: - resolution: {integrity: sha512-WG7nfvmWWkCR++KEkZevZb/uw41E8TsH4DsY9UxsTbIXCVGbAs4S+r8FrQ+OtH5EEQAs+5UxKC42VinkmpA1Yw==} + rehype-parse@9.0.0: dependencies: '@types/hast': 3.0.4 hast-util-from-html: 2.0.1 unified: 11.0.5 - /rehype-raw@7.0.0: - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + rehype-raw@7.0.0: dependencies: '@types/hast': 3.0.4 hast-util-raw: 9.0.4 vfile: 6.0.2 - /rehype-stringify@10.0.0: - resolution: {integrity: sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==} + rehype-stringify@10.0.0: dependencies: '@types/hast': 3.0.4 hast-util-to-html: 9.0.1 unified: 11.0.5 - /rehype@13.0.1: - resolution: {integrity: sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==} + rehype@13.0.1: dependencies: '@types/hast': 3.0.4 rehype-parse: 9.0.0 rehype-stringify: 10.0.0 unified: 11.0.5 - /remark-directive@3.0.0: - resolution: {integrity: sha512-l1UyWJ6Eg1VPU7Hm/9tt0zKtReJQNOA4+iDMAxTyZNWnJnFlbS/7zhiel/rogTLQ2vMYwDzSJa4BiVNqGlqIMA==} + remark-directive@3.0.0: dependencies: '@types/mdast': 4.0.4 mdast-util-directive: 3.0.0 @@ -5285,18 +7211,14 @@ packages: unified: 11.0.5 transitivePeerDependencies: - supports-color - dev: false - /remark-expressive-code@0.33.5: - resolution: {integrity: sha512-E4CZq3AuUXLu6or0AaDKkgsHYqmnm4ZL8/+1/8YgwtKcogHwTMRJfQtxkZpth90QQoNUpsapvm5x5n3Np2OC9w==} + remark-expressive-code@0.33.5: dependencies: expressive-code: 0.33.5 hast-util-to-html: 8.0.4 unist-util-visit: 4.1.2 - dev: false - /remark-gfm@4.0.0: - resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + remark-gfm@4.0.0: dependencies: '@types/mdast': 4.0.4 mdast-util-gfm: 3.0.0 @@ -5307,17 +7229,14 @@ packages: transitivePeerDependencies: - supports-color - /remark-mdx@3.0.1: - resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==} + remark-mdx@3.0.1: dependencies: mdast-util-mdx: 3.0.0 micromark-extension-mdxjs: 3.0.0 transitivePeerDependencies: - supports-color - dev: false - /remark-parse@11.0.0: - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + remark-parse@11.0.0: dependencies: '@types/mdast': 4.0.4 mdast-util-from-markdown: 2.0.1 @@ -5326,8 +7245,7 @@ packages: transitivePeerDependencies: - supports-color - /remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} + remark-rehype@11.1.0: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -5335,132 +7253,97 @@ packages: unified: 11.0.5 vfile: 6.0.2 - /remark-smartypants@2.1.0: - resolution: {integrity: sha512-qoF6Vz3BjU2tP6OfZqHOvCU0ACmu/6jhGaINSQRI9mM7wCxNQTKB3JUAN4SVoN2ybElEDTxBIABRep7e569iJw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + remark-smartypants@2.1.0: dependencies: retext: 8.1.0 retext-smartypants: 5.2.0 unist-util-visit: 5.0.0 - dev: false - /remark-smartypants@3.0.2: - resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} - engines: {node: '>=16.0.0'} + remark-smartypants@3.0.2: dependencies: retext: 9.0.0 retext-smartypants: 6.1.0 unified: 11.0.5 unist-util-visit: 5.0.0 - /remark-stringify@11.0.0: - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + remark-stringify@11.0.0: dependencies: '@types/mdast': 4.0.4 mdast-util-to-markdown: 2.1.0 unified: 11.0.5 - /request-light@0.7.0: - resolution: {integrity: sha512-lMbBMrDoxgsyO+yB3sDcrDuX85yYt7sS8BfQd11jtbW/z5ZWgLZRcEGLsLoYw7I0WSUGQBs8CC8ScIxkTX1+6Q==} - dev: false + request-light@0.7.0: {} - /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} - dev: false + require-directory@2.1.1: {} - /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} - dev: true + resolve-from@5.0.0: {} - /resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true + resolve@1.22.8: dependencies: is-core-module: 2.15.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /restore-cursor@4.0.0: - resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + restore-cursor@4.0.0: dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - /retext-latin@3.1.0: - resolution: {integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==} + retext-latin@3.1.0: dependencies: '@types/nlcst': 1.0.4 parse-latin: 5.0.1 unherit: 3.0.1 unified: 10.1.2 - dev: false - /retext-latin@4.0.0: - resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} + retext-latin@4.0.0: dependencies: '@types/nlcst': 2.0.3 parse-latin: 7.0.0 unified: 11.0.5 - /retext-smartypants@5.2.0: - resolution: {integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==} + retext-smartypants@5.2.0: dependencies: '@types/nlcst': 1.0.4 nlcst-to-string: 3.1.1 unified: 10.1.2 unist-util-visit: 4.1.2 - dev: false - /retext-smartypants@6.1.0: - resolution: {integrity: sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==} + retext-smartypants@6.1.0: dependencies: '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 unist-util-visit: 5.0.0 - /retext-stringify@3.1.0: - resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} + retext-stringify@3.1.0: dependencies: '@types/nlcst': 1.0.4 nlcst-to-string: 3.1.1 unified: 10.1.2 - dev: false - /retext-stringify@4.0.0: - resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} + retext-stringify@4.0.0: dependencies: '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 unified: 11.0.5 - /retext@8.1.0: - resolution: {integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==} + retext@8.1.0: dependencies: '@types/nlcst': 1.0.4 retext-latin: 3.1.0 retext-stringify: 3.1.0 unified: 10.1.2 - dev: false - /retext@9.0.0: - resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} + retext@9.0.0: dependencies: '@types/nlcst': 2.0.3 retext-latin: 4.0.0 retext-stringify: 4.0.0 unified: 11.0.5 - /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + reusify@1.0.4: {} - /rollup@4.19.0: - resolution: {integrity: sha512-5r7EYSQIowHsK4eTZ0Y81qpZuJz+MUuYeqmmYmRMl1nwhdmbiYqt5jwzf6u7wyOzJgYqtCRMtVRKOtHANBz7rA==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true + rollup@4.19.0: dependencies: '@types/estree': 1.0.5 optionalDependencies: @@ -5482,21 +7365,15 @@ packages: '@rollup/rollup-win32-x64-msvc': 4.19.0 fsevents: 2.3.3 - /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 - /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - dev: false + safe-buffer@5.2.1: {} - /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - dev: true + safer-buffer@2.1.2: {} - /sanitize-html@2.13.0: - resolution: {integrity: sha512-Xff91Z+4Mz5QiNSLdLWwjgBDm5b1RU6xBT0+12rapjiaR7SwfRdjw8f+6Rir2MXKLrDicRFHdb51hGOAxmsUIA==} + sanitize-html@2.13.0: dependencies: deepmerge: 4.3.1 escape-string-regexp: 4.0.0 @@ -5504,37 +7381,23 @@ packages: is-plain-object: 5.0.0 parse-srcset: 1.0.2 postcss: 8.4.39 - dev: false - /sax@1.4.1: - resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} - dev: false + sax@1.4.1: {} - /scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 - dev: false - /section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} + section-matter@1.0.0: dependencies: extend-shallow: 2.0.1 kind-of: 6.0.3 - /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + semver@6.3.1: {} - /semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} - engines: {node: '>=10'} - hasBin: true + semver@7.6.3: {} - /send@0.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + send@0.18.0: dependencies: debug: 2.6.9 depd: 2.0.0 @@ -5551,32 +7414,18 @@ packages: statuses: 2.0.1 transitivePeerDependencies: - supports-color - dev: false - /seroval-plugins@1.1.0(seroval@1.1.0): - resolution: {integrity: sha512-KtcJg590L3X3dd7ixs6am4UGVcV69TyjYhHtanIdQJq4dy2OceWXmmvWrYx7oFDNe+LNdxdWd0I5BQXuV5fBhA==} - engines: {node: '>=10'} - peerDependencies: - seroval: ^1.0 + seroval-plugins@1.1.0(seroval@1.1.0): dependencies: seroval: 1.1.0 - /seroval@1.1.0: - resolution: {integrity: sha512-74Wpe+hhPx4V8NFe00I2Fu9gTJopKoH5vE7nCqFzVgKOXV8AnN23T58K79QLYQotzGpH93UZ+UN2Y11j9huZJg==} - engines: {node: '>=10'} + seroval@1.1.0: {} - /server-destroy@1.0.1: - resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==} - dev: false + server-destroy@1.0.1: {} - /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - dev: false + setprototypeof@1.2.0: {} - /sharp@0.32.6: - resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==} - engines: {node: '>=14.15.0'} - requiresBuild: true + sharp@0.32.6: dependencies: color: 4.2.3 detect-libc: 2.0.3 @@ -5586,12 +7435,8 @@ packages: simple-get: 4.0.1 tar-fs: 3.0.6 tunnel-agent: 0.6.0 - dev: false - /sharp@0.33.4: - resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==} - engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0} - requiresBuild: true + sharp@0.33.4: dependencies: color: 4.2.3 detect-libc: 2.0.3 @@ -5618,88 +7463,82 @@ packages: '@img/sharp-win32-x64': 0.33.4 optional: true - /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + shebang-command@1.2.0: dependencies: shebang-regex: 1.0.0 - dev: true - /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - dev: true + shebang-regex@1.0.0: {} - /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + shebang-regex@3.0.0: {} - /shiki@1.11.0: - resolution: {integrity: sha512-NqH/O1zRHvnuk/WfSL6b7+DtI7/kkMMSQGlZhm9DyzSU+SoIHhaw/fBZMr+zp9R8KjdIzkk3JKSC6hORuGDyng==} + shiki@1.11.0: dependencies: '@shikijs/core': 1.11.0 '@types/hast': 3.0.4 - /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@3.0.7: {} - /signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + signal-exit@4.1.0: {} - /simple-concat@1.0.1: - resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} - dev: false + signal-polyfill@0.1.2: {} - /simple-get@4.0.1: - resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + simple-concat@1.0.1: {} + + simple-get@4.0.1: dependencies: decompress-response: 6.0.0 once: 1.4.0 simple-concat: 1.0.1 - dev: false - /simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + simple-stack-form@0.1.12(astro@4.12.2(@types/node@20.14.11)(typescript@5.5.3))(zod@3.23.8): + dependencies: + '@clack/prompts': 0.7.0 + astro: 4.12.2(@types/node@20.14.11)(typescript@5.5.3) + fs-extra: 11.2.0 + just-map-values: 3.2.0 + kleur: 4.1.5 + zod: 3.23.8 + + simple-stack-form@0.1.12(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3))(zod@3.23.8): + dependencies: + '@clack/prompts': 0.7.0 + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + fs-extra: 11.2.0 + just-map-values: 3.2.0 + kleur: 4.1.5 + zod: 3.23.8 + + simple-stack-stream@0.3.4(astro@4.12.2(@types/node@20.14.12)(typescript@5.5.3)): + dependencies: + astro: 4.12.2(@types/node@20.14.12)(typescript@5.5.3) + nanoid: 5.0.7 + + simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 - /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + sisteransi@1.0.5: {} - /sitemap@7.1.2: - resolution: {integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==} - engines: {node: '>=12.0.0', npm: '>=5.6.0'} - hasBin: true + sitemap@7.1.2: dependencies: '@types/node': 17.0.45 '@types/sax': 1.2.7 arg: 5.0.2 sax: 1.4.1 - dev: false - /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - dev: true + slash@3.0.0: {} - /solid-js@1.8.18: - resolution: {integrity: sha512-cpkxDPvO/AuKBugVv6xKFd1C9VC0XZMu4VtF56IlHoux8HgyW44uqNSWbozMnVcpIzHIhS3vVXPAVZYM26jpWw==} + solid-js@1.8.18: dependencies: csstype: 3.1.3 seroval: 1.1.0 seroval-plugins: 1.1.0(seroval@1.1.0) - /solid-refresh@0.6.3(solid-js@1.8.18): - resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} - peerDependencies: - solid-js: ^1.3 + solid-refresh@0.6.3(solid-js@1.8.18): dependencies: '@babel/generator': 7.24.10 '@babel/helper-module-imports': 7.24.7 @@ -5707,166 +7546,99 @@ packages: solid-js: 1.8.18 transitivePeerDependencies: - supports-color - dev: false - /source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} + source-map-js@1.2.0: {} - /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} - dev: false + source-map@0.6.1: {} - /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} - dev: false + source-map@0.7.4: {} - /space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + space-separated-tokens@2.0.2: {} - /spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@2.0.0: dependencies: cross-spawn: 5.1.0 signal-exit: 3.0.7 - dev: true - /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sprintf-js@1.0.3: {} - /stack-trace@1.0.0-pre2: - resolution: {integrity: sha512-2ztBJRek8IVofG9DBJqdy2N5kulaacX30Nz7xmkYF6ale9WBVmIy6mFBchvGX7Vx/MyjBhx+Rcxqrj+dbOnQ6A==} - engines: {node: '>=16'} - dev: false + stack-trace@1.0.0-pre2: {} - /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} - dev: false + statuses@2.0.1: {} - /stdin-discarder@0.2.2: - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} - engines: {node: '>=18'} + stdin-discarder@0.2.2: {} - /stream-replace-string@2.0.0: - resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} - dev: false + stream-replace-string@2.0.0: {} - /streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} - dev: false + streamsearch@1.1.0: {} - /streamx@2.18.0: - resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==} + streamx@2.18.0: dependencies: fast-fifo: 1.3.2 queue-tick: 1.0.1 text-decoder: 1.1.1 optionalDependencies: bare-events: 2.4.2 - dev: false - /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + string-width@5.1.2: dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - /string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} - engines: {node: '>=18'} + string-width@7.2.0: dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 - /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 - dev: false - /stringify-entities@4.0.4: - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + stringify-entities@4.0.4: dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 - /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 - /strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + strip-ansi@7.1.0: dependencies: ansi-regex: 6.0.1 - /strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} + strip-bom-string@1.0.0: {} - /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + strip-bom@3.0.0: {} - /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + strip-final-newline@3.0.0: {} - /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} - dev: false + strip-json-comments@2.0.1: {} - /style-to-object@0.4.4: - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + style-to-object@0.4.4: dependencies: inline-style-parser: 0.1.1 - dev: false - /style-to-object@1.0.6: - resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + style-to-object@1.0.6: dependencies: inline-style-parser: 0.2.3 - dev: false - /styled-jsx@5.1.1(react@18.3.1): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' - peerDependenciesMeta: - '@babel/core': - optional: true - babel-plugin-macros: - optional: true + styled-jsx@5.1.1(@babel/core@7.24.9)(react@18.3.1): dependencies: client-only: 0.0.1 react: 18.3.1 - dev: false + optionalDependencies: + '@babel/core': 7.24.9 - /sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + sucrase@3.35.0: dependencies: '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 @@ -5876,24 +7648,15 @@ packages: pirates: 4.0.6 ts-interface-checker: 0.1.13 - /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + supports-color@5.5.0: dependencies: has-flag: 3.0.0 - /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + supports-preserve-symlinks-flag@1.0.0: {} - /tailwind-merge@2.4.0: - resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==} - dev: false + tailwind-merge@2.4.0: {} - /tailwindcss@3.4.6: - resolution: {integrity: sha512-1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==} - engines: {node: '>=14.0.0'} - hasBin: true + tailwindcss@3.4.6: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -5920,177 +7683,100 @@ packages: transitivePeerDependencies: - ts-node - /tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + tar-fs@2.1.1: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 pump: 3.0.0 tar-stream: 2.2.0 - dev: false - /tar-fs@3.0.6: - resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==} + tar-fs@3.0.6: dependencies: pump: 3.0.0 tar-stream: 3.1.7 optionalDependencies: bare-fs: 2.3.1 bare-path: 2.1.3 - dev: false - /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + tar-stream@2.2.0: dependencies: bl: 4.1.0 end-of-stream: 1.4.4 fs-constants: 1.0.0 inherits: 2.0.4 readable-stream: 3.6.2 - dev: false - /tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + tar-stream@3.1.7: dependencies: b4a: 1.6.6 fast-fifo: 1.3.2 streamx: 2.18.0 - dev: false - /term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} - dev: true + term-size@2.2.1: {} - /text-decoder@1.1.1: - resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==} + text-decoder@1.1.1: dependencies: b4a: 1.6.6 - dev: false - /thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 - /thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + thenify@3.3.1: dependencies: any-promise: 1.3.0 - /tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - dev: false + tiny-invariant@1.3.3: {} - /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - dev: true - /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + to-fast-properties@2.0.0: {} - /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 - /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} - dev: false + toidentifier@1.0.1: {} - /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - dev: true + tr46@0.0.3: {} - /trim-lines@3.0.1: - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + trim-lines@3.0.1: {} - /trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + trough@2.2.0: {} - /ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + ts-interface-checker@0.1.13: {} - /tsconfck@3.1.1(typescript@5.5.3): - resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==} - engines: {node: ^18 || >=20} - hasBin: true - peerDependencies: - typescript: ^5.0.0 - peerDependenciesMeta: - typescript: - optional: true - dependencies: + tsconfck@3.1.1(typescript@5.5.3): + optionalDependencies: typescript: 5.5.3 - /tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.6.3: {} - /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + tunnel-agent@0.6.0: dependencies: safe-buffer: 5.2.1 - dev: false - /turbo-darwin-64@1.13.4: - resolution: {integrity: sha512-A0eKd73R7CGnRinTiS7txkMElg+R5rKFp9HV7baDiEL4xTG1FIg/56Vm7A5RVgg8UNgG2qNnrfatJtb+dRmNdw==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-64@1.13.4: optional: true - /turbo-darwin-arm64@1.13.4: - resolution: {integrity: sha512-eG769Q0NF6/Vyjsr3mKCnkG/eW6dKMBZk6dxWOdrHfrg6QgfkBUk0WUUujzdtVPiUIvsh4l46vQrNVd9EOtbyA==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true + turbo-darwin-arm64@1.13.4: optional: true - /turbo-linux-64@1.13.4: - resolution: {integrity: sha512-Bq0JphDeNw3XEi+Xb/e4xoKhs1DHN7OoLVUbTIQz+gazYjigVZvtwCvgrZI7eW9Xo1eOXM2zw2u1DGLLUfmGkQ==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-64@1.13.4: optional: true - /turbo-linux-arm64@1.13.4: - resolution: {integrity: sha512-BJcXw1DDiHO/okYbaNdcWN6szjXyHWx9d460v6fCHY65G8CyqGU3y2uUTPK89o8lq/b2C8NK0yZD+Vp0f9VoIg==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true + turbo-linux-arm64@1.13.4: optional: true - /turbo-windows-64@1.13.4: - resolution: {integrity: sha512-OFFhXHOFLN7A78vD/dlVuuSSVEB3s9ZBj18Tm1hk3aW1HTWTuAw0ReN6ZNlVObZUHvGy8d57OAGGxf2bT3etQw==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-64@1.13.4: optional: true - /turbo-windows-arm64@1.13.4: - resolution: {integrity: sha512-u5A+VOKHswJJmJ8o8rcilBfU5U3Y1TTAfP9wX8bFh8teYF1ghP0EhtMRLjhtp6RPa+XCxHHVA2CiC3gbh5eg5g==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true + turbo-windows-arm64@1.13.4: optional: true - /turbo@1.13.4: - resolution: {integrity: sha512-1q7+9UJABuBAHrcC4Sxp5lOqYS5mvxRrwa33wpIyM18hlOCpRD/fTJNxZ0vhbMcJmz15o9kkVm743mPn7p6jpQ==} - hasBin: true + turbo@1.13.4: optionalDependencies: turbo-darwin-64: 1.13.4 turbo-darwin-arm64: 1.13.4 @@ -6098,44 +7784,26 @@ packages: turbo-linux-arm64: 1.13.4 turbo-windows-64: 1.13.4 turbo-windows-arm64: 1.13.4 - dev: true - /type-fest@2.19.0: - resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} - engines: {node: '>=12.20'} + type-fest@2.19.0: {} - /typesafe-path@0.2.2: - resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} - dev: false + typesafe-path@0.2.2: {} - /typescript-auto-import-cache@0.3.3: - resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} + typescript-auto-import-cache@0.3.3: dependencies: semver: 7.6.3 - dev: false - /typescript@5.5.3: - resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} - engines: {node: '>=14.17'} - hasBin: true + typescript@5.5.3: {} - /uhyphen@0.2.0: - resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} - dev: true + uhyphen@0.2.0: {} - /ultrahtml@1.5.3: - resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==} - dev: false + ultrahtml@1.5.3: {} - /undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@5.26.5: {} - /unherit@3.0.1: - resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==} - dev: false + unherit@3.0.1: {} - /unified@10.1.2: - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + unified@10.1.2: dependencies: '@types/unist': 2.0.10 bail: 2.0.2 @@ -6144,10 +7812,8 @@ packages: is-plain-obj: 4.1.0 trough: 2.2.0 vfile: 5.3.7 - dev: false - /unified@11.0.5: - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + unified@11.0.5: dependencies: '@types/unist': 3.0.2 bail: 2.0.2 @@ -6157,187 +7823,145 @@ packages: trough: 2.2.0 vfile: 6.0.2 - /unist-util-find-after@5.0.0: - resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + unist-util-find-after@5.0.0: dependencies: '@types/unist': 3.0.2 unist-util-is: 6.0.0 - /unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + unist-util-is@5.2.1: dependencies: '@types/unist': 2.0.10 - dev: false - /unist-util-is@6.0.0: - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + unist-util-is@6.0.0: dependencies: '@types/unist': 3.0.2 - /unist-util-modify-children@3.1.1: - resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==} + unist-util-modify-children@3.1.1: dependencies: '@types/unist': 2.0.10 array-iterate: 2.0.1 - dev: false - /unist-util-modify-children@4.0.0: - resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} + unist-util-modify-children@4.0.0: dependencies: '@types/unist': 3.0.2 array-iterate: 2.0.1 - /unist-util-position-from-estree@2.0.0: - resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} + unist-util-position-from-estree@2.0.0: dependencies: '@types/unist': 3.0.2 - dev: false - /unist-util-position@4.0.4: - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + unist-util-position@4.0.4: dependencies: '@types/unist': 2.0.10 - dev: false - /unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + unist-util-position@5.0.0: dependencies: '@types/unist': 3.0.2 - /unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + unist-util-remove-position@5.0.0: dependencies: '@types/unist': 3.0.2 unist-util-visit: 5.0.0 - /unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + unist-util-stringify-position@3.0.3: dependencies: '@types/unist': 2.0.10 - dev: false - /unist-util-stringify-position@4.0.0: - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + unist-util-stringify-position@4.0.0: dependencies: '@types/unist': 3.0.2 - /unist-util-visit-children@2.0.2: - resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==} + unist-util-visit-children@2.0.2: dependencies: '@types/unist': 2.0.10 - dev: false - /unist-util-visit-children@3.0.0: - resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} + unist-util-visit-children@3.0.0: dependencies: '@types/unist': 3.0.2 - /unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + unist-util-visit-parents@5.1.3: dependencies: '@types/unist': 2.0.10 unist-util-is: 5.2.1 - dev: false - /unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + unist-util-visit-parents@6.0.1: dependencies: '@types/unist': 3.0.2 unist-util-is: 6.0.0 - /unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + unist-util-visit@4.1.2: dependencies: '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 - dev: false - /unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + unist-util-visit@5.0.0: dependencies: '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - /universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} - dev: true + universalify@0.1.2: {} - /universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} - dev: false + universalify@2.0.1: {} - /update-browserslist-db@1.1.0(browserslist@4.23.2): - resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' + update-browserslist-db@1.1.0(browserslist@4.23.2): dependencies: browserslist: 4.23.2 escalade: 3.1.2 picocolors: 1.0.1 - /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + util-deprecate@1.0.2: {} - /validate-html-nesting@1.2.2: - resolution: {integrity: sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==} - dev: false + validate-html-nesting@1.2.2: {} - /vfile-location@4.1.0: - resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + vfile-location@4.1.0: dependencies: '@types/unist': 2.0.10 vfile: 5.3.7 - dev: false - /vfile-location@5.0.3: - resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + vfile-location@5.0.3: dependencies: '@types/unist': 3.0.2 vfile: 6.0.2 - /vfile-message@3.1.4: - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + vfile-message@3.1.4: dependencies: '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 - dev: false - /vfile-message@4.0.2: - resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} + vfile-message@4.0.2: dependencies: '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 - /vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + vfile@5.3.7: dependencies: '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 - dev: false - /vfile@6.0.2: - resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==} + vfile@6.0.2: dependencies: '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - /vite-plugin-solid@2.10.2(solid-js@1.8.18)(vite@5.3.4): - resolution: {integrity: sha512-AOEtwMe2baBSXMXdo+BUwECC8IFHcKS6WQV/1NEd+Q7vHPap5fmIhLcAzr+DUJ04/KHx/1UBU0l1/GWP+rMAPQ==} - peerDependencies: - '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* - solid-js: ^1.7.2 - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - '@testing-library/jest-dom': - optional: true + vite-plugin-simple-scope@2.0.2(@types/node@20.14.12): + dependencies: + typescript: 5.5.3 + vite: 5.3.4(@types/node@20.14.12) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - stylus + - sugarss + - terser + + vite-plugin-solid@2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.12)): dependencies: '@babel/core': 7.24.9 '@types/babel__core': 7.20.5 @@ -6345,305 +7969,182 @@ packages: merge-anything: 5.1.7 solid-js: 1.8.18 solid-refresh: 0.6.3(solid-js@1.8.18) - vite: 5.3.4(@types/node@20.14.11) - vitefu: 0.2.5(vite@5.3.4) + vite: 5.3.4(@types/node@20.14.12) + vitefu: 0.2.5(vite@5.3.4(@types/node@20.14.12)) transitivePeerDependencies: - supports-color - dev: false - /vite@5.3.4(@types/node@20.14.11): - resolution: {integrity: sha512-Cw+7zL3ZG9/NZBB8C+8QbQZmR54GwqIz+WMI4b3JgdYJvX+ny9AjJXqkGQlDXSXRP9rP0B4tbciRMOVEKulVOA==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' - lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true + vite@5.3.4(@types/node@20.14.11): dependencies: - '@types/node': 20.14.11 esbuild: 0.21.5 postcss: 8.4.39 rollup: 4.19.0 optionalDependencies: + '@types/node': 20.14.11 fsevents: 2.3.3 - /vitefu@0.2.5(vite@5.3.4): - resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - vite: - optional: true + vite@5.3.4(@types/node@20.14.12): dependencies: + esbuild: 0.21.5 + postcss: 8.4.39 + rollup: 4.19.0 + optionalDependencies: + '@types/node': 20.14.12 + fsevents: 2.3.3 + + vitefu@0.2.5(vite@5.3.4(@types/node@20.14.11)): + optionalDependencies: vite: 5.3.4(@types/node@20.14.11) - /volar-service-css@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-gLNjJnECbalPvQB7qeJjhkDN8sR5M3ItbVYjnyio61aHaWptIiXm/HfDahcQ2ApwmvWidkMWWegjGq5L0BENDA==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - peerDependenciesMeta: - '@volar/language-service': - optional: true + vitefu@0.2.5(vite@5.3.4(@types/node@20.14.12)): + optionalDependencies: + vite: 5.3.4(@types/node@20.14.12) + + volar-service-css@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: - '@volar/language-service': 2.4.0-alpha.17 vscode-css-languageservice: 6.3.0 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /volar-service-emmet@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-6EynHcuMwMBETpK29TbZvIMmvzdVG+Tkokk9VWfZeI+SwDptk2tgdhEqiXXvIkqYNgbuu73Itp66lpH76cAU+Q==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - peerDependenciesMeta: - '@volar/language-service': - optional: true + volar-service-emmet@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: '@emmetio/css-parser': 0.4.0 '@emmetio/html-matcher': 1.3.0 - '@volar/language-service': 2.4.0-alpha.17 '@vscode/emmet-helper': 2.9.3 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /volar-service-html@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-hEXOsYpILDlITZxnqRLV9OepVWD63GZBsyjMxszwdzlxvGZjzbGcBBinJGGJRwFIV8djdJwnt91bkdg1V5tj6Q==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - peerDependenciesMeta: - '@volar/language-service': - optional: true + volar-service-html@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: - '@volar/language-service': 2.4.0-alpha.17 vscode-html-languageservice: 5.3.0 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /volar-service-prettier@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-FmBR4lsgFRGR3V0LnxZZal0WqdOJjuLL6mQSj4p57M15APtQwuocG/FiF+ONGFnwRXMOIBDBTCARdth+TKgL3A==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - prettier: ^2.2 || ^3.0 - peerDependenciesMeta: - '@volar/language-service': - optional: true - prettier: - optional: true + volar-service-prettier@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: - '@volar/language-service': 2.4.0-alpha.17 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /volar-service-typescript-twoslash-queries@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-skm8e6yhCIkqLwJB6S9MqT5lO9LNFuMD3dYxKpmOZs1CKbXmCZZTmLfEaD5VkJae1xdleEDZFFTHl2O5HLjOGQ==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - peerDependenciesMeta: - '@volar/language-service': - optional: true + volar-service-typescript-twoslash-queries@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: - '@volar/language-service': 2.4.0-alpha.17 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /volar-service-typescript@0.0.59(@volar/language-service@2.4.0-alpha.17): - resolution: {integrity: sha512-VCOpfiu+lUo5lapWLB5L5vmQGtwzmNWn5MueV915eku7blpphmE+Z7hCNcL1NApn7AetXWhiblv8ZhmUx/dGIA==} - peerDependencies: - '@volar/language-service': ~2.4.0-alpha.12 - peerDependenciesMeta: - '@volar/language-service': - optional: true + volar-service-typescript@0.0.59(@volar/language-service@2.4.0-alpha.17): dependencies: - '@volar/language-service': 2.4.0-alpha.17 path-browserify: 1.0.1 semver: 7.6.3 typescript-auto-import-cache: 0.3.3 vscode-languageserver-textdocument: 1.0.11 vscode-nls: 5.2.0 vscode-uri: 3.0.8 - dev: false + optionalDependencies: + '@volar/language-service': 2.4.0-alpha.17 - /vscode-css-languageservice@6.3.0: - resolution: {integrity: sha512-nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==} + vscode-css-languageservice@6.3.0: dependencies: '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.11 vscode-languageserver-types: 3.17.5 vscode-uri: 3.0.8 - dev: false - /vscode-html-languageservice@5.3.0: - resolution: {integrity: sha512-C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==} + vscode-html-languageservice@5.3.0: dependencies: '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.11 vscode-languageserver-types: 3.17.5 vscode-uri: 3.0.8 - dev: false - /vscode-jsonrpc@8.2.0: - resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} - engines: {node: '>=14.0.0'} - dev: false + vscode-jsonrpc@8.2.0: {} - /vscode-languageserver-protocol@3.17.5: - resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} + vscode-languageserver-protocol@3.17.5: dependencies: vscode-jsonrpc: 8.2.0 vscode-languageserver-types: 3.17.5 - dev: false - /vscode-languageserver-textdocument@1.0.11: - resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} - dev: false + vscode-languageserver-textdocument@1.0.11: {} - /vscode-languageserver-types@3.17.5: - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} - dev: false + vscode-languageserver-types@3.17.5: {} - /vscode-languageserver@9.0.1: - resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} - hasBin: true + vscode-languageserver@9.0.1: dependencies: vscode-languageserver-protocol: 3.17.5 - dev: false - /vscode-nls@5.2.0: - resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} - dev: false + vscode-nls@5.2.0: {} - /vscode-uri@2.1.2: - resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - dev: false + vscode-uri@2.1.2: {} - /vscode-uri@3.0.8: - resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} - dev: false + vscode-uri@3.0.8: {} - /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + watchpack@2.4.0: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 - dev: false - /web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + web-namespaces@2.0.1: {} - /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - dev: true + webidl-conversions@3.0.1: {} - /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + whatwg-url@5.0.0: dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - dev: true - /which-pm-runs@1.1.0: - resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} - engines: {node: '>=4'} + which-pm-runs@1.1.0: {} - /which-pm@2.2.0: - resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} - engines: {node: '>=8.15'} + which-pm@2.2.0: dependencies: load-yaml-file: 0.2.0 path-exists: 4.0.0 - dev: true - /which-pm@3.0.0: - resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} - engines: {node: '>=18.12'} + which-pm@3.0.0: dependencies: load-yaml-file: 0.2.0 - /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true + which@1.3.1: dependencies: isexe: 2.0.0 - dev: true - /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true + which@2.0.2: dependencies: isexe: 2.0.0 - /widest-line@4.0.1: - resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} - engines: {node: '>=12'} + widest-line@4.0.1: dependencies: string-width: 5.1.2 - /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + wrap-ansi@8.1.0: dependencies: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - dev: false + wrappy@1.0.2: {} - /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} - dev: false + y18n@5.0.8: {} - /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - dev: true + yallist@2.1.2: {} - /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yallist@3.1.1: {} - /yaml@2.4.5: - resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==} - engines: {node: '>= 14'} - hasBin: true + yaml@2.4.5: {} - /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + yargs-parser@21.1.1: {} - /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + yargs@17.7.2: dependencies: cliui: 8.0.1 escalade: 3.1.2 @@ -6652,26 +8153,15 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - dev: false - /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - dev: true + yocto-queue@0.1.0: {} - /yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} - engines: {node: '>=12.20'} + yocto-queue@1.1.1: {} - /zod-to-json-schema@3.23.1(zod@3.23.8): - resolution: {integrity: sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==} - peerDependencies: - zod: ^3.23.3 + zod-to-json-schema@3.23.1(zod@3.23.8): dependencies: zod: 3.23.8 - /zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zod@3.23.8: {} - /zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + zwitch@2.0.4: {} diff --git a/turbo.json b/turbo.json index 37a3e3d..5e2ec76 100644 --- a/turbo.json +++ b/turbo.json @@ -10,7 +10,10 @@ "persistent": true }, "test": { - "dependsOn": ["build"] + "dependsOn": ["^build"] + }, + "e2e": { + "dependsOn": ["^build"] } } } diff --git a/www/src/content/docs/query.md b/www/src/content/docs/query.md deleted file mode 100644 index 09786c6..0000000 --- a/www/src/content/docs/query.md +++ /dev/null @@ -1,120 +0,0 @@ ---- -title: Simple query 🔎 -description: A simple library to query the DOM from your Astro components. ---- - -A simple library to query the DOM from your Astro components. - -```astro - - - -``` - -## Installation - -Simple stack query is an Astro integration. You can install using the `astro add` CLI: - -```bash -astro add simple-stack-query -``` - -To install this integration manually, follow the [manual installation instructions](https://docs.astro.build/en/guides/integrations-guide/#manual-installation) - -## Global `$` selector - -The `$` is globally available to define targets from your server template, and to query those targets from your client script. - -Selectors should be applied to the `data-target` attribute. All selectors are scoped based on the component you're in, so we recommend the simplest name you can use: - -```astro - + + + +``` + +## Installation + +Simple Query is an Astro integration. We recommend installing with the `astro add` CLI: + +```bash +astro add simple-stack-query +``` + +To install this integration manually, follow the [manual installation instructions](https://docs.astro.build/en/guides/integrations-guide/#manual-installation) + +## Getting started + +To get started, apply the global `` wrapper around your Astro component markup: + +```astro ins="RootElement" + + + +``` + +Next, apply the `data-target` attribute to the element you want to target. Simple Query will automatically scope the value to prevent conflicts with other components in your project: + +```astro ins="data-target=\"btn\"" + + + + +``` + +Now create a ` +``` + +## Selecting elements + +The `$()` function provided by `RootElement.ready()` will find the first match based on `data-target`, and throw if no match is found. + +The result will be a standard [`HTMLElement`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement) by default. To narrow this type to a particular element, pass a type generic to the `$()` function: + +```ts ins="" + + + + + +``` + +### `$.optional()` selector + +`$()` throws when no matching element is found. To handle undefined values, use the `$.optional()` function: + +```astro ins="$.optional" +--- +const promoActive = Astro.url.searchParams.has('promo'); +--- + + + {promoActive &&

Buy my thing

} +
+ + +``` + +### `$.all()` selector + +You may want to select multiple targets with the same name. Use the `$.all()` function to query for an array of results: + +```astro ins="$.all" +--- +const links = ["wtw.dev", "bholmes.dev"]; +--- + + + {links.map(link => ( + {link} + ))} + + + +``` + +### `$.self` selector + +To select the `RootElement` itself, use the `$.self` value: + +```astro + + + + +``` + +## Handling client state + +When adding client interactivity, you'll often need to track "state." This could be `count` value for a button counter, an `open` boolean for a dropdown, and so on. + +### Using data attributes + +The simplest place to store state values is on an element itself. For example, you may track the `open` state on a dropdown by toggling a data attribute. Call `.toggleAttribute()` on the dropdown when a button is clicked, and adjust the dropdown's `visibility` style from `invisible` to `visible` based on the value: + + + + +```astro + + +
    +
  • Item 1
  • +
+
+ + + + +``` + +
+ + +```astro + + + + + + +``` + + +
+ + +### Using signals with `signal-polyfill` + +Overtime, you may find it difficult to keep elements on the page in-sync with the state you are tracking. You may need to update multiple elements based on a `count`, an `open` state, etc. + +Browsers are considering a new standard to address this problem: [Signals](https://github.com/tc39/proposal-signals). Simple Query is built to support an early version of this proposal via the `signal-polyfill` package. + +First install `signal-polyfill` into your project: + + + + +```sh +npm install signal-polyfill +``` + + + + +```sh +pnpm add signal-polyfill +``` + + + + +Then, create your first state variable by importing `Signal` from `signal-polyfill` and calling the `new Signal.State()` constructor: + +```astro ins={2} ins="const count = new Signal.State(0)" + +``` + +Update this value using `.set()`, and retrieve the current value using `.get()`. This example increments a counter when the `btn` element is pressed: + +```astro ins={11-13} + + + + + +``` + +To update the document, `RootElement.ready()` provides an `effect()` function. This defines a block of code that should rerun whenever a state variable _inside_ that block changes. + +Access the `effect()` function from the `ctx` object. This passed as the second argument to `RootElement.ready()`. + +This example will update a button's `textContent` whenever `count` changes: + +```astro ins="ctx" ins={15-17} + + + + + +``` + +## Passing server data + +You may need to pass information from your Astro component to the client. For boolean values, the simplest method is via data attributes. This example sets the initial state of a dropdown by setting `data-open` from the template: + +```astro ins="data-open" + + +
    +
  • Item 1
  • +
+
+ + +``` + +Still, you may need to pass other values including numbers, arrays, or objects. This is common [when using Signals](#using-signals-with-signal-polyfill) for state management. + +For this, `` accepts a `data` property. This supports any JSON-serializable value: + +```astro ins="data={{ initialCount }}" +--- +const initialCount = 0; +--- + + + + +``` + +Then, retrieve this value from the client using the `data` object. This is available from the `ctx` object passed as the second argument by `RootElement.ready()`. + +```astro ins="ctx.data" +--- +const initialCount = 0; +--- + + + + + + +``` + +`RootElement` also accepts a type argument to enforce the type of `data`: + +:::caution +Defining a type for `data` will _not_ raise a type error for server data you pass in. This is only meant to allow autocompletion from your client scripts. +::: + +```astro ins="<{ initialCount: number }>" + +``` + +## Passing `data-target` as a component prop + +You can pass a `data-target` value as a prop to nested components as well. This allows you to target elements defined deeper in the component tree that depend on the same client state. + +This example defines a `Button` component that accepts a `target` prop applied to the `data-target` attribute: + +```astro title="src/components/Button.astro" +--- +type Props = { + target: string; +} + +const { target } = Astro.props; +--- + + +``` + +To pass a scoped `target` value, you will need to wrap your value using the `scope()` function from the `simple:scope` module. This applies the same scoping Simple Query applies by default to `data-target` attributes: + +```astro title="src/pages/index.astro" ins={3} ins="scope(\"btn\")" +--- +import Button from "../components/Button.astro"; +import { scope } from "simple:scope"; +--- + + + + + + +``` + +## Handling event cleanup + +:::note +Cleanup is only necessary when using [view transitions](https://docs.astro.build/en/guides/view-transitions/). If you aren't using view transitions, skip this section! +::: + +You may have logic in your `RootElement.ready()` function that should be cleaned up on route change. This includes: + +- `fetch()` calls +- `document` event listeners +- intersection and mutation observers + +### Clean up `fetch` and `document` callbacks + +The `fetch()` and `document.addEventListener()` functions accept an [`AbortSignal`](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) to cancel events. Simple Query provides an `abortSignal` via the `ctx` property, which will trigger whenever the `RootElement` is removed from the page. + +Apply `ctx.abortSignal` to any `fetch()` or `document.addEventListener()` calls in your client script using the `signal` property: + +```astro ins="signal: ctx.abortSignal" + +``` + +### Clean up observers and other events + +You may listen to events that do not accept an `AbortSignal`. This includes [intersection](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) and [mutation](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver) observers. For these cases, return a callback function from `RootElement.ready()` with any cleanup logic you need to run on navigation: + +```astro ins={8-10} + +```