(
+
+
+
+
+
+ {assets}
+
+
+ {children}
+ {scripts}
+
+
+ )}
+ />
+));
diff --git a/apps/fixtures/serialization-modes/src/global.d.ts b/apps/fixtures/serialization-modes/src/global.d.ts
new file mode 100644
index 000000000..dc6f10c22
--- /dev/null
+++ b/apps/fixtures/serialization-modes/src/global.d.ts
@@ -0,0 +1 @@
+///
diff --git a/apps/fixtures/serialization-modes/src/middleware.ts b/apps/fixtures/serialization-modes/src/middleware.ts
new file mode 100644
index 000000000..b00d186a8
--- /dev/null
+++ b/apps/fixtures/serialization-modes/src/middleware.ts
@@ -0,0 +1,26 @@
+import { createMiddleware } from "@solidjs/start/middleware";
+import { csp } from "shieldwall/start";
+import { UNSAFE_INLINE } from "shieldwall/start/csp";
+
+export default createMiddleware({
+ onRequest: [
+ csp({
+ extend: "production_basic",
+ config: {
+ withNonce: false,
+ reportOnly: false,
+ value: {
+ "default-src": ["self"],
+ "script-src": ["self", UNSAFE_INLINE, "http:"],
+ "style-src": ["self", UNSAFE_INLINE],
+ "img-src": ["self", "data:", "https:", "http:"],
+ "font-src": ["self"],
+ "connect-src": ["self", "ws://localhost:*", "http://localhost:*"],
+ "frame-src": ["self"],
+ "base-uri": ["self"]
+ // "form-action": ["self"]
+ }
+ }
+ })
+ ]
+});
diff --git a/apps/fixtures/serialization-modes/src/routes/[...404].tsx b/apps/fixtures/serialization-modes/src/routes/[...404].tsx
new file mode 100644
index 000000000..4ea71ec7f
--- /dev/null
+++ b/apps/fixtures/serialization-modes/src/routes/[...404].tsx
@@ -0,0 +1,19 @@
+import { Title } from "@solidjs/meta";
+import { HttpStatusCode } from "@solidjs/start";
+
+export default function NotFound() {
+ return (
+
+ Not Found
+
+ Page Not Found
+
+ Visit{" "}
+
+ start.solidjs.com
+ {" "}
+ to learn how to build SolidStart apps.
+
+
+ );
+}
diff --git a/apps/fixtures/serialization-modes/src/routes/index.tsx b/apps/fixtures/serialization-modes/src/routes/index.tsx
new file mode 100644
index 000000000..a08ccf229
--- /dev/null
+++ b/apps/fixtures/serialization-modes/src/routes/index.tsx
@@ -0,0 +1,30 @@
+import { Title } from "@solidjs/meta";
+import { createEffect } from "solid-js";
+import Counter from "~/components/Counter";
+
+const breakval = () => {
+ "use server";
+
+ return new Date();
+};
+
+export default function Home() {
+ createEffect(() => {
+ console.log(breakval());
+ });
+
+ return (
+
+ Hello World
+ Hello world!
+
+
+ Visit{" "}
+
+ start.solidjs.com
+ {" "}
+ to learn how to build SolidStart apps.
+
+
+ );
+}
diff --git a/apps/fixtures/serialization-modes/tsconfig.json b/apps/fixtures/serialization-modes/tsconfig.json
new file mode 100644
index 000000000..7d5871a07
--- /dev/null
+++ b/apps/fixtures/serialization-modes/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
+ "jsx": "preserve",
+ "jsxImportSource": "solid-js",
+ "allowJs": true,
+ "strict": true,
+ "noEmit": true,
+ "types": ["vinxi/types/client"],
+ "isolatedModules": true,
+ "paths": {
+ "~/*": ["./src/*"]
+ }
+ }
+}
diff --git a/apps/fixtures/todomvc/package.json b/apps/fixtures/todomvc/package.json
index ec03e1719..e35b0cfaf 100644
--- a/apps/fixtures/todomvc/package.json
+++ b/apps/fixtures/todomvc/package.json
@@ -1,5 +1,6 @@
{
"name": "fixture-todomvc",
+ "private": true,
"type": "module",
"scripts": {
"dev": "vinxi dev",
@@ -8,7 +9,7 @@
},
"dependencies": {
"@solidjs/router": "^0.15.0",
- "@solidjs/start": "^1.1.0",
+ "@solidjs/start": "workspace:*",
"solid-js": "^1.9.5",
"unstorage": "1.10.2",
"vinxi": "^0.5.7"
diff --git a/apps/tests/src/middleware.ts b/apps/tests/src/middleware.ts
new file mode 100644
index 000000000..ad8bab262
--- /dev/null
+++ b/apps/tests/src/middleware.ts
@@ -0,0 +1,5 @@
+import { createMiddleware } from "@solidjs/start/middleware";
+
+export default createMiddleware({
+ onRequest: []
+});
diff --git a/apps/tests/src/routes/actions/use-submission.tsx b/apps/tests/src/routes/actions/use-submission.tsx
new file mode 100644
index 000000000..e1cb69d3b
--- /dev/null
+++ b/apps/tests/src/routes/actions/use-submission.tsx
@@ -0,0 +1,23 @@
+import { Title } from "@solidjs/meta";
+import { action, useSubmission } from "@solidjs/router";
+import { Show } from "solid-js";
+
+const actionStuff = action(async () => {
+ "use server";
+
+ return "Hello world!";
+}, "actionStuff");
+
+export default function Home() {
+ const actionData = useSubmission(actionStuff);
+ return (
+
+ Hello World
+
+
+ {result => {result().result}
}
+
+ );
+}
diff --git a/packages/start/CHANGELOG.md b/packages/start/CHANGELOG.md
index f8bcfb2f9..5320120ca 100644
--- a/packages/start/CHANGELOG.md
+++ b/packages/start/CHANGELOG.md
@@ -1,5 +1,35 @@
# @solidjs/start
+## 1.3.2
+
+### Patch Changes
+
+- e534ea8: Fix a regression introduced in SolidStart v1.3.0 that could cause an infinite loop when a server function returns unexpected response (for example, S3/XML error responses).
+
+## 1.3.1
+
+### Patch Changes
+
+- 5249fdd: fix client-side serialization typo
+
+## 1.3.0
+
+### Minor Changes
+
+- 83bd861: seroval json mode
+
+### Patch Changes
+
+- 7144da5: fix: use percent encoding for `x-server-id` header value instead of reserved `#` character
+
+## 1.2.1
+
+### Patch Changes
+
+- c408656: ## Update Seroval
+
+ Version `1.4.1`.
+
## 1.2.0
### Minor Changes
diff --git a/packages/start/config/index.d.ts b/packages/start/config/index.d.ts
index 513b935fa..bb1613f64 100644
--- a/packages/start/config/index.d.ts
+++ b/packages/start/config/index.d.ts
@@ -26,6 +26,19 @@ type SolidStartInlineConfig = {
experimental?: {
islands?: boolean;
};
+ serialization?: {
+ /**
+ * The serialization mode to use for server functions.
+ * The "js" mode uses a custom binary format that is more efficient than JSON, but requires a custom deserializer (with `eval()`) on the client.
+ * A strong CSP should block `eval()` executions, which would prevent the "js" mode from working.
+ * The "json" mode uses JSON for serialization, which is less efficient but can be deserialized with `JSON.parse` on the client.
+ *
+ * @default "js"
+ * @
+ * @warning on v2, "json" will be the default.
+ */
+ mode?: "js" | "json";
+ };
vite?:
| ViteCustomizableConfig
| ((options: { router: "server" | "client" | "server-function" }) => ViteCustomizableConfig);
diff --git a/packages/start/config/index.js b/packages/start/config/index.js
index ba7bebc1f..afc40039e 100644
--- a/packages/start/config/index.js
+++ b/packages/start/config/index.js
@@ -89,6 +89,7 @@ export function defineConfig(baseConfig = {}) {
}
}
});
+
const routeDir = join(start.appRoot, start.routeDir);
let server = start.server;
if (!start.ssr) {
@@ -99,6 +100,8 @@ export function defineConfig(baseConfig = {}) {
entryExtension = ".jsx";
}
+ const serializationMode = start.serialization?.mode || 'js'
+
return createApp({
server: {
compressPublicAssets: {
@@ -167,6 +170,7 @@ export function defineConfig(baseConfig = {}) {
"import.meta.env.SSR": JSON.stringify(true),
"import.meta.env.START_SSR": JSON.stringify(start.ssr),
"import.meta.env.START_DEV_OVERLAY": JSON.stringify(start.devOverlay),
+ "import.meta.env.SEROVAL_MODE": JSON.stringify(serializationMode),
...userConfig.define
}
})
@@ -234,6 +238,7 @@ export function defineConfig(baseConfig = {}) {
"import.meta.env.START_SSR": JSON.stringify(start.ssr),
"import.meta.env.START_DEV_OVERLAY": JSON.stringify(start.devOverlay),
"import.meta.env.SERVER_BASE_URL": JSON.stringify(server?.baseURL ?? ""),
+ "import.meta.env.SEROVAL_MODE": JSON.stringify(serializationMode),
...userConfig.define
}
})
@@ -293,6 +298,7 @@ export function defineConfig(baseConfig = {}) {
"import.meta.env.SSR": JSON.stringify(true),
"import.meta.env.START_SSR": JSON.stringify(start.ssr),
"import.meta.env.START_DEV_OVERLAY": JSON.stringify(start.devOverlay),
+ "import.meta.env.SEROVAL_MODE": JSON.stringify(serializationMode),
...userConfig.define
}
})
diff --git a/packages/start/package.json b/packages/start/package.json
index c311e7ac9..04f8a478d 100644
--- a/packages/start/package.json
+++ b/packages/start/package.json
@@ -1,6 +1,6 @@
{
"name": "@solidjs/start",
- "version": "1.2.0",
+ "version": "1.3.2",
"type": "module",
"author": "Ryan Carniato",
"license": "MIT",
@@ -61,7 +61,7 @@
}
},
"devDependencies": {
- "solid-js": "^1.9.5",
+ "solid-js": "^1.9.11",
"vinxi": "^0.5.7",
"vitest": "3.0.5"
},
@@ -74,13 +74,13 @@
"error-stack-parser": "^2.1.4",
"html-to-image": "^1.11.11",
"radix3": "^1.1.0",
- "seroval": "^1.0.2",
- "seroval-plugins": "^1.0.2",
+ "seroval": "^1.5.0",
+ "seroval-plugins": "^1.5.0",
"shiki": "^1.26.1",
"source-map-js": "^1.0.2",
"terracotta": "^1.0.4",
"tinyglobby": "^0.2.2",
- "vite-plugin-solid": "^2.11.1"
+ "vite-plugin-solid": "^2.11.10"
},
"peerDependencies": {
"vinxi": "^0.5.7"
diff --git a/packages/start/src/runtime/serialization.test.ts b/packages/start/src/runtime/serialization.test.ts
new file mode 100644
index 000000000..364dab538
--- /dev/null
+++ b/packages/start/src/runtime/serialization.test.ts
@@ -0,0 +1,88 @@
+import { describe, expect, it, beforeEach, afterEach } from "vitest";
+import { deserializeJSONStream, deserializeJSStream } from "./serialization";
+
+const encoder = new TextEncoder();
+
+function makeChunk(dataStr: string, declaredBytes?: number): Uint8Array {
+ const data = encoder.encode(dataStr);
+ const bytes = declaredBytes ?? data.length;
+ const baseHex = bytes.toString(16).padStart(8, "0");
+ const head = encoder.encode(`;0x${baseHex};`);
+ const chunk = new Uint8Array(head.length + data.length);
+ chunk.set(head);
+ chunk.set(data, head.length);
+ return chunk;
+}
+
+function streamFromChunks(chunks: Uint8Array[]) {
+ return new ReadableStream({
+ start(controller) {
+ for (const c of chunks) controller.enqueue(c);
+ controller.close();
+ },
+ });
+}
+
+function responseWithChunks(chunks: Uint8Array[] | null) {
+ if (chunks === null) return new Response(null);
+ return new Response(streamFromChunks(chunks));
+}
+
+const cases = [
+ { name: "deserializeJSONStream", call: (r: Response) => deserializeJSONStream(r) },
+ { name: "deserializeJSStream", call: (r: Response) => deserializeJSStream("server-fn:0", r) },
+];
+
+describe("Serialization negative testing (unhappy paths)", () => {
+ // TODO: Serialization drains remaining chunks in the background for performance and
+ // its async errors aren't propagated to a designated error boundary.
+ // This is a temporary catch-all to avoid unhandled rejections in this test suite until
+ // we have a better solution for handling async errors in serialization.
+ const _unhandledRejectionHandler = (reason: any, promise?: Promise) => {
+ // eslint-disable-next-line no-console
+ console.error("Unhandled rejection (ignored) in serialization.test:", reason, promise);
+ };
+
+ // Install immediately and retain for the duration of this test file.
+ beforeEach(() => {
+ process.on("unhandledRejection", _unhandledRejectionHandler);
+ });
+
+ afterEach(async () => {
+ // Wait for any pending microtasks to allow background processes to complete
+ await new Promise(resolve => setTimeout(resolve, 0));
+ process.off("unhandledRejection", _unhandledRejectionHandler);
+ });
+ for (const fn of cases) {
+ it(`${fn.name} throws on missing body`, async () => {
+ await expect(fn.call(responseWithChunks(null))).rejects.toThrow("missing body");
+ });
+
+ it(`${fn.name} throws on plain XML response`, async () => {
+ const xml = 'AccessDeniedAccess Denied';
+ const chunk = encoder.encode(xml);
+ const resp = new Response(new ReadableStream({
+ start(controller) {
+ controller.enqueue(chunk);
+ controller.close();
+ },
+ }));
+ await expect(fn.call(resp)).rejects.toThrow();
+ });
+
+ it(`${fn.name} throws Malformed server function stream when header larger than provided bytes`, async () => {
+ const chunk = makeChunk("bad", 16); // declare more than actual
+ await expect(fn.call(responseWithChunks([chunk]))).rejects.toThrow("Malformed server function stream.");
+ });
+
+ it(`${fn.name} throws Malformed server function stream when header smaller than provided bytes`, async () => {
+ const chunk = makeChunk("bad", 2); // declare less than actual
+ await expect(fn.call(responseWithChunks([chunk]))).rejects.toThrow();
+ });
+
+ it(`${fn.name} throws on valid header but invalid JSON body`, async () => {
+ const chunk = makeChunk("not-a-json");
+ await expect(fn.call(responseWithChunks([chunk]))).rejects.toThrow();
+ });
+ }
+});
diff --git a/packages/start/src/runtime/serialization.ts b/packages/start/src/runtime/serialization.ts
new file mode 100644
index 000000000..598fa822c
--- /dev/null
+++ b/packages/start/src/runtime/serialization.ts
@@ -0,0 +1,266 @@
+import {
+ crossSerializeStream,
+ deserialize,
+ Feature,
+ fromCrossJSON,
+ fromJSON,
+ getCrossReferenceHeader,
+ type SerovalNode,
+ toCrossJSONStream,
+ toJSONAsync,
+} from "seroval";
+import {
+ AbortSignalPlugin,
+ CustomEventPlugin,
+ DOMExceptionPlugin,
+ EventPlugin,
+ FormDataPlugin,
+ HeadersPlugin,
+ ReadableStreamPlugin,
+ RequestPlugin,
+ ResponsePlugin,
+ URLPlugin,
+ URLSearchParamsPlugin,
+} from "seroval-plugins/web";
+
+// TODO(Alexis): if we can, allow providing an option to extend these.
+const DEFAULT_PLUGINS = [
+ AbortSignalPlugin,
+ CustomEventPlugin,
+ DOMExceptionPlugin,
+ EventPlugin,
+ FormDataPlugin,
+ HeadersPlugin,
+ ReadableStreamPlugin,
+ RequestPlugin,
+ ResponsePlugin,
+ URLSearchParamsPlugin,
+ URLPlugin,
+];
+const MAX_SERIALIZATION_DEPTH_LIMIT = 64;
+const DISABLED_FEATURES = Feature.RegExp;
+
+/**
+ * Alexis:
+ *
+ * A "chunk" is a piece of data emitted by the streaming serializer.
+ * Each chunk is represented by a 32-bit value (encoded in hexadecimal),
+ * followed by the encoded string (8-bit representation). This format
+ * is important so we know how much of the chunk being streamed we
+ * are expecting before parsing the entire string data.
+ *
+ * This is sort of a bootleg "multipart/form-data" except it's bad at
+ * handling File/Blob LOL
+ *
+ * The format is as follows:
+ * ;0xFFFFFFFF;
+ */
+function createChunk(data: string): Uint8Array {
+ const encodeData = new TextEncoder().encode(data);
+ const bytes = encodeData.length;
+ const baseHex = bytes.toString(16);
+ const totalHex = "00000000".substring(0, 8 - baseHex.length) + baseHex; // 32-bit
+ const head = new TextEncoder().encode(`;0x${totalHex};`);
+
+ const chunk = new Uint8Array(12 + bytes);
+ chunk.set(head);
+ chunk.set(encodeData, 12);
+ return chunk;
+}
+
+export function serializeToJSStream(id: string, value: any) {
+ return new ReadableStream({
+ start(controller) {
+ crossSerializeStream(value, {
+ scopeId: id,
+ plugins: DEFAULT_PLUGINS,
+ onSerialize(data: string, initial: boolean) {
+ controller.enqueue(
+ createChunk(
+ initial ? `(${getCrossReferenceHeader(id)},${data})` : data,
+ ),
+ );
+ },
+ onDone() {
+ controller.close();
+ },
+ onError(error: any) {
+ controller.error(error);
+ },
+ });
+ },
+ });
+}
+
+export function serializeToJSONStream(value: any) {
+ return new ReadableStream({
+ start(controller) {
+ toCrossJSONStream(value, {
+ disabledFeatures: DISABLED_FEATURES,
+ depthLimit: MAX_SERIALIZATION_DEPTH_LIMIT,
+ plugins: DEFAULT_PLUGINS,
+ onParse(node) {
+ controller.enqueue(createChunk(JSON.stringify(node)));
+ },
+ onDone() {
+ controller.close();
+ },
+ onError(error) {
+ controller.error(error);
+ },
+ });
+ },
+ });
+}
+
+class SerovalChunkReader {
+ reader: ReadableStreamDefaultReader;
+ buffer: Uint8Array;
+ done: boolean;
+ constructor(stream: ReadableStream) {
+ this.reader = stream.getReader();
+ this.buffer = new Uint8Array(0);
+ this.done = false;
+ }
+
+ async readChunk() {
+ // if there's no chunk, read again
+ const chunk = await this.reader.read();
+ if (!chunk.done) {
+ // repopulate the buffer
+ const newBuffer = new Uint8Array(this.buffer.length + chunk.value.length);
+ newBuffer.set(this.buffer);
+ newBuffer.set(chunk.value, this.buffer.length);
+ this.buffer = newBuffer;
+ } else {
+ this.done = true;
+ }
+ }
+
+ async next(): Promise<
+ { done: true; value: undefined } | { done: false; value: string }
+ > {
+ // Check if the buffer is empty
+ if (this.buffer.length === 0) {
+ // if we are already done...
+ if (this.done) {
+ return {
+ done: true,
+ value: undefined,
+ };
+ }
+ // Otherwise, read a new chunk
+ await this.readChunk();
+ return await this.next();
+ }
+ // Read the "byte header"
+ // The byte header tells us how big the expected data is
+ // so we know how much data we should wait before we
+ // deserialize the data
+ const head = new TextDecoder().decode(this.buffer.subarray(1, 11));
+ const bytes = Number.parseInt(head, 16); // ;0x00000000;
+ if (Number.isNaN(bytes)) {
+ throw new Error("Malformed server function stream header.");
+ }
+
+ // Check if the buffer has enough bytes to be parsed
+ while (bytes > this.buffer.length - 12) {
+ // If it's not enough, and the reader is done
+ // then the chunk is invalid.
+ if (this.done) {
+ throw new Error("Malformed server function stream.");
+ }
+ // Otherwise, we read more chunks
+ await this.readChunk();
+ }
+ // Extract the exact chunk as defined by the byte header
+ const partial = new TextDecoder().decode(
+ this.buffer.subarray(12, 12 + bytes),
+ );
+ // The rest goes to the buffer
+ this.buffer = this.buffer.subarray(12 + bytes);
+
+ // Deserialize the chunk
+ return {
+ done: false,
+ value: partial,
+ };
+ }
+
+ async drain(interpret: (chunk: string) => void) {
+ while (true) {
+ const result = await this.next();
+ if (result.done) {
+ break;
+ } else {
+ interpret(result.value);
+ }
+ }
+ }
+}
+
+export async function serializeToJSONString(value: any) {
+ // const response = new Response(serializeToJSONStream(value));
+ // return await response.text();
+ return JSON.stringify(await toJSONAsync(value, {
+ plugins: DEFAULT_PLUGINS,
+ depthLimit: MAX_SERIALIZATION_DEPTH_LIMIT,
+ disabledFeatures: DISABLED_FEATURES,
+ }));
+}
+
+export async function deserializeFromJSONString(json: string) {
+ return fromJSON(JSON.parse(json), {
+ plugins: DEFAULT_PLUGINS,
+ disabledFeatures: DISABLED_FEATURES,
+ });
+}
+
+export async function deserializeJSONStream(response: Response | Request) {
+ if (!response.body) {
+ throw new Error("missing body");
+ }
+ const reader = new SerovalChunkReader(response.body);
+ const result = await reader.next();
+ if (!result.done) {
+ const refs = new Map();
+
+ function interpretChunk(chunk: string): unknown {
+ const value = fromCrossJSON(JSON.parse(chunk) as SerovalNode, {
+ refs,
+ disabledFeatures: DISABLED_FEATURES,
+ depthLimit: MAX_SERIALIZATION_DEPTH_LIMIT,
+ plugins: DEFAULT_PLUGINS,
+ });
+ return value;
+ }
+
+ void reader.drain(interpretChunk);
+
+ return interpretChunk(result.value);
+ }
+ return undefined;
+}
+
+export async function deserializeJSStream(id: string, response: Response) {
+ if (!response.body) {
+ throw new Error("missing body");
+ }
+ const reader = new SerovalChunkReader(response.body);
+
+ const result = await reader.next();
+
+ if (!result.done) {
+ reader.drain(deserialize).then(
+ () => {
+ // @ts-ignore
+ delete $R[id];
+ },
+ () => {
+ // no-op
+ },
+ );
+ return deserialize(result.value);
+ }
+ return undefined;
+}
diff --git a/packages/start/src/runtime/server-handler.ts b/packages/start/src/runtime/server-handler.ts
index 74ded0de7..a7007fee0 100644
--- a/packages/start/src/runtime/server-handler.ts
+++ b/packages/start/src/runtime/server-handler.ts
@@ -1,19 +1,5 @@
///
import { parseSetCookie } from "cookie-es";
-import { crossSerializeStream, fromJSON, getCrossReferenceHeader } from "seroval";
-// @ts-ignore
-import {
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLPlugin,
- URLSearchParamsPlugin
-} from "seroval-plugins/web";
import { sharedConfig } from "solid-js";
import { renderToString } from "solid-js/web";
import { provideRequestEvent } from "solid-js/web/storage";
@@ -32,52 +18,7 @@ import { createPageEvent } from "../server/pageEvent";
import { FetchEvent, PageEvent } from "../server";
// @ts-ignore
import serverFnManifest from "solidstart:server-fn-manifest";
-
-function createChunk(data: string) {
- const encodeData = new TextEncoder().encode(data);
- const bytes = encodeData.length;
- const baseHex = bytes.toString(16);
- const totalHex = "00000000".substring(0, 8 - baseHex.length) + baseHex; // 32-bit
- const head = new TextEncoder().encode(`;0x${totalHex};`);
-
- const chunk = new Uint8Array(12 + bytes);
- chunk.set(head);
- chunk.set(encodeData, 12);
- return chunk;
-}
-
-function serializeToStream(id: string, value: any) {
- return new ReadableStream({
- start(controller) {
- crossSerializeStream(value, {
- scopeId: id,
- plugins: [
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLSearchParamsPlugin,
- URLPlugin
- ],
- onSerialize(data, initial) {
- controller.enqueue(
- createChunk(initial ? `(${getCrossReferenceHeader(id)},${data})` : data)
- );
- },
- onDone() {
- controller.close();
- },
- onError(error) {
- controller.error(error);
- }
- });
- }
- });
-}
+import { deserializeFromJSONString, serializeToJSONStream, serializeToJSStream } from "./serialization";
async function handleServerFunction(h3Event: HTTPEvent) {
const event = getFetchEvent(h3Event);
@@ -90,7 +31,7 @@ async function handleServerFunction(h3Event: HTTPEvent) {
let functionId: string | undefined | null, name: string | undefined | null;
if (serverReference) {
invariant(typeof serverReference === "string", "Invalid server function");
- [functionId, name] = serverReference.split("#");
+ [functionId, name] = decodeURIComponent(serverReference).split("#");
} else {
functionId = url.searchParams.get("id");
name = url.searchParams.get("name");
@@ -131,24 +72,10 @@ async function handleServerFunction(h3Event: HTTPEvent) {
if (!instance || h3Event.method === "GET") {
const args = url.searchParams.get("args");
if (args) {
- const json = JSON.parse(args);
- (json.t
- ? (fromJSON(json, {
- plugins: [
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLSearchParamsPlugin,
- URLPlugin
- ]
- }) as any)
- : json
- ).forEach((arg: any) => parsed.push(arg));
+ const result = (await deserializeFromJSONString(args)) as any[];
+ for (const arg of result) {
+ parsed.push(arg);
+ }
}
}
if (h3Event.method === "POST") {
@@ -168,43 +95,27 @@ async function handleServerFunction(h3Event: HTTPEvent) {
(hasReadableStream && ((h3Request as EdgeIncomingMessage).body as ReadableStream).locked);
const requestBody = isReadableStream ? h3Request : h3Request.body;
- if (
+ // workaround for https://github.com/unjs/nitro/issues/1721
+ // (issue only in edge runtimes and netlify preset)
+ const tmpReq = isH3EventBodyStreamLocked
+ ? request
+ : new Request(request, { ...request, body: requestBody });
+ if (request.headers.get('x-serialized')) {
+ parsed = await deserializeFromJSONString(await tmpReq.text()) as any[];
+ } else if (
contentType?.startsWith("multipart/form-data") ||
contentType?.startsWith("application/x-www-form-urlencoded")
) {
// workaround for https://github.com/unjs/nitro/issues/1721
// (issue only in edge runtimes and netlify preset)
- parsed.push(
- await (isH3EventBodyStreamLocked
- ? request
- : new Request(request, { ...request, body: requestBody })
- ).formData()
- );
+ parsed.push(await tmpReq.formData());
// what should work when #1721 is fixed
// parsed.push(await request.formData);
- } else if (contentType?.startsWith("application/json")) {
- // workaround for https://github.com/unjs/nitro/issues/1721
- // (issue only in edge runtimes and netlify preset)
- const tmpReq = isH3EventBodyStreamLocked
- ? request
- : new Request(request, { ...request, body: requestBody });
+ } else if (contentType?.startsWith('application/json')) {
// what should work when #1721 is fixed
// just use request.json() here
- parsed = fromJSON(await tmpReq.json(), {
- plugins: [
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLSearchParamsPlugin,
- URLPlugin
- ]
- });
- }
+ parsed = await tmpReq.json() as any[];
+ }
}
try {
let result = await provideRequestEvent(event, async () => {
@@ -238,8 +149,12 @@ async function handleServerFunction(h3Event: HTTPEvent) {
// handle no JS success case
if (!instance) return handleNoJS(result, request, parsed);
- setHeader(h3Event, "content-type", "text/javascript");
- return serializeToStream(instance, result);
+ setHeader(h3Event, 'x-serialized', 'true');
+ if (import.meta.env.SEROVAL_MODE === 'js') {
+ setHeader(h3Event, "content-type", "text/javascript");
+ return serializeToJSStream(instance, result);
+ }
+ return serializeToJSONStream(result);
} catch (x) {
if (x instanceof Response) {
if (singleFlight && instance) {
@@ -261,8 +176,12 @@ async function handleServerFunction(h3Event: HTTPEvent) {
x = handleNoJS(x, request, parsed, true);
}
if (instance) {
- setHeader(h3Event, "content-type", "text/javascript");
- return serializeToStream(instance, x);
+ setHeader(h3Event, 'x-serialized', 'true');
+ if (import.meta.env.SEROVAL_MODE === 'js') {
+ setHeader(h3Event, "content-type", "text/javascript");
+ return serializeToJSStream(instance, x);
+ }
+ return serializeToJSONStream(x);
}
return x;
}
diff --git a/packages/start/src/runtime/server-runtime.ts b/packages/start/src/runtime/server-runtime.ts
index 2900539a9..baec39ea5 100644
--- a/packages/start/src/runtime/server-runtime.ts
+++ b/packages/start/src/runtime/server-runtime.ts
@@ -1,171 +1,61 @@
-import { deserialize, toJSONAsync } from "seroval";
-import {
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLPlugin,
- URLSearchParamsPlugin
-} from "seroval-plugins/web";
import { type Component } from "solid-js";
import { createIslandReference } from "../server/islands/index";
-
-class SerovalChunkReader {
- reader: ReadableStreamDefaultReader;
- buffer: Uint8Array;
- done: boolean;
- constructor(stream: ReadableStream) {
- this.reader = stream.getReader();
- this.buffer = new Uint8Array(0);
- this.done = false;
- }
-
- async readChunk() {
- // if there's no chunk, read again
- const chunk = await this.reader.read();
- if (!chunk.done) {
- // repopulate the buffer
- let newBuffer = new Uint8Array(this.buffer.length + chunk.value.length);
- newBuffer.set(this.buffer);
- newBuffer.set(chunk.value, this.buffer.length);
- this.buffer = newBuffer;
- } else {
- this.done = true;
- }
- }
-
- async next(): Promise {
- // Check if the buffer is empty
- if (this.buffer.length === 0) {
- // if we are already done...
- if (this.done) {
- return {
- done: true,
- value: undefined
- };
- }
- // Otherwise, read a new chunk
- await this.readChunk();
- return await this.next();
- }
- // Read the "byte header"
- // The byte header tells us how big the expected data is
- // so we know how much data we should wait before we
- // deserialize the data
- const head = new TextDecoder().decode(this.buffer.subarray(1, 11));
- const bytes = Number.parseInt(head, 16); // ;0x00000000;
- if (Number.isNaN(bytes)) {
- throw new Error(`Malformed server function stream header: ${head}`);
- }
-
- // Check if the buffer has enough bytes to be parsed
- while (bytes > this.buffer.length - 12) {
- // If it's not enough, and the reader is done
- // then the chunk is invalid.
- if (this.done) {
- throw new Error("Malformed server function stream.");
- }
- // Otherwise, we read more chunks
- await this.readChunk();
- }
- // Extract the exact chunk as defined by the byte header
- const partial = new TextDecoder().decode(this.buffer.subarray(12, 12 + bytes));
- // The rest goes to the buffer
- this.buffer = this.buffer.subarray(12 + bytes);
-
- // Deserialize the chunk
- return {
- done: false,
- value: deserialize(partial)
- };
- }
-
- async drain() {
- while (true) {
- const result = await this.next();
- if (result.done) {
- break;
- }
- }
- }
-}
-
-async function deserializeStream(id: string, response: Response) {
- if (!response.body) {
- throw new Error("missing body");
- }
- const reader = new SerovalChunkReader(response.body);
-
- const result = await reader.next();
-
- if (!result.done) {
- reader.drain().then(
- () => {
- // @ts-ignore
- delete $R[id];
- },
- () => {
- // no-op
- }
- );
- }
-
- return result.value;
-}
+import {
+ deserializeJSONStream,
+ deserializeJSStream,
+ serializeToJSONString,
+} from "./serialization";
let INSTANCE = 0;
-function createRequest(base: string, id: string, instance: string, options: RequestInit) {
+function createRequest(
+ base: string,
+ id: string,
+ instance: string,
+ options: RequestInit,
+) {
return fetch(base, {
method: "POST",
...options,
headers: {
...options.headers,
- "X-Server-Id": id,
+ "X-Server-Id": encodeURIComponent(id),
"X-Server-Instance": instance
}
});
}
-const plugins = [
- CustomEventPlugin,
- DOMExceptionPlugin,
- EventPlugin,
- FormDataPlugin,
- HeadersPlugin,
- ReadableStreamPlugin,
- RequestPlugin,
- ResponsePlugin,
- URLSearchParamsPlugin,
- URLPlugin
-];
-
async function fetchServerFunction(
base: string,
id: string,
options: Omit,
- args: any[]
+ args: any[],
) {
const instance = `server-fn:${INSTANCE++}`;
const response = await (args.length === 0
? createRequest(base, id, instance, options)
: args.length === 1 && args[0] instanceof FormData
- ? createRequest(base, id, instance, { ...options, body: args[0] })
- : args.length === 1 && args[0] instanceof URLSearchParams
- ? createRequest(base, id, instance, {
- ...options,
- body: args[0],
- headers: { ...options.headers, "Content-Type": "application/x-www-form-urlencoded" }
- })
- : createRequest(base, id, instance, {
- ...options,
- body: JSON.stringify(await Promise.resolve(toJSONAsync(args, { plugins }))),
- headers: { ...options.headers, "Content-Type": "application/json" }
- }));
+ ? createRequest(base, id, instance, { ...options, body: args[0] })
+ : args.length === 1 && args[0] instanceof URLSearchParams
+ ? createRequest(base, id, instance, {
+ ...options,
+ body: args[0],
+ headers: {
+ ...options.headers,
+ "Content-Type": "application/x-www-form-urlencoded",
+ },
+ })
+ : createRequest(base, id, instance, {
+ ...options,
+ body: await serializeToJSONString(args),
+ // duplex: 'half',
+ // body: serializeToJSONStream(args),
+ headers: {
+ ...options.headers,
+ "x-serialized": "true",
+ "Content-Type": "text/plain"
+ },
+ }));
if (
response.headers.has("Location") ||
@@ -175,20 +65,28 @@ async function fetchServerFunction(
if (response.body) {
/* @ts-ignore-next-line */
response.customBody = () => {
- return deserializeStream(instance, response);
+ if (import.meta.env.SEROVAL_MODE === "js") {
+ return deserializeJSStream(instance, response.clone());
+ }
+ return deserializeJSONStream(response.clone());
};
}
return response;
}
const contentType = response.headers.get("Content-Type");
+ const cloned = response.clone();
let result;
if (contentType && contentType.startsWith("text/plain")) {
- result = await response.text();
+ result = await cloned.text();
} else if (contentType && contentType.startsWith("application/json")) {
- result = await response.json();
- } else {
- result = await deserializeStream(instance, response);
+ result = await cloned.json();
+ } else if (response.headers.get("x-serialized")) {
+ if (import.meta.env.SEROVAL_MODE === "js") {
+ result = await deserializeJSStream(instance, cloned);
+ } else {
+ result = await deserializeJSONStream(cloned);
+ }
}
if (response.headers.has("X-Error")) {
throw result;
@@ -208,23 +106,24 @@ export function createServerReference(fn: Function, id: string, name: string) {
}
if (prop === "withOptions") {
const url = `${baseURL}/_server/?id=${encodeURIComponent(id)}&name=${encodeURIComponent(
- name
+ name,
)}`;
return (options: RequestInit) => {
const fn = async (...args: any[]) => {
- const encodeArgs = options.method && options.method.toUpperCase() === "GET";
+ const encodeArgs =
+ options.method && options.method.toUpperCase() === "GET";
return fetchServerFunction(
encodeArgs
? url +
- (args.length
- ? `&args=${encodeURIComponent(
- JSON.stringify(await Promise.resolve(toJSONAsync(args, { plugins })))
- )}`
- : "")
+ (args.length
+ ? `&args=${encodeURIComponent(
+ await serializeToJSONString(args),
+ )}`
+ : "")
: `${baseURL}/_server`,
`${id}#${name}`,
options,
- encodeArgs ? [] : args
+ encodeArgs ? [] : args,
);
};
fn.url = url;
@@ -234,12 +133,21 @@ export function createServerReference(fn: Function, id: string, name: string) {
return (target as any)[prop];
},
apply(target, thisArg, args) {
- return fetchServerFunction(`${baseURL}/_server`, `${id}#${name}`, {}, args);
- }
+ return fetchServerFunction(
+ `${baseURL}/_server`,
+ `${id}#${name}`,
+ {},
+ args,
+ );
+ },
});
}
-export function createClientReference(Component: Component, id: string, name: string) {
+export function createClientReference(
+ Component: Component,
+ id: string,
+ name: string,
+) {
if (typeof Component === "function") {
return createIslandReference(Component, id, name);
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e6d905290..7c8b18d22 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,7 +10,7 @@ importers:
devDependencies:
'@changesets/cli':
specifier: ^2.27.12
- version: 2.29.7(@types/node@24.5.2)
+ version: 2.29.7(@types/node@25.3.0)
citty:
specifier: ^0.1.5
version: 0.1.6
@@ -29,6 +29,132 @@ importers:
apps/fixtures: {}
+ apps/fixtures/bare:
+ dependencies:
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/basic:
+ dependencies:
+ '@solidjs/meta':
+ specifier: ^0.29.4
+ version: 0.29.4(solid-js@1.9.9)
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/experiments:
+ dependencies:
+ '@solidjs/meta':
+ specifier: ^0.29.4
+ version: 0.29.4(solid-js@1.9.9)
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/hackernews:
+ dependencies:
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/notes:
+ dependencies:
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ date-fns:
+ specifier: ^3.6.0
+ version: 3.6.0
+ marked:
+ specifier: ^12.0.1
+ version: 12.0.2
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ unstorage:
+ specifier: 1.10.2
+ version: 1.10.2(ioredis@5.7.0)
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/serialization-modes:
+ dependencies:
+ '@solidjs/meta':
+ specifier: ^0.29.4
+ version: 0.29.4(solid-js@1.9.9)
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ shieldwall:
+ specifier: ^0.4.0
+ version: 0.4.0(@solidjs/start@packages+start)
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
+ apps/fixtures/todomvc:
+ dependencies:
+ '@solidjs/router':
+ specifier: ^0.15.0
+ version: 0.15.3(solid-js@1.9.9)
+ '@solidjs/start':
+ specifier: workspace:*
+ version: link:../../../packages/start
+ solid-js:
+ specifier: ^1.9.5
+ version: 1.9.9
+ unstorage:
+ specifier: 1.10.2
+ version: 1.10.2(ioredis@5.7.0)
+ vinxi:
+ specifier: ^0.5.7
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+
apps/landing-page:
dependencies:
'@solidjs/meta':
@@ -88,7 +214,7 @@ importers:
version: 6.3.7
vinxi:
specifier: ^0.5.3
- version: 0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
apps/tests:
dependencies:
@@ -124,13 +250,13 @@ importers:
version: 1.9.9
vinxi:
specifier: ^0.5.8
- version: 0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
vite-plugin-solid:
specifier: ^2.11.8
- version: 2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
vitest:
specifier: 3.0.5
- version: 3.0.5(@types/node@24.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.44.0)(yaml@2.8.1)
+ version: 3.0.5(@types/node@25.3.0)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.46.0)(yaml@2.8.1)
devDependencies:
'@cypress/code-coverage':
specifier: ^3.14.0
@@ -140,7 +266,7 @@ importers:
version: 4.17.20
'@vitest/browser':
specifier: ^3.0.4
- version: 3.2.4(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))(vitest@3.0.5)
+ version: 3.2.4(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))(vitest@3.0.5)
cypress:
specifier: ^14.3.0
version: 14.5.4
@@ -149,19 +275,19 @@ importers:
version: 1.0.5
cypress-vite:
specifier: ^1.6.0
- version: 1.8.0(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 1.8.0(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
packages/start:
dependencies:
'@tanstack/server-functions-plugin':
specifier: 1.121.21
- version: 1.121.21(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 1.121.21(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
'@vinxi/plugin-directives':
specifier: ^0.5.0
- version: 0.5.1(vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 0.5.1(vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
'@vinxi/server-components':
specifier: ^0.5.0
- version: 0.5.1(vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 0.5.1(vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
cookie-es:
specifier: ^2.0.0
version: 2.0.0
@@ -178,11 +304,11 @@ importers:
specifier: ^1.1.0
version: 1.1.2
seroval:
- specifier: ^1.0.2
- version: 1.3.2
+ specifier: ^1.5.0
+ version: 1.5.0
seroval-plugins:
- specifier: ^1.0.2
- version: 1.3.3(seroval@1.3.2)
+ specifier: ^1.5.0
+ version: 1.5.0(seroval@1.5.0)
shiki:
specifier: ^1.26.1
version: 1.29.2
@@ -191,23 +317,23 @@ importers:
version: 1.2.1
terracotta:
specifier: ^1.0.4
- version: 1.0.6(solid-js@1.9.9)
+ version: 1.0.6(solid-js@1.9.11)
tinyglobby:
specifier: ^0.2.2
version: 0.2.15
vite-plugin-solid:
- specifier: ^2.11.1
- version: 2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ specifier: ^2.11.10
+ version: 2.11.10(@testing-library/jest-dom@6.8.0)(solid-js@1.9.11)(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
devDependencies:
solid-js:
- specifier: ^1.9.5
- version: 1.9.9
+ specifier: ^1.9.11
+ version: 1.9.11
vinxi:
specifier: ^0.5.7
- version: 0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ version: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
vitest:
specifier: 3.0.5
- version: 3.0.5(@types/node@24.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.44.0)(yaml@2.8.1)
+ version: 3.0.5(@types/node@25.3.0)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.46.0)(yaml@2.8.1)
packages:
@@ -229,18 +355,34 @@ packages:
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.28.4':
resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.29.0':
+ resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.28.4':
resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.29.0':
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.28.3':
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.29.1':
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
@@ -249,20 +391,30 @@ packages:
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.28.6':
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.28.3':
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.27.1':
- resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
+ '@babel/helper-create-class-features-plugin@7.28.6':
+ resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-create-regexp-features-plugin@7.28.5':
+ resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.5':
- resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
+ '@babel/helper-define-polyfill-provider@0.6.6':
+ resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -274,6 +426,10 @@ packages:
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
@@ -282,12 +438,22 @@ packages:
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.28.6':
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.28.6':
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
@@ -296,6 +462,10 @@ packages:
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.28.6':
+ resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.27.1':
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
@@ -308,6 +478,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.28.6':
+ resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
@@ -320,25 +496,38 @@ packages:
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.28.3':
- resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
+ '@babel/helper-wrap-function@7.28.6':
+ resolution: {integrity: sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.28.6':
+ resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/parser@7.28.4':
resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
- resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
+ resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -361,8 +550,8 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
- resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6':
+ resolution: {integrity: sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -373,14 +562,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.27.1':
- resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
+ '@babel/plugin-syntax-import-assertions@7.28.6':
+ resolution: {integrity: sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.27.1':
- resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
+ '@babel/plugin-syntax-import-attributes@7.28.6':
+ resolution: {integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -391,6 +580,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-jsx@7.28.6':
+ resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
@@ -409,14 +604,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.28.0':
- resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
+ '@babel/plugin-transform-async-generator-functions@7.29.0':
+ resolution: {integrity: sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.27.1':
- resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
+ '@babel/plugin-transform-async-to-generator@7.28.6':
+ resolution: {integrity: sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -427,44 +622,44 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.28.4':
- resolution: {integrity: sha512-1yxmvN0MJHOhPVmAsmoW5liWwoILobu/d/ShymZmj867bAdxGbehIrew1DuLpw2Ukv+qDSSPQdYW1dLNE7t11A==}
+ '@babel/plugin-transform-block-scoping@7.28.6':
+ resolution: {integrity: sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.27.1':
- resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
+ '@babel/plugin-transform-class-properties@7.28.6':
+ resolution: {integrity: sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.28.3':
- resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
+ '@babel/plugin-transform-class-static-block@7.28.6':
+ resolution: {integrity: sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.28.4':
- resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
+ '@babel/plugin-transform-classes@7.28.6':
+ resolution: {integrity: sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.27.1':
- resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
+ '@babel/plugin-transform-computed-properties@7.28.6':
+ resolution: {integrity: sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.28.0':
- resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
+ '@babel/plugin-transform-destructuring@7.28.5':
+ resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.27.1':
- resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
+ '@babel/plugin-transform-dotall-regex@7.28.6':
+ resolution: {integrity: sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -475,8 +670,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
- resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0':
+ resolution: {integrity: sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -487,14 +682,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-explicit-resource-management@7.28.0':
- resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+ '@babel/plugin-transform-explicit-resource-management@7.28.6':
+ resolution: {integrity: sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.27.1':
- resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.28.6':
+ resolution: {integrity: sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -517,8 +712,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.27.1':
- resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
+ '@babel/plugin-transform-json-strings@7.28.6':
+ resolution: {integrity: sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -529,8 +724,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.27.1':
- resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6':
+ resolution: {integrity: sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -553,8 +748,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.27.1':
- resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
+ '@babel/plugin-transform-modules-commonjs@7.28.6':
+ resolution: {integrity: sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-modules-systemjs@7.29.0':
+ resolution: {integrity: sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -565,8 +766,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
- resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0':
+ resolution: {integrity: sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -577,20 +778,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
- resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6':
+ resolution: {integrity: sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.27.1':
- resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
+ '@babel/plugin-transform-numeric-separator@7.28.6':
+ resolution: {integrity: sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.28.4':
- resolution: {integrity: sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==}
+ '@babel/plugin-transform-object-rest-spread@7.28.6':
+ resolution: {integrity: sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -601,14 +802,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.27.1':
- resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
+ '@babel/plugin-transform-optional-catch-binding@7.28.6':
+ resolution: {integrity: sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.27.1':
- resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
+ '@babel/plugin-transform-optional-chaining@7.28.6':
+ resolution: {integrity: sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -619,14 +820,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.27.1':
- resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
+ '@babel/plugin-transform-private-methods@7.28.6':
+ resolution: {integrity: sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.27.1':
- resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
+ '@babel/plugin-transform-private-property-in-object@7.28.6':
+ resolution: {integrity: sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -637,14 +838,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.4':
- resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
+ '@babel/plugin-transform-regenerator@7.29.0':
+ resolution: {integrity: sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regexp-modifiers@7.27.1':
- resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
+ '@babel/plugin-transform-regexp-modifiers@7.28.6':
+ resolution: {integrity: sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -661,8 +862,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.27.1':
- resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
+ '@babel/plugin-transform-spread@7.28.6':
+ resolution: {integrity: sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -697,8 +898,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.27.1':
- resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
+ '@babel/plugin-transform-unicode-property-regex@7.28.6':
+ resolution: {integrity: sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -709,8 +910,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.27.1':
- resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
+ '@babel/plugin-transform-unicode-sets-regex@7.28.6':
+ resolution: {integrity: sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -740,14 +941,26 @@ packages:
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.28.6':
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.28.4':
resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.29.0':
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.28.4':
resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.29.0':
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
+ engines: {node: '>=6.9.0'}
+
'@changesets/apply-release-plan@7.0.13':
resolution: {integrity: sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==}
@@ -1630,6 +1843,9 @@ packages:
'@types/node@24.5.2':
resolution: {integrity: sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ==}
+ '@types/node@25.3.0':
+ resolution: {integrity: sha512-4K3bqJpXpqfg2XKGK9bpDTc6xO/xoUP/RBWS7AtRMug6zZFaRekiLzjVtAoZMquxoAbzBvy5nxQ7veS5eYzf8A==}
+
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -1825,6 +2041,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
agent-base@7.1.4:
resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
@@ -1846,8 +2067,8 @@ packages:
peerDependencies:
ajv: ^8.8.2
- ajv@8.17.1:
- resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ ajv@8.18.0:
+ resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
ally.js@1.4.1:
resolution: {integrity: sha512-ZewdfuwP6VewtMN36QY0gmiyvBfMnmEaNwbVu2nTS6zRt069viTgkYgaDiqu6vRJ1VJCriNqV0jGMu44R8zNbA==}
@@ -2004,8 +2225,13 @@ packages:
peerDependencies:
'@babel/core': ^7.20.12
- babel-plugin-polyfill-corejs2@0.4.14:
- resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
+ babel-plugin-jsx-dom-expressions@0.40.5:
+ resolution: {integrity: sha512-8TFKemVLDYezqqv4mWz+PhRrkryTzivTGu0twyLrOkVZ0P63COx2Y04eVsUjFlwSOXui1z3P3Pn209dokWnirg==}
+ peerDependencies:
+ '@babel/core': ^7.20.12
+
+ babel-plugin-polyfill-corejs2@0.4.15:
+ resolution: {integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -2014,11 +2240,20 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.5:
- resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
+ babel-plugin-polyfill-regenerator@0.6.6:
+ resolution: {integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-preset-solid@1.9.10:
+ resolution: {integrity: sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ solid-js: ^1.9.10
+ peerDependenciesMeta:
+ solid-js:
+ optional: true
+
babel-preset-solid@1.9.9:
resolution: {integrity: sha512-pCnxWrciluXCeli/dj5PIEHgbNzim3evtTn12snjqqg8QZWJNMjH1AWIp4iG/tbVjqQ72aBEymMSagvmgxubXw==}
peerDependencies:
@@ -2037,6 +2272,11 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ baseline-browser-mapping@2.10.0:
+ resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
baseline-browser-mapping@2.8.6:
resolution: {integrity: sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==}
hasBin: true
@@ -2083,6 +2323,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
@@ -2142,6 +2387,9 @@ packages:
caniuse-lite@1.0.30001743:
resolution: {integrity: sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==}
+ caniuse-lite@1.0.30001770:
+ resolution: {integrity: sha512-x/2CLQ1jHENRbHg5PSId2sXq1CIO1CISvwWAj027ltMVG2UNgW+w9oH2+HzgEIRFembL8bUlXtfbBHR1fCg2xw==}
+
caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
@@ -2321,8 +2569,8 @@ packages:
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
engines: {node: '>=18'}
- core-js-compat@3.45.1:
- resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
+ core-js-compat@3.48.0:
+ resolution: {integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==}
core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
@@ -2350,6 +2598,10 @@ packages:
crossws@0.3.5:
resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==}
+ csp-header@5.2.1:
+ resolution: {integrity: sha512-qOJNu39JZkPrbrAM40a1tQCePEPYVIoI6nMDhX4RA07QjU8efS+zyd/zE83XJu85KKazH9NjKlvvlswFMteMgg==}
+ engines: {node: '>=10'}
+
css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
@@ -2365,6 +2617,9 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
cypress-plugin-tab@1.0.5:
resolution: {integrity: sha512-QtTJcifOVwwbeMP3hsOzQOKf3EqKsLyjtg9ZAGlYDntrCRXrsQhe4ZQGIthRMRLKpnP6/tTk6G0gJ2sZUfRliQ==}
@@ -2386,8 +2641,12 @@ packages:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
+
dax-sh@0.43.2:
resolution: {integrity: sha512-uULa1sSIHgXKGCqJ/pA0zsnzbHlVnuq7g8O2fkHokWFNwEGIhh5lAJlxZa1POG5En5ba7AU4KcBAvGQWMMf8rg==}
+ deprecated: This package has moved to simply be 'dax' instead of 'dax-sh'
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
@@ -2564,6 +2823,9 @@ packages:
electron-to-chromium@1.5.222:
resolution: {integrity: sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==}
+ electron-to-chromium@1.5.302:
+ resolution: {integrity: sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==}
+
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
@@ -2587,8 +2849,8 @@ packages:
end-of-stream@1.4.5:
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
- enhanced-resolve@5.18.3:
- resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
+ enhanced-resolve@5.19.0:
+ resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -2909,11 +3171,12 @@ packages:
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
hasBin: true
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
@@ -3324,8 +3587,8 @@ packages:
enquirer:
optional: true
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ loader-runner@4.3.1:
+ resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
engines: {node: '>=6.11.5'}
local-pkg@1.1.2:
@@ -3399,6 +3662,11 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
+ marked@12.0.2:
+ resolution: {integrity: sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==}
+ engines: {node: '>= 18'}
+ hasBin: true
+
math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
@@ -3572,6 +3840,9 @@ packages:
node-releases@2.0.21:
resolution: {integrity: sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==}
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+
nopt@8.1.0:
resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -4004,6 +4275,11 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
@@ -4063,8 +4339,8 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- schema-utils@4.3.2:
- resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
+ schema-utils@4.3.3:
+ resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
engines: {node: '>= 10.13.0'}
scule@1.3.0:
@@ -4096,10 +4372,20 @@ packages:
peerDependencies:
seroval: ^1.0
+ seroval-plugins@1.5.0:
+ resolution: {integrity: sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ seroval: ^1.0
+
seroval@1.3.2:
resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==}
engines: {node: '>=10'}
+ seroval@1.5.0:
+ resolution: {integrity: sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==}
+ engines: {node: '>=10'}
+
serve-placeholder@2.0.2:
resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
@@ -4125,6 +4411,11 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
+ shieldwall@0.4.0:
+ resolution: {integrity: sha512-3IO6SxrRUlL7BGWnfhdACnuG8bqa+kKzSgtuW0daZpdF9iGoEW9EroY2djuP1AjY/R3SCbql6xCJ1CtX+GDMRw==}
+ peerDependencies:
+ '@solidjs/start': ^1.1.1
+
shiki@1.29.2:
resolution: {integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==}
@@ -4177,6 +4468,9 @@ packages:
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
+ solid-js@1.9.11:
+ resolution: {integrity: sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==}
+
solid-js@1.9.9:
resolution: {integrity: sha512-A0ZBPJQldAeGCTW0YRYJmt7RCeh5rbFfPZ2aOttgYnctHE7HgKeHCBB/PVc2P7eOfmNXqMFFFoYYdm3S4dcbkA==}
@@ -4361,8 +4655,8 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- tapable@2.2.3:
- resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
tar-stream@3.1.7:
@@ -4371,6 +4665,7 @@ packages:
tar@7.4.4:
resolution: {integrity: sha512-O1z7ajPkjTgEgmTGz0v9X4eqeEXTDREPTO77pVC1Nbs86feBU1Zhdg+edzavPmYW1olxkwsqA2v4uOw6E8LeDg==}
engines: {node: '>=18'}
+ deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
term-size@2.2.1:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
@@ -4382,8 +4677,8 @@ packages:
peerDependencies:
solid-js: ^1.8
- terser-webpack-plugin@5.3.14:
- resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
+ terser-webpack-plugin@5.3.16:
+ resolution: {integrity: sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -4403,6 +4698,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ terser@5.46.0:
+ resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -4549,6 +4849,9 @@ packages:
undici-types@7.12.0:
resolution: {integrity: sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
@@ -4610,6 +4913,50 @@ packages:
resolution: {integrity: sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==}
engines: {node: '>=18.12.0'}
+ unstorage@1.10.2:
+ resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.5.0
+ '@azure/cosmos': ^4.0.0
+ '@azure/data-tables': ^13.2.2
+ '@azure/identity': ^4.0.1
+ '@azure/keyvault-secrets': ^4.8.0
+ '@azure/storage-blob': ^12.17.0
+ '@capacitor/preferences': ^5.0.7
+ '@netlify/blobs': ^6.5.0 || ^7.0.0
+ '@planetscale/database': ^1.16.0
+ '@upstash/redis': ^1.28.4
+ '@vercel/kv': ^1.0.1
+ idb-keyval: ^6.2.1
+ ioredis: ^5.3.2
+ peerDependenciesMeta:
+ '@azure/app-configuration':
+ optional: true
+ '@azure/cosmos':
+ optional: true
+ '@azure/data-tables':
+ optional: true
+ '@azure/identity':
+ optional: true
+ '@azure/keyvault-secrets':
+ optional: true
+ '@azure/storage-blob':
+ optional: true
+ '@capacitor/preferences':
+ optional: true
+ '@netlify/blobs':
+ optional: true
+ '@planetscale/database':
+ optional: true
+ '@upstash/redis':
+ optional: true
+ '@vercel/kv':
+ optional: true
+ idb-keyval:
+ optional: true
+ ioredis:
+ optional: true
+
unstorage@1.17.1:
resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==}
peerDependencies:
@@ -4693,6 +5040,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
uqr@0.1.2:
resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==}
@@ -4725,6 +5078,16 @@ packages:
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
+ vite-plugin-solid@2.11.10:
+ resolution: {integrity: sha512-Yr1dQybmtDtDAHkii6hXuc1oVH9CPcS/Zb2jN/P36qqcrkNnVPsMTzQ06jyzFPFjj3U1IYKMVt/9ZqcwGCEbjw==}
+ 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 || ^6.0.0 || ^7.0.0
+ peerDependenciesMeta:
+ '@testing-library/jest-dom':
+ optional: true
+
vite-plugin-solid@2.11.8:
resolution: {integrity: sha512-hFrCxBfv3B1BmFqnJF4JOCYpjrmi/zwyeKjcomQ0khh8HFyQ8SbuBWQ7zGojfrz6HUOBFrJBNySDi/JgAHytWg==}
peerDependencies:
@@ -4815,8 +5178,8 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- watchpack@2.4.4:
- resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
+ watchpack@2.5.1:
+ resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==}
engines: {node: '>=10.13.0'}
webidl-conversions@3.0.1:
@@ -4826,8 +5189,8 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- webpack-sources@3.3.3:
- resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
+ webpack-sources@3.3.4:
+ resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
engines: {node: '>=10.13.0'}
webpack-virtual-modules@0.6.2:
@@ -4846,6 +5209,7 @@ packages:
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@4.0.0:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
@@ -5005,8 +5369,16 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@7.29.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.28.5
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
'@babel/compat-data@7.28.4': {}
+ '@babel/compat-data@7.29.0': {}
+
'@babel/core@7.28.4':
dependencies:
'@babel/code-frame': 7.27.1
@@ -5027,6 +5399,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.29.0':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/remapping': 2.3.5
+ convert-source-map: 2.0.0
+ debug: 4.4.3(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/generator@7.28.3':
dependencies:
'@babel/parser': 7.28.4
@@ -5035,6 +5427,14 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
+ '@babel/generator@7.29.1':
+ dependencies:
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ jsesc: 3.1.0
+
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
'@babel/types': 7.28.4
@@ -5047,6 +5447,14 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-compilation-targets@7.28.6':
+ dependencies:
+ '@babel/compat-data': 7.29.0
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.28.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
@@ -5060,21 +5468,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
+ '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.29.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
+ '@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
debug: 4.4.3(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
@@ -5087,6 +5508,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ dependencies:
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-imports@7.18.6':
dependencies:
'@babel/types': 7.28.4
@@ -5098,6 +5526,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-imports@7.28.6':
+ dependencies:
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
@@ -5107,18 +5542,38 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
'@babel/types': 7.28.4
'@babel/helper-plugin-utils@7.27.1': {}
+ '@babel/helper-plugin-utils@7.28.6': {}
+
'@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-wrap-function': 7.28.3
- '@babel/traverse': 7.28.4
+ '@babel/helper-wrap-function': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
@@ -5131,6 +5586,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-replace-supers@7.28.6(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
'@babel/traverse': 7.28.4
@@ -5142,13 +5606,15 @@ snapshots:
'@babel/helper-validator-identifier@7.27.1': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
+
'@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.28.3':
+ '@babel/helper-wrap-function@7.28.6':
dependencies:
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
@@ -5157,42 +5623,51 @@ snapshots:
'@babel/template': 7.27.2
'@babel/types': 7.28.4
+ '@babel/helpers@7.28.6':
+ dependencies:
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+
'@babel/parser@7.28.4':
dependencies:
'@babel/types': 7.28.4
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
+ '@babel/parser@7.29.0':
+ dependencies:
+ '@babel/types': 7.29.0
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
@@ -5200,21 +5675,26 @@ snapshots:
dependencies:
'@babel/core': 7.28.4
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-import-assertions@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
@@ -5223,28 +5703,28 @@ snapshots:
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
@@ -5252,99 +5732,99 @@ snapshots:
'@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-block-scoping@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-block-scoping@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-class-properties@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
+ '@babel/plugin-transform-class-static-block@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-classes@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-globals': 7.28.0
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.28.4)
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-computed-properties@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.27.2
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/template': 7.28.6
- '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-dotall-regex@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-exponentiation-operator@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -5352,37 +5832,37 @@ snapshots:
'@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-json-strings@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
@@ -5394,73 +5874,81 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.29.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-numeric-separator@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-object-rest-spread@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4)
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/traverse': 7.28.4
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-optional-catch-binding@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-optional-chaining@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -5468,55 +5956,55 @@ snapshots:
'@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-private-methods@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-private-property-in-object@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
+ '@babel/plugin-transform-regenerator@7.29.0(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-regexp-modifiers@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-spread@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -5524,17 +6012,17 @@ snapshots:
'@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
dependencies:
@@ -5550,98 +6038,98 @@ snapshots:
'@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-unicode-property-regex@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
+ '@babel/plugin-transform-unicode-sets-regex@7.28.6(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/preset-env@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/compat-data': 7.28.4
+ '@babel/compat-data': 7.29.0
'@babel/core': 7.28.4
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.28.4)
'@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-assertions': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4)
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-block-scoping': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-block-scoping': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-computed-properties': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.28.4)
+ '@babel/plugin-transform-dotall-regex': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.29.0(@babel/core@7.28.4)
'@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-json-strings': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-systemjs': 7.29.0(@babel/core@7.28.4)
'@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.29.0(@babel/core@7.28.4)
'@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-numeric-separator': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-regenerator': 7.29.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-regexp-modifiers': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-spread': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4)
'@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.28.6(@babel/core@7.28.4)
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.28.4)
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.28.4)
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
- core-js-compat: 3.45.1
+ babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.28.4)
+ core-js-compat: 3.48.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -5649,8 +6137,8 @@ snapshots:
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.4
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/types': 7.29.0
esutils: 2.0.3
'@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
@@ -5672,6 +6160,12 @@ snapshots:
'@babel/parser': 7.28.4
'@babel/types': 7.28.4
+ '@babel/template@7.28.6':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+
'@babel/traverse@7.28.4':
dependencies:
'@babel/code-frame': 7.27.1
@@ -5684,11 +6178,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.29.0':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+ debug: 4.4.3(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.28.4':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
+ '@babel/types@7.29.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
'@changesets/apply-release-plan@7.0.13':
dependencies:
'@changesets/config': 3.1.1
@@ -5718,7 +6229,7 @@ snapshots:
dependencies:
'@changesets/types': 6.1.0
- '@changesets/cli@2.29.7(@types/node@24.5.2)':
+ '@changesets/cli@2.29.7(@types/node@25.3.0)':
dependencies:
'@changesets/apply-release-plan': 7.0.13
'@changesets/assemble-release-plan': 6.0.9
@@ -5734,7 +6245,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.2
'@changesets/types': 6.1.0
'@changesets/write': 0.4.0
- '@inquirer/external-editor': 1.0.2(@types/node@24.5.2)
+ '@inquirer/external-editor': 1.0.2(@types/node@25.3.0)
'@manypkg/get-packages': 1.1.3
ansi-colors: 4.1.3
ci-info: 3.9.0
@@ -6018,12 +6529,12 @@ snapshots:
'@floating-ui/utils@0.2.10': {}
- '@inquirer/external-editor@1.0.2(@types/node@24.5.2)':
+ '@inquirer/external-editor@1.0.2(@types/node@25.3.0)':
dependencies:
chardet: 2.1.0
iconv-lite: 0.7.0
optionalDependencies:
- '@types/node': 24.5.2
+ '@types/node': 25.3.0
'@internationalized/date@3.9.0':
dependencies:
@@ -6527,7 +7038,7 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 3.4.17
- '@tanstack/directive-functions-plugin@1.121.21(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@tanstack/directive-functions-plugin@1.121.21(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
'@babel/code-frame': 7.26.2
'@babel/core': 7.28.4
@@ -6536,7 +7047,7 @@ snapshots:
'@tanstack/router-utils': 1.131.2
babel-dead-code-elimination: 1.0.10
tiny-invariant: 1.3.3
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
@@ -6551,7 +7062,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tanstack/server-functions-plugin@1.121.21(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@tanstack/server-functions-plugin@1.121.21(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
'@babel/code-frame': 7.26.2
'@babel/core': 7.28.4
@@ -6560,7 +7071,7 @@ snapshots:
'@babel/template': 7.27.2
'@babel/traverse': 7.28.4
'@babel/types': 7.28.4
- '@tanstack/directive-functions-plugin': 1.121.21(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ '@tanstack/directive-functions-plugin': 1.121.21(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
babel-dead-code-elimination: 1.0.10
tiny-invariant: 1.3.3
transitivePeerDependencies:
@@ -6595,24 +7106,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
'@types/braces@3.0.5': {}
@@ -6649,6 +7160,11 @@ snapshots:
'@types/node@24.5.2':
dependencies:
undici-types: 7.12.0
+ optional: true
+
+ '@types/node@25.3.0':
+ dependencies:
+ undici-types: 7.18.2
'@types/resolve@1.20.2': {}
@@ -6693,7 +7209,7 @@ snapshots:
consola: 3.4.2
defu: 6.1.4
get-port-please: 3.2.0
- h3: 1.15.3
+ h3: 1.15.4
http-shutdown: 1.2.2
jiti: 1.21.7
mlly: 1.8.0
@@ -6704,7 +7220,7 @@ snapshots:
untun: 0.1.3
uqr: 0.1.2
- '@vinxi/plugin-directives@0.5.1(vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vinxi/plugin-directives@0.5.1(vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
'@babel/parser': 7.28.4
acorn: 8.15.0
@@ -6715,29 +7231,29 @@ snapshots:
magicast: 0.2.11
recast: 0.23.11
tslib: 2.8.1
- vinxi: 0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vinxi: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
- '@vinxi/server-components@0.5.1(vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vinxi/server-components@0.5.1(vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
- '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ '@vinxi/plugin-directives': 0.5.1(vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
acorn: 8.15.0
acorn-loose: 8.5.2
acorn-typescript: 1.4.13(acorn@8.15.0)
astring: 1.9.0
magicast: 0.2.11
recast: 0.23.11
- vinxi: 0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vinxi: 0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
- '@vitest/browser@3.2.4(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))(vitest@3.0.5)':
+ '@vitest/browser@3.2.4(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))(vitest@3.0.5)':
dependencies:
'@testing-library/dom': 10.4.1
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1)
- '@vitest/mocker': 3.2.4(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.2.4(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
'@vitest/utils': 3.2.4
magic-string: 0.30.19
sirv: 3.0.2
tinyrainbow: 2.0.0
- vitest: 3.0.5(@types/node@24.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.44.0)(yaml@2.8.1)
+ vitest: 3.0.5(@types/node@25.3.0)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.46.0)(yaml@2.8.1)
ws: 8.18.3
transitivePeerDependencies:
- bufferutil
@@ -6752,21 +7268,21 @@ snapshots:
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.5(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitest/mocker@3.0.5(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.0.5
estree-walker: 3.0.3
magic-string: 0.30.19
optionalDependencies:
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
- '@vitest/mocker@3.2.4(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitest/mocker@3.2.4(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.19
optionalDependencies:
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
'@vitest/pretty-format@3.0.5':
dependencies:
@@ -6804,7 +7320,7 @@ snapshots:
sirv: 3.0.2
tinyglobby: 0.2.15
tinyrainbow: 2.0.0
- vitest: 3.0.5(@types/node@24.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.44.0)(yaml@2.8.1)
+ vitest: 3.0.5(@types/node@25.3.0)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.46.0)(yaml@2.8.1)
'@vitest/utils@3.0.5':
dependencies:
@@ -6908,9 +7424,9 @@ snapshots:
dependencies:
acorn: 8.15.0
- acorn-import-phases@1.0.4(acorn@8.15.0):
+ acorn-import-phases@1.0.4(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
@@ -6926,6 +7442,8 @@ snapshots:
acorn@8.15.0: {}
+ acorn@8.16.0: {}
+
agent-base@7.1.4: {}
aggregate-error@3.1.0:
@@ -6933,16 +7451,16 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-formats@2.1.1(ajv@8.17.1):
+ ajv-formats@2.1.1(ajv@8.18.0):
optionalDependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
- ajv-keywords@5.1.0(ajv@8.17.1):
+ ajv-keywords@5.1.0(ajv@8.18.0):
dependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
fast-deep-equal: 3.1.3
- ajv@8.17.1:
+ ajv@8.18.0:
dependencies:
fast-deep-equal: 3.1.3
fast-uri: 3.1.0
@@ -7096,11 +7614,20 @@ snapshots:
parse5: 7.3.0
validate-html-nesting: 1.2.3
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
+ babel-plugin-jsx-dom-expressions@0.40.5(@babel/core@7.29.0):
dependencies:
- '@babel/compat-data': 7.28.4
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/types': 7.29.0
+ html-entities: 2.3.3
+ parse5: 7.3.0
+
+ babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.28.4):
+ dependencies:
+ '@babel/compat-data': 7.29.0
'@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.28.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -7108,18 +7635,25 @@ snapshots:
babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
- core-js-compat: 3.45.1
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.28.4)
+ core-js-compat: 3.48.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
+ babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.28.4):
dependencies:
'@babel/core': 7.28.4
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
+ babel-preset-solid@1.9.10(@babel/core@7.29.0)(solid-js@1.9.11):
+ dependencies:
+ '@babel/core': 7.29.0
+ babel-plugin-jsx-dom-expressions: 0.40.5(@babel/core@7.29.0)
+ optionalDependencies:
+ solid-js: 1.9.11
+
babel-preset-solid@1.9.9(@babel/core@7.28.4)(solid-js@1.9.9):
dependencies:
'@babel/core': 7.28.4
@@ -7133,6 +7667,8 @@ snapshots:
base64-js@1.5.1: {}
+ baseline-browser-mapping@2.10.0: {}
+
baseline-browser-mapping@2.8.6: {}
bcrypt-pbkdf@1.0.2:
@@ -7187,6 +7723,14 @@ snapshots:
node-releases: 2.0.21
update-browserslist-db: 1.1.3(browserslist@4.26.2)
+ browserslist@4.28.1:
+ dependencies:
+ baseline-browser-mapping: 2.10.0
+ caniuse-lite: 1.0.30001770
+ electron-to-chromium: 1.5.302
+ node-releases: 2.0.27
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
+
buffer-crc32@0.2.13: {}
buffer-crc32@1.0.0: {}
@@ -7249,6 +7793,8 @@ snapshots:
caniuse-lite@1.0.30001743: {}
+ caniuse-lite@1.0.30001770: {}
+
caseless@0.12.0: {}
ccount@2.0.1: {}
@@ -7406,9 +7952,9 @@ snapshots:
cookie@1.0.2: {}
- core-js-compat@3.45.1:
+ core-js-compat@3.48.0:
dependencies:
- browserslist: 4.26.2
+ browserslist: 4.28.1
core-util-is@1.0.2: {}
@@ -7433,6 +7979,8 @@ snapshots:
dependencies:
uncrypto: 0.1.3
+ csp-header@5.2.1: {}
+
css.escape@1.5.1: {}
cssesc@3.0.0: {}
@@ -7444,15 +7992,17 @@ snapshots:
csstype@3.1.3: {}
+ csstype@3.2.3: {}
+
cypress-plugin-tab@1.0.5:
dependencies:
ally.js: 1.4.1
- cypress-vite@1.8.0(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)):
+ cypress-vite@1.8.0(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)):
dependencies:
chokidar: 3.6.0
debug: 4.4.3(supports-color@8.1.1)
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
@@ -7512,6 +8062,8 @@ snapshots:
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
+ date-fns@3.6.0: {}
+
dax-sh@0.43.2:
dependencies:
'@deno/shim-deno': 0.19.2
@@ -7620,6 +8172,8 @@ snapshots:
electron-to-chromium@1.5.222: {}
+ electron-to-chromium@1.5.302: {}
+
emoji-regex-xs@1.0.0: {}
emoji-regex@10.5.0: {}
@@ -7636,10 +8190,10 @@ snapshots:
dependencies:
once: 1.4.0
- enhanced-resolve@5.18.3:
+ enhanced-resolve@5.19.0:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.3
+ tapable: 2.3.0
enquirer@2.4.1:
dependencies:
@@ -8308,7 +8862,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.5.2
+ '@types/node': 25.3.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -8438,7 +8992,7 @@ snapshots:
optionalDependencies:
enquirer: 2.4.1
- loader-runner@4.3.0: {}
+ loader-runner@4.3.1: {}
local-pkg@1.1.2:
dependencies:
@@ -8514,6 +9068,8 @@ snapshots:
dependencies:
semver: 7.7.2
+ marked@12.0.2: {}
+
math-intrinsics@1.1.0: {}
mdast-util-to-hast@13.2.0:
@@ -8748,6 +9304,8 @@ snapshots:
node-releases@2.0.21: {}
+ node-releases@2.0.27: {}
+
nopt@8.1.0:
dependencies:
abbrev: 3.0.1
@@ -9176,6 +9734,12 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ resolve@1.22.11:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
@@ -9248,12 +9812,12 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- schema-utils@4.3.2:
+ schema-utils@4.3.3:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
+ ajv: 8.18.0
+ ajv-formats: 2.1.1(ajv@8.18.0)
+ ajv-keywords: 5.1.0(ajv@8.18.0)
scule@1.3.0: {}
@@ -9303,8 +9867,14 @@ snapshots:
dependencies:
seroval: 1.3.2
+ seroval-plugins@1.5.0(seroval@1.5.0):
+ dependencies:
+ seroval: 1.5.0
+
seroval@1.3.2: {}
+ seroval@1.5.0: {}
+
serve-placeholder@2.0.2:
dependencies:
defu: 6.1.4
@@ -9337,6 +9907,12 @@ snapshots:
shebang-regex@3.0.0: {}
+ shieldwall@0.4.0(@solidjs/start@packages+start):
+ dependencies:
+ '@solidjs/start': link:packages/start
+ csp-header: 5.2.1
+ h3: 1.15.4
+
shiki@1.29.2:
dependencies:
'@shikijs/core': 1.29.2
@@ -9406,6 +9982,12 @@ snapshots:
smob@1.5.0: {}
+ solid-js@1.9.11:
+ dependencies:
+ csstype: 3.2.3
+ seroval: 1.5.0
+ seroval-plugins: 1.5.0(seroval@1.5.0)
+
solid-js@1.9.9:
dependencies:
csstype: 3.1.3
@@ -9432,6 +10014,15 @@ snapshots:
'@corvu/utils': 0.4.2(solid-js@1.9.9)
solid-js: 1.9.9
+ solid-refresh@0.6.3(solid-js@1.9.11):
+ dependencies:
+ '@babel/generator': 7.28.3
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/types': 7.28.4
+ solid-js: 1.9.11
+ transitivePeerDependencies:
+ - supports-color
+
solid-refresh@0.6.3(solid-js@1.9.9):
dependencies:
'@babel/generator': 7.28.3
@@ -9447,9 +10038,9 @@ snapshots:
'@solid-primitives/transition-group': 1.1.2(solid-js@1.9.9)
solid-js: 1.9.9
- solid-use@0.9.1(solid-js@1.9.9):
+ solid-use@0.9.1(solid-js@1.9.11):
dependencies:
- solid-js: 1.9.9
+ solid-js: 1.9.11
source-map-js@1.2.1: {}
@@ -9626,7 +10217,7 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tapable@2.2.3: {}
+ tapable@2.3.0: {}
tar-stream@3.1.7:
dependencies:
@@ -9646,18 +10237,18 @@ snapshots:
term-size@2.2.1: {}
- terracotta@1.0.6(solid-js@1.9.9):
+ terracotta@1.0.6(solid-js@1.9.11):
dependencies:
- solid-js: 1.9.9
- solid-use: 0.9.1(solid-js@1.9.9)
+ solid-js: 1.9.11
+ solid-use: 0.9.1(solid-js@1.9.11)
- terser-webpack-plugin@5.3.14(webpack@5.101.3):
+ terser-webpack-plugin@5.3.16(webpack@5.101.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
serialize-javascript: 6.0.2
- terser: 5.44.0
+ terser: 5.46.0
webpack: 5.101.3
terser@5.44.0:
@@ -9667,6 +10258,13 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
+ terser@5.46.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.11
+ acorn: 8.16.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
@@ -9783,7 +10381,10 @@ snapshots:
undici-types@5.28.4: {}
- undici-types@7.12.0: {}
+ undici-types@7.12.0:
+ optional: true
+
+ undici-types@7.18.2: {}
unenv@1.10.0:
dependencies:
@@ -9870,6 +10471,21 @@ snapshots:
picomatch: 4.0.3
webpack-virtual-modules: 0.6.2
+ unstorage@1.10.2(ioredis@5.7.0):
+ dependencies:
+ anymatch: 3.1.3
+ chokidar: 3.6.0
+ destr: 2.0.5
+ h3: 1.15.4
+ listhen: 1.9.0
+ lru-cache: 10.4.3
+ mri: 1.2.0
+ node-fetch-native: 1.6.7
+ ofetch: 1.4.1
+ ufo: 1.6.1
+ optionalDependencies:
+ ioredis: 5.7.0
+
unstorage@1.17.1(db0@0.3.2)(ioredis@5.7.0):
dependencies:
anymatch: 3.1.3
@@ -9915,6 +10531,12 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
+ dependencies:
+ browserslist: 4.28.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
uqr@0.1.2: {}
util-deprecate@1.0.2: {}
@@ -9939,7 +10561,7 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vinxi@0.5.8(@types/node@24.5.2)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1):
+ vinxi@0.5.8(@types/node@25.3.0)(db0@0.3.2)(ioredis@5.7.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1):
dependencies:
'@babel/core': 7.28.4
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
@@ -9973,7 +10595,7 @@ snapshots:
unctx: 2.4.1
unenv: 1.10.0
unstorage: 1.17.1(db0@0.3.2)(ioredis@5.7.0)
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
zod: 3.25.76
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -10019,13 +10641,13 @@ snapshots:
- xml2js
- yaml
- vite-node@3.0.5(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1):
+ vite-node@3.0.5(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1):
dependencies:
cac: 6.7.14
debug: 4.4.3(supports-color@8.1.1)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -10040,7 +10662,22 @@ snapshots:
- tsx
- yaml
- vite-plugin-solid@2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)):
+ vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.8.0)(solid-js@1.9.11)(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)):
+ dependencies:
+ '@babel/core': 7.29.0
+ '@types/babel__core': 7.20.5
+ babel-preset-solid: 1.9.10(@babel/core@7.29.0)(solid-js@1.9.11)
+ merge-anything: 5.1.7
+ solid-js: 1.9.11
+ solid-refresh: 0.6.3(solid-js@1.9.11)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+ vitefu: 1.1.1(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
+ optionalDependencies:
+ '@testing-library/jest-dom': 6.8.0
+ transitivePeerDependencies:
+ - supports-color
+
+ vite-plugin-solid@2.11.8(@testing-library/jest-dom@6.8.0)(solid-js@1.9.9)(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)):
dependencies:
'@babel/core': 7.28.4
'@types/babel__core': 7.20.5
@@ -10048,14 +10685,14 @@ snapshots:
merge-anything: 5.1.7
solid-js: 1.9.9
solid-refresh: 0.6.3(solid-js@1.9.9)
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
- vitefu: 1.1.1(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+ vitefu: 1.1.1(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
optionalDependencies:
'@testing-library/jest-dom': 6.8.0
transitivePeerDependencies:
- supports-color
- vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1):
+ vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1):
dependencies:
esbuild: 0.25.10
fdir: 6.5.0(picomatch@4.0.3)
@@ -10064,20 +10701,20 @@ snapshots:
rollup: 4.52.0
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.5.2
+ '@types/node': 25.3.0
fsevents: 2.3.3
jiti: 2.6.0
- terser: 5.44.0
+ terser: 5.46.0
yaml: 2.8.1
- vitefu@1.1.1(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)):
+ vitefu@1.1.1(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)):
optionalDependencies:
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
- vitest@3.0.5(@types/node@24.5.2)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.44.0)(yaml@2.8.1):
+ vitest@3.0.5(@types/node@25.3.0)(@vitest/browser@3.2.4)(@vitest/ui@3.0.5)(jiti@2.6.0)(jsdom@25.0.1)(terser@5.46.0)(yaml@2.8.1):
dependencies:
'@vitest/expect': 3.0.5
- '@vitest/mocker': 3.0.5(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))
+ '@vitest/mocker': 3.0.5(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.0.5
'@vitest/snapshot': 3.0.5
@@ -10093,12 +10730,12 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
- vite-node: 3.0.5(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
+ vite-node: 3.0.5(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.5.2
- '@vitest/browser': 3.2.4(vite@6.3.6(@types/node@24.5.2)(jiti@2.6.0)(terser@5.44.0)(yaml@2.8.1))(vitest@3.0.5)
+ '@types/node': 25.3.0
+ '@vitest/browser': 3.2.4(vite@6.3.6(@types/node@25.3.0)(jiti@2.6.0)(terser@5.46.0)(yaml@2.8.1))(vitest@3.0.5)
'@vitest/ui': 3.0.5(vitest@3.0.5)
jsdom: 25.0.1
transitivePeerDependencies:
@@ -10119,7 +10756,7 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- watchpack@2.4.4:
+ watchpack@2.5.1:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -10128,7 +10765,7 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-sources@3.3.3: {}
+ webpack-sources@3.3.4: {}
webpack-virtual-modules@0.6.2: {}
@@ -10140,25 +10777,25 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.15.0
- acorn-import-phases: 1.0.4(acorn@8.15.0)
- browserslist: 4.26.2
+ acorn: 8.16.0
+ acorn-import-phases: 1.0.4(acorn@8.16.0)
+ browserslist: 4.28.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.3
+ enhanced-resolve: 5.19.0
es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
+ loader-runner: 4.3.1
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 4.3.2
- tapable: 2.2.3
- terser-webpack-plugin: 5.3.14(webpack@5.101.3)
- watchpack: 2.4.4
- webpack-sources: 3.3.3
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.16(webpack@5.101.3)
+ watchpack: 2.5.1
+ webpack-sources: 3.3.4
transitivePeerDependencies:
- '@swc/core'
- esbuild
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index a52b018da..0202392bf 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,11 +1,12 @@
packages:
- packages/*
- apps/*
- - '!**/.tmp/**'
+ - apps/fixtures/*
+ - "!**/.tmp/**"
ignoredBuiltDependencies:
- - '@prisma/client'
- - '@prisma/engines'
+ - "@prisma/client"
+ - "@prisma/engines"
- better-sqlite3
- msw
- prisma