`;
const body = model.body.flatMap((body) => body.lines);
body.forEach((line, i) => {
- const colors = model.labelColors[i];
+ const colors = model.labelColors[i]!;
content += `
diff --git a/packages/ui/src/forms/Form.tsx b/packages/ui/src/forms/Form.tsx
index d096c9eb..eca760c4 100644
--- a/packages/ui/src/forms/Form.tsx
+++ b/packages/ui/src/forms/Form.tsx
@@ -11,7 +11,7 @@ import type { z } from "zod";
export function createZodForm
>(
opts: Omit<
- FormOptions, typeof zodValidator>,
+ FormOptions, ReturnType>,
"validatorAdapter" | "defaultValues"
> & {
schema: S;
@@ -25,7 +25,7 @@ export function createZodForm>(
typeof opts.defaultValues === "function"
? (undefined as any as S)
: opts.defaultValues,
- validatorAdapter: zodValidator,
+ validatorAdapter: zodValidator(),
validators: {
onSubmit: opts.schema,
},
diff --git a/patches/@solid-mediakit__trpc@3.0.2.patch b/patches/@solid-mediakit__trpc@3.0.2.patch
deleted file mode 100644
index 983cf139..00000000
--- a/patches/@solid-mediakit__trpc@3.0.2.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-diff --git a/dist/index/index.d.ts b/dist/index/index.d.ts
-index eeb5e7504db6323bf77274309335ace1a9aa8ce3..5f4ba5b1ee0a7257a2b4e9789195bfbd275088c9 100644
---- a/dist/index/index.d.ts
-+++ b/dist/index/index.d.ts
-@@ -9,3 +9,4 @@ declare global {
- export * from '@trpc/client';
- export { createTRPCSolidStart, type CreateTRPCSolidStart, } from './createTRPCSolid';
- export { createSolidQueryHooks } from './interop';
-+export { UseTRPCQueryResult } from "./shared";
-\ No newline at end of file
-diff --git a/dist/index/shared/hooks/createHooksInternal.d.ts b/dist/index/shared/hooks/createHooksInternal.d.ts
-index dec9c671b40af798e13148e59f0194be2517a176..f09e36906313198fc4236ced98e6aca2449f94a5 100644
---- a/dist/index/shared/hooks/createHooksInternal.d.ts
-+++ b/dist/index/shared/hooks/createHooksInternal.d.ts
-@@ -42,6 +42,7 @@ export type CreateClient = (opts: (event?: ReturnType
- interface TRPCHookResult {
- trpc: {
- path: string;
-+ queryKey: string;
- };
- }
- /**
-diff --git a/dist/index/shared/hooks/createHooksInternal.jsx b/dist/index/shared/hooks/createHooksInternal.jsx
-index 3fd555880e09bbdfb66cc2e58bcb369fa95c240f..cc1e25d407bfc042c371c7ec6f72091d2465de63 100644
---- a/dist/index/shared/hooks/createHooksInternal.jsx
-+++ b/dist/index/shared/hooks/createHooksInternal.jsx
-@@ -130,13 +130,24 @@ export function createHooksInternal(config) {
- context: SolidQueryContext,
- });
- const ctx = useContext();
-- return __createQuery(() => ({
-+ const result = __createQuery(() => ({
- queryKey: getArrayQueryKey(pathAndInput()),
- queryFn: wrapFn(() => {
- return ctx.client().query(...getClientArgs(pathAndInput(), opts?.()));
- }),
- ...withCtxOpts(),
- }));
-+ return new Proxy(result, {
-+ get: function (target, prop, receiver) {
-+ if (prop === 'trpc') {
-+ return {
-+ get path() { return pathAndInput()[0] } , get queryKey() { return pathAndInput() }
-+ };
-+ }
-+
-+ return Reflect.get(target, prop, receiver);
-+ }
-+ });
- }
- function createMutation(path, opts) {
- const withCtxOpts = () => mergeProps(opts?.(), {
-@@ -148,7 +159,7 @@ export function createHooksInternal(config) {
- const actualPath = Array.isArray(path) ? path[0] : path;
- return ctx
- .client()
-- .mutation(...getClientArgs([actualPath, input], opts));
-+ .mutation(...getClientArgs([actualPath, input], opts?.()));
- },
- ...withCtxOpts(),
- }));
diff --git a/patches/@solidjs__router@0.13.3.patch b/patches/@solidjs__router@0.13.3.patch
deleted file mode 100644
index 99e9b9cf..00000000
Binary files a/patches/@solidjs__router@0.13.3.patch and /dev/null differ
diff --git a/patches/@solidjs__start@1.0.6.patch b/patches/@solidjs__start@1.0.6.patch
index 297c9df8..109fe5fc 100644
--- a/patches/@solidjs__start@1.0.6.patch
+++ b/patches/@solidjs__start@1.0.6.patch
@@ -1,112 +1,95 @@
-diff --git a/dist/middleware/index.d.ts b/dist/middleware/index.d.ts
-index cbbb721295002d9ec060015eaab7fd00163b3937..8a8d03d251f8bc1582f1d46a973817dd9132851d 100644
---- a/dist/middleware/index.d.ts
-+++ b/dist/middleware/index.d.ts
-@@ -12,7 +12,7 @@ export declare function createMiddleware({ onRequest, onBeforeResponse }: {
- onRequest?: RequestMiddleware | RequestMiddleware[] | undefined;
- onBeforeResponse?: ResponseMiddleware | ResponseMiddleware[] | undefined;
- }): {
-- onRequest?: import("h3")._RequestMiddleware | import("h3")._RequestMiddleware[] | undefined;
-- onBeforeResponse?: import("h3")._ResponseMiddleware | import("h3")._ResponseMiddleware[] | undefined;
-+ onRequest?: import("vinxi/http")._RequestMiddleware | import("vinxi/http")._RequestMiddleware[] | undefined;
-+ onBeforeResponse?: import("vinxi/http")._ResponseMiddleware | import("vinxi/http")._ResponseMiddleware[] | undefined;
- };
- export {};
-diff --git a/dist/router/FileRoutes.js b/dist/router/FileRoutes.js
-index d07d72135bfcdbf182de8151341f6fe437452b64..bb9aaada0503a367f7ce15650436f18521f71377 100644
---- a/dist/router/FileRoutes.js
-+++ b/dist/router/FileRoutes.js
-@@ -14,7 +14,13 @@ export function createRoutes() {
- lazyRoute(route.$component, import.meta.env.START_ISLANDS
- ? import.meta.env.MANIFEST["ssr"]
- : import.meta.env.MANIFEST["client"], import.meta.env.MANIFEST["ssr"]),
-- children: route.children ? route.children.map(createRoute) : undefined
-+ children: route.children ? route.children.map(createRoute) : undefined,
-+ ...(route.slots && {
-+ slots: Object.entries(route.slots).reduce((acc, [slot, route]) => {
-+ acc[slot] = createRoute(route);
-+ return acc;
-+ }, {})
-+ })
- };
- }
- const routes = routeConfigs.map(createRoute);
-diff --git a/dist/router/routes.d.ts b/dist/router/routes.d.ts
-index 80a90eb0bfbbf4b7e347e40c2dd4e920c38f4139..06b6b273733f45ebe666aa74e4a0799839053aad 100644
---- a/dist/router/routes.d.ts
-+++ b/dist/router/routes.d.ts
-@@ -1,9 +1,11 @@
--interface Route {
-+export interface Route {
- path: string;
- id: string;
- children?: Route[];
-+ slots?: Record;
- page?: boolean;
- $component?: any;
-+ $$route?: any;
- $GET?: any;
- $POST?: any;
- $PUT?: any;
-@@ -23,4 +25,3 @@ export declare function matchAPIRoute(path: string, method: string): {
- handler: any;
- params: Record | undefined;
- } | undefined;
--export {};
+diff --git a/config/fs-router.js b/config/fs-router.js
+index 994c49a1ce3e4399c12c729300ca278adc6e2d36..7e67353eaf1a60c0c3673b3eb55f5bc038f4789a 100644
+--- a/config/fs-router.js
++++ b/config/fs-router.js
+@@ -1,22 +1,31 @@
+ import { analyzeModule, BaseFileSystemRouter, cleanPath } from "vinxi/fs-router";
+
++function toPathBase(src, config) {
++ const routePath = cleanPath(src, config)
++ // remove the initial slash
++ .slice(1)
++ .replace(/index$/, "")
++ // replace . with / for flat routes - e.g. foo.bar -> foo/bar
++ .replace(/\./g, "/")
++ // converts any splat route ... that got replaced back from ///
++ // this could be avoided with a lookbehind regex but safar has only supported them since mid 2023
++ .replace(/\/\/\//g, "...")
++ .replace(/\[([^\/]+)\]/g, (_, m) => {
++ if (m.length > 3 && m.startsWith("...")) {
++ return `*${m.slice(3)}`;
++ }
++ if (m.length > 2 && m.startsWith("[") && m.endsWith("]")) {
++ return `:${m.slice(1, -1)}?`;
++ }
++ return `:${m}`;
++ });
++
++ return routePath?.length > 0 ? `/${routePath}` : "/";
++}
++
+ export class SolidStartClientFileRouter extends BaseFileSystemRouter {
+ toPath(src) {
+- const routePath = cleanPath(src, this.config)
+- // remove the initial slash
+- .slice(1)
+- .replace(/index$/, "")
+- .replace(/\[([^\/]+)\]/g, (_, m) => {
+- if (m.length > 3 && m.startsWith("...")) {
+- return `*${m.slice(3)}`;
+- }
+- if (m.length > 2 && m.startsWith("[") && m.endsWith("]")) {
+- return `:${m.slice(1, -1)}?`;
+- }
+- return `:${m}`;
+- });
+-
+- return routePath?.length > 0 ? `/${routePath}` : "/";
++ return toPathBase(src, this.config);
+ }
+
+ toRoute(src) {
+@@ -74,21 +83,7 @@ function createHTTPHandlers(src, exports) {
+
+ export class SolidStartServerFileRouter extends BaseFileSystemRouter {
+ toPath(src) {
+- const routePath = cleanPath(src, this.config)
+- // remove the initial slash
+- .slice(1)
+- .replace(/index$/, "")
+- .replace(/\[([^\/]+)\]/g, (_, m) => {
+- if (m.length > 3 && m.startsWith("...")) {
+- return `*${m.slice(3)}`;
+- }
+- if (m.length > 2 && m.startsWith("[") && m.endsWith("]")) {
+- return `:${m.slice(1, -1)}?`;
+- }
+- return `:${m}`;
+- });
+-
+- return routePath?.length > 0 ? `/${routePath}` : "/";
++ return toPathBase(src, this.config);
+ }
+
+ toRoute(src) {
diff --git a/dist/router/routes.js b/dist/router/routes.js
-index 013b027463e34140080730704f93daa9c821afee..92643c0260c9e8a1560ed0ed7a6365cfa85d51e0 100644
+index 013b027463e34140080730704f93daa9c821afee..447b369112fd4d128ac86725d7f35caf0afd1b4e 100644
--- a/dist/router/routes.js
+++ b/dist/router/routes.js
-@@ -6,11 +6,46 @@ function defineRoutes(fileRoutes) {
- const parentRoute = Object.values(routes).find(o => {
+@@ -7,7 +7,11 @@ function defineRoutes(fileRoutes) {
return id.startsWith(o.id + "/");
});
-+ // Route is a leaf segment
if (!parentRoute) {
- routes.push({ ...route, id, path: id.replace(/\/\([^)/]+\)/g, "").replace(/\([^)/]+\)/g, "") });
-+ routes.push({
-+ ...route,
-+ id,
-+ path: id
-+ // strip out escape group for escaping nested routes - e.g. foo(bar) -> foo
-+ .replace(/\/\([^)/]+\)/g, "")
-+ .replace(/\([^)/]+\)/g, "")
-+ });
++ const path = id
++ // strip out escape group for escaping nested routes - e.g. foo(bar) -> foo
++ .replace(/\/\([^)/]+\)/g, "")
++ .replace(/\([^)/]+\)/g, "");
++ routes.push({ ...route, id, path });
return routes;
}
-- processRoute(parentRoute.children || (parentRoute.children = []), route, id.slice(parentRoute.id.length), full);
-+ const idWithoutParent = id.slice(parentRoute.id.length);
-+ // Route belongs to a slot
-+ if (idWithoutParent.startsWith("/@")) {
-+ let slotRoute = parentRoute;
-+ let idWithoutSlot = idWithoutParent;
-+ // Drill down through directly nested slots
-+ // Recursing would nest via 'children' but we want to nest via 'slots',
-+ // so this is handled as a special case
-+ while (idWithoutSlot.startsWith("/@")) {
-+ const slotName = /\/@([^/]+)/g.exec(idWithoutSlot)[1];
-+ const slots = (slotRoute.slots ??= {});
-+ idWithoutSlot = idWithoutSlot.slice(slotName.length + 2);
-+ // Route is a slot definition
-+ if (idWithoutSlot === "") {
-+ const slot = { ...route };
-+ delete slot.path;
-+ slots[slotName] = slot;
-+ return routes;
-+ }
-+ slotRoute = slots[slotName] ??= {};
-+ }
-+ // We only resume with children once all the directly nested slots are traversed
-+ processRoute((slotRoute.children ??= []), route, idWithoutSlot, full);
-+ }
-+ // Route just has a parent
-+ else {
-+ processRoute((parentRoute.children ??= []), route, idWithoutParent, full);
-+ }
- return routes;
- }
- return fileRoutes
-@@ -38,7 +73,10 @@ const router = createRouter({
+ processRoute(parentRoute.children || (parentRoute.children = []), route, id.slice(parentRoute.id.length), full);
+@@ -38,7 +42,10 @@ const router = createRouter({
routes: fileRoutes.reduce((memo, route) => {
if (!containsHTTP(route))
return memo;
@@ -118,38 +101,29 @@ index 013b027463e34140080730704f93daa9c821afee..92643c0260c9e8a1560ed0ed7a6365cf
if (/:[^/]*\?/g.test(path)) {
throw new Error(`Optional parameters are not supported in API routes: ${path}`);
}
-diff --git a/dist/runtime/server-handler.d.ts b/dist/runtime/server-handler.d.ts
-index f89692acb2e5d70723901f7353fe33934ee3dfea..91122e0ed778238fbd8eb4a7c6c1e1786d750ee4 100644
---- a/dist/runtime/server-handler.d.ts
-+++ b/dist/runtime/server-handler.d.ts
-@@ -1,2 +1,2 @@
--declare const _default: import("h3").EventHandler>;
-+declare const _default: import("vinxi/http").EventHandler>;
- export default _default;
-diff --git a/dist/server/handler.d.ts b/dist/server/handler.d.ts
-index 82b69478c9f23f489e1c5604dc5354cae27891d9..5c9483ba280125baf613c2dd7f4626561239e045 100644
---- a/dist/server/handler.d.ts
-+++ b/dist/server/handler.d.ts
-@@ -4,9 +4,9 @@ import type { FetchEvent, HandlerOptions, PageEvent, ResponseStub } from "./type
- * If not, falls back to the 302 (temporary redirect)
- */
- export declare function getExpectedRedirectStatus(response: ResponseStub): number;
--export declare function createBaseHandler(fn: (context: PageEvent) => unknown, createPageEvent: (event: FetchEvent) => Promise, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions | Promise)): import("h3").EventHandler>;
-+export declare function createBaseHandler(fn: (context: PageEvent) => unknown, createPageEvent: (event: FetchEvent) => Promise, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions | Promise)): import("vinxi/http").EventHandler>;
- /**
- *
- * Read more: https://docs.solidjs.com/solid-start/reference/server/create-handler
- */
--export declare function createHandler(fn: (context: PageEvent) => unknown, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions | Promise)): import("h3").EventHandler>;
-+export declare function createHandler(fn: (context: PageEvent) => unknown, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions | Promise)): import("vinxi/http").EventHandler>;
-diff --git a/dist/server/spa/handler.d.ts b/dist/server/spa/handler.d.ts
-index 182023ecbb49944c3f0eab96272d108654645987..0eca03a8345cd13aa0d44543911c37957d156266 100644
---- a/dist/server/spa/handler.d.ts
-+++ b/dist/server/spa/handler.d.ts
-@@ -3,5 +3,5 @@ import { FetchEvent, HandlerOptions, PageEvent } from "../types";
- *
- * Read more: https://docs.solidjs.com/solid-start/reference/server/create-handler
- */
--export declare function createHandler(fn: (context: PageEvent) => unknown, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions)): import("h3").EventHandler>;
-+export declare function createHandler(fn: (context: PageEvent) => unknown, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions)): import("vinxi/http").EventHandler>;
- export declare function createPageEvent(ctx: FetchEvent): Promise;
+diff --git a/dist/server/fetchEvent.js b/dist/server/fetchEvent.js
+index fb4eec3596f2210004d6db358c2db2e73d36d5cd..8d4d9a738a71cf15f51b1d620515aa5f724014b0 100644
+--- a/dist/server/fetchEvent.js
++++ b/dist/server/fetchEvent.js
+@@ -1,5 +1,5 @@
+ import { appendResponseHeader, getRequestIP, getResponseHeader, getResponseHeaders, getResponseStatus, getResponseStatusText, getWebRequest, removeResponseHeader, setResponseHeader, setResponseStatus } from "vinxi/http";
+-const fetchEventSymbol = Symbol("fetchEvent");
++const fetchEventContext = "solidFetchEvent";
+ export function createFetchEvent(event) {
+ return {
+ request: getWebRequest(event),
+@@ -15,11 +15,11 @@ export function cloneEvent(fetchEvent) {
+ };
+ }
+ export function getFetchEvent(h3Event) {
+- if (!h3Event[fetchEventSymbol]) {
++ if (!h3Event.context[fetchEventContext]) {
+ const fetchEvent = createFetchEvent(h3Event);
+- h3Event[fetchEventSymbol] = fetchEvent;
++ h3Event.context[fetchEventContext] = fetchEvent;
+ }
+- return h3Event[fetchEventSymbol];
++ return h3Event.context[fetchEventContext];
+ }
+ export function mergeResponseHeaders(h3Event, headers) {
+ for (const [key, value] of headers.entries()) {
diff --git a/patches/@tanstack__solid-form@0.20.0.patch b/patches/@tanstack__solid-form@0.20.0.patch
deleted file mode 100644
index b6a8468b..00000000
Binary files a/patches/@tanstack__solid-form@0.20.0.patch and /dev/null differ
diff --git a/patches/drizzle-orm@0.30.10.patch b/patches/drizzle-orm@0.30.10.patch
deleted file mode 100644
index f2eb369d..00000000
--- a/patches/drizzle-orm@0.30.10.patch
+++ /dev/null
@@ -1,357 +0,0 @@
-diff --git a/sql/sql.js b/sql/sql.js
-index 70ba14cbf1f215ee322d66c747141538d6734481..3e948fdccec69847c4e926ac4c2244b79081a463 100644
---- a/sql/sql.js
-+++ b/sql/sql.js
-@@ -9,7 +9,9 @@ class FakePrimitiveParam {
- static [entityKind] = "FakePrimitiveParam";
- }
- function isSQLWrapper(value) {
-- return value !== null && value !== void 0 && typeof value.getSQL === "function";
-+ return (
-+ value !== null && value !== void 0 && typeof value.getSQL === "function"
-+ );
- }
- function mergeQueries(queries) {
- const result = { sql: "", params: [] };
-@@ -52,7 +54,7 @@ class SQL {
- const query = this.buildQueryFromSourceParams(this.queryChunks, config);
- span?.setAttributes({
- "drizzle.query.text": query.sql,
-- "drizzle.query.params": JSON.stringify(query.params)
-+ "drizzle.query.params": JSON.stringify(query.params),
- });
- return query;
- });
-@@ -60,110 +62,145 @@ class SQL {
- buildQueryFromSourceParams(chunks, _config) {
- const config = Object.assign({}, _config, {
- inlineParams: _config.inlineParams || this.shouldInlineParams,
-- paramStartIndex: _config.paramStartIndex || { value: 0 }
-+ paramStartIndex: _config.paramStartIndex || { value: 0 },
- });
- const {
- escapeName,
- escapeParam,
- prepareTyping,
- inlineParams,
-- paramStartIndex
-+ paramStartIndex,
- } = config;
-- return mergeQueries(chunks.map((chunk) => {
-- if (is(chunk, StringChunk)) {
-- return { sql: chunk.value.join(""), params: [] };
-- }
-- if (is(chunk, Name)) {
-- return { sql: escapeName(chunk.value), params: [] };
-- }
-- if (chunk === void 0) {
-- return { sql: "", params: [] };
-- }
-- if (Array.isArray(chunk)) {
-- const result = [new StringChunk("(")];
-- for (const [i, p] of chunk.entries()) {
-- result.push(p);
-- if (i < chunk.length - 1) {
-- result.push(new StringChunk(", "));
-+ return mergeQueries(
-+ chunks.map((chunk) => {
-+ if (is(chunk, StringChunk)) {
-+ return { sql: chunk.value.join(""), params: [] };
-+ }
-+ if (is(chunk, Name)) {
-+ return { sql: escapeName(chunk.value), params: [] };
-+ }
-+ if (chunk === void 0) {
-+ return { sql: "", params: [] };
-+ }
-+ if (Array.isArray(chunk)) {
-+ const result = [new StringChunk("(")];
-+ for (const [i, p] of chunk.entries()) {
-+ result.push(p);
-+ if (i < chunk.length - 1) {
-+ result.push(new StringChunk(", "));
-+ }
- }
-+ result.push(new StringChunk(")"));
-+ return this.buildQueryFromSourceParams(result, config);
- }
-- result.push(new StringChunk(")"));
-- return this.buildQueryFromSourceParams(result, config);
-- }
-- if (is(chunk, SQL)) {
-- return this.buildQueryFromSourceParams(chunk.queryChunks, {
-- ...config,
-- inlineParams: inlineParams || chunk.shouldInlineParams
-- });
-- }
-- if (is(chunk, Table)) {
-- const schemaName = chunk[Table.Symbol.Schema];
-- const tableName = chunk[Table.Symbol.Name];
-- return {
-- sql: schemaName === void 0 ? escapeName(tableName) : escapeName(schemaName) + "." + escapeName(tableName),
-- params: []
-- };
-- }
-- if (is(chunk, Column)) {
-- return { sql: escapeName(chunk.table[Table.Symbol.Name]) + "." + escapeName(chunk.name), params: [] };
-- }
-- if (is(chunk, View)) {
-- const schemaName = chunk[ViewBaseConfig].schema;
-- const viewName = chunk[ViewBaseConfig].name;
-- return {
-- sql: schemaName === void 0 ? escapeName(viewName) : escapeName(schemaName) + "." + escapeName(viewName),
-- params: []
-- };
-- }
-- if (is(chunk, Param)) {
-- const mappedValue = chunk.value === null ? null : chunk.encoder.mapToDriverValue(chunk.value);
-- if (is(mappedValue, SQL)) {
-- return this.buildQueryFromSourceParams([mappedValue], config);
-+ if (is(chunk, SQL)) {
-+ return this.buildQueryFromSourceParams(chunk.queryChunks, {
-+ ...config,
-+ inlineParams: inlineParams || chunk.shouldInlineParams,
-+ });
- }
-- if (inlineParams) {
-- return { sql: this.mapInlineParam(mappedValue, config), params: [] };
-+ if (is(chunk, Table)) {
-+ const schemaName = chunk[Table.Symbol.Schema];
-+ const tableName = chunk[Table.Symbol.Name];
-+ return {
-+ sql:
-+ schemaName === void 0
-+ ? escapeName(tableName)
-+ : escapeName(schemaName) + "." + escapeName(tableName),
-+ params: [],
-+ };
- }
-- let typings;
-- if (prepareTyping !== void 0) {
-- typings = [prepareTyping(chunk.encoder)];
-+ if (is(chunk, Column)) {
-+ return {
-+ sql:
-+ escapeName(chunk.table[Table.Symbol.Name]) +
-+ "." +
-+ escapeName(chunk.name),
-+ params: [],
-+ };
- }
-- return { sql: escapeParam(paramStartIndex.value++, mappedValue), params: [mappedValue], typings };
-- }
-- if (is(chunk, Placeholder)) {
-- return { sql: escapeParam(paramStartIndex.value++, chunk), params: [chunk] };
-- }
-- if (is(chunk, SQL.Aliased) && chunk.fieldAlias !== void 0) {
-- return { sql: escapeName(chunk.fieldAlias), params: [] };
-- }
-- if (is(chunk, Subquery)) {
-- if (chunk._.isWith) {
-- return { sql: escapeName(chunk._.alias), params: [] };
-+ if (is(chunk, View)) {
-+ const schemaName = chunk[ViewBaseConfig].schema;
-+ const viewName = chunk[ViewBaseConfig].name;
-+ return {
-+ sql:
-+ schemaName === void 0
-+ ? escapeName(viewName)
-+ : escapeName(schemaName) + "." + escapeName(viewName),
-+ params: [],
-+ };
- }
-- return this.buildQueryFromSourceParams([
-- new StringChunk("("),
-- chunk._.sql,
-- new StringChunk(") "),
-- new Name(chunk._.alias)
-- ], config);
-- }
-- if (isPgEnum(chunk)) {
-- if (chunk.schema) {
-- return { sql: escapeName(chunk.schema) + "." + escapeName(chunk.enumName), params: [] };
-+ if (is(chunk, Param)) {
-+ const mappedValue =
-+ chunk.value === null
-+ ? null
-+ : chunk.encoder.mapToDriverValue(chunk.value);
-+ if (is(mappedValue, SQL)) {
-+ return this.buildQueryFromSourceParams([mappedValue], config);
-+ }
-+ if (inlineParams) {
-+ return {
-+ sql: this.mapInlineParam(mappedValue, config),
-+ params: [],
-+ };
-+ }
-+ let typings;
-+ if (prepareTyping !== void 0) {
-+ typings = [prepareTyping(chunk.encoder)];
-+ }
-+ return {
-+ sql: escapeParam(paramStartIndex.value++, mappedValue),
-+ params: [mappedValue],
-+ typings,
-+ };
- }
-- return { sql: escapeName(chunk.enumName), params: [] };
-- }
-- if (isSQLWrapper(chunk)) {
-- return this.buildQueryFromSourceParams([
-- new StringChunk("("),
-- chunk.getSQL(),
-- new StringChunk(")")
-- ], config);
-- }
-- if (inlineParams) {
-- return { sql: this.mapInlineParam(chunk, config), params: [] };
-- }
-- return { sql: escapeParam(paramStartIndex.value++, chunk), params: [chunk] };
-- }));
-+ if (is(chunk, Placeholder)) {
-+ return {
-+ sql: escapeParam(paramStartIndex.value++, chunk),
-+ params: [chunk],
-+ };
-+ }
-+ if (is(chunk, SQL.Aliased) && chunk.fieldAlias !== void 0) {
-+ return { sql: escapeName(chunk.fieldAlias), params: [] };
-+ }
-+ if (is(chunk, Subquery)) {
-+ if (chunk._.isWith) {
-+ return { sql: escapeName(chunk._.alias), params: [] };
-+ }
-+ return this.buildQueryFromSourceParams(
-+ [
-+ new StringChunk("("),
-+ chunk._.sql,
-+ new StringChunk(") "),
-+ new Name(chunk._.alias),
-+ ],
-+ config
-+ );
-+ }
-+ if (isPgEnum(chunk)) {
-+ if (chunk.schema) {
-+ return {
-+ sql: escapeName(chunk.schema) + "." + escapeName(chunk.enumName),
-+ params: [],
-+ };
-+ }
-+ return { sql: escapeName(chunk.enumName), params: [] };
-+ }
-+ if (isSQLWrapper(chunk)) {
-+ return this.buildQueryFromSourceParams(
-+ [new StringChunk("("), chunk.getSQL(), new StringChunk(")")],
-+ config
-+ );
-+ }
-+ if (inlineParams) {
-+ return { sql: this.mapInlineParam(chunk, config), params: [] };
-+ }
-+ return {
-+ sql: escapeParam(paramStartIndex.value++, chunk),
-+ params: [chunk],
-+ };
-+ })
-+ );
- }
- mapInlineParam(chunk, { escapeString }) {
- if (chunk === null) {
-@@ -194,7 +231,8 @@ class SQL {
- return new SQL.Aliased(this, alias);
- }
- mapWith(decoder) {
-- this.decoder = typeof decoder === "function" ? { mapFromDriverValue: decoder } : decoder;
-+ this.decoder =
-+ typeof decoder === "function" ? { mapFromDriverValue: decoder } : decoder;
- return this;
- }
- inlineParams() {
-@@ -216,17 +254,22 @@ function name(value) {
- return new Name(value);
- }
- function isDriverValueEncoder(value) {
-- return typeof value === "object" && value !== null && "mapToDriverValue" in value && typeof value.mapToDriverValue === "function";
-+ return (
-+ typeof value === "object" &&
-+ value !== null &&
-+ "mapToDriverValue" in value &&
-+ typeof value.mapToDriverValue === "function"
-+ );
- }
- const noopDecoder = {
-- mapFromDriverValue: (value) => value
-+ mapFromDriverValue: (value) => value,
- };
- const noopEncoder = {
-- mapToDriverValue: (value) => value
-+ mapToDriverValue: (value) => value,
- };
- const noopMapper = {
- ...noopDecoder,
-- ...noopEncoder
-+ ...noopEncoder,
- };
- class Param {
- /**
-@@ -248,7 +291,7 @@ function param(value, encoder) {
- }
- function sql(strings, ...params) {
- const queryChunks = [];
-- if (params.length > 0 || strings.length > 0 && strings[0] !== "") {
-+ if (params.length > 0 || (strings.length > 0 && strings[0] !== "")) {
- queryChunks.push(new StringChunk(strings[0]));
- }
- for (const [paramIndex, param2] of params.entries()) {
-@@ -271,11 +314,13 @@ function sql(strings, ...params) {
- sql2.raw = raw;
- function join(chunks, separator) {
- const result = [];
-- for (const [i, chunk] of chunks.entries()) {
-- if (i > 0 && separator !== void 0) {
-- result.push(separator);
-+ if (chunks.entries) {
-+ for (const [i, chunk] of chunks.entries()) {
-+ if (i > 0 && separator !== void 0) {
-+ result.push(separator);
-+ }
-+ result.push(chunk);
- }
-- result.push(chunk);
- }
- return new SQL(result);
- }
-@@ -347,20 +392,20 @@ class View {
- selectedFields,
- query,
- isExisting: !query,
-- isAlias: false
-+ isAlias: false,
- };
- }
- getSQL() {
- return new SQL([this]);
- }
- }
--Column.prototype.getSQL = function() {
-+Column.prototype.getSQL = function () {
- return new SQL([this]);
- };
--Table.prototype.getSQL = function() {
-+Table.prototype.getSQL = function () {
- return new SQL([this]);
- };
--Subquery.prototype.getSQL = function() {
-+Subquery.prototype.getSQL = function () {
- return new SQL([this]);
- };
- export {
-@@ -380,6 +425,6 @@ export {
- noopMapper,
- param,
- placeholder,
-- sql
-+ sql,
- };
- //# sourceMappingURL=sql.js.map
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e72020a0..7a6b8398 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,27 +12,9 @@ overrides:
'@solidjs/router': 0.13.3
patchedDependencies:
- '@react-email/tailwind@0.0.16':
- hash: bwbyj74l7btlaty4zlch4r7y4y
- path: patches/@react-email__tailwind@0.0.16.patch
- '@solidjs/router@0.13.3':
- hash: zvbzyeqkevh5uh2poupaukupca
- path: patches/@solidjs__router@0.13.3.patch
'@solidjs/start@1.0.6':
- hash: p4sxlbdzyqm6sxnwnfekqf5bni
+ hash: 3c4gwxs3pt6xe3wn3vd4pa5a4i
path: patches/@solidjs__start@1.0.6.patch
- '@tanstack/solid-form@0.20.0':
- hash: u7mggdzwgkctmq3zwzwnyiwq4y
- path: patches/@tanstack__solid-form@0.20.0.patch
- cmdk-solid@1.0.1:
- hash: dag6pt7gimjmc5acuz5pepq574
- path: patches/cmdk-solid@1.0.1.patch
- drizzle-orm@0.30.10:
- hash: kbhw3lxqs5ui6og332q7mjjsdu
- path: patches/drizzle-orm@0.30.10.patch
- nitropack@2.9.6:
- hash: p7ld6mmkgyxaavdzhe4ztnoviq
- path: patches/nitropack@2.9.6.patch
importers:
@@ -43,13 +25,13 @@ importers:
version: 1.8.3
'@solidjs/start':
specifier: 1.0.6
- version: 1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
dotenv:
specifier: ^16.4.5
version: 16.4.5
drizzle-kit:
- specifier: ^0.21.4
- version: 0.21.4
+ specifier: ^0.23.2
+ version: 0.23.2
pg:
specifier: ^8.12.0
version: 8.12.0
@@ -58,59 +40,59 @@ importers:
version: 5.5.4
devDependencies:
husky:
- specifier: ^9.1.1
- version: 9.1.1
+ specifier: ^9.1.4
+ version: 9.1.4
nx:
- specifier: 19.1.1
- version: 19.1.1(@swc/core@1.3.101)
+ specifier: 19.5.6
+ version: 19.5.6(@swc/core@1.7.6)
wrangler:
- specifier: ^3.65.1
- version: 3.65.1
+ specifier: ^3.68.0
+ version: 3.68.0(@cloudflare/workers-types@4.20240729.0)
apps/configure:
dependencies:
'@kobalte/core':
- specifier: ^0.13.3
- version: 0.13.3(solid-js@1.8.18)
+ specifier: ^0.13.4
+ version: 0.13.4(solid-js@1.8.19)
'@mattrax/ui':
specifier: workspace:*
version: link:../../packages/ui
'@solid-primitives/connectivity':
specifier: ^0.3.20
- version: 0.3.20(solid-js@1.8.18)
+ version: 0.3.20(solid-js@1.8.19)
'@solid-primitives/context':
specifier: ^0.2.3
- version: 0.2.3(solid-js@1.8.18)
+ version: 0.2.3(solid-js@1.8.19)
'@solid-primitives/event-listener':
specifier: ^2.3.3
- version: 2.3.3(solid-js@1.8.18)
+ version: 2.3.3(solid-js@1.8.19)
'@solid-primitives/memo':
specifier: ^1.3.9
- version: 1.3.9(solid-js@1.8.18)
+ version: 1.3.9(solid-js@1.8.19)
'@solid-primitives/resize-observer':
specifier: ^2.0.26
- version: 2.0.26(solid-js@1.8.18)
+ version: 2.0.26(solid-js@1.8.19)
'@solid-primitives/resource':
specifier: ^0.3.0
- version: 0.3.0(solid-js@1.8.18)
+ version: 0.3.0(solid-js@1.8.19)
'@solid-primitives/set':
specifier: ^0.4.11
- version: 0.4.11(solid-js@1.8.18)
+ version: 0.4.11(solid-js@1.8.19)
'@solidjs/router':
specifier: 0.13.3
- version: 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
+ version: 0.13.3(solid-js@1.8.19)
'@tanstack/solid-query':
- specifier: ^5.51.9
- version: 5.51.9(solid-js@1.8.18)
+ specifier: ^5.51.21
+ version: 5.51.21(solid-js@1.8.19)
'@tanstack/solid-query-devtools':
- specifier: ^5.51.9
- version: 5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)
+ specifier: ^5.51.21
+ version: 5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)
'@tanstack/solid-table':
- specifier: ^8.19.3
- version: 8.19.3(solid-js@1.8.18)
+ specifier: ^8.20.1
+ version: 8.20.1(solid-js@1.8.19)
'@tanstack/solid-virtual':
- specifier: ^3.8.3
- version: 3.8.3(solid-js@1.8.18)
+ specifier: ^3.8.4
+ version: 3.8.4(solid-js@1.8.19)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -118,75 +100,75 @@ importers:
specifier: ^8.0.0
version: 8.0.0
solid-js:
- specifier: ^1.8.18
- version: 1.8.18
+ specifier: ^1.8.19
+ version: 1.8.19
solid-sonner:
specifier: ^0.2.8
- version: 0.2.8(solid-js@1.8.18)
+ version: 0.2.8(solid-js@1.8.19)
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@iconify/json':
- specifier: ^2.2.229
- version: 2.2.229
+ specifier: ^2.2.234
+ version: 2.2.234
autoprefixer:
- specifier: ^10.4.19
- version: 10.4.19(postcss@8.4.39)
+ specifier: ^10.4.20
+ version: 10.4.20(postcss@8.4.41)
postcss:
- specifier: ^8.4.39
- version: 8.4.39
+ specifier: ^8.4.41
+ version: 8.4.41
tailwindcss:
- specifier: ^3.4.6
- version: 3.4.6
+ specifier: ^3.4.7
+ version: 3.4.7
typescript:
specifier: ^5.5.4
version: 5.5.4
vite:
- specifier: ^5.3.4
- version: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ specifier: ^5.3.5
+ version: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
vite-plugin-html:
specifier: ^3.2.2
- version: 3.2.2(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 3.2.2(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
vite-plugin-solid:
specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 2.10.2(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
vite-tsconfig-paths:
specifier: ^4.3.2
- version: 4.3.2(typescript@5.5.4)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
apps/docs:
dependencies:
'@algolia/autocomplete-core':
specifier: ^1.17.4
- version: 1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)
+ version: 1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)
'@headlessui/react':
specifier: ^2.1.2
version: 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@headlessui/tailwindcss':
specifier: ^0.2.1
- version: 0.2.1(tailwindcss@3.4.6)
+ version: 0.2.1(tailwindcss@3.4.7)
'@mdx-js/loader':
specifier: ^3.0.1
- version: 3.0.1(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12))
+ version: 3.0.1(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12))
'@mdx-js/react':
specifier: ^3.0.1
version: 3.0.1(@types/react@18.3.3)(react@18.3.1)
'@next/mdx':
specifier: ^14.2.5
- version: 14.2.5(@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)))(@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1))
+ version: 14.2.5(@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)))(@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1))
'@sindresorhus/slugify':
specifier: ^2.2.1
version: 2.2.1
'@tailwindcss/typography':
specifier: ^0.5.13
- version: 0.5.13(tailwindcss@3.4.6)
+ version: 0.5.13(tailwindcss@3.4.7)
'@types/mdx':
specifier: ^2.0.13
version: 2.0.13
'@types/node':
- specifier: ^20.14.11
- version: 20.14.11
+ specifier: ^22.1.0
+ version: 22.1.0
'@types/react':
specifier: ^18.3.3
version: 18.3.3
@@ -194,14 +176,14 @@ importers:
specifier: ^18.3.0
version: 18.3.0
'@types/react-highlight-words':
- specifier: ^0.16.7
- version: 0.16.7
+ specifier: ^0.20.0
+ version: 0.20.0
acorn:
specifier: ^8.12.1
version: 8.12.1
autoprefixer:
- specifier: ^10.4.19
- version: 10.4.19(postcss@8.4.39)
+ specifier: ^10.4.20
+ version: 10.4.20(postcss@8.4.41)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -212,8 +194,8 @@ importers:
specifier: ^0.7.43
version: 0.7.43
framer-motion:
- specifier: ^11.3.8
- version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^11.3.21
+ version: 11.3.21(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
mdast-util-to-string:
specifier: ^4.0.0
version: 4.0.0
@@ -222,7 +204,7 @@ importers:
version: 0.1.4
next:
specifier: ^14.2.5
- version: 14.2.5(@babel/core@7.24.9)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.5(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.3.0
version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -245,14 +227,14 @@ importers:
specifier: ^3.0.1
version: 3.0.1
shiki:
- specifier: ^0.14.7
- version: 0.14.7
+ specifier: ^1.12.1
+ version: 1.12.1
simple-functional-loader:
specifier: ^1.2.1
version: 1.2.1
tailwindcss:
- specifier: ^3.4.6
- version: 3.4.6
+ specifier: ^3.4.7
+ version: 3.4.7
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -267,17 +249,17 @@ importers:
version: 4.5.4(@types/react@18.3.3)(react@18.3.1)
devDependencies:
eslint:
- specifier: ^9.7.0
- version: 9.7.0
+ specifier: ^9.8.0
+ version: 9.8.0
eslint-config-next:
specifier: ^14.2.5
- version: 14.2.5(eslint@9.7.0)(typescript@5.5.4)
+ version: 14.2.5(eslint@9.8.0)(typescript@5.5.4)
prettier:
specifier: ^3.3.3
version: 3.3.3
prettier-plugin-tailwindcss:
- specifier: ^0.5.14
- version: 0.5.14(prettier@3.3.3)
+ specifier: ^0.6.5
+ version: 0.6.5(prettier@3.3.3)
sharp:
specifier: 0.33.4
version: 0.33.4
@@ -285,26 +267,26 @@ importers:
apps/landing:
dependencies:
'@fontsource-variable/inter':
- specifier: ^5.0.19
- version: 5.0.19
+ specifier: ^5.0.20
+ version: 5.0.20
'@fontsource/inter':
- specifier: ^5.0.19
- version: 5.0.19
+ specifier: ^5.0.20
+ version: 5.0.20
'@kobalte/core':
- specifier: ^0.13.3
- version: 0.13.3(solid-js@1.8.18)
+ specifier: ^0.13.4
+ version: 0.13.4(solid-js@1.8.19)
'@mattrax/ui':
specifier: workspace:*
version: link:../../packages/ui
'@solidjs/router':
specifier: 0.13.3
- version: 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
+ version: 0.13.3(solid-js@1.8.19)
'@solidjs/start':
specifier: 1.0.6
- version: 1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
'@tanstack/solid-form':
specifier: '=0.20.0'
- version: 0.20.0(patch_hash=u7mggdzwgkctmq3zwzwnyiwq4y)(solid-js@1.8.18)
+ version: 0.20.0(solid-js@1.8.19)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -315,51 +297,51 @@ importers:
specifier: ^1.12.0
version: 1.12.0
solid-js:
- specifier: ^1.8.18
- version: 1.8.18
+ specifier: ^1.8.19
+ version: 1.8.19
vinxi:
specifier: 0.4.1
- version: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ version: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
vite:
- specifier: ^5.3.4
- version: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ specifier: ^5.3.5
+ version: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@iconify/json':
- specifier: ^2.2.229
- version: 2.2.229
+ specifier: ^2.2.234
+ version: 2.2.234
'@tailwindcss/forms':
specifier: ^0.5.7
- version: 0.5.7(tailwindcss@3.4.6)
+ version: 0.5.7(tailwindcss@3.4.7)
'@tailwindcss/typography':
specifier: ^0.5.13
- version: 0.5.13(tailwindcss@3.4.6)
+ version: 0.5.13(tailwindcss@3.4.7)
autoprefixer:
- specifier: ^10.4.19
- version: 10.4.19(postcss@8.4.39)
+ specifier: ^10.4.20
+ version: 10.4.20(postcss@8.4.41)
tailwindcss:
- specifier: ^3.4.6
- version: 3.4.6
+ specifier: ^3.4.7
+ version: 3.4.7
apps/web:
dependencies:
'@corvu/otp-field':
- specifier: ^0.1.1
- version: 0.1.1(solid-js@1.8.18)
+ specifier: ^0.1.2
+ version: 0.1.2(solid-js@1.8.19)
'@hono/zod-validator':
specifier: ^0.2.2
- version: 0.2.2(hono@4.5.0)(zod@3.23.8)
+ version: 0.2.2(hono@4.5.4)(zod@3.23.8)
'@kobalte/core':
- specifier: ^0.13.3
- version: 0.13.3(solid-js@1.8.18)
+ specifier: ^0.13.4
+ version: 0.13.4(solid-js@1.8.19)
'@kobalte/tailwindcss':
specifier: ^0.9.0
- version: 0.9.0(tailwindcss@3.4.6)
+ version: 0.9.0(tailwindcss@3.4.7)
'@lucia-auth/adapter-drizzle':
- specifier: ^1.0.7
- version: 1.0.7(lucia@3.2.0)
+ specifier: ^1.1.0
+ version: 1.1.0(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(lucia@3.2.0)
'@mattrax/configuration-schemas':
specifier: workspace:*
version: link:../../packages/configuration-schemas
@@ -389,7 +371,7 @@ importers:
version: link:../../packages/ui
'@mattrax/web':
specifier: 'file:'
- version: file:apps/web(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@types/node@20.14.11)(@types/react@18.3.3)(encoding@0.1.13)(ioredis@5.4.1)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(rollup@4.18.1)(terser@5.31.3)(typescript@5.5.4)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: file:apps/web(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@types/node@22.1.0)(@types/react@18.3.3)(encoding@0.1.13)(ioredis@5.4.1)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(rollup@4.20.0)(terser@5.31.3)(typescript@5.5.4)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
'@microsoft/microsoft-graph-client':
specifier: ^3.0.7
version: 3.0.7
@@ -403,80 +385,80 @@ importers:
specifier: ^10.0.0
version: 10.0.0
'@simplewebauthn/server':
- specifier: ^10.0.0
- version: 10.0.0(encoding@0.1.13)
+ specifier: ^10.0.1
+ version: 10.0.1(encoding@0.1.13)
'@simplewebauthn/typescript-types':
specifier: ^8.3.4
version: 8.3.4
'@solid-mediakit/trpc':
specifier: ^3.0.3
- version: 3.0.3(pfnxpnv63lqnpxcgbqdejpmyhm)
+ version: 3.0.3(@solidjs/router@0.13.3(solid-js@1.8.19))(@solidjs/start@1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)))(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
'@solid-primitives/autofocus':
specifier: ^0.0.111
- version: 0.0.111(solid-js@1.8.18)
+ version: 0.0.111(solid-js@1.8.19)
'@solid-primitives/context':
specifier: ^0.2.3
- version: 0.2.3(solid-js@1.8.18)
+ version: 0.2.3(solid-js@1.8.19)
'@solid-primitives/date':
specifier: ^2.0.22
- version: 2.0.22(solid-js@1.8.18)
+ version: 2.0.22(solid-js@1.8.19)
'@solid-primitives/event-bus':
specifier: ^1.0.11
- version: 1.0.11(solid-js@1.8.18)
+ version: 1.0.11(solid-js@1.8.19)
'@solid-primitives/event-listener':
specifier: ^2.3.3
- version: 2.3.3(solid-js@1.8.18)
+ version: 2.3.3(solid-js@1.8.19)
'@solid-primitives/lifecycle':
specifier: ^0.0.102
- version: 0.0.102(solid-js@1.8.18)
+ version: 0.0.102(solid-js@1.8.19)
'@solid-primitives/map':
specifier: ^0.4.11
- version: 0.4.11(solid-js@1.8.18)
+ version: 0.4.11(solid-js@1.8.19)
'@solid-primitives/memo':
specifier: ^1.3.9
- version: 1.3.9(solid-js@1.8.18)
+ version: 1.3.9(solid-js@1.8.19)
'@solid-primitives/scheduled':
specifier: ^1.4.3
- version: 1.4.3(solid-js@1.8.18)
+ version: 1.4.3(solid-js@1.8.19)
'@solid-primitives/storage':
specifier: ^3.8.0
- version: 3.8.0(solid-js@1.8.18)
+ version: 3.8.0(solid-js@1.8.19)
'@solid-primitives/timer':
specifier: ^1.3.9
- version: 1.3.9(solid-js@1.8.18)
+ version: 1.3.9(solid-js@1.8.19)
'@solid-primitives/websocket':
specifier: ^1.2.2
- version: 1.2.2(solid-js@1.8.18)
+ version: 1.2.2(solid-js@1.8.19)
'@solidjs/router':
specifier: 0.13.3
- version: 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
+ version: 0.13.3(solid-js@1.8.19)
'@solidjs/start':
- specifier: 1.0.1
- version: 1.0.1(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ specifier: 1.0.6
+ version: 1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
'@t3-oss/env-core':
- specifier: ^0.10.1
- version: 0.10.1(typescript@5.5.4)(zod@3.23.8)
+ specifier: ^0.11.0
+ version: 0.11.0(typescript@5.5.4)(zod@3.23.8)
'@tanstack/solid-form':
specifier: '=0.20.0'
- version: 0.20.0(patch_hash=u7mggdzwgkctmq3zwzwnyiwq4y)(solid-js@1.8.18)
+ version: 0.20.0(solid-js@1.8.19)
'@tanstack/solid-query':
- specifier: ^5.51.9
- version: 5.51.9(solid-js@1.8.18)
+ specifier: ^5.51.21
+ version: 5.51.21(solid-js@1.8.19)
'@tanstack/solid-query-devtools':
- specifier: ^5.51.9
- version: 5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)
+ specifier: ^5.51.21
+ version: 5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)
'@tanstack/solid-query-persist-client':
- specifier: ^5.51.9
- version: 5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)
+ specifier: ^5.51.21
+ version: 5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)
'@tanstack/solid-table':
- specifier: ^8.19.3
- version: 8.19.3(solid-js@1.8.18)
+ specifier: ^8.20.1
+ version: 8.20.1(solid-js@1.8.19)
'@tanstack/solid-virtual':
- specifier: ^3.8.3
- version: 3.8.3(solid-js@1.8.18)
+ specifier: ^3.8.4
+ version: 3.8.4(solid-js@1.8.19)
'@tanstack/zod-form-adapter':
- specifier: ^0.20.3
- version: 0.20.3(zod@3.23.8)
+ specifier: ^0.27.0
+ version: 0.27.0(zod@3.23.8)
'@trpc/client':
specifier: ^10.45.2
version: 10.45.2(@trpc/server@10.45.2)
@@ -502,20 +484,20 @@ importers:
specifier: ^4.2.0
version: 4.2.0
cookie-es:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^1.2.2
+ version: 1.2.2
dexie:
specifier: ^4.0.8
version: 4.0.8
drizzle-orm:
specifier: ^0.30.8
- version: 0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
+ version: 0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
h3:
specifier: ^1.12.0
version: 1.12.0
hono:
- specifier: ^4.5.0
- version: 4.5.0
+ specifier: ^4.5.4
+ version: 4.5.4
jose:
specifier: ^5.6.3
version: 5.6.3
@@ -529,8 +511,8 @@ importers:
specifier: ^8.0.0
version: 8.0.0
prism-code-editor:
- specifier: ^3.3.3
- version: 3.3.3
+ specifier: 3.4.0-beta.1
+ version: 3.4.0-beta.1
prism-themes:
specifier: ^1.9.0
version: 1.9.0
@@ -544,35 +526,35 @@ importers:
specifier: ^18.3.1
version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.18
- version: 1.8.18
+ specifier: ^1.8.19
+ version: 1.8.19
solid-presence:
- specifier: ^0.1.7
- version: 0.1.7(solid-js@1.8.18)
+ specifier: ^0.1.8
+ version: 0.1.8(solid-js@1.8.19)
solid-sonner:
specifier: ^0.2.8
- version: 0.2.8(solid-js@1.8.18)
+ version: 0.2.8(solid-js@1.8.19)
solid-transition-group:
specifier: ^0.2.3
- version: 0.2.3(solid-js@1.8.18)
+ version: 0.2.3(solid-js@1.8.19)
sst:
specifier: 3.0.30
- version: 3.0.30(hono@4.5.0)
+ version: 3.0.30(hono@4.5.4)
stripe:
- specifier: ^15.12.0
- version: 15.12.0
+ specifier: ^16.6.0
+ version: 16.6.0
superjson:
specifier: ^2.2.1
version: 2.2.1
tailwindcss:
- specifier: ^3.4.6
- version: 3.4.6
+ specifier: ^3.4.7
+ version: 3.4.7
ts-pattern:
specifier: ^5.2.0
version: 5.2.0
vinxi:
specifier: 0.4.1
- version: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ version: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
xml2js:
specifier: ^0.6.2
version: 0.6.2
@@ -581,8 +563,8 @@ importers:
version: 3.23.8
devDependencies:
'@iconify/json':
- specifier: ^2.2.229
- version: 2.2.229
+ specifier: ^2.2.234
+ version: 2.2.234
'@microsoft/microsoft-graph-types':
specifier: ^2.40.0
version: 2.40.0
@@ -591,7 +573,7 @@ importers:
version: 10.0.0
'@tailwindcss/forms':
specifier: ^0.5.7
- version: 0.5.7(tailwindcss@3.4.6)
+ version: 0.5.7(tailwindcss@3.4.7)
'@types/prismjs':
specifier: ^1.26.4
version: 1.26.4
@@ -602,66 +584,47 @@ importers:
specifier: ^18.3.0
version: 18.3.0
autoprefixer:
- specifier: ^10.4.19
- version: 10.4.19(postcss@8.4.39)
+ specifier: ^10.4.20
+ version: 10.4.20(postcss@8.4.41)
mysql2:
- specifier: ^3.10.3
- version: 3.10.3
+ specifier: ^3.11.0
+ version: 3.11.0
postcss:
- specifier: ^8.4.39
- version: 8.4.39
+ specifier: ^8.4.41
+ version: 8.4.41
rollup-plugin-visualizer:
specifier: ^5.12.0
- version: 5.12.0(rollup@4.18.1)
+ version: 5.12.0(rollup@4.20.0)
solid-devtools:
specifier: ^0.30.1
- version: 0.30.1(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 0.30.1(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
tailwind-scrollbar:
specifier: ^3.1.0
- version: 3.1.0(tailwindcss@3.4.6)
+ version: 3.1.0(tailwindcss@3.4.7)
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.6)
+ version: 1.0.7(tailwindcss@3.4.7)
unenv:
specifier: ^1.10.0
version: 1.10.0
unplugin-auto-import:
- specifier: ^0.17.8
- version: 0.17.8(rollup@4.18.1)
+ specifier: ^0.18.2
+ version: 0.18.2(rollup@4.20.0)
unplugin-icons:
- specifier: ^0.19.0
- version: 0.19.0
+ specifier: ^0.19.1
+ version: 0.19.1
vite:
- specifier: ^5.3.4
- version: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ specifier: ^5.3.5
+ version: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
vite-plugin-html:
specifier: ^3.2.2
- version: 3.2.2(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 3.2.2(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
vite-plugin-solid:
specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 2.10.2(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
vite-tsconfig-paths:
specifier: ^4.3.2
- version: 4.3.2(typescript@5.5.4)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
-
- infra:
- dependencies:
- '@pulumi/cloudflare':
- specifier: ^5.34.0
- version: 5.34.0(typescript@5.5.4)
- '@pulumi/pulumi':
- specifier: ^3.125.0
- version: 3.125.0(typescript@5.5.4)
- sst:
- specifier: 3.0.30
- version: 3.0.30(hono@4.5.0)
- devDependencies:
- '@pulumi/aws':
- specifier: ^6.45.0
- version: 6.45.0(typescript@5.5.4)
- '@pulumi/azuread':
- specifier: ^5.53.2
- version: 5.53.2(typescript@5.5.4)
+ version: 4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
packages/configuration-schemas: {}
@@ -672,7 +635,7 @@ importers:
version: link:../ms-graph
drizzle-orm:
specifier: ^0.30.8
- version: 0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
+ version: 0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
plist:
specifier: ^3.1.0
version: 3.1.0
@@ -687,14 +650,14 @@ importers:
packages/email:
dependencies:
'@react-email/components':
- specifier: 0.0.17
- version: 0.0.17(@types/react@18.3.3)(react@18.3.1)
+ specifier: 0.0.22
+ version: 0.0.22(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-email/render':
- specifier: ^0.0.13
- version: 0.0.13
+ specifier: ^0.0.17
+ version: 0.0.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-email/tailwind':
- specifier: ^0.0.16
- version: 0.0.16(patch_hash=bwbyj74l7btlaty4zlch4r7y4y)(react@18.3.1)
+ specifier: ^0.0.19
+ version: 0.0.19(react@18.3.1)
aws4fetch:
specifier: ^1.0.19
version: 1.0.19
@@ -702,8 +665,8 @@ importers:
specifier: ^18.3.1
version: 18.3.1
react-email:
- specifier: ^2.1.5
- version: 2.1.5(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.12)(eslint@9.7.0)
+ specifier: ^2.1.6
+ version: 2.1.6(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.12)(eslint@9.8.0)
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -731,20 +694,20 @@ importers:
specifier: ^1.18.0
version: 1.18.0
mysql2:
- specifier: ^3.10.3
- version: 3.10.3
+ specifier: ^3.11.0
+ version: 3.11.0
devDependencies:
'@types/node':
- specifier: ^20.14.11
- version: 20.14.11
+ specifier: ^22.1.0
+ version: 22.1.0
packages/policy: {}
packages/policy-composer:
dependencies:
'@kobalte/core':
- specifier: ^0.13.3
- version: 0.13.3(solid-js@1.8.18)
+ specifier: ^0.13.4
+ version: 0.13.4(solid-js@1.8.19)
'@mattrax/configuration-schemas':
specifier: workspace:*
version: link:../configuration-schemas
@@ -755,23 +718,23 @@ importers:
specifier: workspace:*
version: link:../ui
'@tanstack/solid-virtual':
- specifier: ^3.8.3
- version: 3.8.3(solid-js@1.8.18)
+ specifier: ^3.8.4
+ version: 3.8.4(solid-js@1.8.19)
solid-js:
- specifier: ^1.8.18
- version: 1.8.18
+ specifier: ^1.8.19
+ version: 1.8.19
packages/trpc-server-function:
dependencies:
'@solid-mediakit/trpc':
specifier: ^3.0.3
- version: 3.0.3(@solidjs/router@0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18))(@solidjs/start@1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)))(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ version: 3.0.3(@solidjs/router@0.13.3(solid-js@1.8.19))(@solidjs/start@1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)))(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
'@solidjs/router':
specifier: 0.13.3
- version: 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
+ version: 0.13.3(solid-js@1.8.19)
'@tanstack/query-core':
- specifier: ^5.51.9
- version: 5.51.9
+ specifier: ^5.51.21
+ version: 5.51.21
'@trpc/client':
specifier: ^10.45.2
version: 10.45.2(@trpc/server@10.45.2)
@@ -780,34 +743,34 @@ importers:
version: 10.45.2
vinxi:
specifier: 0.4.1
- version: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ version: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
packages/ui:
dependencies:
'@corvu/tailwind':
specifier: ^0.1.5
- version: 0.1.5(tailwindcss@3.4.6)
+ version: 0.1.5(tailwindcss@3.4.7)
'@kobalte/core':
- specifier: ^0.13.3
- version: 0.13.3(solid-js@1.8.18)
+ specifier: ^0.13.4
+ version: 0.13.4(solid-js@1.8.19)
'@solid-primitives/refs':
specifier: ^1.0.8
- version: 1.0.8(solid-js@1.8.18)
+ version: 1.0.8(solid-js@1.8.19)
'@solidjs/router':
specifier: 0.13.3
- version: 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
+ version: 0.13.3(solid-js@1.8.19)
'@tanstack/form-core':
- specifier: ^0.20.3
- version: 0.20.3
+ specifier: ^0.27.0
+ version: 0.27.0
'@tanstack/solid-form':
specifier: '=0.20.0'
- version: 0.20.0(patch_hash=u7mggdzwgkctmq3zwzwnyiwq4y)(solid-js@1.8.18)
+ version: 0.20.0(solid-js@1.8.19)
'@tanstack/solid-virtual':
- specifier: ^3.8.3
- version: 3.8.3(solid-js@1.8.18)
+ specifier: ^3.8.4
+ version: 3.8.4(solid-js@1.8.19)
'@tanstack/zod-form-adapter':
- specifier: ^0.20.3
- version: 0.20.3(zod@3.23.8)
+ specifier: ^0.27.0
+ version: 0.27.0(zod@3.23.8)
chart.js:
specifier: ^4.4.3
version: 4.4.3
@@ -818,33 +781,33 @@ importers:
specifier: ^2.1.1
version: 2.1.1
cmdk-solid:
- specifier: ^1.0.1
- version: 1.0.1(patch_hash=dag6pt7gimjmc5acuz5pepq574)(solid-js@1.8.18)
+ specifier: ^1.1.0
+ version: 1.1.0(solid-js@1.8.19)
solid-js:
- specifier: ^1.8.18
- version: 1.8.18
+ specifier: ^1.8.19
+ version: 1.8.19
solid-presence:
- specifier: ^0.1.7
- version: 0.1.7(solid-js@1.8.18)
+ specifier: ^0.1.8
+ version: 0.1.8(solid-js@1.8.19)
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@iconify/json':
- specifier: ^2.2.229
- version: 2.2.229
+ specifier: ^2.2.234
+ version: 2.2.234
unplugin-auto-import:
- specifier: ^0.17.8
- version: 0.17.8(rollup@4.18.1)
+ specifier: ^0.18.2
+ version: 0.18.2(rollup@4.20.0)
unplugin-icons:
- specifier: ^0.19.0
- version: 0.19.0
+ specifier: ^0.19.1
+ version: 0.19.1
vite:
- specifier: ^5.3.4
- version: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ specifier: ^5.3.5
+ version: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
vite-plugin-solid:
specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ version: 2.10.2(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
packages:
@@ -862,50 +825,50 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/cache-browser-local-storage@4.23.3':
- resolution: {integrity: sha512-vRHXYCpPlTDE7i6UOy2xE03zHF2C8MEFjPN2v7fRbqVpcOvAUQK81x3Kc21xyb5aSIpYCjWCZbYZuz8Glyzyyg==}
+ '@algolia/cache-browser-local-storage@4.24.0':
+ resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
- '@algolia/cache-common@4.23.3':
- resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==}
+ '@algolia/cache-common@4.24.0':
+ resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- '@algolia/cache-in-memory@4.23.3':
- resolution: {integrity: sha512-yvpbuUXg/+0rbcagxNT7un0eo3czx2Uf0y4eiR4z4SD7SiptwYTpbuS0IHxcLHG3lq22ukx1T6Kjtk/rT+mqNg==}
+ '@algolia/cache-in-memory@4.24.0':
+ resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- '@algolia/client-account@4.23.3':
- resolution: {integrity: sha512-hpa6S5d7iQmretHHF40QGq6hz0anWEHGlULcTIT9tbUssWUriN9AUXIFQ8Ei4w9azD0hc1rUok9/DeQQobhQMA==}
+ '@algolia/client-account@4.24.0':
+ resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- '@algolia/client-analytics@4.23.3':
- resolution: {integrity: sha512-LBsEARGS9cj8VkTAVEZphjxTjMVCci+zIIiRhpFun9jGDUlS1XmhCW7CTrnaWeIuCQS/2iPyRqSy1nXPjcBLRA==}
+ '@algolia/client-analytics@4.24.0':
+ resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- '@algolia/client-common@4.23.3':
- resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==}
+ '@algolia/client-common@4.24.0':
+ resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- '@algolia/client-personalization@4.23.3':
- resolution: {integrity: sha512-3E3yF3Ocr1tB/xOZiuC3doHQBQ2zu2MPTYZ0d4lpfWads2WTKG7ZzmGnsHmm63RflvDeLK/UVx7j2b3QuwKQ2g==}
+ '@algolia/client-personalization@4.24.0':
+ resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
- '@algolia/client-search@4.23.3':
- resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==}
+ '@algolia/client-search@4.24.0':
+ resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- '@algolia/logger-common@4.23.3':
- resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==}
+ '@algolia/logger-common@4.24.0':
+ resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- '@algolia/logger-console@4.23.3':
- resolution: {integrity: sha512-8xoiseoWDKuCVnWP8jHthgaeobDLolh00KJAdMe9XPrWPuf1by732jSpgy2BlsLTaT9m32pHI8CRfrOqQzHv3A==}
+ '@algolia/logger-console@4.24.0':
+ resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
- '@algolia/recommend@4.23.3':
- resolution: {integrity: sha512-9fK4nXZF0bFkdcLBRDexsnGzVmu4TSYZqxdpgBW2tEyfuSSY54D4qSRkLmNkrrz4YFvdh2GM1gA8vSsnZPR73w==}
+ '@algolia/recommend@4.24.0':
+ resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- '@algolia/requester-browser-xhr@4.23.3':
- resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==}
+ '@algolia/requester-browser-xhr@4.24.0':
+ resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- '@algolia/requester-common@4.23.3':
- resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==}
+ '@algolia/requester-common@4.24.0':
+ resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- '@algolia/requester-node-http@4.23.3':
- resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==}
+ '@algolia/requester-node-http@4.24.0':
+ resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
- '@algolia/transporter@4.23.3':
- resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==}
+ '@algolia/transporter@4.24.0':
+ resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
@@ -1041,36 +1004,24 @@ packages:
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.9':
- resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
+ '@babel/compat-data@7.25.2':
+ resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.5':
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.9':
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/generator@7.24.10':
- resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-compilation-targets@7.24.8':
- resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-environment-visitor@7.24.7':
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-function-name@7.24.7':
- resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
+ '@babel/generator@7.25.0':
+ resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-hoist-variables@7.24.7':
- resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.18.6':
@@ -1081,8 +1032,8 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.9':
- resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1095,10 +1046,6 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.24.7':
- resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
@@ -1111,8 +1058,8 @@ packages:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.8':
- resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
+ '@babel/helpers@7.25.0':
+ resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
@@ -1124,8 +1071,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
+ '@babel/parser@7.25.3':
+ resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -1141,20 +1088,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.24.8':
- resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
+ '@babel/runtime@7.25.0':
+ resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
+ '@babel/traverse@7.25.3':
+ resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.9':
- resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ '@babel/types@7.25.2':
+ resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
engines: {node: '>=6.9.0'}
'@biomejs/biome@1.8.3':
@@ -1214,41 +1161,41 @@ packages:
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@cloudflare/workerd-darwin-64@1.20240718.0':
- resolution: {integrity: sha512-BsPZcSCgoGnufog2GIgdPuiKicYTNyO/Dp++HbpLRH+yQdX3x4aWx83M+a0suTl1xv76dO4g9aw7SIB6OSgIyQ==}
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
+ resolution: {integrity: sha512-KpE7eycdZ9ON+tKBuTyqZh8SdFWHGrh2Ru9LcbpeFwb7O9gDQv9ceSdoV/T598qlT0a0yVKM62R6xa5ec0UOWA==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-arm64@1.20240718.0':
- resolution: {integrity: sha512-nlr4gaOO5gcJerILJQph3+2rnas/nx/lYsuaot1ntHu4LAPBoQo1q/Pucj2cSIav4UiMzTbDmoDwPlls4Kteog==}
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
+ resolution: {integrity: sha512-/UQlI04FdXLpPlDzzsWGz8TuKrMZKLowTo+8PkxgEiWIaBhE4DIDM5bwj3jM4Bs8yOLiL2ovQNpld5CnAKqA8g==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20240718.0':
- resolution: {integrity: sha512-LJ/k3y47pBcjax0ee4K+6ZRrSsqWlfU4lbU8Dn6u5tSC9yzwI4YFNXDrKWInB0vd7RT3w4Yqq1S6ZEbfRrqVUg==}
+ '@cloudflare/workerd-linux-64@1.20240725.0':
+ resolution: {integrity: sha512-Z5t12qYLvHz0b3ZRBBm2HQ93RiHrAnjFfdhtjMcgJypAGkiWpOCEn2xar/WqDhMfqnk0sa8aYiYAbMAlP1WN6w==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20240718.0':
- resolution: {integrity: sha512-zBEZvy88EcAMGRGfuVtS00Yl7lJdUM9sH7i651OoL+q0Plv9kphlCC0REQPwzxrEYT1qibSYtWcD9IxQGgx2/g==}
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
+ resolution: {integrity: sha512-j9gYXLOwOyNehLMzP7KxQ+Y6/nxcL9i6LTDJC6RChoaxLRbm0Y/9Otu+hfyzeNeRpt31ip6vqXZ1QQk6ygzI8A==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-windows-64@1.20240718.0':
- resolution: {integrity: sha512-YpCRvvT47XanFum7C3SedOZKK6BfVhqmwdAAVAQFyc4gsCdegZo0JkUkdloC/jwuWlbCACOG2HTADHOqyeolzQ==}
+ '@cloudflare/workerd-windows-64@1.20240725.0':
+ resolution: {integrity: sha512-fkrJLWNN6rrPjZ0eKJx328NVMo4BsainKxAfqaPMEd6uRwjOM8uN8V4sSLsXXP8GQMAx6hAG2hU86givS4GItg==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
- '@cloudflare/workers-types@4.20240512.0':
- resolution: {integrity: sha512-o2yTEWg+YK/I1t/Me+dA0oarO0aCbjibp6wSeaw52DSE9tDyKJ7S+Qdyw/XsMrKn4t8kF6f/YOba+9O4MJfW9w==}
+ '@cloudflare/workers-types@4.20240729.0':
+ resolution: {integrity: sha512-wfe44YQkv5T9aBr/z95P706r2/Ydg32weJYyBOhvge7FqtdY6mM7l39rybNiJrbJoyN16dd0xxyQMf23aJNC6Q==}
- '@corvu/otp-field@0.1.1':
- resolution: {integrity: sha512-ffGaENNcEhDBZG27tPWGXix3M99Aw8KulNEbDwzsfnUaANoD2LSXtqIoL8qC6WKq3Ukv0JmirZcRnE3U5EejCg==}
+ '@corvu/otp-field@0.1.2':
+ resolution: {integrity: sha512-R7Ks4EoIY6/ptY0W4ewO6wtSSqYGvz30eIsQBffc+6zOWAL4tc/qEKxUCLpOdAUyxp28ODCLHg1/ZpzNjgZBZw==}
peerDependencies:
solid-js: ^1.8
@@ -1262,6 +1209,11 @@ packages:
peerDependencies:
solid-js: ^1.8
+ '@corvu/utils@0.4.0':
+ resolution: {integrity: sha512-LTjH/gSf4t/slzGoQdFYWrAykHp3A7JZYH+KjM5KCppVjDEY7pLjZkMTHU/vPF7gvjiXDYgA+6q68eiHRiJ8wA==}
+ peerDependencies:
+ solid-js: ^1.8
+
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
@@ -1272,26 +1224,35 @@ packages:
'@deno/shim-deno@0.19.2':
resolution: {integrity: sha512-q3VTHl44ad8T2Tw2SpeAvghdGOjlnLPDNO2cpOxwMrBE/PVas6geWpbpIgrM+czOCH0yejp0yi8OaTuB+NU40Q==}
+ '@drizzle-team/brocli@0.8.2':
+ resolution: {integrity: sha512-zTrFENsqGvOkBOuHDC1pXCkDXNd2UhP4lI3gYGhQ1R1SPeAAfqzPsV1dcpMy4uNU6kB5VpU5NGhvwxVNETR02A==}
+
'@emnapi/core@0.45.0':
resolution: {integrity: sha512-DPWjcUDQkCeEM4VnljEOEcXdAD7pp8zSZsgOujk/LGIwCXWbXJngin+MO4zbH429lzeC3WbYLGjE2MaUOwzpyw==}
+ '@emnapi/core@1.2.0':
+ resolution: {integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==}
+
'@emnapi/runtime@0.45.0':
resolution: {integrity: sha512-Txumi3td7J4A/xTTwlssKieHKTGl3j4A1tglBx72auZ49YK7ePY6XZricgIg9mnZT4xPfA+UPCUdnhRuEFDL+w==}
'@emnapi/runtime@1.2.0':
resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
+ '@emnapi/wasi-threads@1.0.1':
+ resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
+
'@emotion/is-prop-valid@0.8.8':
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
- '@emotion/is-prop-valid@1.2.2':
- resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+ '@emotion/is-prop-valid@1.3.0':
+ resolution: {integrity: sha512-SHetuSLvJDzuNbOdtPVbq6yMMMlLoW5Q94uDqJZqy50gcmAjxFkVqmzqSGEFq9gT2iMuIeKV1PXVWmvUhuZLlQ==}
'@emotion/memoize@0.7.4':
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
- '@emotion/memoize@0.8.1':
- resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
'@esbuild-kit/core-utils@3.3.2':
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
@@ -2135,16 +2096,16 @@ packages:
resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.17.0':
- resolution: {integrity: sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==}
+ '@eslint/config-array@0.17.1':
+ resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.7.0':
- resolution: {integrity: sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==}
+ '@eslint/js@9.8.0':
+ resolution: {integrity: sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
@@ -2155,11 +2116,11 @@ packages:
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- '@floating-ui/core@1.6.4':
- resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==}
+ '@floating-ui/core@1.6.6':
+ resolution: {integrity: sha512-Vkvsw6EcpMHjvZZdMkSY+djMGFbt7CRssW99Ne8tar2WLnZ/l3dbxeTShbLQj+/s35h+Qb4cmnob+EzwtjrXGQ==}
- '@floating-ui/dom@1.6.7':
- resolution: {integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==}
+ '@floating-ui/dom@1.6.9':
+ resolution: {integrity: sha512-zB1PcI350t4tkm3rvUhSRKa9sT7vH5CrAbQxW+VaPYJXKAO0gsg4CTueL+6Ajp7XzAQC8CW4Jj1Wgqc0sB6oUQ==}
'@floating-ui/react-dom@2.1.1':
resolution: {integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==}
@@ -2167,29 +2128,20 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/react@0.26.19':
- resolution: {integrity: sha512-Jk6zITdjjIvjO/VdQFvpRaD3qPwOHH6AoDHxjhpy+oK4KFgaSP871HYWUAPdnLmx1gQ+w/pB312co3tVml+BXA==}
+ '@floating-ui/react@0.26.21':
+ resolution: {integrity: sha512-7P5ncDIiYd6RrwpCDbKyFzvabM014QlzlumtDbK3Bck0UueC+Rp8BLS34qcGBcN1pZCTodl4QNnCVmKv4tSxfQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.4':
- resolution: {integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==}
-
- '@fontsource-variable/inter@5.0.19':
- resolution: {integrity: sha512-V5KPpF5o0sI1uNWAdFArC87NDOb/ZJDPXLomEiKmDCYMlDUCTn2flkuAZkyME2rtGOKO7vzCuDJAND0m/5PhDA==}
+ '@floating-ui/utils@0.2.6':
+ resolution: {integrity: sha512-0KI3zGxIUs1KDR/pjQPdJH4Z8nGBm0yJ5WRoRfdw1Kzeh45jkIfA0rmD0kBF6fKHH+xaH7g8y4jIXyAV5MGK3g==}
- '@fontsource/inter@5.0.19':
- resolution: {integrity: sha512-tVU77yjKnsoUotrXGYbbYxmL9nbm/MSo3deZietmf8V2FEDlbi9fvkJHMrYbo7ZsOqR1AYBBqRYmemz4pSE5Mg==}
+ '@fontsource-variable/inter@5.0.20':
+ resolution: {integrity: sha512-dhzG4Zls/tIrf8h0FhTNi8jT/uFwNhdTY2vKe6DYqoXDYOfEcTVZDyh1hKml1rlLT44Y7OoKoGz8w7czDW7twQ==}
- '@grpc/grpc-js@1.11.1':
- resolution: {integrity: sha512-gyt/WayZrVPH2w/UTLansS7F9Nwld472JxxaETamrM8HNlsa+jSLNyKAZmhxI2Me4c3mQHFiS1wWHDY1g1Kthw==}
- engines: {node: '>=12.10.0'}
-
- '@grpc/proto-loader@0.7.13':
- resolution: {integrity: sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==}
- engines: {node: '>=6'}
- hasBin: true
+ '@fontsource/inter@5.0.20':
+ resolution: {integrity: sha512-rtw2F7xfM7rJmmnncXnR4ADr5wXsp4GyN1O1jmQJ1PMjAK+bm620/ZkQkeOYOkGoa09OksGinOeMA+Mkt6K9PQ==}
'@headlessui/react@2.1.2':
resolution: {integrity: sha512-Kb3hgk9gRNRcTZktBrKdHhF3xFhYkca1Rk6e1/im2ENf83dgN54orMW0uSKTXFnUpZOUFZ+wcY05LlipwgZIFQ==}
@@ -2221,14 +2173,14 @@ packages:
resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
engines: {node: '>=18.18'}
- '@iconify/json@2.2.229':
- resolution: {integrity: sha512-DD1k97sjm87n+C15Ey1dVX1cBKCawfms6N0d+1vvAon5P3yurpPEO9OyU88f53+9Chpo+CuIp3+TihvsghlfQQ==}
+ '@iconify/json@2.2.234':
+ resolution: {integrity: sha512-2z0+I0YhHelZ+MPX7wHsSGKv81PicsnVlRfCYNmhZ0s1tyPo7Kkvt8QWjytPZV6f/ypb111I5jpTFB+W7bcAgQ==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.1.25':
- resolution: {integrity: sha512-Y+iGko8uv/Fz5bQLLJyNSZGOdMW0G7cnlEX1CiNcKsRXX9cq/y/vwxrIAtLCZhKHr3m0VJmsjVPsvnM4uX8YLg==}
+ '@iconify/utils@2.1.30':
+ resolution: {integrity: sha512-bY0IO5xLOlbzJBnjWLxknp6Sss3yla03sVY9VeUz9nT6dbc+EGKlLfCt+6uytJnWm5CUvTF/BNotsLWF7kI61A==}
'@img/sharp-darwin-arm64@0.33.4':
resolution: {integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==}
@@ -2343,8 +2295,8 @@ packages:
cpu: [x64]
os: [win32]
- '@internationalized/date@3.5.4':
- resolution: {integrity: sha512-qoVJVro+O0rBaw+8HPjUB1iH8Ihf8oziEnqMnvhJUSuVIrHOuZ6eNLHNvzXJKUvAtaDiqMnRlg8Z2mgh09BlUw==}
+ '@internationalized/date@3.5.5':
+ resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==}
'@internationalized/number@3.5.3':
resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==}
@@ -2356,9 +2308,6 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
- '@isaacs/string-locale-compare@1.1.0':
- resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==}
-
'@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -2387,9 +2336,6 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@js-sdsl/ordered-map@4.4.2':
- resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
-
'@jsdevtools/ez-spawn@3.0.4':
resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==}
engines: {node: '>=10'}
@@ -2399,8 +2345,8 @@ packages:
peerDependencies:
solid-js: ^1.8.15
- '@kobalte/core@0.13.3':
- resolution: {integrity: sha512-7ansvAwiIz2EYuifI8jmGj+ZNG/3R4hdkXZkCEFVKsQzq3vZpuSiAXgrdZeQOR4Zby7gxLOzpakjfv7D/3PPGw==}
+ '@kobalte/core@0.13.4':
+ resolution: {integrity: sha512-ElvazoxoQU/z5pQUdHtXAzjiZA60J+Fo36WgO+j8sMvycIGwrlv+Fdr+uXcLSm1onYOYoSG1+vumD3Ce5OYzzw==}
peerDependencies:
solid-js: ^1.8.15
@@ -2420,13 +2366,10 @@ packages:
'@levischuck/tiny-cbor@0.2.2':
resolution: {integrity: sha512-f5CnPw997Y2GQ8FAvtuVVC19FX8mwNNC+1XJcIi16n/LTJifKO6QBgGLgN3YEmqtGMk17SKSuoWES3imJVxAVw==}
- '@logdna/tail-file@2.2.0':
- resolution: {integrity: sha512-XGSsWDweP80Fks16lwkAUIr54ICyBs6PsI4mpfTLQaWgEJRtY9xEV+PeyDpJ+sJEGZxqINlpmAwe/6tS1pP8Ng==}
- engines: {node: '>=10.3.0'}
-
- '@lucia-auth/adapter-drizzle@1.0.7':
- resolution: {integrity: sha512-X/V7fLBca8EC/gPXCntwbQpb0+F9oEuRoHElvsi9rCrdnGhCMNxHgwAvgiQ6pes+rIYpyvx4n3hvjqo/fPo03A==}
+ '@lucia-auth/adapter-drizzle@1.1.0':
+ resolution: {integrity: sha512-iCTnZWvfI5lLZOdUHZYiXA1jaspIFEeo2extLxQ3DjP3uOVys7IPwBi7zezLIRu9dhro4H4Kji+7gSYyjcef2A==}
peerDependencies:
+ drizzle-orm: ^0.30.8
lucia: 3.x
'@mapbox/node-pre-gyp@1.0.11':
@@ -2471,6 +2414,9 @@ packages:
'@microsoft/microsoft-graph-types@2.40.0':
resolution: {integrity: sha512-1fcPVrB/NkbNcGNfCy+Cgnvwxt6/sbIEEFgZHFBJ670zYLegENYJF8qMo7x3LqBjWX2/Eneq5BVVRCLTmlJN+g==}
+ '@napi-rs/wasm-runtime@0.2.4':
+ resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
+
'@netlify/functions@2.8.1':
resolution: {integrity: sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==}
engines: {node: '>=14.0.0'}
@@ -2804,124 +2750,66 @@ packages:
'@nothing-but/utils@0.12.1':
resolution: {integrity: sha512-1qZU1Q5El0IjE7JT/ucvJNzdr2hL3W8Rm27xNf1p6gb3Nw8pGnZmxp6/GEW9h+I1k1cICxXNq25hBwknTQ7yhg==}
- '@npmcli/agent@2.2.2':
- resolution: {integrity: sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/arborist@7.5.4':
- resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==}
- engines: {node: ^16.14.0 || >=18.0.0}
- hasBin: true
-
- '@npmcli/fs@3.1.1':
- resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/git@5.0.8':
- resolution: {integrity: sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/installed-package-contents@2.1.0':
- resolution: {integrity: sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- hasBin: true
-
- '@npmcli/map-workspaces@3.0.6':
- resolution: {integrity: sha512-tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/metavuln-calculator@7.1.1':
- resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/name-from-folder@2.0.0':
- resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/node-gyp@3.0.0':
- resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/package-json@5.2.0':
- resolution: {integrity: sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/promise-spawn@7.0.2':
- resolution: {integrity: sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/query@3.1.0':
- resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- '@npmcli/redact@2.0.1':
- resolution: {integrity: sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@npmcli/run-script@8.1.0':
- resolution: {integrity: sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@nrwl/tao@19.1.1':
- resolution: {integrity: sha512-03iaf+rnOEf5HHLsiSA7QIk63mBtcU4vkqkggoYLxJpMthx5nD4Z12nk+G/Z5RKWYUG4k3j6G7CFiIQRYOy7TA==}
+ '@nrwl/tao@19.5.6':
+ resolution: {integrity: sha512-p1bxEjW32bIHAiTp+PVdJpa2V9En2s9FigepHXyvmT2Aipisz96CKiDjexhPTjOZHUKtqA9FgmOIuVl3sBME3g==}
hasBin: true
- '@nx/nx-darwin-arm64@19.1.1':
- resolution: {integrity: sha512-5CcgmNhUg5N62zCuzNZfRRPvaLRZNhLk0OkpMa085atEshM8RUAMbN80ffINaBssYtKu6znJ9LhUK+q7C3KiFQ==}
+ '@nx/nx-darwin-arm64@19.5.6':
+ resolution: {integrity: sha512-evEpUq571PQkhaLBR7ul5iqE2l97QS7Q37/rxoBuwJzyQ/QKHfNu5t032bR3KLyEOrv7golT10jMeoQlNeF7eQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@19.1.1':
- resolution: {integrity: sha512-vDM9vZow3YLA3+7GKTqhtguNcbQPifMTbqm8Aevd/suqCChQsLyD1Hh1Z+o03RNolNTRacNb6GPvoKFY4BJ2tA==}
+ '@nx/nx-darwin-x64@19.5.6':
+ resolution: {integrity: sha512-o1tu0dOW7TZ80VN9N11FQL/3gHd1+t6NqtEmRClN0/sAh2MZyiBdbXv7UeN5HoKE7HAusiVFIxK3c1lxOvFtsQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@19.1.1':
- resolution: {integrity: sha512-FfOBrc1vndWYXSZVgbB9nWRp8/jo7f9b3g3ZfqaVwsGpcYcwz7dxiPV7HQKysTR0WNVv1aTi2Dg1CF+F94qlPw==}
+ '@nx/nx-freebsd-x64@19.5.6':
+ resolution: {integrity: sha512-IUL0ROGpLUol9cuVJ7VeUvaB/ptxg7DOjMef1+LJeOgxl/SFNa0bj0kKpA/AQwujz6cLI7Ei7xLTVQOboNh1DA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@19.1.1':
- resolution: {integrity: sha512-Bb94MmoOsPnTI4n1mrILSwGmx9I50LEkEOgksoiOEYdykWKjbz6z4ZnFCJHTeF0bca1OmF5iCjFWU42KlLUsRQ==}
+ '@nx/nx-linux-arm-gnueabihf@19.5.6':
+ resolution: {integrity: sha512-TGf1+cpWg5QiPEGW5kgxa1fVNyASMuqu+LvQ9CKhNYNz5EPD15yr/k6C0tOjgSXro3wi8TikTeG0Ln2hpmn6pw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@19.1.1':
- resolution: {integrity: sha512-mqiRi95LOUTWldtif3f2aJOFLxg/2jnM1UYj85vUlaLZJmQK64OhQslCAAZCmEWkHAYqEooHaYqj30YmDb92jw==}
+ '@nx/nx-linux-arm64-gnu@19.5.6':
+ resolution: {integrity: sha512-4hZI5NmnBEAzr3NV/BtlPjbSVffLWGGCJ5tB/JB/NpW/vMtzOPCZ4RvsHuJMPprqHcXOdUnBgZFEcLbEMUXz0A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@19.1.1':
- resolution: {integrity: sha512-lhyVsuT19Ez4ynhen6dT+Zdq2cABXcphYSkVSASvZGvka/65AS+0D1hX0TFDPJvbTdsHwVszJQZzIqGmYUkhLA==}
+ '@nx/nx-linux-arm64-musl@19.5.6':
+ resolution: {integrity: sha512-n0oIBblMN+nlcBUbrFUkRSyzKZVR+G1lzdZ3PuHVwLC664hkbijEBAdF2E321yRfv5ohQVY0UIYDZVFN2XhFUg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@19.1.1':
- resolution: {integrity: sha512-zUQhMwz/gQ0up1iymwTqXbyLJca87HXOP+uAD5wfgarh0yhPDwcGaVsV8O8t2z8W/dH/yYmuppe3gAwsvd5SSg==}
+ '@nx/nx-linux-x64-gnu@19.5.6':
+ resolution: {integrity: sha512-IuoNo1bDHyJEeHom/n2m4+AA+UQ+Rlryvt9+bTdADclSFjmBLYCgbJwQRy7q9+vQk2mpQm0pQJv4d3XKCpDH+g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@19.1.1':
- resolution: {integrity: sha512-3Gc2iwMbFAp50OlIqfgryTtZno/FqPW+AOP1Pijo/jJOZ8DHP3A7Zy8QoJYUgTQxCffzVbhshXW6yy403pV3OQ==}
+ '@nx/nx-linux-x64-musl@19.5.6':
+ resolution: {integrity: sha512-FXtB8m/CSRkXLtDOAGfImO9OCUDIwYBssnvCVqX6PyPTBaVWo/GvX1O9WRbXSqSVIaJJTPn1aY/p6vptlGbDFw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@19.1.1':
- resolution: {integrity: sha512-91LJG0triTdZDHnT9l1N1YuIwhmR7iCbKsEv345OdPhHJeQ6GAuJCD0SqDk6aZ13xr7LoRlS8c6bnfctXeslQQ==}
+ '@nx/nx-win32-arm64-msvc@19.5.6':
+ resolution: {integrity: sha512-aIDU84rjvxoqyUDIdN4VwS91Yec8bAtXOxjOFlF2acY2tXh0RjzmM+mkEP44nVAzFy0V1/cjzBKb6643FsEqdA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@19.1.1':
- resolution: {integrity: sha512-rEWRqcW1osCeaZ9KPfZWARIdOHGd0WXRW6iqqRvZZEAIbGlZP/89Sj2o9Fvs5oHpng7kfrqsDbpbikmmlX7HTQ==}
+ '@nx/nx-win32-x64-msvc@19.5.6':
+ resolution: {integrity: sha512-zWB/2TjhNYKHbuPh++5hYitno3EpSFXrPND0I0VLec27WW7voRY9XQFFznA3omForU4FfmVhITcKCqzIb3EtpA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -2929,78 +2817,10 @@ packages:
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
- '@opentelemetry/api-logs@0.52.1':
- resolution: {integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==}
- engines: {node: '>=14'}
-
'@opentelemetry/api@1.9.0':
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
- '@opentelemetry/context-async-hooks@1.25.1':
- resolution: {integrity: sha512-UW/ge9zjvAEmRWVapOP0qyCvPulWU6cQxGxDbWEFfGOj1VBBZAuOqTo3X6yWmDTD3Xe15ysCZChHncr2xFMIfQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/core@1.25.1':
- resolution: {integrity: sha512-GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/exporter-zipkin@1.25.1':
- resolution: {integrity: sha512-RmOwSvkimg7ETwJbUOPTMhJm9A9bG1U8s7Zo3ajDh4zM7eYcycQ0dM7FbLD6NXWbI2yj7UY4q8BKinKYBQksyw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': ^1.0.0
-
- '@opentelemetry/instrumentation-grpc@0.52.1':
- resolution: {integrity: sha512-EdSDiDSAO+XRXk/ZN128qQpBo1I51+Uay/LUPcPQhSRGf7fBPIEUBeOLQiItguGsug5MGOYjql2w/1wCQF3fdQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': ^1.3.0
-
- '@opentelemetry/instrumentation@0.52.1':
- resolution: {integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': ^1.3.0
-
- '@opentelemetry/propagator-b3@1.25.1':
- resolution: {integrity: sha512-p6HFscpjrv7//kE+7L+3Vn00VEDUJB0n6ZrjkTYHrJ58QZ8B3ajSJhRbCcY6guQ3PDjTbxWklyvIN2ojVbIb1A==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/propagator-jaeger@1.25.1':
- resolution: {integrity: sha512-nBprRf0+jlgxks78G/xq72PipVK+4or9Ypntw0gVZYNTCSK8rg5SeaGV19tV920CMqBD/9UIOiFr23Li/Q8tiA==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/resources@1.25.1':
- resolution: {integrity: sha512-pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/sdk-trace-base@1.25.1':
- resolution: {integrity: sha512-C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/sdk-trace-node@1.25.1':
- resolution: {integrity: sha512-nMcjFIKxnFqoez4gUmihdBrbpsEnAX/Xj16sGvZm+guceYE0NE00vLhpDVK6f3q8Q4VFI5xG8JjlXKMB/SkTTQ==}
- engines: {node: '>=14'}
- peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
-
- '@opentelemetry/semantic-conventions@1.25.1':
- resolution: {integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==}
- engines: {node: '>=14'}
-
'@paralleldrive/cuid2@2.2.2':
resolution: {integrity: sha512-ZOBkgDwEdoYVlSeRbYYXs0S9MejQofiVYoTbKzy/6GQa39/q5tQU2IX46+shYnUkpEl3wc+J6wRlar7r2EK2xA==}
@@ -3092,20 +2912,20 @@ packages:
resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
engines: {node: '>= 10.0.0'}
- '@peculiar/asn1-android@2.3.10':
- resolution: {integrity: sha512-z9Rx9cFJv7UUablZISe7uksNbFJCq13hO0yEAOoIpAymALTLlvUOSLnGiQS7okPaM5dP42oTLhezH6XDXRXjGw==}
+ '@peculiar/asn1-android@2.3.13':
+ resolution: {integrity: sha512-0VTNazDGKrLS6a3BwTDZanqq6DR/I3SbvmDMuS8Be+OYpvM6x1SRDh9AGDsHVnaCOIztOspCPc6N1m+iUv1Xxw==}
- '@peculiar/asn1-ecc@2.3.8':
- resolution: {integrity: sha512-Ah/Q15y3A/CtxbPibiLM/LKcMbnLTdUdLHUgdpB5f60sSvGkXzxJCu5ezGTFHogZXWNX3KSmYqilCrfdmBc6pQ==}
+ '@peculiar/asn1-ecc@2.3.13':
+ resolution: {integrity: sha512-3dF2pQcrN/WJEMq+9qWLQ0gqtn1G81J4rYqFl6El6QV367b4IuhcRv+yMA84tNNyHOJn9anLXV5radnpPiG3iA==}
- '@peculiar/asn1-rsa@2.3.8':
- resolution: {integrity: sha512-ES/RVEHu8VMYXgrg3gjb1m/XG0KJWnV4qyZZ7mAg7rrF3VTmRbLxO8mk+uy0Hme7geSMebp+Wvi2U6RLLEs12Q==}
+ '@peculiar/asn1-rsa@2.3.13':
+ resolution: {integrity: sha512-wBNQqCyRtmqvXkGkL4DR3WxZhHy8fDiYtOjTeCd7SFE5F6GBeafw3EJ94PX/V0OJJrjQ40SkRY2IZu3ZSyBqcg==}
- '@peculiar/asn1-schema@2.3.8':
- resolution: {integrity: sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==}
+ '@peculiar/asn1-schema@2.3.13':
+ resolution: {integrity: sha512-3Xq3a01WkHRZL8X04Zsfg//mGaA21xlL4tlVn4v2xGT0JStiztATRkMwa5b+f/HXmY2smsiLXYK46Gwgzvfg3g==}
- '@peculiar/asn1-x509@2.3.8':
- resolution: {integrity: sha512-voKxGfDU1c6r9mKiN5ZUsZWh3Dy1BABvTM3cimf0tztNwyMJPhiXY94eRTgsMQe6ViLfT6EoXxkWVzcm3mFAFw==}
+ '@peculiar/asn1-x509@2.3.13':
+ resolution: {integrity: sha512-PfeLQl2skXmxX2/AFFCVaWU8U6FKW1Db43mgBhShCOFS1bVxqtvusq1hVjfuEcuSQGedrLdCSvTgabluwN/M9A==}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
@@ -3118,60 +2938,6 @@ packages:
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
- '@protobufjs/aspromise@1.1.2':
- resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
-
- '@protobufjs/base64@1.1.2':
- resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
-
- '@protobufjs/codegen@2.0.4':
- resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
-
- '@protobufjs/eventemitter@1.1.0':
- resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
-
- '@protobufjs/fetch@1.1.0':
- resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
-
- '@protobufjs/float@1.0.2':
- resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
-
- '@protobufjs/inquire@1.1.0':
- resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
-
- '@protobufjs/path@1.1.2':
- resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
-
- '@protobufjs/pool@1.1.0':
- resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
-
- '@protobufjs/utf8@1.1.0':
- resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
-
- '@pulumi/aws@6.45.0':
- resolution: {integrity: sha512-EhRlYs0Ig53nHRNv3NSgb5TPpJuDmA+N0HCUkPhODUT9n1KTahQnoLbMc+hbvJKPngx6hgye7fagARPO3kWPVw==}
-
- '@pulumi/azuread@5.53.2':
- resolution: {integrity: sha512-qtDIzbJ9OMxNl2swzUNUEn3RI+lk9byatsl7E2AlZ6yIErB4tnseUCU8g8anKmsgLz/CmXx04jOJ5AIzPn6hbA==}
-
- '@pulumi/cloudflare@5.34.0':
- resolution: {integrity: sha512-UheKhkzZZ3x1kbnpAwEZwA5sLp8oDLwoYP7b24ah+HEDhe2jv+4TYzwdJMYrx9mqfbtpfHXp4/cHExntMbT8Wg==}
-
- '@pulumi/pulumi@3.125.0':
- resolution: {integrity: sha512-NrSUA1sEQIu/Qc11laAHzY6yA5GJlYcLyuj7ZYPAHEhUSHwPa6PdhQcZ36xX/RHZlRihLb1vLPyV5ZsQ3VzofQ==}
- engines: {node: '>=18'}
- peerDependencies:
- ts-node: '>= 7.0.1 < 12'
- typescript: '>= 3.8.3 < 6'
- peerDependenciesMeta:
- ts-node:
- optional: true
- typescript:
- optional: true
-
- '@pulumi/query@0.3.0':
- resolution: {integrity: sha512-xfo+yLRM2zVjVEA4p23IjQWzyWl1ZhWOGobsBqRpIarzLvwNH/RAGaoehdxlhx4X92302DrpdIFgTICMN4P38w==}
-
'@radix-ui/colors@1.0.1':
resolution: {integrity: sha512-xySw8f0ZVsAEP+e7iLl3EvcBXX7gsIlC1Zso/sPBW9gIWerBTgz6axrjU+MZ39wD+WFi5h5zdWpsg3+hwt2Qsg==}
@@ -3217,15 +2983,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-compose-refs@1.0.1':
- resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-compose-refs@1.1.0':
resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
peerDependencies:
@@ -3375,15 +3132,6 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.0.2':
- resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
'@radix-ui/react-slot@1.1.0':
resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
peerDependencies:
@@ -3502,158 +3250,161 @@ packages:
'@radix-ui/rect@1.1.0':
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
- '@react-aria/focus@3.17.1':
- resolution: {integrity: sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==}
+ '@react-aria/focus@3.18.1':
+ resolution: {integrity: sha512-N0Cy61WCIv+57mbqC7hiZAsB+3rF5n4JKabxUmg/2RTJL6lq7hJ5N4gx75ymKxkN8GnVDwt4pKZah48Wopa5jw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/interactions@3.21.3':
- resolution: {integrity: sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==}
+ '@react-aria/interactions@3.22.1':
+ resolution: {integrity: sha512-5TLzQaDAQQ5C70yG8GInbO4wIylKY67RfTIIwQPGR/4n5OIjbUD8BOj3NuSsuZ/frUPaBXo1VEBBmSO23fxkjw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/ssr@3.9.4':
- resolution: {integrity: sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==}
+ '@react-aria/ssr@3.9.5':
+ resolution: {integrity: sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==}
engines: {node: '>= 12'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/utils@3.24.1':
- resolution: {integrity: sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==}
+ '@react-aria/utils@3.25.1':
+ resolution: {integrity: sha512-5Uj864e7T5+yj78ZfLnfHqmypLiqW2mN+nsdslog2z5ssunTqjolVeM15ootXskjISlZ7MojLpq97kIC4nlnAw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-email/body@0.0.8':
- resolution: {integrity: sha512-gqdkNYlIaIw0OdpWu8KjIcQSIFvx7t2bZpXVxMMvBS859Ia1+1X3b5RNbjI3S1ZqLddUf7owOHkO4MiXGE+nxg==}
+ '@react-email/body@0.0.9':
+ resolution: {integrity: sha512-bSGF6j+MbfQKYnnN+Kf57lGp/J+ci+435OMIv/BKAtfmNzHL+ptRrsINJELiO8QzwnZmQjTGKSMAMMJiQS+xwQ==}
peerDependencies:
react: ^18.2.0
- '@react-email/button@0.0.15':
- resolution: {integrity: sha512-9Zi6SO3E8PoHYDfcJTecImiHLyitYWmIRs0HE3Ogra60ZzlWP2EXu+AZqwQnhXuq+9pbgwBWNWxB5YPetNPTNA==}
+ '@react-email/button@0.0.16':
+ resolution: {integrity: sha512-paptUerzDhKHEUmBuT0UecCoqo3N6ZQSyDKC1hFALTwKReGW2xQATisinho9Ybh9ZGw6IZ3n1nGtmX5k2sX70Q==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/code-block@0.0.4':
- resolution: {integrity: sha512-xjVLi/9dFNJ70N7hYme+21eQWa3b9/kgp4V+FKQJkQCuIMobxPRCIGM5jKD/0Vo2OqrE5chYv/dkg/aP8a8sPg==}
+ '@react-email/code-block@0.0.6':
+ resolution: {integrity: sha512-i+TEeI7AyG1pmtO2Mr+TblV08zQnOtTlYB/v45kFMlDWWKTkvIV33oLRqLYOFhCIvoO5fDZA9T+4m6PvhmcNwQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/code-inline@0.0.2':
- resolution: {integrity: sha512-0cmgbbibFeOJl0q04K9jJlPDuJ+SEiX/OG6m3Ko7UOkG3TqjRD8Dtvkij6jNDVfUh/zESpqJCP2CxrCLLMUjdA==}
+ '@react-email/code-inline@0.0.3':
+ resolution: {integrity: sha512-SY5Nn4KhjcqqEBHvUwFlOLNmUT78elIGR+Y14eg02LrVKQJ38mFCfXNGDLk4wbP/2dnidkLYq9+60nf7mFMhnQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/column@0.0.10':
- resolution: {integrity: sha512-MnP8Mnwipr0X3XtdD6jMLckb0sI5/IlS6Kl/2F6/rsSWBJy5Gg6nizlekTdkwDmy0kNSe3/1nGU0Zqo98pl63Q==}
+ '@react-email/column@0.0.11':
+ resolution: {integrity: sha512-KvrPuQFn0hlItRRL3vmRuOJgKG+8I0oO9HM5ReLMi5Ns313JSEQogCJaXuOEFkOVeuu5YyY6zy/+5Esccc1AxQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/components@0.0.17':
- resolution: {integrity: sha512-x5gGQaK0QchbwHvUrCBVnE8GCWdO5osTVuTSA54Fwzels6ZDeNTHEYRx9gI3Nwcf/dkoVYkVH4rzWST0SF0MLA==}
+ '@react-email/components@0.0.22':
+ resolution: {integrity: sha512-GO6F+fS3c3aQ6OnqL8esQ/KqtrPGwz80U6uQ8Nd/ETpgFt7y1PXvSGfr8v12wyLffAagdowc/JjoThfIr0L6aA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/container@0.0.12':
- resolution: {integrity: sha512-HFu8Pu5COPFfeZxSL+wKv/TV5uO/sp4zQ0XkRCdnGkj/xoq0lqOHVDL4yC2Pu6fxXF/9C3PHDA++5uEYV5WVJw==}
+ '@react-email/container@0.0.13':
+ resolution: {integrity: sha512-ftke0N1FZl8MX3XXxXiiOaiJOnrQz7ZXUyqNj81K+BK+DePWIVaSmgK6Bu8fFnsgwdKuBdqjZTEtF4sIkU3FuQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/font@0.0.6':
- resolution: {integrity: sha512-sZZFvEZ4U3vNCAZ8wXqIO3DuGJR2qE/8m2fEH+tdqwa532zGO3zW+UlCTg0b9455wkJSzEBeaWik0IkNvjXzxw==}
+ '@react-email/font@0.0.7':
+ resolution: {integrity: sha512-R0/mfUV/XcUQIALjZUFT9GP+XGmIP1KPz20h9rpS5e4ji6VkQ3ENWlisxrdK5U+KA9iZQrlan+/6tUoTJ9bFsg==}
peerDependencies:
react: ^18.2.0
- '@react-email/head@0.0.8':
- resolution: {integrity: sha512-8/NI0gtQmLIilAe6rebK1TWw3IXHxtrR02rInkQq8yQ7zKbYbzx7Q/FhmsJgAk+uYh2Er/KhgYJ0sHZyDhfMTQ==}
+ '@react-email/head@0.0.10':
+ resolution: {integrity: sha512-VoH399w0/i3dJFnwH0Ixf9BTuiWhSA/y8PpsCJ7CPw8Mv8WNBqMAAsw0rmrITYI8uPd15LZ2zk2uwRDvqasMRw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/heading@0.0.12':
- resolution: {integrity: sha512-eB7mpnAvDmwvQLoPuwEiPRH4fPXWe6ltz6Ptbry2BlI88F0a2k11Ghb4+sZHBqg7vVw/MKbqEgtLqr3QJ/KfCQ==}
+ '@react-email/heading@0.0.13':
+ resolution: {integrity: sha512-MYDzjJwljKHBLueLuyqkaHxu6N4aGOL1ms2NNyJ9WXC9mmBnLs4Y/QEf9SjE4Df3AW4iT9uyfVHuaNUb7uq5QA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/hr@0.0.8':
- resolution: {integrity: sha512-JLVvpCg2wYKEB+n/PGCggWG9fRU5e4lxsGdpK5SDLsCL0ic3OLKSpHMfeE+ZSuw0GixAVVQN7F64PVJHQkd4MQ==}
+ '@react-email/hr@0.0.9':
+ resolution: {integrity: sha512-Rte+EZL3ptH3rkVU3a7fh8/06mZ6Q679tDaWDjsw3878RQC9afWqUPp5lwgA/1pTouLmJlDs2BjRnV6H84O7iw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/html@0.0.8':
- resolution: {integrity: sha512-arII3wBNLpeJtwyIJXPaILm5BPKhA+nvdC1F9QkuKcOBJv2zXctn8XzPqyGqDfdplV692ulNJP7XY55YqbKp6w==}
+ '@react-email/html@0.0.9':
+ resolution: {integrity: sha512-NB74xwWaOJZxhpiy6pzkhHvugBa2vvmUa0KKnSwOEIX+WEQH8wj5UUhRN4F+Pmkiqz3QBTETUJiSsNWWFtrHgA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/img@0.0.8':
- resolution: {integrity: sha512-jx/rPuKo31tV18fu7P5rRqelaH5wkhg83Dq7uLwJpfqhbi4KFBGeBfD0Y3PiLPPoh+WvYf+Adv9W2ghNW8nOMQ==}
+ '@react-email/img@0.0.9':
+ resolution: {integrity: sha512-zDlQWmlSANb2dBYhDaKD12Z4xaGD5mEf3peawBYHGxYySzMLwRT2ANGvFqpDNd7iT0C5po+/9EWR8fS1dLy0QQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/link@0.0.8':
- resolution: {integrity: sha512-nVikuTi8WJHa6Baad4VuRUbUCa/7EtZ1Qy73TRejaCHn+vhetc39XGqHzKLNh+Z/JFL8Hv9g+4AgG16o2R0ogQ==}
+ '@react-email/link@0.0.9':
+ resolution: {integrity: sha512-rRqWGPUTGFwwtMCtsdCHNh0ewOsd4UBG/D12UcwJYFKRb0U6hUG/6VJZE3tB1QYZpLIESdvOLL6ztznh+D749g==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/markdown@0.0.10':
- resolution: {integrity: sha512-MH0xO+NJ4IuJcx9nyxbgGKAMXyudFjCZ0A2GQvuWajemW9qy2hgnJ3mW3/z5lwcenG+JPn7JyO/iZpizQ7u1tA==}
+ '@react-email/markdown@0.0.11':
+ resolution: {integrity: sha512-KeDTS0bAvvtgavYAIAmxKpRxWUSr1/jufckDzu9g4QsQtth8wYaSR5wCPXuTPmhFgJMIlNSlOiBnVp+oRbDtKA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/preview@0.0.9':
- resolution: {integrity: sha512-2fyAA/zzZYfYmxfyn3p2YOIU30klyA6Dq4ytyWq4nfzQWWglt5hNDE0cMhObvRtfjM9ghMSVtoELAb0MWiF/kw==}
+ '@react-email/preview@0.0.10':
+ resolution: {integrity: sha512-bRrv8teMMBlF7ttLp1zZUejkPUzrwMQXrigdagtEBOqsB8HxvJU2MR6Yyb3XOqBYldaIDOQJ1z61zyD2wRlKAw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/render@0.0.13':
- resolution: {integrity: sha512-lmBizrV+rQeSa3GjiL8/kPU0gENqO/wv+4xrlWANabp9UY3lTLXzy7HMRSE8YFBES9AbxP5VX1iRKuEnsoBDew==}
+ '@react-email/render@0.0.17':
+ resolution: {integrity: sha512-xBQ+/73+WsGuXKY7r1U73zMBNV28xdV0cp9cFjhNYipBReDHhV97IpA6v7Hl0dDtDzt+yS/72dY5vYXrF1v8NA==}
engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
- '@react-email/row@0.0.8':
- resolution: {integrity: sha512-JsB6pxs/ZyjYpEML3nbwJRGAerjcN/Pa/QG48XUwnT/MioDWrUuyQuefw+CwCrSUZ2P1IDrv2tUD3/E3xzcoKw==}
+ '@react-email/row@0.0.9':
+ resolution: {integrity: sha512-ZDASHVvyKrWBS00o5pSH5khfMf46UtZhrHcSAfPSiC4nj7R8A0bf+3Wmbk8YmsaV+qWXUCUSHWwIAAlMRnJoAA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/section@0.0.12':
- resolution: {integrity: sha512-UCD/N/BeOTN4h3VZBUaFdiSem6HnpuxD1Q51TdBFnqeNqS5hBomp8LWJJ9s4gzwHWk1XPdNfLA3I/fJwulJshg==}
+ '@react-email/section@0.0.13':
+ resolution: {integrity: sha512-McsCQ5NQlNWEMEAR3EtCxHgRhxGmLD+jPvj7A3FD7y2X3fXG0hbmUGX12B63rIywSWjJoQi6tojx/8RpzbyeTA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/tailwind@0.0.16':
- resolution: {integrity: sha512-uMifPxCEHaHLhpS1kVCMGyTeEL+aMYzHT4bgj8CkgCiBoF9wNNfIVMUlHGzHUTv4ZTEPaMfZgC/Hi8RqzL/Ogw==}
+ '@react-email/tailwind@0.0.19':
+ resolution: {integrity: sha512-bA0w4D7mSNowxWhcO0jBJauFIPf2Ok7QuKlrHwCcxyX35L2pb5D6ZmXYOrD9C6ADQuVz5oEX+oed3zpSLROgPg==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-email/text@0.0.8':
- resolution: {integrity: sha512-uvN2TNWMrfC9wv/LLmMLbbEN1GrMWZb9dBK14eYxHHAEHCeyvGb5ePZZ2MPyzO7Y5yTC+vFEnCEr76V+hWMxCQ==}
+ '@react-email/text@0.0.9':
+ resolution: {integrity: sha512-UNFPGerER3zywpb1ODOS2VgHP7rgOmiTxMHn75pjvQf/gi3/jN9edEQLYvRgPv/mNn4IpJFkOrlP8jcammLeew==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^18.2.0
- '@react-stately/utils@3.10.1':
- resolution: {integrity: sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==}
+ '@react-stately/utils@3.10.2':
+ resolution: {integrity: sha512-fh6OTQtbeQC0ywp6LJuuKs6tKIgFvt/DlIZEcIpGho6/oZG229UnIk6TUekwxnDbumuYyan6D9EgUtEMmT8UIg==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-types/shared@3.23.1':
- resolution: {integrity: sha512-5d+3HbFDxGZjhbMBeFHRQhexMFt4pUce3okyRtUVKbbedQFUrtXSBg9VszgF2RTeQDKDkMCIQDtz5ccP/Lk1gw==}
+ '@react-types/shared@3.24.1':
+ resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
'@rollup/plugin-alias@5.1.0':
resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==}
@@ -3731,121 +3482,100 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.18.1':
- resolution: {integrity: sha512-lncuC4aHicncmbORnx+dUaAgzee9cm/PbIqgWz1PpXuwc+sa1Ct83tnqUDy/GFKleLiN7ZIeytM6KJ4cAn1SxA==}
+ '@rollup/rollup-android-arm-eabi@4.20.0':
+ resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.18.1':
- resolution: {integrity: sha512-F/tkdw0WSs4ojqz5Ovrw5r9odqzFjb5LIgHdHZG65dFI1lWTWRVy32KDJLKRISHgJvqUeUhdIvy43fX41znyDg==}
+ '@rollup/rollup-android-arm64@4.20.0':
+ resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.18.1':
- resolution: {integrity: sha512-vk+ma8iC1ebje/ahpxpnrfVQJibTMyHdWpOGZ3JpQ7Mgn/3QNHmPq7YwjZbIE7km73dH5M1e6MRRsnEBW7v5CQ==}
+ '@rollup/rollup-darwin-arm64@4.20.0':
+ resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.18.1':
- resolution: {integrity: sha512-IgpzXKauRe1Tafcej9STjSSuG0Ghu/xGYH+qG6JwsAUxXrnkvNHcq/NL6nz1+jzvWAnQkuAJ4uIwGB48K9OCGA==}
+ '@rollup/rollup-darwin-x64@4.20.0':
+ resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.18.1':
- resolution: {integrity: sha512-P9bSiAUnSSM7EmyRK+e5wgpqai86QOSv8BwvkGjLwYuOpaeomiZWifEos517CwbG+aZl1T4clSE1YqqH2JRs+g==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.20.0':
+ resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.18.1':
- resolution: {integrity: sha512-5RnjpACoxtS+aWOI1dURKno11d7krfpGDEn19jI8BuWmSBbUC4ytIADfROM1FZrFhQPSoP+KEa3NlEScznBTyQ==}
+ '@rollup/rollup-linux-arm-musleabihf@4.20.0':
+ resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.18.1':
- resolution: {integrity: sha512-8mwmGD668m8WaGbthrEYZ9CBmPug2QPGWxhJxh/vCgBjro5o96gL04WLlg5BA233OCWLqERy4YUzX3bJGXaJgQ==}
+ '@rollup/rollup-linux-arm64-gnu@4.20.0':
+ resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.18.1':
- resolution: {integrity: sha512-dJX9u4r4bqInMGOAQoGYdwDP8lQiisWb9et+T84l2WXk41yEej8v2iGKodmdKimT8cTAYt0jFb+UEBxnPkbXEQ==}
+ '@rollup/rollup-linux-arm64-musl@4.20.0':
+ resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.1':
- resolution: {integrity: sha512-V72cXdTl4EI0x6FNmho4D502sy7ed+LuVW6Ym8aI6DRQ9hQZdp5sj0a2usYOlqvFBNKQnLQGwmYnujo2HvjCxQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
+ resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.18.1':
- resolution: {integrity: sha512-f+pJih7sxoKmbjghrM2RkWo2WHUW8UbfxIQiWo5yeCaCM0TveMEuAzKJte4QskBp1TIinpnRcxkquY+4WuY/tg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.20.0':
+ resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.18.1':
- resolution: {integrity: sha512-qb1hMMT3Fr/Qz1OKovCuUM11MUNLUuHeBC2DPPAWUYYUAOFWaxInaTwTQmc7Fl5La7DShTEpmYwgdt2hG+4TEg==}
+ '@rollup/rollup-linux-s390x-gnu@4.20.0':
+ resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.18.1':
- resolution: {integrity: sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==}
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
+ resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.18.1':
- resolution: {integrity: sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==}
+ '@rollup/rollup-linux-x64-musl@4.20.0':
+ resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.18.1':
- resolution: {integrity: sha512-W2ZNI323O/8pJdBGil1oCauuCzmVd9lDmWBBqxYZcOqWD6aWqJtVBQ1dFrF4dYpZPks6F+xCZHfzG5hYlSHZ6g==}
+ '@rollup/rollup-win32-arm64-msvc@4.20.0':
+ resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.18.1':
- resolution: {integrity: sha512-ELfEX1/+eGZYMaCIbK4jqLxO1gyTSOIlZr6pbC4SRYFaSIDVKOnZNMdoZ+ON0mrFDp4+H5MhwNC1H/AhE3zQLg==}
+ '@rollup/rollup-win32-ia32-msvc@4.20.0':
+ resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.18.1':
- resolution: {integrity: sha512-yjk2MAkQmoaPYCSu35RLJ62+dz358nE83VfTePJRp8CG7aMg25mEJYpXFiD+NcevhX8LxD5OP5tktPXnXN7GDw==}
+ '@rollup/rollup-win32-x64-msvc@4.20.0':
+ resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==}
cpu: [x64]
os: [win32]
- '@rushstack/eslint-patch@1.10.3':
- resolution: {integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg==}
+ '@rushstack/eslint-patch@1.10.4':
+ resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
'@selderee/plugin-htmlparser2@0.11.0':
resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
- '@sigstore/bundle@2.3.2':
- resolution: {integrity: sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/core@1.1.0':
- resolution: {integrity: sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/protobuf-specs@0.3.2':
- resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/sign@2.3.2':
- resolution: {integrity: sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/tuf@2.3.4':
- resolution: {integrity: sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@sigstore/verify@1.2.1':
- resolution: {integrity: sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@shikijs/core@1.12.1':
+ resolution: {integrity: sha512-biCz/mnkMktImI6hMfMX3H9kOeqsInxWEyCHbSlL8C/2TR1FqfmGxTLRNwYCKsyCyxWLbB8rEqXRVZuyxuLFmA==}
'@simplewebauthn/browser@10.0.0':
resolution: {integrity: sha512-hG0JMZD+LiLUbpQcAjS4d+t4gbprE/dLYop/CkE01ugU/9sKXflxV5s0DRjdz3uNMFecatRfb4ZLG3XvF8m5zg==}
- '@simplewebauthn/server@10.0.0':
- resolution: {integrity: sha512-w5eIoiF7ltg1sgggjY5Tx654j+DBuyEx2B3869jjmPp0xl2Z4BUP4kJ3yJ6DnZIv+ZYYntT3E6nZXNjPOQbrtw==}
+ '@simplewebauthn/server@10.0.1':
+ resolution: {integrity: sha512-djNWcRn+H+6zvihBFJSpG3fzb0NQS9c/Mw5dYOtZ9H+oDw8qn9Htqxt4cpqRvSOAfwqP7rOvE9rwqVaoGGc3hg==}
engines: {node: '>=20.0.0'}
'@simplewebauthn/types@10.0.0':
@@ -3858,10 +3588,6 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- '@sindresorhus/is@4.6.0':
- resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
- engines: {node: '>=10'}
-
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -4251,9 +3977,6 @@ packages:
peerDependencies:
solid-js: ^1.8.6
- '@solidjs/start@1.0.1':
- resolution: {integrity: sha512-W29OlcJewXUehvDu5Lf+w8hQRiRMdMGaNUwMhnR3neqPxwdZf0LPPPVGyHxZHk4375HdcdBXHuvrOI+xv8Xrcg==}
-
'@solidjs/start@1.0.6':
resolution: {integrity: sha512-O5knaeqDBx+nKLJRm5ZJurnXZtIYBOwOreQ10APaVtVjKIKKRC5HxJ1Kwqg7atOQNNDgsF0pzhW218KseaZ1UA==}
@@ -4263,60 +3986,120 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@swc/core-darwin-arm64@1.7.6':
+ resolution: {integrity: sha512-6lYHey84ZzsdtC7UuPheM4Rm0Inzxm6Sb8U6dmKc4eCx8JL0LfWG4LC5RsdsrTxnjTsbriWlnhZBffh8ijUHIQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@swc/core-darwin-x64@1.3.101':
resolution: {integrity: sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
+ '@swc/core-darwin-x64@1.7.6':
+ resolution: {integrity: sha512-Fyl+8aH9O5rpx4O7r2KnsPpoi32iWoKOYKiipeTbGjQ/E95tNPxbmsz4yqE8Ovldcga60IPJ5OKQA3HWRiuzdw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+
'@swc/core-linux-arm-gnueabihf@1.3.101':
resolution: {integrity: sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
+ '@swc/core-linux-arm-gnueabihf@1.7.6':
+ resolution: {integrity: sha512-2WxYTqFaOx48GKC2cbO1/IntA+w+kfCFy436Ij7qRqqtV/WAvTM9TC1OmiFbqq436rSot52qYmX8fkwdB5UcLQ==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+
'@swc/core-linux-arm64-gnu@1.3.101':
resolution: {integrity: sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
+ '@swc/core-linux-arm64-gnu@1.7.6':
+ resolution: {integrity: sha512-TBEGMSe0LhvPe4S7E68c7VzgT3OMu4VTmBLS7B2aHv4v8uZO92Khpp7L0WqgYU1y5eMjk+XLDLi4kokiNHv/Hg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
'@swc/core-linux-arm64-musl@1.3.101':
resolution: {integrity: sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
+ '@swc/core-linux-arm64-musl@1.7.6':
+ resolution: {integrity: sha512-QI8QGL0HGT42tj7F1A+YAzhGkJjUcvvTfI1e2m704W0Enl2/UIK9v5D1zvQzYwusRyKuaQfbeBRYDh0NcLOGLg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+
'@swc/core-linux-x64-gnu@1.3.101':
resolution: {integrity: sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
+ '@swc/core-linux-x64-gnu@1.7.6':
+ resolution: {integrity: sha512-61AYVzhjuNQAVIKKWOJu3H0/pFD28RYJGxnGg3YMhvRLRyuWNyY5Nyyj2WkKcz/ON+g38Arlz00NT1LDIViRLg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
'@swc/core-linux-x64-musl@1.3.101':
resolution: {integrity: sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
+ '@swc/core-linux-x64-musl@1.7.6':
+ resolution: {integrity: sha512-hQFznpfLK8XajfAAN9Cjs0w/aVmO7iu9VZvInyrTCRcPqxV5O+rvrhRxKvC1LRMZXr5M6JRSRtepp5w+TK4kAw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+
'@swc/core-win32-arm64-msvc@1.3.101':
resolution: {integrity: sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
+ '@swc/core-win32-arm64-msvc@1.7.6':
+ resolution: {integrity: sha512-Aqsd9afykVMuekzjm4X4TDqwxmG4CrzoOSFe0hZrn9SMio72l5eAPnMtYoe5LsIqtjV8MNprLfXaNbjHjTegmA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+
'@swc/core-win32-ia32-msvc@1.3.101':
resolution: {integrity: sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
+ '@swc/core-win32-ia32-msvc@1.7.6':
+ resolution: {integrity: sha512-9h0hYnOeRVNeQgHQTvD1Im67faNSSzBZ7Adtxyu9urNLfBTJilMllFd2QuGHlKW5+uaT6ZH7ZWDb+c/enx7Lcg==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+
'@swc/core-win32-x64-msvc@1.3.101':
resolution: {integrity: sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
+ '@swc/core-win32-x64-msvc@1.7.6':
+ resolution: {integrity: sha512-izeoB8glCSe6IIDQmrVm6bvR9muk9TeKgmtY7b6l1BwL4BFnTUk4dMmpbntT90bEVQn3JPCaPtUG4HfL8VuyuA==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+
'@swc/core@1.3.101':
resolution: {integrity: sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==}
engines: {node: '>=10'}
@@ -4326,6 +4109,15 @@ packages:
'@swc/helpers':
optional: true
+ '@swc/core@1.7.6':
+ resolution: {integrity: sha512-FZxyao9eQks1MRmUshgsZTmlg/HB2oXK5fghkoWJm/1CU2q2kaJlVDll2as5j+rmWiwkp0Gidlq8wlXcEEAO+g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@swc/helpers': '*'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
@@ -4338,15 +4130,11 @@ packages:
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
- '@swc/types@0.1.9':
- resolution: {integrity: sha512-qKnCno++jzcJ4lM4NTfYifm1EFSCeIfKiAHAfkENZAV5Kl9PjJIyd2yeeVv6c/2CckuLyv2NmRC5pv6pm2WQBg==}
-
- '@szmarczak/http-timer@4.0.6':
- resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
- engines: {node: '>=10'}
+ '@swc/types@0.1.12':
+ resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
- '@t3-oss/env-core@0.10.1':
- resolution: {integrity: sha512-GcKZiCfWks5CTxhezn9k5zWX3sMDIYf6Kaxy2Gx9YEQftFcz8hDRN56hcbylyAO3t4jQnQ5ifLawINsNgCDpOg==}
+ '@t3-oss/env-core@0.11.0':
+ resolution: {integrity: sha512-PSalC5bG0a7XbyoLydiQdAnx3gICX6IQNctvh+TyLrdFxsxgocdj9Ui7sd061UlBzi+z4aIGjnem1kZx9QtUgQ==}
peerDependencies:
typescript: '>=5.0.0'
zod: ^3.0.0
@@ -4367,20 +4155,20 @@ packages:
'@tanstack/form-core@0.20.0':
resolution: {integrity: sha512-7iOFXTSTEkTKRk7pu1v7Xa+szGE/v10jExK+Cym3dAHkK6znRTYkDt8cNaEG8TgHgLi9TRhy0jJV3yjnkqa42A==}
- '@tanstack/form-core@0.20.3':
- resolution: {integrity: sha512-oFu1fBSQyDL7fkvXxP2ZPnXWFcac973xghNPfiF8DMUzJ7MBFe4sZHB5HS6l3YGWtMFnqRwW4sFIhHLGKtDVJA==}
+ '@tanstack/form-core@0.27.0':
+ resolution: {integrity: sha512-v8YwMX9kevEERhtmgoWkJi0ihYcpLoImcu4o/Eub/yXBjZFbTnbZkLp/du++CYaVCu5ZsJdqzqL3mQXlk8ymaw==}
- '@tanstack/query-core@5.51.9':
- resolution: {integrity: sha512-HsAwaY5J19MD18ykZDS3aVVh+bAt0i7m6uQlFC2b77DLV9djo+xEN7MWQAQQTR8IM+7r/zbozTQ7P0xr0bHuew==}
+ '@tanstack/query-core@5.51.21':
+ resolution: {integrity: sha512-POQxm42IUp6n89kKWF4IZi18v3fxQWFRolvBA6phNVmA8psdfB1MvDnGacCJdS+EOX12w/CyHM62z//rHmYmvw==}
- '@tanstack/query-devtools@5.51.9':
- resolution: {integrity: sha512-FQqJynaEDuwQxoFLP3/i10HQwNYh4wxgs0NeSoL24BLWvpUdstgHqUm2zgwRov8Tmh5kjndPIWaXenwl0D47EA==}
+ '@tanstack/query-devtools@5.51.16':
+ resolution: {integrity: sha512-ajwuq4WnkNCMj/Hy3KR8d3RtZ6PSKc1dD2vs2T408MdjgKzQ3klVoL6zDgVO7X+5jlb5zfgcO3thh4ojPhfIaw==}
- '@tanstack/query-persist-client-core@5.51.9':
- resolution: {integrity: sha512-yKvDozZLf+XkXM+0ynx+JnSufD1QMFFdCgfIKrSHozZJoCeLnuf3kECi1T3KEZqdaxUWtZnSPcII9eb8pLJ9cQ==}
+ '@tanstack/query-persist-client-core@5.51.21':
+ resolution: {integrity: sha512-W/H3SFIMPjxgiwkrl511pG2JhvKnFWtLCgO+AlNqk9keyClMbm9tb3oLUHveLuzviCaROpmFShW+eSP5zYwk4g==}
- '@tanstack/react-virtual@3.8.3':
- resolution: {integrity: sha512-9ICwbDUUzN99CJIGc373i8NLoj6zFTKI2Hlcmo0+lCSAhPQ5mxq4dGOMKmLYoEFyHcGQ64Bd6ZVbnPpM6lNK5w==}
+ '@tanstack/react-virtual@3.8.4':
+ resolution: {integrity: sha512-Dq0VQr3QlTS2qL35g360QaJWBt7tCn/0xw4uZ0dHXPLO1Ak4Z4nVX4vuj1Npg1b/jqNMDToRtR5OIxM2NXRBWg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4390,20 +4178,20 @@ packages:
peerDependencies:
solid-js: ^1.6.0
- '@tanstack/solid-query-devtools@5.51.9':
- resolution: {integrity: sha512-J4JCcSwZ3wNwkJMnjWqL1n4Bm7aLjsxmyn5/CT2IN+X2MREVIxo7aFWoTI3/5N/clR/Rs3+/gk/u9vgXXm4mIA==}
+ '@tanstack/solid-query-devtools@5.51.21':
+ resolution: {integrity: sha512-CktOzriJVtLZ1RYKwEP4tUS+Ck4N3TSJRbdwz5IzjLWizeVCC3YJ73zS4JLc/3SPpAqJsu13dTwTeVQdzMCq0Q==}
peerDependencies:
- '@tanstack/solid-query': ^5.51.9
+ '@tanstack/solid-query': ^5.51.21
solid-js: ^1.6.0
- '@tanstack/solid-query-persist-client@5.51.9':
- resolution: {integrity: sha512-UwIpk+cGhOfRYSwkLoUWKlSR8Lz9C+H+4+tv6NzXm64jYI/3FnrUfIvOPXTgdPrxRW5vYP7yXaWWHmvbcoXZGA==}
+ '@tanstack/solid-query-persist-client@5.51.21':
+ resolution: {integrity: sha512-i5xo7pvsYeL3+v93rpD2x+Yt7CsngC8Y6w+OvYT33txVysAGsksoU6ywOCo8U1pFnnkbWmaJ41vhGCkYOvuITg==}
peerDependencies:
- '@tanstack/solid-query': ^5.51.9
+ '@tanstack/solid-query': ^5.51.21
solid-js: ^1.6.0
- '@tanstack/solid-query@5.51.9':
- resolution: {integrity: sha512-1HAuqPfrXyXXWZ8ZmgJ7vIP+Px3ri96EAwNyWiHuMcTwgHzlwz+XiopKiQpuXlI009cTBbeituF+pbZYEYNkhA==}
+ '@tanstack/solid-query@5.51.21':
+ resolution: {integrity: sha512-ZwiTMpownN5qwEZE7UB7ccfGkbzSECkZOv/P1+SQ+dKchNtkF9sA0Zz8IVnr6lgqumkCwS8M65ciBdzI0JfTAQ==}
peerDependencies:
solid-js: ^1.6.0
@@ -4412,29 +4200,32 @@ packages:
peerDependencies:
solid-js: ^1.6.0
- '@tanstack/solid-table@8.19.3':
- resolution: {integrity: sha512-lqAwbhjRkK2OACy4depjIWtuW9hR0BKZmm43nUfTpjhf6ftG6d4I9s9C3VNz6JFhNji7NojY2D/BYOi0kkbiKw==}
+ '@tanstack/solid-table@8.20.1':
+ resolution: {integrity: sha512-W5MdWxFL7HHmxXKyl2WnoikAcp91d6nIXUodd0a20TWKj4QiwERhDcx0Y9sSIdchOuybxROyopBkSvFj2iyZLA==}
engines: {node: '>=12'}
peerDependencies:
solid-js: '>=1.3'
- '@tanstack/solid-virtual@3.8.3':
- resolution: {integrity: sha512-tRJbS2IozxDFpkG/CF5hXORWznNDCcEV8H6NbIEzdw/TLYNIsreCLkfJlSq3F6Uj9oE2DoBWPEXpKqihD2RWzQ==}
+ '@tanstack/solid-virtual@3.8.4':
+ resolution: {integrity: sha512-WMwMKWYTsqaJyjc2aXuhgdfGhzkncMQN1pz1EB9P0MuP8z06x8W1WQ1cOMygkg1U0mhlMaj9I4n9tCgkKt/6nw==}
peerDependencies:
solid-js: ^1.3.0
'@tanstack/store@0.3.1':
resolution: {integrity: sha512-A49KN8SpLMWaNmZGPa9K982RQ81W+m7W6iStcQVeKeVS70JZRqkF0fDwKByREPq6qz9/kS0aQFOPQ0W6wIeU5g==}
- '@tanstack/table-core@8.19.3':
- resolution: {integrity: sha512-IqREj9ADoml9zCAouIG/5kCGoyIxPFdqdyoxis9FisXFi5vT+iYfEfLosq4xkU/iDbMcEuAj+X8dWRLvKYDNoQ==}
+ '@tanstack/store@0.5.5':
+ resolution: {integrity: sha512-EOSrgdDAJExbvRZEQ/Xhh9iZchXpMN+ga1Bnk8Nmygzs8TfiE6hbzThF+Pr2G19uHL6+DTDTHhJ8VQiOd7l4tA==}
+
+ '@tanstack/table-core@8.20.1':
+ resolution: {integrity: sha512-5Ly5TIRHnWH7vSDell9B/OVyV380qqIJVg7H7R7jU4fPEmOD4smqAX7VRflpYI09srWR8aj5OLD2Ccs1pI5mTg==}
engines: {node: '>=12'}
- '@tanstack/virtual-core@3.8.3':
- resolution: {integrity: sha512-vd2A2TnM5lbnWZnHi9B+L2gPtkSeOtJOAw358JqokIH1+v2J7vUAzFVPwB/wrye12RFOurffXu33plm4uQ+JBQ==}
+ '@tanstack/virtual-core@3.8.4':
+ resolution: {integrity: sha512-iO5Ujgw3O1yIxWDe9FgUPNkGjyT657b1WNX52u+Wv1DyBFEpdCdGkuVaky0M3hHFqNWjAmHWTn4wgj9rTr7ZQg==}
- '@tanstack/zod-form-adapter@0.20.3':
- resolution: {integrity: sha512-ghsytT4isgelVER6Qdty6ZVdD8SZfT8TuhNHrbC2snVrqQxrSdqQFr5JPvVMycs06y5l3OLspW97HkIO3d7lBw==}
+ '@tanstack/zod-form-adapter@0.27.0':
+ resolution: {integrity: sha512-xKNJkRGc+BXjup6uPZOocxo6hOr8ZmqKAKzncIlaGXnJlLIyFaaoBMLK8+Zwz+j+tO7vzECxaP+dQMCtssct1g==}
peerDependencies:
zod: ^3.x
@@ -4449,17 +4240,12 @@ packages:
'@tsconfig/node20@20.1.4':
resolution: {integrity: sha512-sqgsT69YFeLWf5NtJ4Xq/xAF8p4ZQHlmGW74Nu2tD4+g5fAsposc4ZfaaPixVu4y01BEiDCWLRDCvDM5JOsRxg==}
- '@tufjs/canonical-json@2.0.0':
- resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- '@tufjs/models@2.0.1':
- resolution: {integrity: sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
'@tybys/wasm-util@0.8.3':
resolution: {integrity: sha512-Z96T/L6dUFFxgFJ+pQtkPpne9q7i6kIPYCFnQBHSgSPV9idTsKfIhCss0h5iM9irweZCatkrdeP8yi5uM1eX6Q==}
+ '@tybys/wasm-util@0.9.0':
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -4478,9 +4264,6 @@ packages:
'@types/braces@3.0.4':
resolution: {integrity: sha512-0WR3b8eaISjEW7RpZnclONaLFDf7buaowRHdqLp4vLj54AsSAYWfh3DRbfiYJY9XDxMgx1B4sE1Afw2PGpuHOA==}
- '@types/cacheable-request@6.0.3':
- resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
-
'@types/cookie@0.4.1':
resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
@@ -4493,8 +4276,8 @@ packages:
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@8.56.10':
- resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+ '@types/eslint@9.6.0':
+ resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
@@ -4502,15 +4285,9 @@ packages:
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/google-protobuf@3.15.12':
- resolution: {integrity: sha512-40um9QqwHjRS92qnOaDpL7RmDK15NuZYo9HihiJRbYkMQZlWnuH8AdvbMy8/o6lgLmKbDUKa+OALCltHdbOTpQ==}
-
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
- '@types/http-cache-semantics@4.0.4':
- resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
-
'@types/http-proxy@1.17.14':
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
@@ -4520,9 +4297,6 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/keyv@3.1.4':
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
-
'@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
@@ -4538,8 +4312,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.14.11':
- resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==}
+ '@types/node@22.1.0':
+ resolution: {integrity: sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==}
'@types/plist@3.0.5':
resolution: {integrity: sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==}
@@ -4556,8 +4330,8 @@ packages:
'@types/react-dom@18.3.0':
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
- '@types/react-highlight-words@0.16.7':
- resolution: {integrity: sha512-+upXTIaRd3rGvh1aDQSs9z5X+sV3UM6Jrmjk03GN2GXl4v/+iOJKQj2LZHo6Vp2IoTvMdtxgME26feqo12xXLg==}
+ '@types/react-highlight-words@0.20.0':
+ resolution: {integrity: sha512-Qm512TiOakvtNzHJ2+TNVHnLn5cJ2wLQV0+LrhuispVth6dRf5b8ydjq3Kc0thpZ7bz4s6RnG6meboAXHWRK+Q==}
'@types/react@18.2.47':
resolution: {integrity: sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==}
@@ -4568,21 +4342,9 @@ packages:
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- '@types/responselike@1.0.3':
- resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
-
'@types/scheduler@0.23.0':
resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
-
- '@types/shimmer@1.2.0':
- resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==}
-
- '@types/tmp@0.2.6':
- resolution: {integrity: sha512-chhaNf2oKHlRkDGt+tiKE2Z5aJ6qalm7Z9rlLdBwmOiAAf09YQvvoLXjWK4HWPF1xU/fqvMgfNfpVoBscA/tKA==}
-
'@types/unist@2.0.10':
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
@@ -4635,31 +4397,16 @@ packages:
resolution: {integrity: sha512-WSN1z931BtasZJlgPp704zJFnQFRg7yzSjkm3MzAWQYe4uXFXlFr1hc5Ac2zae5/HDOz5x1/zDM5Cb54vTCnWw==}
hasBin: true
- '@vinxi/plugin-directives@0.3.1':
- resolution: {integrity: sha512-4qz5WifjmJ864VS8Ik9nUG0wAkt/xIcxFpP29RXogGLgccRnceBpWQi+ghw5rm0F6LP/YMAhhO5iFORXclWd0Q==}
- peerDependencies:
- vinxi: 0.4.1
-
'@vinxi/plugin-directives@0.4.1':
resolution: {integrity: sha512-NsHCDyqU00i4RKGBoNNcBuONEirg/XfGgPCLFK1CZw3AYBE19haFSgvuo21Bx+BFGcwdRU3BRtaBMvwjLrUCnw==}
peerDependencies:
vinxi: 0.4.1
- '@vinxi/server-components@0.3.3':
- resolution: {integrity: sha512-xaW92nj9HUMLyswPcCmsIXOsS3TJll0m9u3WEjWjLrtZWheHggina6+kTCSeltp/Qe8WlUfNU5G02Xy8L4xQxA==}
- peerDependencies:
- vinxi: 0.4.1
-
'@vinxi/server-components@0.4.1':
resolution: {integrity: sha512-rMS+RCGr1tujO1xWgILMLpOWIyw2OwDO46EtkuhTfqaVgLLt/w7+hxzOnh4s3O9sXoKKuUswtj9/MpQQkFoMOQ==}
peerDependencies:
vinxi: 0.4.1
- '@vinxi/server-functions@0.3.3':
- resolution: {integrity: sha512-yUrHov1gc+NM/YCEOekM1DCdu2tNSH1/j0mZPyIOhPZH/yAZKWA+t3dP79Q3g4QLDHchf6xf8z9u1INEADTlXw==}
- peerDependencies:
- vinxi: 0.4.1
-
'@vinxi/server-functions@0.4.1':
resolution: {integrity: sha512-dj5v9V+DurXK8w/nBDgJof+UsK3bkcgk6K/xBUg+WVmn7sUrLTurDTGRkCaknC6tQCyadNzj4FWGGc+qlrWf9g==}
peerDependencies:
@@ -4778,14 +4525,6 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.1:
- resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
- engines: {node: '>= 14'}
-
- aggregate-error@3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
-
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
@@ -4794,8 +4533,8 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- algoliasearch@4.23.3:
- resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==}
+ algoliasearch@4.24.0:
+ resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
@@ -4812,9 +4551,6 @@ packages:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- ansi-sequence-parser@1.1.1:
- resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
-
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -4898,9 +4634,6 @@ packages:
resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
- array.prototype.toreversed@1.1.2:
- resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
-
array.prototype.tosorted@1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
@@ -4943,8 +4676,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- autoprefixer@10.4.19:
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -4961,12 +4694,12 @@ packages:
aws4fetch@1.0.19:
resolution: {integrity: sha512-N+F8pZ9hVjckkHODDyalITRNxBJxAGX5ShkVoAgHwqERXsW8Iu5ziFx3SCjGlxx/YStWBTZx4HI/GCMvTBu5kQ==}
- axe-core@4.9.1:
- resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
+ axe-core@4.10.0:
+ resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
engines: {node: '>=4'}
- axios@1.7.2:
- resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==}
+ axios@1.7.3:
+ resolution: {integrity: sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==}
axobject-query@3.1.1:
resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
@@ -4974,13 +4707,13 @@ packages:
b4a@1.6.6:
resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
- babel-plugin-jsx-dom-expressions@0.37.23:
- resolution: {integrity: sha512-Y/r8LyLi/njnwPTaDuPEReWk30FJ1KplloYvcFUhHmiH1F7yVVj5mWojD7mbO/IruKyvOs9OIPUoeMi3Z++J4w==}
+ babel-plugin-jsx-dom-expressions@0.38.1:
+ resolution: {integrity: sha512-4FD4H69Cu4jHx2uLDEvx4YC5T/fC/Dmaafhsm8hXm7SjHYzjr09gBVyHdoFza+91f/g9e6tIzjbLCMkOXwmlew==}
peerDependencies:
'@babel/core': ^7.20.12
- babel-preset-solid@1.8.18:
- resolution: {integrity: sha512-ky0FA4cCS9dk+xYBBItHoxtbRnaDIOGpmHLFqKPaR81hpMbJBOiLOZia2hT0JBwx4zn/D2OjMRvRr6kqtRMoUw==}
+ babel-preset-solid@1.8.19:
+ resolution: {integrity: sha512-F3MoUdx3i4znhStnXUBno+5kGSbvhpbGrPgqfRPrS8W7foVJUOSd1/F9QDyd9dgClHfr+J7V14931eu1PEDDMQ==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -5011,10 +4744,6 @@ packages:
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- bin-links@4.0.4:
- resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -5052,8 +4781,8 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.23.3:
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5070,10 +4799,6 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- builtin-modules@3.0.0:
- resolution: {integrity: sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg==}
- engines: {node: '>=6'}
-
builtin-modules@3.3.0:
resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
engines: {node: '>=6'}
@@ -5094,18 +4819,6 @@ packages:
magicast:
optional: true
- cacache@18.0.4:
- resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- cacheable-lookup@5.0.4:
- resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
- engines: {node: '>=10.6.0'}
-
- cacheable-request@7.0.4:
- resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
- engines: {node: '>=8'}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -5128,8 +4841,8 @@ packages:
resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
engines: {node: '>=14.16'}
- caniuse-lite@1.0.30001642:
- resolution: {integrity: sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==}
+ caniuse-lite@1.0.30001649:
+ resolution: {integrity: sha512-fJegqZZ0ZX8HOWr6rcafGr72+xcgJKI9oWfDW5DrD7ExUtgZC7a7R7ZYmZqplh7XDocFdGeIFn7roAxhOeYrPQ==}
capnp-ts@0.7.0:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
@@ -5184,9 +4897,6 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cjs-module-lexer@1.3.1:
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
-
class-variance-authority@0.7.0:
resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
@@ -5194,18 +4904,10 @@ packages:
resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
engines: {node: '>= 10.0'}
- clean-stack@2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
-
cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
- cli-color@2.0.4:
- resolution: {integrity: sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA==}
- engines: {node: '>=0.10'}
-
cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
@@ -5229,9 +4931,6 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
- clone-response@1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
-
clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
@@ -5256,12 +4955,8 @@ packages:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
- cmd-shim@6.0.3:
- resolution: {integrity: sha512-FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- cmdk-solid@1.0.1:
- resolution: {integrity: sha512-0BiQaIc4OUTssu5+q/7FwV+fN9EEWPt9Mc0LQYGSB6b+g26br8evCzgIEA0skjVmmlhSWdsEjFAo2/gbCGAc8Q==}
+ cmdk-solid@1.1.0:
+ resolution: {integrity: sha512-R8MRAWE2o8qnu0D8DOqGKoB1TMGI97mfSrH9CtgUQzcvZ+4jY2fvF6cxJS2N/iSwwl6LQeB/AYXh8GAGCPbkDQ==}
peerDependencies:
solid-js: ^1.8.0
@@ -5324,13 +5019,6 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- commander@9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
-
- common-ancestor-path@1.0.1:
- resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
-
commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
@@ -5364,8 +5052,8 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.2.1:
- resolution: {integrity: sha512-ilTPDuxhZX44BSzzRB58gvSY2UevZKQM9fjisn7Z+NJ92CtSU6kO1+22ZN/agbEJANFjK85EiJJbi/gQv18OXA==}
+ cookie-es@1.2.2:
+ resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
@@ -5395,8 +5083,8 @@ packages:
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
engines: {node: '>= 14'}
- croner@8.1.0:
- resolution: {integrity: sha512-sz990XOUPR8dG/r5BRKMBd15MYDDUu8oeSaxFD5DqvNgHSZw8Psd1s689/IGET7ezxRMiNlCIyGeY1Gvxp/MLg==}
+ croner@8.1.1:
+ resolution: {integrity: sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==}
engines: {node: '>=18.0'}
cross-fetch@4.0.0:
@@ -5429,10 +5117,6 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- d@1.0.2:
- resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
- engines: {node: '>=0.12'}
-
damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
@@ -5491,8 +5175,8 @@ packages:
supports-color:
optional: true
- debug@4.3.5:
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ debug@4.3.6:
+ resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -5503,10 +5187,6 @@ packages:
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
- decompress-response@6.0.0:
- resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
- engines: {node: '>=10'}
-
deep-equal@2.2.3:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
@@ -5529,10 +5209,6 @@ packages:
defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
- defer-to-connect@2.0.1:
- resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
- engines: {node: '>=10'}
-
define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
@@ -5603,9 +5279,6 @@ packages:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- difflib@0.2.4:
- resolution: {integrity: sha512-9YVwmMb0wQHQNr5J9m6BSj6fk4pfGITGQOOs+D9Fl+INODWFOfvhIU1hNv6GgR1RBoC/9NJcwu77zShxV0kT7w==}
-
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -5647,8 +5320,8 @@ packages:
resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==}
engines: {node: '>=16'}
- dotenv-expand@10.0.0:
- resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==}
+ dotenv-expand@11.0.6:
+ resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==}
engines: {node: '>=12'}
dotenv-expand@8.0.3:
@@ -5659,20 +5332,12 @@ packages:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
- dotenv@16.3.2:
- resolution: {integrity: sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==}
- engines: {node: '>=12'}
-
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
- dreamopt@0.8.0:
- resolution: {integrity: sha512-vyJTp8+mC+G+5dfgsY+r3ckxlz+QMX40VjPQsZc5gxVAxLmi64TBoVkP54A/pRAXMXsbu2GMMBrZPxNv23waMg==}
- engines: {node: '>=0.4.0'}
-
- drizzle-kit@0.21.4:
- resolution: {integrity: sha512-Nxcc1ONJLRgbhmR+azxjNF9Ly9privNLEIgW53c92whb4xp8jZLH1kMCh/54ci1mTMuYxPdOukqLwJ8wRudNwA==}
+ drizzle-kit@0.23.2:
+ resolution: {integrity: sha512-NWkQ7GD2OTbQ7HzcjsaCOf3n0tlFPSEAF38fvDpwDj8jRbGWGFtN2cD8I8wp4lU+5Os/oyP2xycTKGLHdPipUw==}
hasBin: true
drizzle-orm@0.30.10:
@@ -5774,8 +5439,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.4.832:
- resolution: {integrity: sha512-cTen3SB0H2SGU7x467NRe1eVcQgcuS6jckKfWJHia2eo0cHIGOqHoAxevIYZD4eRHcWjkvFzo93bi3vJ9W+1lA==}
+ electron-to-chromium@1.5.5:
+ resolution: {integrity: sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -5808,8 +5473,8 @@ packages:
resolution: {integrity: sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==}
engines: {node: '>=10.2.0'}
- enhanced-resolve@5.17.0:
- resolution: {integrity: sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
enquirer@2.3.6:
@@ -5823,17 +5488,6 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- env-paths@2.2.1:
- resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
- engines: {node: '>=6'}
-
- env-paths@3.0.0:
- resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- err-code@2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
-
error-stack-parser-es@0.1.5:
resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
@@ -5877,24 +5531,10 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es5-ext@0.10.64:
- resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
- engines: {node: '>=0.10'}
-
- es6-iterator@2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
-
- es6-symbol@3.1.4:
- resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
- engines: {node: '>=0.12'}
-
- es6-weak-map@2.0.3:
- resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
-
- esbuild-register@3.5.0:
- resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==}
- peerDependencies:
- esbuild: '>=0.12 <1'
+ esbuild-register@3.6.0:
+ resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
+ peerDependencies:
+ esbuild: '>=0.12 <1'
esbuild@0.17.19:
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
@@ -6018,11 +5658,11 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.34.4:
- resolution: {integrity: sha512-Np+jo9bUwJNxCsT12pXtrGhJgT3T44T1sHhn1Ssr42XFn8TES0267wPGo5nNrMHi8qkyimDAX2BUmkf9pSaVzA==}
+ eslint-plugin-react@7.35.0:
+ resolution: {integrity: sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==}
engines: {node: '>=4'}
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
eslint-plugin-turbo@1.10.12:
resolution: {integrity: sha512-uNbdj+ohZaYo4tFJ6dStRXu2FZigwulR1b3URPXe0Q8YaE7thuekKNP+54CHtZPH9Zey9dmDx5btAQl9mfzGOw==}
@@ -6045,15 +5685,11 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.7.0:
- resolution: {integrity: sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==}
+ eslint@9.8.0:
+ resolution: {integrity: sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
- esniff@2.0.1:
- resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
- engines: {node: '>=0.10'}
-
espree@10.1.0:
resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -6114,9 +5750,6 @@ packages:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- event-emitter@0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
-
event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
@@ -6144,15 +5777,12 @@ packages:
resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
engines: {node: '>=6'}
- exponential-backoff@3.1.1:
- resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
-
- ext@1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
-
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ fast-deep-equal@2.0.1:
+ resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -6176,14 +5806,6 @@ packages:
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
- fdir@6.1.1:
- resolution: {integrity: sha512-QfKBVg453Dyn3mr0Q0O+Tkr1r79lOTAKSi9f/Ot4+qVEwxWhav2Z+SudrG9vQjM2aYRMQQZ2/Q1zdA8ACM1pDg==}
- peerDependencies:
- picomatch: 3.x
- peerDependenciesMeta:
- picomatch:
- optional: true
-
figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
@@ -6206,10 +5828,6 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- find-up@6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -6258,8 +5876,8 @@ packages:
react-dom:
optional: true
- framer-motion@11.3.8:
- resolution: {integrity: sha512-1D+RDTsIp4Rz2dq/oToqSEc9idEQwgBRQyBq4rGpFba+0Z+GCbj9z1s0+ikFbanWe3YJ0SqkNlDe08GcpFGj5A==}
+ framer-motion@11.3.21:
+ resolution: {integrity: sha512-D+hfIsvzV8eL/iycld4K+tKlg2Q2LdwnrcBEohtGw3cG1AIuNYATbT5RUqIM1ndsAk+EfGhoSGf0UaiFodc5Tw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0
@@ -6276,6 +5894,9 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
+ front-matter@4.0.2:
+ resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
+
fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
@@ -6291,10 +5912,6 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- fs-minipass@3.0.3:
- resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
fs-monkey@1.0.6:
resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==}
@@ -6346,10 +5963,6 @@ packages:
get-source@2.0.12:
resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==}
- get-stream@5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
-
get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -6426,16 +6039,9 @@ packages:
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- google-protobuf@3.21.4:
- resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
-
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
- got@11.8.6:
- resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
- engines: {node: '>=10.19.0'}
-
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -6449,9 +6055,6 @@ packages:
h3@1.12.0:
resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
- hanji@0.0.5:
- resolution: {integrity: sha512-Abxw1Lq+TnYiL4BueXqMau222fPSPMFtya8HdpWsz/xVAhifXou71mPh/kY2+08RgFcVccjG3uZHs6K5HAe3zw==}
-
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
@@ -6498,23 +6101,16 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- heap@0.2.7:
- resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==}
-
highlight-words-core@1.2.2:
resolution: {integrity: sha512-BXUKIkUuh6cmmxzi5OIbUJxrG8OAk2MqoL1DtO3Wo9D2faJg2ph5ntyuQeLqaHJmzER6H5tllCDA9ZnNe9BVGg==}
- hono@4.5.0:
- resolution: {integrity: sha512-ZbezypZfn4odyApjCCv+Fw5OgweBqRLA/EsMyc4FUknFvBJcBIKhHy4sqmD1rWpBc/3wUlaQ6tqOPjk36R1ckg==}
+ hono@4.5.4:
+ resolution: {integrity: sha512-k2IguJfRgNCpDbAfpxk+o+fZBLFHl4+eIZUpjc1ItZWHeZ37SmT3efA1UpkIaC0hSf1NJg0E79/wWn6g9LQ4Cw==}
engines: {node: '>=16.0.0'}
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hosted-git-info@7.0.2:
- resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
@@ -6533,17 +6129,10 @@ packages:
htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
- http-cache-semantics@4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
-
http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-proxy-agent@7.0.2:
- resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
- engines: {node: '>= 14'}
-
http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
@@ -6552,18 +6141,10 @@ packages:
resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- http2-wrapper@1.0.3:
- resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
- engines: {node: '>=10.19.0'}
-
https-proxy-agent@5.0.1:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
- https-proxy-agent@7.0.5:
- resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
- engines: {node: '>= 14'}
-
httpxy@0.1.5:
resolution: {integrity: sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==}
@@ -6579,8 +6160,8 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
- husky@9.1.1:
- resolution: {integrity: sha512-fCqlqLXcBnXa/TJXmT93/A36tJsjdJkibQ1MuIiFyCCYUlpYpIaj2mv1w+3KR6Rzu1IC3slFTje5f6DUp2A2rg==}
+ husky@9.1.4:
+ resolution: {integrity: sha512-bho94YyReb4JV7LYWRWxZ/xr6TtOTt8cMfmQ39MQYJ7f/YE268s3GdghGwi+y4zAeqewE5zYLvuhV0M0ijsDEA==}
engines: {node: '>=18'}
hasBin: true
@@ -6594,10 +6175,6 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@6.0.5:
- resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
ignore@5.3.1:
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
@@ -6606,17 +6183,10 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-in-the-middle@1.9.1:
- resolution: {integrity: sha512-E+3tEOutU1MV0mxhuCwfSPNNWRkbTJ3/YyL5be+blNIbHwZc53uYHQfuIhAU77xWR0BoF2eT7cqDJ6VlU5APPg==}
-
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- indent-string@4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
-
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
@@ -6627,14 +6197,6 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
-
- ini@4.1.3:
- resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
@@ -6652,10 +6214,6 @@ packages:
resolution: {integrity: sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==}
engines: {node: '>=12.22.0'}
- ip-address@9.0.5:
- resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
- engines: {node: '>= 12'}
-
ipaddr.js@2.2.0:
resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
@@ -6759,9 +6317,6 @@ packages:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- is-lambda@1.0.1:
- resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
-
is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
@@ -6793,9 +6348,6 @@ packages:
resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
engines: {node: '>=0.10.0'}
- is-promise@2.2.2:
- resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
-
is-property@1.0.2:
resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==}
@@ -6944,9 +6496,6 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jsbn@1.1.0:
- resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
-
jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
@@ -6955,26 +6504,15 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- json-diff@0.9.0:
- resolution: {integrity: sha512-cVnggDrVkAAA3OvFfHpFEhOnmcsUpleEKq4d4O8sQWWSH40MBrWstKigVB1kGrgLWzuom+7rRdaCsnBD6VyObQ==}
- hasBin: true
-
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.2:
- resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- json-stringify-nice@1.1.4:
- resolution: {integrity: sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==}
-
json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
@@ -6987,26 +6525,13 @@ packages:
jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- jsonc-parser@3.3.1:
- resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
-
jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
- jsonparse@1.3.1:
- resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
- engines: {'0': node >= 0.2.0}
-
jsx-ast-utils@3.3.5:
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
engines: {node: '>=4.0'}
- just-diff-apply@5.5.0:
- resolution: {integrity: sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==}
-
- just-diff@6.0.2:
- resolution: {integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==}
-
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -7073,13 +6598,6 @@ packages:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- locate-path@7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- lodash.camelcase@4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
-
lodash.castarray@4.4.0:
resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
@@ -7095,9 +6613,6 @@ packages:
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- lodash.throttle@4.1.1:
- resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
-
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -7118,10 +6633,6 @@ packages:
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
- lowercase-keys@2.0.0:
- resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
- engines: {node: '>=8'}
-
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
@@ -7140,17 +6651,14 @@ packages:
resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==}
engines: {node: '>=16.14'}
- lru-queue@0.1.0:
- resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
-
lucia@3.2.0:
resolution: {integrity: sha512-eXMxXwk6hqtjRTj4W/x3EnTUtAztLPm0p2N2TEBMDEbakDLXiYnDQ9z/qahjPdPdhPguQc+vwO0/88zIWxlpuw==}
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
magicast@0.2.11:
resolution: {integrity: sha512-6saXbRDA1HMkqbsvHOU6HBjCVgZT460qheRkLhJQHWAbhXoWESI3Kn/dGGXyKs15FFKR85jsUqFx2sMK0wy/5g==}
@@ -7159,10 +6667,6 @@ packages:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
- make-fetch-happen@13.0.1:
- resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
markdown-extensions@2.0.0:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
@@ -7241,10 +6745,6 @@ packages:
memoize-one@4.0.3:
resolution: {integrity: sha512-QmpUu4KqDmX0plH4u+tf0riMc1KHE1+lw95cMrLlXQAFOx/xnBtwhZ52XJxd9X2O6kwKBqX32kmhbhlobD0cuw==}
- memoizee@0.4.17:
- resolution: {integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==}
- engines: {node: '>=0.12'}
-
merge-anything@5.1.7:
resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==}
engines: {node: '>=12.13'}
@@ -7378,11 +6878,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- mime@2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
-
mime@3.0.0:
resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
engines: {node: '>=10.0.0'}
@@ -7401,20 +6896,12 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- mimic-response@1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
-
- mimic-response@3.1.0:
- resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
- engines: {node: '>=10'}
-
mini-svg-data-uri@1.4.4:
resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==}
hasBin: true
- miniflare@3.20240718.0:
- resolution: {integrity: sha512-TKgSeyqPBeT8TBLxbDJOKPWlq/wydoJRHjAyDdgxbw59N6wbP8JucK6AU1vXCfu21eKhrEin77ssXOpbfekzPA==}
+ miniflare@3.20240725.0:
+ resolution: {integrity: sha512-n9NTLI8J9Xt0Cls6dRpqoIPkVFnxD9gMnU/qDkDX9diKfN16HyxpAdA5mto/hKuRpjW19TxnTMcxBo90vZXemw==}
engines: {node: '>=16.13'}
hasBin: true
@@ -7440,26 +6927,6 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@2.0.1:
- resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minipass-fetch@3.0.5:
- resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- minipass-flush@1.0.5:
- resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
- engines: {node: '>= 8'}
-
- minipass-pipeline@1.2.4:
- resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
- engines: {node: '>=8'}
-
- minipass-sized@1.0.3:
- resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
- engines: {node: '>=8'}
-
minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
@@ -7484,9 +6951,6 @@ packages:
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
- module-details-from-path@1.0.3:
- resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==}
-
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
@@ -7508,8 +6972,8 @@ packages:
resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
hasBin: true
- mysql2@3.10.3:
- resolution: {integrity: sha512-k43gmH9i79rZD4hGPdj7pDuT0UBiFjs4UzXEy1cJrV0QqcSABomoLwvejqdbcXN+Vd7gi999CVM6o9vCPKq29g==}
+ mysql2@3.11.0:
+ resolution: {integrity: sha512-J9phbsXGvTOcRVPR95YedzVSxJecpW5A5+cQ57rhHIFXteTP10HCs+VBjS7DHIKfEaI1zQ5tlVrquCd64A6YvA==}
engines: {node: '>= 8.0'}
mz@2.7.0:
@@ -7540,9 +7004,6 @@ packages:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
- next-tick@1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
-
next@14.1.4:
resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==}
engines: {node: '>=18.17.0'}
@@ -7612,19 +7073,14 @@ packages:
resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
hasBin: true
- node-gyp@10.2.0:
- resolution: {integrity: sha512-sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==}
- engines: {node: ^16.14.0 || >=18.0.0}
- hasBin: true
-
node-html-parser@5.4.2:
resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==}
node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
- node-releases@2.0.17:
- resolution: {integrity: sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@5.0.0:
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
@@ -7636,10 +7092,6 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
hasBin: true
- normalize-package-data@6.0.2:
- resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -7648,38 +7100,6 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- normalize-url@6.1.0:
- resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
- engines: {node: '>=10'}
-
- npm-bundled@3.0.1:
- resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-install-checks@6.3.0:
- resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-normalize-package-bin@3.0.1:
- resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-package-arg@11.0.2:
- resolution: {integrity: sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- npm-packlist@8.0.2:
- resolution: {integrity: sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-pick-manifest@9.1.0:
- resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- npm-registry-fetch@17.1.0:
- resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -7695,8 +7115,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nx@19.1.1:
- resolution: {integrity: sha512-9NPKoAQ+I3KcoFDThAVu7YznE9fKbV/AiE5dAXPbWfye9HjRdnhLQmXN122ADlq4pA5wkXwxvAxRLw2WA7Kkgw==}
+ nx@19.5.6:
+ resolution: {integrity: sha512-qjP17aa5ViXSpo0bDgJ7O3b8EY/0+PbX7ZIKvG1g6qasohtfM1y4Sx2bbSow0zCKU0+r1LnR53Q0lyX4OOgtUg==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -7814,38 +7234,17 @@ packages:
oslo@1.2.1:
resolution: {integrity: sha512-HfIhB5ruTdQv0XX2XlncWQiJ5SIHZ7NHZhVyHth0CSZ/xzge00etRyYy/3wp/Dsu+PkxMC+6+B2lS/GcKoewkA==}
- p-cancelable@2.1.1:
- resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
- engines: {node: '>=8'}
-
p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- p-limit@4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- p-locate@6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
package-json-from-dist@1.0.0:
resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
- pacote@18.0.6:
- resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==}
- engines: {node: ^16.14.0 || >=18.0.0}
- hasBin: true
-
param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
@@ -7853,10 +7252,6 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- parse-conflict-json@3.0.1:
- resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
parse-entities@4.0.1:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
@@ -7874,10 +7269,6 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -7964,10 +7355,6 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- picomatch@3.0.1:
- resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
- engines: {node: '>=10'}
-
pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
@@ -7976,10 +7363,6 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- pkg-dir@7.0.0:
- resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
- engines: {node: '>=14.16'}
-
pkg-types@1.1.3:
resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
@@ -8044,8 +7427,8 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.39:
- resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==}
+ postcss@8.4.41:
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
engines: {node: ^10 || ^12 || >=14}
postgres-array@2.0.0:
@@ -8072,8 +7455,8 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier-plugin-tailwindcss@0.5.14:
- resolution: {integrity: sha512-Puaz+wPUAhFp8Lo9HuciYKM2Y2XExESjeT+9NQoVFXZsPPnc9VYss2SpxdQ6vbatmt8/4+SN0oe0I1cPDABg9Q==}
+ prettier-plugin-tailwindcss@0.6.5:
+ resolution: {integrity: sha512-axfeOArc/RiGHjOIy9HytehlC0ZLeMaqY09mm8YCkMzznKiDkwFzOpBvtuhuv3xG5qB73+Mj7OCe2j/L1ryfuQ==}
engines: {node: '>=14.21.3'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
@@ -8140,8 +7523,8 @@ packages:
printable-characters@1.0.42:
resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==}
- prism-code-editor@3.3.3:
- resolution: {integrity: sha512-HA7DNcy+B1OcT2/00vQqpLgtUssCR4POgWfnVm0qPmC6BAOtRMOW90ZXeyK1x3LnUgIQkj6dxS8QLJV7arvB8Q==}
+ prism-code-editor@3.4.0-beta.1:
+ resolution: {integrity: sha512-QH6v2vYzZtpVqIHyFePk2repRQbD47C1eoZ5GXk9Ifvy1cLbhOidjO2nnXiuVjrzBBxpUhUzJjFuRAOs5iAyHQ==}
prism-react-renderer@2.1.0:
resolution: {integrity: sha512-I5cvXHjA1PVGbGm1MsWCpvBCRrYyxEri0MC7/JbfIfYfcXAxHyO5PaUjs3A8H5GW6kJcLhTHxxMaOZZpRZD2iQ==}
@@ -8155,10 +7538,6 @@ packages:
resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
- proc-log@4.2.0:
- resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -8166,28 +7545,6 @@ packages:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
engines: {node: '>= 0.6.0'}
- proggy@2.0.0:
- resolution: {integrity: sha512-69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- promise-all-reject-late@1.0.1:
- resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==}
-
- promise-call-limit@3.0.1:
- resolution: {integrity: sha512-utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==}
-
- promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
-
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
-
prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
@@ -8197,16 +7554,9 @@ packages:
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
- protobufjs@7.3.2:
- resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==}
- engines: {node: '>=12.0.0'}
-
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
-
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
@@ -8218,8 +7568,8 @@ packages:
resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==}
engines: {node: '>=6.0.0'}
- qs@6.12.3:
- resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
queue-microtask@1.2.3:
@@ -8228,10 +7578,6 @@ packages:
queue-tick@1.0.1:
resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
- quick-lru@5.1.1:
- resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
- engines: {node: '>=10'}
-
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
@@ -8250,8 +7596,8 @@ packages:
peerDependencies:
react: ^18.3.1
- react-email@2.1.5:
- resolution: {integrity: sha512-SjGt5XiqNwrC6FT0rAxERj0MC9binUOVZDzspAxcRHpxjZavvePAHvV29uROWNQ1Ha7ssg1sfy4dTQi7bjCXrg==}
+ react-email@2.1.6:
+ resolution: {integrity: sha512-BtR9VI1CMq4953wfiBmzupKlWcRThaWG2dDgl1vWAllK3tNNmJNerwY4VlmASRDQZE3LpLXU3+lf8N/VAKdbZQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -8266,6 +7612,9 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ react-promise-suspense@0.3.4:
+ resolution: {integrity: sha512-I42jl7L3Ze6kZaq+7zXWSunBa3b1on5yfvUW6Eo/3fFOj6dZ5Bqmcd264nJbTK/gn1HjjILAjSwnZbV4RpSaNQ==}
+
react-remove-scroll-bar@2.3.6:
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
@@ -8303,14 +7652,6 @@ packages:
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
- read-cmd-shim@4.0.0:
- resolution: {integrity: sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- read-package-json-fast@3.0.2:
- resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -8378,20 +7719,9 @@ packages:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- require-from-string@2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
-
- require-in-the-middle@7.3.0:
- resolution: {integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==}
- engines: {node: '>=8.6.0'}
-
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- resolve-alpn@1.2.1:
- resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
-
resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -8415,17 +7745,10 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- responselike@2.0.1:
- resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
-
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
- retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -8455,8 +7778,8 @@ packages:
rollup-pluginutils@2.8.2:
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
- rollup@4.18.1:
- resolution: {integrity: sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==}
+ rollup@4.20.0:
+ resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -8497,8 +7820,8 @@ packages:
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- search-insights@2.13.0:
- resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==}
+ search-insights@2.16.0:
+ resolution: {integrity: sha512-6ukNTOkN2OvJ8SJRmWionpn39OHOov1rx72kyGDYk60CaGrDfmT8wXYzgKLW9VFk+dVVXlUmWQVvrkRvx/x3Mg==}
selderee@0.11.0:
resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
@@ -8526,14 +7849,14 @@ packages:
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- seroval-plugins@1.1.0:
- resolution: {integrity: sha512-KtcJg590L3X3dd7ixs6am4UGVcV69TyjYhHtanIdQJq4dy2OceWXmmvWrYx7oFDNe+LNdxdWd0I5BQXuV5fBhA==}
+ seroval-plugins@1.1.1:
+ resolution: {integrity: sha512-qNSy1+nUj7hsCOon7AO4wdAIo9P0jrzAMp18XhiOzA6/uO5TKtP7ScozVJ8T293oRIvi5wyCHSM4TrJo/c/GJA==}
engines: {node: '>=10'}
peerDependencies:
seroval: ^1.0
- seroval@1.1.0:
- resolution: {integrity: sha512-74Wpe+hhPx4V8NFe00I2Fu9gTJopKoH5vE7nCqFzVgKOXV8AnN23T58K79QLYQotzGpH93UZ+UN2Y11j9huZJg==}
+ seroval@1.1.1:
+ resolution: {integrity: sha512-rqEO6FZk8mv7Hyv4UCj3FD3b6Waqft605TLfsCe/BiaylRpyyMC0b+uA5TJKawX3KzMrdi3wsLbCaLplrQmBvQ==}
engines: {node: '>=10'}
serve-placeholder@2.0.2:
@@ -8569,8 +7892,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@0.14.7:
- resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
+ shiki@1.12.1:
+ resolution: {integrity: sha512-nwmjbHKnOYYAe1aaQyEBHvQymJgfm86ZSS7fT8OaPRr4sbAcBNz7PbfAikMEFSDQ6se2j2zobkXvVKcBOm0ysg==}
shikiji-core@0.9.19:
resolution: {integrity: sha512-AFJu/vcNT21t0e6YrfadZ+9q86gvPum6iywRyt1OtIPjPFe25RQnYJyxHQPMLKCCWA992TPxmEmbNcOZCAJclw==}
@@ -8580,9 +7903,6 @@ packages:
resolution: {integrity: sha512-Kw2NHWktdcdypCj1GkKpXH4o6Vxz8B8TykPlPuLHOGSV8VkhoCLcFOH4k19K4LXAQYRQmxg+0X/eM+m2sLhAkg==}
deprecated: Shikiji is merged back to Shiki v1.0, please migrate over to get the latest updates
- shimmer@1.2.1:
- resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
-
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
@@ -8594,10 +7914,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@2.3.1:
- resolution: {integrity: sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
simple-functional-loader@1.2.1:
resolution: {integrity: sha512-GPDrxrQkE7ijm35QlfPFVp5hBHR6ZcaUq42TEDgf1U5iTL3IDLFvKAbHE/ODqpdfJJ7Xn4cr/slBn12jjNPkaQ==}
@@ -8608,9 +7924,6 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
- sisteransi@1.0.5:
- resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
-
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -8623,10 +7936,6 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
@@ -8645,14 +7954,6 @@ packages:
resolution: {integrity: sha512-SE+UIQXBQE+GPG2oszWMlsEmWtHVqw/h1VrYJGK5/MC7CH5p58N448HwIrtREcvR4jfdOJAY4ieQfxMr55qbbw==}
engines: {node: '>=10.2.0'}
- socks-proxy-agent@8.0.4:
- resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
- engines: {node: '>= 14'}
-
- socks@2.8.3:
- resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
-
solid-devtools@0.30.1:
resolution: {integrity: sha512-axpXL4JV1dnGhuei+nSGS8ewGeNkmIgFDsAlO90YyYY5t8wU1R0aYAQtL+I+5KICLKPBvfkzdcFa2br7AV4lAw==}
peerDependencies:
@@ -8665,11 +7966,11 @@ packages:
vite:
optional: true
- solid-js@1.8.18:
- resolution: {integrity: sha512-cpkxDPvO/AuKBugVv6xKFd1C9VC0XZMu4VtF56IlHoux8HgyW44uqNSWbozMnVcpIzHIhS3vVXPAVZYM26jpWw==}
+ solid-js@1.8.19:
+ resolution: {integrity: sha512-h8z/TvTQYsf894LM9Iau/ZW2iAKrCzAWDwjPhMcXnonmW1OIIihc28wp82b1wwei1p81fH5+gnfNOe8RzLbDRQ==}
- solid-presence@0.1.7:
- resolution: {integrity: sha512-786JcN2PFCSKKOIQ7Zg0GZuy2vmtF8b78WZDbOIzzVOCcZF/ovZTCZOY11lUYiKqPCXxeLxh8kBLoFF1X42i9w==}
+ solid-presence@0.1.8:
+ resolution: {integrity: sha512-pWGtXUFWYYUZNbg5YpG5vkQJyOtzn2KXhxYaMx/4I+lylTLYkITOLevaCwMRN+liCVk0pqB6EayLWojNqBFECA==}
peerDependencies:
solid-js: ^1.8
@@ -8732,18 +8033,6 @@ packages:
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
- spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
-
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
- spdx-license-ids@3.0.18:
- resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
-
split2@4.2.0:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
@@ -8751,17 +8040,10 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- sprintf-js@1.1.3:
- resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
-
sqlstring@2.3.3:
resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==}
engines: {node: '>= 0.6'}
- ssri@10.0.6:
- resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
sst@3.0.30:
resolution: {integrity: sha512-Yly2WCGkH5eC4bHO9M4B+LqkAQhiGGP/lgDRDJ17dnXl9VQxmYE/8K30tGaNm0NGGAjjoqW0WtURdP0K7XCv/g==}
peerDependencies:
@@ -8877,8 +8159,8 @@ packages:
strip-literal@2.1.0:
resolution: {integrity: sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==}
- stripe@15.12.0:
- resolution: {integrity: sha512-slTbYS1WhRJXVB8YXU8fgHizkUrM9KJyrw4Dd8pLEwzKHYyQTIE46EePC2MVbSDZdE24o1GdNtzmJV4PrPpmJA==}
+ stripe@16.6.0:
+ resolution: {integrity: sha512-6hWEt6n7InVyP4p2MfMpyl1GwKRJA2w4VAwxJUbXA9xhT7ToWOdrTXqTz2EnyJkw4PMM03twi3eOWQAXN/+uEg==}
engines: {node: '>=12.*'}
strnum@1.0.5:
@@ -8963,8 +8245,8 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- tailwindcss@3.4.6:
- resolution: {integrity: sha512-1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==}
+ tailwindcss@3.4.7:
+ resolution: {integrity: sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -9026,10 +8308,6 @@ packages:
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- timers-ext@0.1.8:
- resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==}
- engines: {node: '>=0.12'}
-
tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
@@ -9060,10 +8338,6 @@ packages:
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- treeverse@3.0.0:
- resolution: {integrity: sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
@@ -9105,16 +8379,12 @@ packages:
tslib@2.6.3:
resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
- tuf-js@2.2.1:
- resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ type-detect@4.1.0:
+ resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
engines: {node: '>=4'}
type-fest@0.7.1:
@@ -9129,9 +8399,6 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- type@2.7.3:
- resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
-
typed-array-buffer@1.0.2:
resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
@@ -9170,12 +8437,12 @@ packages:
unctx@2.3.1:
resolution: {integrity: sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==}
- undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
-
undici-types@5.28.4:
resolution: {integrity: sha512-3OeMF5Lyowe8VW0skf5qaIE7Or3yS9LS7fvMUI0gg4YxpIBVg0L8BxCmROw2CcYhSkpR68Epz7CGc8MPj94Uww==}
+ undici-types@6.13.0:
+ resolution: {integrity: sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==}
+
undici@5.28.4:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
engines: {node: '>=14.0'}
@@ -9193,16 +8460,8 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
- unimport@3.9.0:
- resolution: {integrity: sha512-H2ftTISja1BonUVdOKRos6HC6dqYDR40dQTZY3zIDJ/5/z4ihncuL0LqLvtxYqUDMib41eAtunQUhXIWTCZ8rA==}
-
- unique-filename@3.0.0:
- resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- unique-slug@4.0.0:
- resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ unimport@3.10.0:
+ resolution: {integrity: sha512-/UvKRfWx3mNDWwWQhR62HsoM3wxHwYdTq8ellZzMOHnnw4Dp8tovgthyW7DjTrbjDL+i4idOp06voz2VKlvrLw==}
unist-util-filter@5.0.1:
resolution: {integrity: sha512-pHx7D4Zt6+TsfwylH9+lYhBhzyhEnCXs/lbq/Hstxno5z4gVdyc2WEW0asfjGKPyG4pEKrnBv5hdkO6+aRnQJw==}
@@ -9241,8 +8500,8 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unplugin-auto-import@0.17.8:
- resolution: {integrity: sha512-CHryj6HzJ+n4ASjzwHruD8arhbdl+UXvhuAIlHDs15Y/IMecG3wrf7FVg4pVH/DIysbq/n0phIjNHAjl7TG7Iw==}
+ unplugin-auto-import@0.18.2:
+ resolution: {integrity: sha512-Dwb3rAic75harVBrVjwiq6H24PT+nBq2dpxV5BH8NNI6sDFaTytvP+iyo4xy7prQbR3r5K6nMs4f5Wp9PE4g8A==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': ^3.2.2
@@ -9253,8 +8512,8 @@ packages:
'@vueuse/core':
optional: true
- unplugin-icons@0.19.0:
- resolution: {integrity: sha512-u5g/gIZPZEj1wUGEQxe9nzftOSqmblhusc+sL3cawIRoIt/xWpE6XYcPOfAeFTYNjSbRrX/3QiX89PFiazgU1w==}
+ unplugin-icons@0.19.1:
+ resolution: {integrity: sha512-a5I+wSOO5lsgc4dB2nEFaSZ4eEgQvSSR8tSR2jT69nTKiVmcK+PPU633zn2FyRf9i6vLapUiQ28GQStfzGURdg==}
peerDependencies:
'@svgr/core': '>=7.0.0'
'@svgx/core': ^1.0.1
@@ -9273,8 +8532,8 @@ packages:
vue-template-es2015-compiler:
optional: true
- unplugin@1.11.0:
- resolution: {integrity: sha512-3r7VWZ/webh0SGgJScpWl2/MRCZK5d3ZYFcNaeci/GQ7Teop7zf0Nl2pUuz7G21BwPd9pcUPOC5KmJ2L3WgC5g==}
+ unplugin@1.12.0:
+ resolution: {integrity: sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==}
engines: {node: '>=14.0.0'}
unstorage@1.10.2:
@@ -9332,10 +8591,6 @@ packages:
unwasm@0.3.9:
resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
- upath@1.2.0:
- resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
- engines: {node: '>=4'}
-
update-browserslist-db@1.1.0:
resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
@@ -9386,13 +8641,6 @@ packages:
validate-html-nesting@1.2.2:
resolution: {integrity: sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==}
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
-
- validate-npm-package-name@5.0.1:
- resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -9440,8 +8688,8 @@ packages:
vite:
optional: true
- vite@5.3.4:
- resolution: {integrity: sha512-Cw+7zL3ZG9/NZBB8C+8QbQZmR54GwqIz+WMI4b3JgdYJvX+ny9AjJXqkGQlDXSXRP9rP0B4tbciRMOVEKulVOA==}
+ vite@5.3.5:
+ resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -9476,15 +8724,6 @@ packages:
vite:
optional: true
- vscode-oniguruma@1.7.0:
- resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
-
- vscode-textmate@8.0.0:
- resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
-
- walk-up-path@3.0.1:
- resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==}
-
watchpack@2.4.1:
resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
engines: {node: '>=10.13.0'}
@@ -9518,8 +8757,8 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.1.3:
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
@@ -9551,20 +8790,17 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- wordwrap@1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
-
- workerd@1.20240718.0:
- resolution: {integrity: sha512-w7lOLRy0XecQTg/ujTLWBiJJuoQvzB3CdQ6/8Wgex3QxFhV9Pbnh3UbwIuUfMw3OCCPQc4o7y+1P+mISAgp6yg==}
+ workerd@1.20240725.0:
+ resolution: {integrity: sha512-VZwgejRcHsQ9FEPtc7v25ebINLAR+stL3q1hC1xByE+quskdoWpTXHkZwZ3IdSgvm9vPVbCbJw9p5mGnDByW2A==}
engines: {node: '>=16'}
hasBin: true
- wrangler@3.65.1:
- resolution: {integrity: sha512-Z5NyrbpGMQCpim/6VnI1im0/Weh5+CU1sdep1JbfFxHjn/Jt9K+MeUq+kCns5ubkkdRx2EYsusB/JKyX2JdJ4w==}
+ wrangler@3.68.0:
+ resolution: {integrity: sha512-gsIeglkh5nOn1mHJs0bf1pOq/DvIt+umjO/5a867IYYXaN4j/ar5cRR1+F5ue3S7uEjYCLIZZjs8ESiPTSEt+Q==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20240718.0
+ '@cloudflare/workers-types': ^4.20240725.0
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
@@ -9580,10 +8816,6 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- write-file-atomic@5.0.1:
- resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
ws@8.17.1:
resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'}
@@ -9641,8 +8873,8 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.4.5:
- resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
+ yaml@2.5.0:
+ resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
engines: {node: '>= 14'}
hasBin: true
@@ -9658,10 +8890,6 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.1.1:
- resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
- engines: {node: '>=12.20'}
-
youch@3.3.3:
resolution: {integrity: sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==}
@@ -9692,103 +8920,103 @@ packages:
snapshots:
- '@algolia/autocomplete-core@1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)':
+ '@algolia/autocomplete-core@1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)
- '@algolia/autocomplete-shared': 1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)
+ '@algolia/autocomplete-shared': 1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)(search-insights@2.16.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
- search-insights: 2.13.0
+ '@algolia/autocomplete-shared': 1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)
+ search-insights: 2.16.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-shared@1.17.4(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)':
+ '@algolia/autocomplete-shared@1.17.4(@algolia/client-search@4.24.0)(algoliasearch@4.24.0)':
dependencies:
- '@algolia/client-search': 4.23.3
- algoliasearch: 4.23.3
+ '@algolia/client-search': 4.24.0
+ algoliasearch: 4.24.0
- '@algolia/cache-browser-local-storage@4.23.3':
+ '@algolia/cache-browser-local-storage@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
- '@algolia/cache-common@4.23.3': {}
+ '@algolia/cache-common@4.24.0': {}
- '@algolia/cache-in-memory@4.23.3':
+ '@algolia/cache-in-memory@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
- '@algolia/client-account@4.23.3':
+ '@algolia/client-account@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-analytics@4.23.3':
+ '@algolia/client-analytics@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-common@4.23.3':
+ '@algolia/client-common@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-personalization@4.23.3':
+ '@algolia/client-personalization@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/client-search@4.23.3':
+ '@algolia/client-search@4.24.0':
dependencies:
- '@algolia/client-common': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/logger-common@4.23.3': {}
+ '@algolia/logger-common@4.24.0': {}
- '@algolia/logger-console@4.23.3':
+ '@algolia/logger-console@4.24.0':
dependencies:
- '@algolia/logger-common': 4.23.3
+ '@algolia/logger-common': 4.24.0
- '@algolia/recommend@4.23.3':
+ '@algolia/recommend@4.24.0':
dependencies:
- '@algolia/cache-browser-local-storage': 4.23.3
- '@algolia/cache-common': 4.23.3
- '@algolia/cache-in-memory': 4.23.3
- '@algolia/client-common': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/logger-console': 4.23.3
- '@algolia/requester-browser-xhr': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/requester-node-http': 4.23.3
- '@algolia/transporter': 4.23.3
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
- '@algolia/requester-browser-xhr@4.23.3':
+ '@algolia/requester-browser-xhr@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
+ '@algolia/requester-common': 4.24.0
- '@algolia/requester-common@4.23.3': {}
+ '@algolia/requester-common@4.24.0': {}
- '@algolia/requester-node-http@4.23.3':
+ '@algolia/requester-node-http@4.24.0':
dependencies:
- '@algolia/requester-common': 4.23.3
+ '@algolia/requester-common': 4.24.0
- '@algolia/transporter@4.23.3':
+ '@algolia/transporter@4.24.0':
dependencies:
- '@algolia/cache-common': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/requester-common': 4.23.3
+ '@algolia/cache-common': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
'@alloc/quick-lru@5.2.0': {}
@@ -10182,106 +9410,91 @@ snapshots:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
- '@babel/compat-data@7.24.9': {}
+ '@babel/compat-data@7.25.2': {}
'@babel/core@7.24.5':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.5)
- '@babel/helpers': 7.24.8
+ '@babel/generator': 7.25.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.5)
+ '@babel/helpers': 7.25.0
'@babel/parser': 7.24.5
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.6
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.24.9':
+ '@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.6
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.10':
+ '@babel/generator@7.25.0':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/helper-compilation-targets@7.24.8':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.2
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-environment-visitor@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-function-name@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/helper-hoist-variables@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
'@babel/helper-module-imports@7.18.6':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.5)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.3
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.3
transitivePeerDependencies:
- supports-color
@@ -10289,25 +9502,21 @@ snapshots:
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
transitivePeerDependencies:
- supports-color
- '@babel/helper-split-export-declaration@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
-
'@babel/helper-string-parser@7.24.8': {}
'@babel/helper-validator-identifier@7.24.7': {}
'@babel/helper-validator-option@7.24.8': {}
- '@babel/helpers@7.24.8':
+ '@babel/helpers@7.25.0':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
'@babel/highlight@7.24.7':
dependencies:
@@ -10318,48 +9527,45 @@ snapshots:
'@babel/parser@7.24.5':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
- '@babel/parser@7.24.8':
+ '@babel/parser@7.25.3':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/runtime@7.24.8':
+ '@babel/runtime@7.25.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.24.7':
+ '@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
- '@babel/traverse@7.24.8':
+ '@babel/traverse@7.25.3':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
- debug: 4.3.5
+ '@babel/generator': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
+ debug: 4.3.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.9':
+ '@babel/types@7.25.2':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
@@ -10404,37 +9610,42 @@ snapshots:
dependencies:
mime: 3.0.0
- '@cloudflare/workerd-darwin-64@1.20240718.0':
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-darwin-arm64@1.20240718.0':
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-64@1.20240718.0':
+ '@cloudflare/workerd-linux-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20240718.0':
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20240718.0':
+ '@cloudflare/workerd-windows-64@1.20240725.0':
optional: true
- '@cloudflare/workers-types@4.20240512.0':
+ '@cloudflare/workers-types@4.20240729.0':
optional: true
- '@corvu/otp-field@0.1.1(solid-js@1.8.18)':
+ '@corvu/otp-field@0.1.2(solid-js@1.8.19)':
+ dependencies:
+ '@corvu/utils': 0.4.0(solid-js@1.8.19)
+ solid-js: 1.8.19
+
+ '@corvu/tailwind@0.1.5(tailwindcss@3.4.7)':
dependencies:
- '@corvu/utils': 0.3.2(solid-js@1.8.18)
- solid-js: 1.8.18
+ tailwindcss: 3.4.7
- '@corvu/tailwind@0.1.5(tailwindcss@3.4.6)':
+ '@corvu/utils@0.3.2(solid-js@1.8.19)':
dependencies:
- tailwindcss: 3.4.6
+ '@floating-ui/dom': 1.6.9
+ solid-js: 1.8.19
- '@corvu/utils@0.3.2(solid-js@1.8.18)':
+ '@corvu/utils@0.4.0(solid-js@1.8.19)':
dependencies:
- '@floating-ui/dom': 1.6.7
- solid-js: 1.8.18
+ '@floating-ui/dom': 1.6.9
+ solid-js: 1.8.19
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -10447,11 +9658,18 @@ snapshots:
'@deno/shim-deno-test': 0.5.0
which: 4.0.0
+ '@drizzle-team/brocli@0.8.2': {}
+
'@emnapi/core@0.45.0':
dependencies:
tslib: 2.6.3
optional: true
+ '@emnapi/core@1.2.0':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.1
+ tslib: 2.6.3
+
'@emnapi/runtime@0.45.0':
dependencies:
tslib: 2.6.3
@@ -10460,22 +9678,25 @@ snapshots:
'@emnapi/runtime@1.2.0':
dependencies:
tslib: 2.6.3
- optional: true
+
+ '@emnapi/wasi-threads@1.0.1':
+ dependencies:
+ tslib: 2.6.3
'@emotion/is-prop-valid@0.8.8':
dependencies:
'@emotion/memoize': 0.7.4
optional: true
- '@emotion/is-prop-valid@1.2.2':
+ '@emotion/is-prop-valid@1.3.0':
dependencies:
- '@emotion/memoize': 0.8.1
+ '@emotion/memoize': 0.9.0
optional: true
'@emotion/memoize@0.7.4':
optional: true
- '@emotion/memoize@0.8.1':
+ '@emotion/memoize@0.9.0':
optional: true
'@esbuild-kit/core-utils@3.3.2':
@@ -10906,17 +10127,17 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.7.0)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.8.0)':
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.11.0': {}
- '@eslint/config-array@0.17.0':
+ '@eslint/config-array@0.17.1':
dependencies:
'@eslint/object-schema': 2.1.4
- debug: 4.3.5
+ debug: 4.3.6
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -10924,7 +10145,7 @@ snapshots:
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.5
+ debug: 4.3.6
espree: 10.1.0
globals: 14.0.0
ignore: 5.3.1
@@ -10935,90 +10156,78 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.7.0': {}
+ '@eslint/js@9.8.0': {}
'@eslint/object-schema@2.1.4': {}
'@fastify/busboy@2.1.1': {}
- '@floating-ui/core@1.6.4':
+ '@floating-ui/core@1.6.6':
dependencies:
- '@floating-ui/utils': 0.2.4
+ '@floating-ui/utils': 0.2.6
- '@floating-ui/dom@1.6.7':
+ '@floating-ui/dom@1.6.9':
dependencies:
- '@floating-ui/core': 1.6.4
- '@floating-ui/utils': 0.2.4
+ '@floating-ui/core': 1.6.6
+ '@floating-ui/utils': 0.2.6
'@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/dom': 1.6.7
+ '@floating-ui/dom': 1.6.9
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@floating-ui/react@0.26.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react@0.26.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@floating-ui/utils': 0.2.4
+ '@floating-ui/utils': 0.2.6
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
tabbable: 6.2.0
- '@floating-ui/utils@0.2.4': {}
+ '@floating-ui/utils@0.2.6': {}
- '@fontsource-variable/inter@5.0.19': {}
+ '@fontsource-variable/inter@5.0.20': {}
- '@fontsource/inter@5.0.19': {}
-
- '@grpc/grpc-js@1.11.1':
- dependencies:
- '@grpc/proto-loader': 0.7.13
- '@js-sdsl/ordered-map': 4.4.2
-
- '@grpc/proto-loader@0.7.13':
- dependencies:
- lodash.camelcase: 4.3.0
- long: 5.2.3
- protobufjs: 7.3.2
- yargs: 17.7.2
+ '@fontsource/inter@5.0.20': {}
'@headlessui/react@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/react': 0.26.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.17.1(react@18.3.1)
- '@react-aria/interactions': 3.21.3(react@18.3.1)
- '@tanstack/react-virtual': 3.8.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react': 0.26.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/focus': 3.18.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.1(react@18.3.1)
+ '@tanstack/react-virtual': 3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.6)':
+ '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.7)':
dependencies:
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
'@hexagon/base64@1.1.28': {}
- '@hono/zod-validator@0.2.2(hono@4.5.0)(zod@3.23.8)':
+ '@hono/zod-validator@0.2.2(hono@4.5.4)(zod@3.23.8)':
dependencies:
- hono: 4.5.0
+ hono: 4.5.4
zod: 3.23.8
'@humanwhocodes/module-importer@1.0.1': {}
'@humanwhocodes/retry@0.3.0': {}
- '@iconify/json@2.2.229':
+ '@iconify/json@2.2.234':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
'@iconify/types@2.0.0': {}
- '@iconify/utils@2.1.25':
+ '@iconify/utils@2.1.30':
dependencies:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.5
+ debug: 4.3.6
kolorist: 1.8.0
local-pkg: 0.5.0
mlly: 1.7.1
@@ -11100,7 +10309,7 @@ snapshots:
'@img/sharp-win32-x64@0.33.4':
optional: true
- '@internationalized/date@3.5.4':
+ '@internationalized/date@3.5.5':
dependencies:
'@swc/helpers': 0.5.12
@@ -11119,8 +10328,6 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- '@isaacs/string-locale-compare@1.1.0': {}
-
'@jest/schemas@29.6.3':
dependencies:
'@sinclair/typebox': 0.27.8
@@ -11152,57 +10359,55 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@js-sdsl/ordered-map@4.4.2': {}
-
'@jsdevtools/ez-spawn@3.0.4':
dependencies:
call-me-maybe: 1.0.2
cross-spawn: 7.0.3
string-argv: 0.3.2
- type-detect: 4.0.8
+ type-detect: 4.1.0
- '@kobalte/core@0.12.6(solid-js@1.8.18)':
+ '@kobalte/core@0.12.6(solid-js@1.8.19)':
dependencies:
- '@floating-ui/dom': 1.6.7
- '@internationalized/date': 3.5.4
+ '@floating-ui/dom': 1.6.9
+ '@internationalized/date': 3.5.5
'@internationalized/number': 3.5.3
- '@kobalte/utils': 0.9.0(solid-js@1.8.18)
- solid-js: 1.8.18
- solid-prevent-scroll: 0.1.9(solid-js@1.8.18)
+ '@kobalte/utils': 0.9.0(solid-js@1.8.19)
+ solid-js: 1.8.19
+ solid-prevent-scroll: 0.1.9(solid-js@1.8.19)
- '@kobalte/core@0.13.3(solid-js@1.8.18)':
+ '@kobalte/core@0.13.4(solid-js@1.8.19)':
dependencies:
- '@floating-ui/dom': 1.6.7
- '@internationalized/date': 3.5.4
+ '@floating-ui/dom': 1.6.9
+ '@internationalized/date': 3.5.5
'@internationalized/number': 3.5.3
- '@kobalte/utils': 0.9.0(solid-js@1.8.18)
- solid-js: 1.8.18
- solid-presence: 0.1.7(solid-js@1.8.18)
- solid-prevent-scroll: 0.1.9(solid-js@1.8.18)
+ '@kobalte/utils': 0.9.0(solid-js@1.8.19)
+ '@solid-primitives/props': 3.1.11(solid-js@1.8.19)
+ solid-js: 1.8.19
+ solid-presence: 0.1.8(solid-js@1.8.19)
+ solid-prevent-scroll: 0.1.9(solid-js@1.8.19)
- '@kobalte/tailwindcss@0.9.0(tailwindcss@3.4.6)':
+ '@kobalte/tailwindcss@0.9.0(tailwindcss@3.4.7)':
dependencies:
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
- '@kobalte/utils@0.9.0(solid-js@1.8.18)':
+ '@kobalte/utils@0.9.0(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/keyed': 1.2.2(solid-js@1.8.18)
- '@solid-primitives/map': 0.4.11(solid-js@1.8.18)
- '@solid-primitives/media': 2.2.9(solid-js@1.8.18)
- '@solid-primitives/props': 3.1.11(solid-js@1.8.18)
- '@solid-primitives/refs': 1.0.8(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/keyed': 1.2.2(solid-js@1.8.19)
+ '@solid-primitives/map': 0.4.11(solid-js@1.8.19)
+ '@solid-primitives/media': 2.2.9(solid-js@1.8.19)
+ '@solid-primitives/props': 3.1.11(solid-js@1.8.19)
+ '@solid-primitives/refs': 1.0.8(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
'@kurkle/color@0.3.2': {}
'@levischuck/tiny-cbor@0.2.2': {}
- '@logdna/tail-file@2.2.0': {}
-
- '@lucia-auth/adapter-drizzle@1.0.7(lucia@3.2.0)':
+ '@lucia-auth/adapter-drizzle@1.1.0(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(lucia@3.2.0)':
dependencies:
+ drizzle-orm: 0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
lucia: 3.2.0
'@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)':
@@ -11220,13 +10425,13 @@ snapshots:
- encoding
- supports-color
- '@mattrax/web@file:apps/web(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@types/node@20.14.11)(@types/react@18.3.3)(encoding@0.1.13)(ioredis@5.4.1)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(rollup@4.18.1)(terser@5.31.3)(typescript@5.5.4)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))':
+ '@mattrax/web@file:apps/web(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@types/node@22.1.0)(@types/react@18.3.3)(encoding@0.1.13)(ioredis@5.4.1)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(rollup@4.20.0)(terser@5.31.3)(typescript@5.5.4)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))':
dependencies:
- '@corvu/otp-field': 0.1.1(solid-js@1.8.18)
- '@hono/zod-validator': 0.2.2(hono@4.5.0)(zod@3.23.8)
- '@kobalte/core': 0.13.3(solid-js@1.8.18)
- '@kobalte/tailwindcss': 0.9.0(tailwindcss@3.4.6)
- '@lucia-auth/adapter-drizzle': 1.0.7(lucia@3.2.0)
+ '@corvu/otp-field': 0.1.2(solid-js@1.8.19)
+ '@hono/zod-validator': 0.2.2(hono@4.5.4)(zod@3.23.8)
+ '@kobalte/core': 0.13.4(solid-js@1.8.19)
+ '@kobalte/tailwindcss': 0.9.0(tailwindcss@3.4.7)
+ '@lucia-auth/adapter-drizzle': 1.1.0(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(lucia@3.2.0)
'@mattrax/configuration-schemas': link:packages/configuration-schemas
'@mattrax/drizzle-to-rs': link:packages/drizzle-to-rs
'@mattrax/email': link:packages/email
@@ -11240,31 +10445,31 @@ snapshots:
'@paralleldrive/cuid2': 2.2.2
'@planetscale/database': 1.18.0
'@simplewebauthn/browser': 10.0.0
- '@simplewebauthn/server': 10.0.0(encoding@0.1.13)
+ '@simplewebauthn/server': 10.0.1(encoding@0.1.13)
'@simplewebauthn/typescript-types': 8.3.4
- '@solid-mediakit/trpc': 3.0.3(pfnxpnv63lqnpxcgbqdejpmyhm)
- '@solid-primitives/autofocus': 0.0.111(solid-js@1.8.18)
- '@solid-primitives/context': 0.2.3(solid-js@1.8.18)
- '@solid-primitives/date': 2.0.22(solid-js@1.8.18)
- '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.18)
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/lifecycle': 0.0.102(solid-js@1.8.18)
- '@solid-primitives/map': 0.4.11(solid-js@1.8.18)
- '@solid-primitives/memo': 1.3.9(solid-js@1.8.18)
- '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.18)
- '@solid-primitives/storage': 3.8.0(solid-js@1.8.18)
- '@solid-primitives/timer': 1.3.9(solid-js@1.8.18)
- '@solid-primitives/websocket': 1.2.2(solid-js@1.8.18)
- '@solidjs/router': 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
- '@solidjs/start': 1.0.1(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- '@t3-oss/env-core': 0.10.1(typescript@5.5.4)(zod@3.23.8)
- '@tanstack/solid-form': 0.20.0(patch_hash=u7mggdzwgkctmq3zwzwnyiwq4y)(solid-js@1.8.18)
- '@tanstack/solid-query': 5.51.9(solid-js@1.8.18)
- '@tanstack/solid-query-devtools': 5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)
- '@tanstack/solid-query-persist-client': 5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)
- '@tanstack/solid-table': 8.19.3(solid-js@1.8.18)
- '@tanstack/solid-virtual': 3.8.3(solid-js@1.8.18)
- '@tanstack/zod-form-adapter': 0.20.3(zod@3.23.8)
+ '@solid-mediakit/trpc': 3.0.3(@solidjs/router@0.13.3(solid-js@1.8.19))(@solidjs/start@1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)))(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@solid-primitives/autofocus': 0.0.111(solid-js@1.8.19)
+ '@solid-primitives/context': 0.2.3(solid-js@1.8.19)
+ '@solid-primitives/date': 2.0.22(solid-js@1.8.19)
+ '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.19)
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/lifecycle': 0.0.102(solid-js@1.8.19)
+ '@solid-primitives/map': 0.4.11(solid-js@1.8.19)
+ '@solid-primitives/memo': 1.3.9(solid-js@1.8.19)
+ '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.19)
+ '@solid-primitives/storage': 3.8.0(solid-js@1.8.19)
+ '@solid-primitives/timer': 1.3.9(solid-js@1.8.19)
+ '@solid-primitives/websocket': 1.2.2(solid-js@1.8.19)
+ '@solidjs/router': 0.13.3(solid-js@1.8.19)
+ '@solidjs/start': 1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
+ '@t3-oss/env-core': 0.11.0(typescript@5.5.4)(zod@3.23.8)
+ '@tanstack/solid-form': 0.20.0(solid-js@1.8.19)
+ '@tanstack/solid-query': 5.51.21(solid-js@1.8.19)
+ '@tanstack/solid-query-devtools': 5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)
+ '@tanstack/solid-query-persist-client': 5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)
+ '@tanstack/solid-table': 8.20.1(solid-js@1.8.19)
+ '@tanstack/solid-virtual': 3.8.4(solid-js@1.8.19)
+ '@tanstack/zod-form-adapter': 0.27.0(zod@3.23.8)
'@trpc/client': 10.45.2(@trpc/server@10.45.2)
'@trpc/server': 10.45.2
'@types/pluralize': 0.0.33
@@ -11273,30 +10478,30 @@ snapshots:
class-variance-authority: 0.7.0
clsx: 2.1.1
codejar: 4.2.0
- cookie-es: 1.2.1
+ cookie-es: 1.2.2
dexie: 4.0.8
- drizzle-orm: 0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
+ drizzle-orm: 0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
h3: 1.12.0
- hono: 4.5.0
+ hono: 4.5.4
jose: 5.6.3
lucia: 3.2.0
oslo: 1.2.1
pluralize: 8.0.0
- prism-code-editor: 3.3.3
+ prism-code-editor: 3.4.0-beta.1
prism-themes: 1.9.0
prismjs: 1.29.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- solid-js: 1.8.18
- solid-presence: 0.1.7(solid-js@1.8.18)
- solid-sonner: 0.2.8(solid-js@1.8.18)
- solid-transition-group: 0.2.3(solid-js@1.8.18)
- sst: 3.0.30(hono@4.5.0)
- stripe: 15.12.0
+ solid-js: 1.8.19
+ solid-presence: 0.1.8(solid-js@1.8.19)
+ solid-sonner: 0.2.8(solid-js@1.8.19)
+ solid-transition-group: 0.2.3(solid-js@1.8.19)
+ sst: 3.0.30(hono@4.5.4)
+ stripe: 16.6.0
superjson: 2.2.1
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
ts-pattern: 5.2.0
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
xml2js: 0.6.2
zod: 3.23.8
transitivePeerDependencies:
@@ -11361,11 +10566,11 @@ snapshots:
- valibot
- vite
- '@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12))':
+ '@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12))':
dependencies:
'@mdx-js/mdx': 3.0.1
source-map: 0.7.4
- webpack: 5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)
+ webpack: 5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)
transitivePeerDependencies:
- supports-color
@@ -11405,11 +10610,17 @@ snapshots:
'@microsoft/microsoft-graph-client@3.0.7':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
tslib: 2.6.3
'@microsoft/microsoft-graph-types@2.40.0': {}
+ '@napi-rs/wasm-runtime@0.2.4':
+ dependencies:
+ '@emnapi/core': 1.2.0
+ '@emnapi/runtime': 1.2.0
+ '@tybys/wasm-util': 0.9.0
+
'@netlify/functions@2.8.1':
dependencies:
'@netlify/serverless-functions-api': 1.19.1
@@ -11429,11 +10640,11 @@ snapshots:
dependencies:
glob: 10.3.10
- '@next/mdx@14.2.5(@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)))(@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1))':
+ '@next/mdx@14.2.5(@mdx-js/loader@3.0.1(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)))(@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1))':
dependencies:
source-map: 0.7.4
optionalDependencies:
- '@mdx-js/loader': 3.0.1(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12))
+ '@mdx-js/loader': 3.0.1(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12))
'@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1)
'@next/swc-darwin-arm64@14.1.4':
@@ -11634,254 +10845,49 @@ snapshots:
'@nothing-but/utils@0.12.1': {}
- '@npmcli/agent@2.2.2':
+ '@nrwl/tao@19.5.6(@swc/core@1.7.6)':
dependencies:
- agent-base: 7.1.1
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
- lru-cache: 10.4.3
- socks-proxy-agent: 8.0.4
+ nx: 19.5.6(@swc/core@1.7.6)
+ tslib: 2.6.3
transitivePeerDependencies:
- - supports-color
+ - '@swc-node/register'
+ - '@swc/core'
+ - debug
- '@npmcli/arborist@7.5.4':
- dependencies:
- '@isaacs/string-locale-compare': 1.1.0
- '@npmcli/fs': 3.1.1
- '@npmcli/installed-package-contents': 2.1.0
- '@npmcli/map-workspaces': 3.0.6
- '@npmcli/metavuln-calculator': 7.1.1
- '@npmcli/name-from-folder': 2.0.0
- '@npmcli/node-gyp': 3.0.0
- '@npmcli/package-json': 5.2.0
- '@npmcli/query': 3.1.0
- '@npmcli/redact': 2.0.1
- '@npmcli/run-script': 8.1.0
- bin-links: 4.0.4
- cacache: 18.0.4
- common-ancestor-path: 1.0.1
- hosted-git-info: 7.0.2
- json-parse-even-better-errors: 3.0.2
- json-stringify-nice: 1.1.4
- lru-cache: 10.4.3
- minimatch: 9.0.5
- nopt: 7.2.1
- npm-install-checks: 6.3.0
- npm-package-arg: 11.0.2
- npm-pick-manifest: 9.1.0
- npm-registry-fetch: 17.1.0
- pacote: 18.0.6
- parse-conflict-json: 3.0.1
- proc-log: 4.2.0
- proggy: 2.0.0
- promise-all-reject-late: 1.0.1
- promise-call-limit: 3.0.1
- read-package-json-fast: 3.0.2
- semver: 7.6.3
- ssri: 10.0.6
- treeverse: 3.0.0
- walk-up-path: 3.0.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
+ '@nx/nx-darwin-arm64@19.5.6':
+ optional: true
- '@npmcli/fs@3.1.1':
- dependencies:
- semver: 7.6.3
+ '@nx/nx-darwin-x64@19.5.6':
+ optional: true
- '@npmcli/git@5.0.8':
- dependencies:
- '@npmcli/promise-spawn': 7.0.2
- ini: 4.1.3
- lru-cache: 10.4.3
- npm-pick-manifest: 9.1.0
- proc-log: 4.2.0
- promise-inflight: 1.0.1
- promise-retry: 2.0.1
- semver: 7.6.3
- which: 4.0.0
- transitivePeerDependencies:
- - bluebird
+ '@nx/nx-freebsd-x64@19.5.6':
+ optional: true
- '@npmcli/installed-package-contents@2.1.0':
- dependencies:
- npm-bundled: 3.0.1
- npm-normalize-package-bin: 3.0.1
+ '@nx/nx-linux-arm-gnueabihf@19.5.6':
+ optional: true
- '@npmcli/map-workspaces@3.0.6':
- dependencies:
- '@npmcli/name-from-folder': 2.0.0
- glob: 10.4.5
- minimatch: 9.0.5
- read-package-json-fast: 3.0.2
+ '@nx/nx-linux-arm64-gnu@19.5.6':
+ optional: true
- '@npmcli/metavuln-calculator@7.1.1':
- dependencies:
- cacache: 18.0.4
- json-parse-even-better-errors: 3.0.2
- pacote: 18.0.6
- proc-log: 4.2.0
- semver: 7.6.3
- transitivePeerDependencies:
- - bluebird
- - supports-color
+ '@nx/nx-linux-arm64-musl@19.5.6':
+ optional: true
- '@npmcli/name-from-folder@2.0.0': {}
+ '@nx/nx-linux-x64-gnu@19.5.6':
+ optional: true
- '@npmcli/node-gyp@3.0.0': {}
+ '@nx/nx-linux-x64-musl@19.5.6':
+ optional: true
- '@npmcli/package-json@5.2.0':
- dependencies:
- '@npmcli/git': 5.0.8
- glob: 10.4.5
- hosted-git-info: 7.0.2
- json-parse-even-better-errors: 3.0.2
- normalize-package-data: 6.0.2
- proc-log: 4.2.0
- semver: 7.6.3
- transitivePeerDependencies:
- - bluebird
-
- '@npmcli/promise-spawn@7.0.2':
- dependencies:
- which: 4.0.0
-
- '@npmcli/query@3.1.0':
- dependencies:
- postcss-selector-parser: 6.1.1
-
- '@npmcli/redact@2.0.1': {}
-
- '@npmcli/run-script@8.1.0':
- dependencies:
- '@npmcli/node-gyp': 3.0.0
- '@npmcli/package-json': 5.2.0
- '@npmcli/promise-spawn': 7.0.2
- node-gyp: 10.2.0
- proc-log: 4.2.0
- which: 4.0.0
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
- '@nrwl/tao@19.1.1(@swc/core@1.3.101)':
- dependencies:
- nx: 19.1.1(@swc/core@1.3.101)
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@swc-node/register'
- - '@swc/core'
- - debug
-
- '@nx/nx-darwin-arm64@19.1.1':
- optional: true
-
- '@nx/nx-darwin-x64@19.1.1':
- optional: true
-
- '@nx/nx-freebsd-x64@19.1.1':
- optional: true
-
- '@nx/nx-linux-arm-gnueabihf@19.1.1':
- optional: true
-
- '@nx/nx-linux-arm64-gnu@19.1.1':
- optional: true
-
- '@nx/nx-linux-arm64-musl@19.1.1':
- optional: true
-
- '@nx/nx-linux-x64-gnu@19.1.1':
- optional: true
-
- '@nx/nx-linux-x64-musl@19.1.1':
- optional: true
-
- '@nx/nx-win32-arm64-msvc@19.1.1':
+ '@nx/nx-win32-arm64-msvc@19.5.6':
optional: true
- '@nx/nx-win32-x64-msvc@19.1.1':
+ '@nx/nx-win32-x64-msvc@19.5.6':
optional: true
'@one-ini/wasm@0.1.1': {}
- '@opentelemetry/api-logs@0.52.1':
- dependencies:
- '@opentelemetry/api': 1.9.0
-
- '@opentelemetry/api@1.9.0': {}
-
- '@opentelemetry/context-async-hooks@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
-
- '@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/semantic-conventions': 1.25.1
-
- '@opentelemetry/exporter-zipkin@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.25.1
-
- '@opentelemetry/instrumentation-grpc@0.52.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.25.1
- transitivePeerDependencies:
- - supports-color
-
- '@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.52.1
- '@types/shimmer': 1.2.0
- import-in-the-middle: 1.9.1
- require-in-the-middle: 7.3.0
- semver: 7.6.3
- shimmer: 1.2.1
- transitivePeerDependencies:
- - supports-color
-
- '@opentelemetry/propagator-b3@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
-
- '@opentelemetry/propagator-jaeger@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
-
- '@opentelemetry/resources@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.25.1
-
- '@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.25.1
-
- '@opentelemetry/sdk-trace-node@1.25.1(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-b3': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-jaeger': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0)
- semver: 7.6.3
-
- '@opentelemetry/semantic-conventions@1.25.1': {}
+ '@opentelemetry/api@1.9.0':
+ optional: true
'@paralleldrive/cuid2@2.2.2':
dependencies:
@@ -11953,35 +10959,35 @@ snapshots:
'@parcel/watcher-win32-ia32': 2.4.1
'@parcel/watcher-win32-x64': 2.4.1
- '@peculiar/asn1-android@2.3.10':
+ '@peculiar/asn1-android@2.3.13':
dependencies:
- '@peculiar/asn1-schema': 2.3.8
+ '@peculiar/asn1-schema': 2.3.13
asn1js: 3.0.5
tslib: 2.6.3
- '@peculiar/asn1-ecc@2.3.8':
+ '@peculiar/asn1-ecc@2.3.13':
dependencies:
- '@peculiar/asn1-schema': 2.3.8
- '@peculiar/asn1-x509': 2.3.8
+ '@peculiar/asn1-schema': 2.3.13
+ '@peculiar/asn1-x509': 2.3.13
asn1js: 3.0.5
tslib: 2.6.3
- '@peculiar/asn1-rsa@2.3.8':
+ '@peculiar/asn1-rsa@2.3.13':
dependencies:
- '@peculiar/asn1-schema': 2.3.8
- '@peculiar/asn1-x509': 2.3.8
+ '@peculiar/asn1-schema': 2.3.13
+ '@peculiar/asn1-x509': 2.3.13
asn1js: 3.0.5
tslib: 2.6.3
- '@peculiar/asn1-schema@2.3.8':
+ '@peculiar/asn1-schema@2.3.13':
dependencies:
asn1js: 3.0.5
pvtsutils: 1.3.5
tslib: 2.6.3
- '@peculiar/asn1-x509@2.3.8':
+ '@peculiar/asn1-x509@2.3.13':
dependencies:
- '@peculiar/asn1-schema': 2.3.8
+ '@peculiar/asn1-schema': 2.3.13
asn1js: 3.0.5
ipaddr.js: 2.2.0
pvtsutils: 1.3.5
@@ -11994,99 +11000,6 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
- '@protobufjs/aspromise@1.1.2': {}
-
- '@protobufjs/base64@1.1.2': {}
-
- '@protobufjs/codegen@2.0.4': {}
-
- '@protobufjs/eventemitter@1.1.0': {}
-
- '@protobufjs/fetch@1.1.0':
- dependencies:
- '@protobufjs/aspromise': 1.1.2
- '@protobufjs/inquire': 1.1.0
-
- '@protobufjs/float@1.0.2': {}
-
- '@protobufjs/inquire@1.1.0': {}
-
- '@protobufjs/path@1.1.2': {}
-
- '@protobufjs/pool@1.1.0': {}
-
- '@protobufjs/utf8@1.1.0': {}
-
- '@pulumi/aws@6.45.0(typescript@5.5.4)':
- dependencies:
- '@pulumi/pulumi': 3.125.0(typescript@5.5.4)
- builtin-modules: 3.0.0
- mime: 2.6.0
- resolve: 1.22.8
- transitivePeerDependencies:
- - bluebird
- - supports-color
- - ts-node
- - typescript
-
- '@pulumi/azuread@5.53.2(typescript@5.5.4)':
- dependencies:
- '@pulumi/pulumi': 3.125.0(typescript@5.5.4)
- transitivePeerDependencies:
- - bluebird
- - supports-color
- - ts-node
- - typescript
-
- '@pulumi/cloudflare@5.34.0(typescript@5.5.4)':
- dependencies:
- '@pulumi/pulumi': 3.125.0(typescript@5.5.4)
- transitivePeerDependencies:
- - bluebird
- - supports-color
- - ts-node
- - typescript
-
- '@pulumi/pulumi@3.125.0(typescript@5.5.4)':
- dependencies:
- '@grpc/grpc-js': 1.11.1
- '@logdna/tail-file': 2.2.0
- '@npmcli/arborist': 7.5.4
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/exporter-zipkin': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-grpc': 0.52.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-node': 1.25.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.25.1
- '@pulumi/query': 0.3.0
- '@types/google-protobuf': 3.15.12
- '@types/semver': 7.5.8
- '@types/tmp': 0.2.6
- execa: 5.1.1
- fdir: 6.1.1(picomatch@3.0.1)
- google-protobuf: 3.21.4
- got: 11.8.6
- ini: 2.0.0
- js-yaml: 3.14.1
- minimist: 1.2.8
- normalize-package-data: 6.0.2
- picomatch: 3.0.1
- pkg-dir: 7.0.0
- require-from-string: 2.0.2
- semver: 7.6.3
- source-map-support: 0.5.21
- tmp: 0.2.3
- upath: 1.2.0
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
- '@pulumi/query@0.3.0': {}
-
'@radix-ui/colors@1.0.1': {}
'@radix-ui/primitive@1.1.0': {}
@@ -12128,18 +11041,17 @@ snapshots:
'@types/react': 18.2.47
'@types/react-dom': 18.3.0
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.47)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.2.47
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.47)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.3.3
'@radix-ui/react-context@1.1.0(@types/react@18.2.47)(react@18.3.1)':
dependencies:
@@ -12277,20 +11189,19 @@ snapshots:
'@types/react': 18.2.47
'@types/react-dom': 18.3.0
- '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.47)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.47)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.2.47
- '@radix-ui/react-slot@1.1.0(@types/react@18.2.47)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.47)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.3.3
'@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.47)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -12389,330 +11300,304 @@ snapshots:
'@radix-ui/rect@1.1.0': {}
- '@react-aria/focus@3.17.1(react@18.3.1)':
+ '@react-aria/focus@3.18.1(react@18.3.1)':
dependencies:
- '@react-aria/interactions': 3.21.3(react@18.3.1)
- '@react-aria/utils': 3.24.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.1(react@18.3.1)
+ '@react-aria/utils': 3.25.1(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@18.3.1)
'@swc/helpers': 0.5.12
clsx: 2.1.1
react: 18.3.1
- '@react-aria/interactions@3.21.3(react@18.3.1)':
+ '@react-aria/interactions@3.22.1(react@18.3.1)':
dependencies:
- '@react-aria/ssr': 3.9.4(react@18.3.1)
- '@react-aria/utils': 3.24.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@18.3.1)
+ '@react-aria/utils': 3.25.1(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@18.3.1)
'@swc/helpers': 0.5.12
react: 18.3.1
- '@react-aria/ssr@3.9.4(react@18.3.1)':
+ '@react-aria/ssr@3.9.5(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.12
react: 18.3.1
- '@react-aria/utils@3.24.1(react@18.3.1)':
+ '@react-aria/utils@3.25.1(react@18.3.1)':
dependencies:
- '@react-aria/ssr': 3.9.4(react@18.3.1)
- '@react-stately/utils': 3.10.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@18.3.1)
+ '@react-stately/utils': 3.10.2(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@18.3.1)
'@swc/helpers': 0.5.12
clsx: 2.1.1
react: 18.3.1
- '@react-email/body@0.0.8(react@18.3.1)':
+ '@react-email/body@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/button@0.0.15(react@18.3.1)':
+ '@react-email/button@0.0.16(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/code-block@0.0.4(react@18.3.1)':
+ '@react-email/code-block@0.0.6(react@18.3.1)':
dependencies:
prismjs: 1.29.0
react: 18.3.1
- '@react-email/code-inline@0.0.2(react@18.3.1)':
+ '@react-email/code-inline@0.0.3(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/column@0.0.10(react@18.3.1)':
+ '@react-email/column@0.0.11(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/components@0.0.17(@types/react@18.3.3)(react@18.3.1)':
- dependencies:
- '@react-email/body': 0.0.8(react@18.3.1)
- '@react-email/button': 0.0.15(react@18.3.1)
- '@react-email/code-block': 0.0.4(react@18.3.1)
- '@react-email/code-inline': 0.0.2(react@18.3.1)
- '@react-email/column': 0.0.10(react@18.3.1)
- '@react-email/container': 0.0.12(react@18.3.1)
- '@react-email/font': 0.0.6(react@18.3.1)
- '@react-email/head': 0.0.8(react@18.3.1)
- '@react-email/heading': 0.0.12(@types/react@18.3.3)(react@18.3.1)
- '@react-email/hr': 0.0.8(react@18.3.1)
- '@react-email/html': 0.0.8(react@18.3.1)
- '@react-email/img': 0.0.8(react@18.3.1)
- '@react-email/link': 0.0.8(react@18.3.1)
- '@react-email/markdown': 0.0.10(react@18.3.1)
- '@react-email/preview': 0.0.9(react@18.3.1)
- '@react-email/render': 0.0.13
- '@react-email/row': 0.0.8(react@18.3.1)
- '@react-email/section': 0.0.12(react@18.3.1)
- '@react-email/tailwind': 0.0.16(patch_hash=bwbyj74l7btlaty4zlch4r7y4y)(react@18.3.1)
- '@react-email/text': 0.0.8(react@18.3.1)
+ '@react-email/components@0.0.22(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-email/body': 0.0.9(react@18.3.1)
+ '@react-email/button': 0.0.16(react@18.3.1)
+ '@react-email/code-block': 0.0.6(react@18.3.1)
+ '@react-email/code-inline': 0.0.3(react@18.3.1)
+ '@react-email/column': 0.0.11(react@18.3.1)
+ '@react-email/container': 0.0.13(react@18.3.1)
+ '@react-email/font': 0.0.7(react@18.3.1)
+ '@react-email/head': 0.0.10(react@18.3.1)
+ '@react-email/heading': 0.0.13(@types/react@18.3.3)(react@18.3.1)
+ '@react-email/hr': 0.0.9(react@18.3.1)
+ '@react-email/html': 0.0.9(react@18.3.1)
+ '@react-email/img': 0.0.9(react@18.3.1)
+ '@react-email/link': 0.0.9(react@18.3.1)
+ '@react-email/markdown': 0.0.11(react@18.3.1)
+ '@react-email/preview': 0.0.10(react@18.3.1)
+ '@react-email/render': 0.0.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-email/row': 0.0.9(react@18.3.1)
+ '@react-email/section': 0.0.13(react@18.3.1)
+ '@react-email/tailwind': 0.0.19(react@18.3.1)
+ '@react-email/text': 0.0.9(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
- '@types/react'
+ - react-dom
- '@react-email/container@0.0.12(react@18.3.1)':
+ '@react-email/container@0.0.13(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/font@0.0.6(react@18.3.1)':
+ '@react-email/font@0.0.7(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/head@0.0.8(react@18.3.1)':
+ '@react-email/head@0.0.10(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/heading@0.0.12(@types/react@18.3.3)(react@18.3.1)':
+ '@react-email/heading@0.0.13(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
- '@types/react'
- '@react-email/hr@0.0.8(react@18.3.1)':
+ '@react-email/hr@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/html@0.0.8(react@18.3.1)':
+ '@react-email/html@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/img@0.0.8(react@18.3.1)':
+ '@react-email/img@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/link@0.0.8(react@18.3.1)':
+ '@react-email/link@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/markdown@0.0.10(react@18.3.1)':
+ '@react-email/markdown@0.0.11(react@18.3.1)':
dependencies:
md-to-react-email: 5.0.2(react@18.3.1)
react: 18.3.1
- '@react-email/preview@0.0.9(react@18.3.1)':
+ '@react-email/preview@0.0.10(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/render@0.0.13':
+ '@react-email/render@0.0.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
html-to-text: 9.0.5
js-beautify: 1.15.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-promise-suspense: 0.3.4
- '@react-email/row@0.0.8(react@18.3.1)':
+ '@react-email/row@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/section@0.0.12(react@18.3.1)':
+ '@react-email/section@0.0.13(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/tailwind@0.0.16(patch_hash=bwbyj74l7btlaty4zlch4r7y4y)(react@18.3.1)':
+ '@react-email/tailwind@0.0.19(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-email/text@0.0.8(react@18.3.1)':
+ '@react-email/text@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-stately/utils@3.10.1(react@18.3.1)':
+ '@react-stately/utils@3.10.2(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.12
react: 18.3.1
- '@react-types/shared@3.23.1(react@18.3.1)':
+ '@react-types/shared@3.24.1(react@18.3.1)':
dependencies:
react: 18.3.1
- '@rollup/plugin-alias@5.1.0(rollup@4.18.1)':
+ '@rollup/plugin-alias@5.1.0(rollup@4.20.0)':
dependencies:
slash: 4.0.0
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-commonjs@25.0.8(rollup@4.18.1)':
+ '@rollup/plugin-commonjs@25.0.8(rollup@4.20.0)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.10
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-inject@5.0.5(rollup@4.18.1)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.20.0)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
estree-walker: 2.0.2
- magic-string: 0.30.10
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-json@6.1.0(rollup@4.18.1)':
+ '@rollup/plugin-json@6.1.0(rollup@4.20.0)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-node-resolve@15.2.3(rollup@4.18.1)':
+ '@rollup/plugin-node-resolve@15.2.3(rollup@4.20.0)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-replace@5.0.7(rollup@4.18.1)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.20.0)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
- magic-string: 0.30.10
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
+ magic-string: 0.30.11
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/plugin-terser@0.4.4(rollup@4.18.1)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.20.0)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.31.3
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.0(rollup@4.18.1)':
+ '@rollup/pluginutils@5.1.0(rollup@4.20.0)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
- '@rollup/rollup-android-arm-eabi@4.18.1':
+ '@rollup/rollup-android-arm-eabi@4.20.0':
optional: true
- '@rollup/rollup-android-arm64@4.18.1':
+ '@rollup/rollup-android-arm64@4.20.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.18.1':
+ '@rollup/rollup-darwin-arm64@4.20.0':
optional: true
- '@rollup/rollup-darwin-x64@4.18.1':
+ '@rollup/rollup-darwin-x64@4.20.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.18.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.20.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.18.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.20.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.18.1':
+ '@rollup/rollup-linux-arm64-gnu@4.20.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.18.1':
+ '@rollup/rollup-linux-arm64-musl@4.20.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.18.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.20.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.18.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.20.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.18.1':
+ '@rollup/rollup-linux-s390x-gnu@4.20.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.18.1':
+ '@rollup/rollup-linux-x64-gnu@4.20.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.18.1':
+ '@rollup/rollup-linux-x64-musl@4.20.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.18.1':
+ '@rollup/rollup-win32-arm64-msvc@4.20.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.18.1':
+ '@rollup/rollup-win32-ia32-msvc@4.20.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.18.1':
+ '@rollup/rollup-win32-x64-msvc@4.20.0':
optional: true
- '@rushstack/eslint-patch@1.10.3': {}
+ '@rushstack/eslint-patch@1.10.4': {}
'@selderee/plugin-htmlparser2@0.11.0':
dependencies:
domhandler: 5.0.3
selderee: 0.11.0
- '@sigstore/bundle@2.3.2':
- dependencies:
- '@sigstore/protobuf-specs': 0.3.2
-
- '@sigstore/core@1.1.0': {}
-
- '@sigstore/protobuf-specs@0.3.2': {}
-
- '@sigstore/sign@2.3.2':
+ '@shikijs/core@1.12.1':
dependencies:
- '@sigstore/bundle': 2.3.2
- '@sigstore/core': 1.1.0
- '@sigstore/protobuf-specs': 0.3.2
- make-fetch-happen: 13.0.1
- proc-log: 4.2.0
- promise-retry: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/tuf@2.3.4':
- dependencies:
- '@sigstore/protobuf-specs': 0.3.2
- tuf-js: 2.2.1
- transitivePeerDependencies:
- - supports-color
-
- '@sigstore/verify@1.2.1':
- dependencies:
- '@sigstore/bundle': 2.3.2
- '@sigstore/core': 1.1.0
- '@sigstore/protobuf-specs': 0.3.2
+ '@types/hast': 3.0.4
'@simplewebauthn/browser@10.0.0':
dependencies:
'@simplewebauthn/types': 10.0.0
- '@simplewebauthn/server@10.0.0(encoding@0.1.13)':
+ '@simplewebauthn/server@10.0.1(encoding@0.1.13)':
dependencies:
'@hexagon/base64': 1.1.28
'@levischuck/tiny-cbor': 0.2.2
- '@peculiar/asn1-android': 2.3.10
- '@peculiar/asn1-ecc': 2.3.8
- '@peculiar/asn1-rsa': 2.3.8
- '@peculiar/asn1-schema': 2.3.8
- '@peculiar/asn1-x509': 2.3.8
+ '@peculiar/asn1-android': 2.3.13
+ '@peculiar/asn1-ecc': 2.3.13
+ '@peculiar/asn1-rsa': 2.3.13
+ '@peculiar/asn1-schema': 2.3.13
+ '@peculiar/asn1-x509': 2.3.13
'@simplewebauthn/types': 10.0.0
cross-fetch: 4.0.0(encoding@0.1.13)
transitivePeerDependencies:
@@ -12724,8 +11609,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
- '@sindresorhus/is@4.6.0': {}
-
'@sindresorhus/merge-streams@2.3.0': {}
'@sindresorhus/slugify@2.2.1':
@@ -13025,274 +11908,238 @@ snapshots:
'@socket.io/component-emitter@3.1.2': {}
- '@solid-devtools/debugger@0.23.4(solid-js@1.8.18)':
+ '@solid-devtools/debugger@0.23.4(solid-js@1.8.19)':
dependencies:
'@nothing-but/utils': 0.12.1
- '@solid-devtools/shared': 0.13.2(solid-js@1.8.18)
- '@solid-primitives/bounds': 0.0.118(solid-js@1.8.18)
- '@solid-primitives/cursor': 0.0.112(solid-js@1.8.18)
- '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.18)
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/keyboard': 1.2.8(solid-js@1.8.18)
- '@solid-primitives/platform': 0.1.2(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.18)
- '@solid-primitives/static-store': 0.0.5(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
-
- '@solid-devtools/shared@0.13.2(solid-js@1.8.18)':
- dependencies:
- '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.18)
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/media': 2.2.9(solid-js@1.8.18)
- '@solid-primitives/refs': 1.0.8(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.18)
- '@solid-primitives/static-store': 0.0.5(solid-js@1.8.18)
- '@solid-primitives/styles': 0.0.111(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
-
- '@solid-mediakit/trpc@3.0.3(@solidjs/router@0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18))(@solidjs/start@1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)))(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
- dependencies:
- '@solidjs/router': 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
- '@solidjs/start': 1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- '@tanstack/solid-query': 5.51.9(solid-js@1.8.18)
+ '@solid-devtools/shared': 0.13.2(solid-js@1.8.19)
+ '@solid-primitives/bounds': 0.0.118(solid-js@1.8.19)
+ '@solid-primitives/cursor': 0.0.112(solid-js@1.8.19)
+ '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.19)
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/keyboard': 1.2.8(solid-js@1.8.19)
+ '@solid-primitives/platform': 0.1.2(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.19)
+ '@solid-primitives/static-store': 0.0.5(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
+
+ '@solid-devtools/shared@0.13.2(solid-js@1.8.19)':
+ dependencies:
+ '@solid-primitives/event-bus': 1.0.11(solid-js@1.8.19)
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/media': 2.2.9(solid-js@1.8.19)
+ '@solid-primitives/refs': 1.0.8(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.19)
+ '@solid-primitives/static-store': 0.0.5(solid-js@1.8.19)
+ '@solid-primitives/styles': 0.0.111(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
+
+ '@solid-mediakit/trpc@3.0.3(@solidjs/router@0.13.3(solid-js@1.8.19))(@solidjs/start@1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)))(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
+ dependencies:
+ '@solidjs/router': 0.13.3(solid-js@1.8.19)
+ '@solidjs/start': 1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
+ '@tanstack/solid-query': 5.51.21(solid-js@1.8.19)
'@trpc/client': 10.45.2(@trpc/server@10.45.2)
'@trpc/server': 10.45.2
- solid-js: 1.8.18
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ solid-js: 1.8.19
+ vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
- '@solid-mediakit/trpc@3.0.3(pfnxpnv63lqnpxcgbqdejpmyhm)':
+ '@solid-primitives/autofocus@0.0.111(solid-js@1.8.19)':
dependencies:
- '@solidjs/router': 0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)
- '@solidjs/start': 1.0.1(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- '@tanstack/solid-query': 5.51.9(solid-js@1.8.18)
- '@trpc/client': 10.45.2(@trpc/server@10.45.2)
- '@trpc/server': 10.45.2
- solid-js: 1.8.18
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/autofocus@0.0.111(solid-js@1.8.18)':
+ '@solid-primitives/bounds@0.0.118(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/resize-observer': 2.0.26(solid-js@1.8.19)
+ '@solid-primitives/static-store': 0.0.5(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/bounds@0.0.118(solid-js@1.8.18)':
+ '@solid-primitives/connectivity@0.3.20(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/resize-observer': 2.0.26(solid-js@1.8.18)
- '@solid-primitives/static-store': 0.0.5(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/connectivity@0.3.20(solid-js@1.8.18)':
+ '@solid-primitives/context@0.2.3(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/context@0.2.3(solid-js@1.8.18)':
+ '@solid-primitives/cursor@0.0.112(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/cursor@0.0.112(solid-js@1.8.18)':
+ '@solid-primitives/date@2.0.22(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/memo': 1.3.9(solid-js@1.8.19)
+ '@solid-primitives/timer': 1.3.9(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/date@2.0.22(solid-js@1.8.18)':
+ '@solid-primitives/deep@0.2.9(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/memo': 1.3.9(solid-js@1.8.18)
- '@solid-primitives/timer': 1.3.9(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/memo': 1.3.9(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/deep@0.2.9(solid-js@1.8.18)':
+ '@solid-primitives/event-bus@1.0.11(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/memo': 1.3.9(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/event-bus@1.0.11(solid-js@1.8.18)':
+ '@solid-primitives/event-listener@2.3.3(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/event-listener@2.3.3(solid-js@1.8.18)':
+ '@solid-primitives/keyboard@1.2.8(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/keyboard@1.2.8(solid-js@1.8.18)':
+ '@solid-primitives/keyed@1.2.2(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/keyed@1.2.2(solid-js@1.8.18)':
+ '@solid-primitives/lifecycle@0.0.102(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/lifecycle@0.0.102(solid-js@1.8.18)':
+ '@solid-primitives/map@0.4.11(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/trigger': 1.0.11(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/map@0.4.11(solid-js@1.8.18)':
+ '@solid-primitives/media@2.2.9(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/trigger': 1.0.11(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/static-store': 0.0.8(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/media@2.2.9(solid-js@1.8.18)':
+ '@solid-primitives/memo@1.3.9(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/static-store': 0.0.8(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/memo@1.3.9(solid-js@1.8.18)':
+ '@solid-primitives/mutation-observer@1.1.17(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/scheduled': 1.4.3(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/mutation-observer@1.1.17(solid-js@1.8.18)':
+ '@solid-primitives/platform@0.1.2(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/platform@0.1.2(solid-js@1.8.18)':
+ '@solid-primitives/props@3.1.11(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/props@3.1.11(solid-js@1.8.18)':
+ '@solid-primitives/refs@1.0.8(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/refs@1.0.8(solid-js@1.8.18)':
+ '@solid-primitives/resize-observer@2.0.26(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.19)
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/static-store': 0.0.8(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/resize-observer@2.0.26(solid-js@1.8.18)':
+ '@solid-primitives/resource@0.3.0(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/event-listener': 2.3.3(solid-js@1.8.18)
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/static-store': 0.0.8(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/resource@0.3.0(solid-js@1.8.18)':
+ '@solid-primitives/rootless@1.4.5(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/rootless@1.4.5(solid-js@1.8.18)':
+ '@solid-primitives/scheduled@1.4.3(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/scheduled@1.4.3(solid-js@1.8.18)':
+ '@solid-primitives/set@0.4.11(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/trigger': 1.0.11(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/set@0.4.11(solid-js@1.8.18)':
+ '@solid-primitives/static-store@0.0.5(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/trigger': 1.0.11(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/static-store@0.0.5(solid-js@1.8.18)':
+ '@solid-primitives/static-store@0.0.8(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/static-store@0.0.8(solid-js@1.8.18)':
+ '@solid-primitives/storage@3.8.0(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/storage@3.8.0(solid-js@1.8.18)':
+ '@solid-primitives/styles@0.0.111(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/rootless': 1.4.5(solid-js@1.8.19)
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/styles@0.0.111(solid-js@1.8.18)':
+ '@solid-primitives/timer@1.3.9(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/rootless': 1.4.5(solid-js@1.8.18)
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/timer@1.3.9(solid-js@1.8.18)':
+ '@solid-primitives/transition-group@1.0.5(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/transition-group@1.0.5(solid-js@1.8.18)':
+ '@solid-primitives/trigger@1.0.11(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ '@solid-primitives/utils': 6.2.3(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@solid-primitives/trigger@1.0.11(solid-js@1.8.18)':
+ '@solid-primitives/utils@6.2.3(solid-js@1.8.19)':
dependencies:
- '@solid-primitives/utils': 6.2.3(solid-js@1.8.18)
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/utils@6.2.3(solid-js@1.8.18)':
+ '@solid-primitives/websocket@1.2.2(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solid-primitives/websocket@1.2.2(solid-js@1.8.18)':
+ '@solidjs/router@0.13.3(solid-js@1.8.19)':
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@solidjs/router@0.13.3(patch_hash=zvbzyeqkevh5uh2poupaukupca)(solid-js@1.8.18)':
+ '@solidjs/start@1.0.6(patch_hash=3c4gwxs3pt6xe3wn3vd4pa5a4i)(rollup@4.20.0)(solid-js@1.8.19)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))':
dependencies:
- solid-js: 1.8.18
-
- '@solidjs/start@1.0.1(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))':
- dependencies:
- '@vinxi/plugin-directives': 0.3.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- '@vinxi/server-components': 0.3.3(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- '@vinxi/server-functions': 0.3.3(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- defu: 6.1.4
- error-stack-parser: 2.1.4
- glob: 10.4.5
- html-to-image: 1.11.11
- radix3: 1.1.2
- seroval: 1.1.0
- seroval-plugins: 1.1.0(seroval@1.1.0)
- shikiji: 0.9.19
- source-map-js: 1.2.0
- terracotta: 1.0.5(solid-js@1.8.18)
- vite-plugin-inspect: 0.7.42(rollup@4.18.1)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- vite-plugin-solid: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- transitivePeerDependencies:
- - '@nuxt/kit'
- - '@testing-library/jest-dom'
- - rollup
- - solid-js
- - supports-color
- - vinxi
- - vite
-
- '@solidjs/start@1.0.6(patch_hash=p4sxlbdzyqm6sxnwnfekqf5bni)(rollup@4.18.1)(solid-js@1.8.18)(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))':
- dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- '@vinxi/server-components': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- '@vinxi/server-functions': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@vinxi/server-components': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@vinxi/server-functions': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
defu: 6.1.4
error-stack-parser: 2.1.4
glob: 10.4.5
html-to-image: 1.11.11
radix3: 1.1.2
- seroval: 1.1.0
- seroval-plugins: 1.1.0(seroval@1.1.0)
+ seroval: 1.1.1
+ seroval-plugins: 1.1.1(seroval@1.1.1)
shikiji: 0.9.19
source-map-js: 1.2.0
- terracotta: 1.0.5(solid-js@1.8.18)
- vite-plugin-inspect: 0.7.42(rollup@4.18.1)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
- vite-plugin-solid: 2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ terracotta: 1.0.5(solid-js@1.8.19)
+ vite-plugin-inspect: 0.7.42(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
+ vite-plugin-solid: 2.10.2(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
transitivePeerDependencies:
- '@nuxt/kit'
- '@testing-library/jest-dom'
@@ -13305,37 +12152,67 @@ snapshots:
'@swc/core-darwin-arm64@1.3.101':
optional: true
+ '@swc/core-darwin-arm64@1.7.6':
+ optional: true
+
'@swc/core-darwin-x64@1.3.101':
optional: true
+ '@swc/core-darwin-x64@1.7.6':
+ optional: true
+
'@swc/core-linux-arm-gnueabihf@1.3.101':
optional: true
+ '@swc/core-linux-arm-gnueabihf@1.7.6':
+ optional: true
+
'@swc/core-linux-arm64-gnu@1.3.101':
optional: true
+ '@swc/core-linux-arm64-gnu@1.7.6':
+ optional: true
+
'@swc/core-linux-arm64-musl@1.3.101':
optional: true
+ '@swc/core-linux-arm64-musl@1.7.6':
+ optional: true
+
'@swc/core-linux-x64-gnu@1.3.101':
optional: true
+ '@swc/core-linux-x64-gnu@1.7.6':
+ optional: true
+
'@swc/core-linux-x64-musl@1.3.101':
optional: true
+ '@swc/core-linux-x64-musl@1.7.6':
+ optional: true
+
'@swc/core-win32-arm64-msvc@1.3.101':
optional: true
+ '@swc/core-win32-arm64-msvc@1.7.6':
+ optional: true
+
'@swc/core-win32-ia32-msvc@1.3.101':
optional: true
+ '@swc/core-win32-ia32-msvc@1.7.6':
+ optional: true
+
'@swc/core-win32-x64-msvc@1.3.101':
optional: true
+ '@swc/core-win32-x64-msvc@1.7.6':
+ optional: true
+
'@swc/core@1.3.101(@swc/helpers@0.5.12)':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.9
+ '@swc/types': 0.1.12
optionalDependencies:
'@swc/core-darwin-arm64': 1.3.101
'@swc/core-darwin-x64': 1.3.101
@@ -13349,6 +12226,23 @@ snapshots:
'@swc/core-win32-x64-msvc': 1.3.101
'@swc/helpers': 0.5.12
+ '@swc/core@1.7.6':
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.12
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.7.6
+ '@swc/core-darwin-x64': 1.7.6
+ '@swc/core-linux-arm-gnueabihf': 1.7.6
+ '@swc/core-linux-arm64-gnu': 1.7.6
+ '@swc/core-linux-arm64-musl': 1.7.6
+ '@swc/core-linux-x64-gnu': 1.7.6
+ '@swc/core-linux-x64-musl': 1.7.6
+ '@swc/core-win32-arm64-msvc': 1.7.6
+ '@swc/core-win32-ia32-msvc': 1.7.6
+ '@swc/core-win32-x64-msvc': 1.7.6
+ optional: true
+
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.12':
@@ -13364,102 +12258,100 @@ snapshots:
'@swc/counter': 0.1.3
tslib: 2.6.3
- '@swc/types@0.1.9':
+ '@swc/types@0.1.12':
dependencies:
'@swc/counter': 0.1.3
- '@szmarczak/http-timer@4.0.6':
- dependencies:
- defer-to-connect: 2.0.1
-
- '@t3-oss/env-core@0.10.1(typescript@5.5.4)(zod@3.23.8)':
+ '@t3-oss/env-core@0.11.0(typescript@5.5.4)(zod@3.23.8)':
dependencies:
zod: 3.23.8
optionalDependencies:
typescript: 5.5.4
- '@tailwindcss/forms@0.5.7(tailwindcss@3.4.6)':
+ '@tailwindcss/forms@0.5.7(tailwindcss@3.4.7)':
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
- '@tailwindcss/typography@0.5.13(tailwindcss@3.4.6)':
+ '@tailwindcss/typography@0.5.13(tailwindcss@3.4.7)':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
'@tanstack/form-core@0.20.0':
dependencies:
'@tanstack/store': 0.3.1
- '@tanstack/form-core@0.20.3':
+ '@tanstack/form-core@0.27.0':
dependencies:
- '@tanstack/store': 0.3.1
+ '@tanstack/store': 0.5.5
- '@tanstack/query-core@5.51.9': {}
+ '@tanstack/query-core@5.51.21': {}
- '@tanstack/query-devtools@5.51.9': {}
+ '@tanstack/query-devtools@5.51.16': {}
- '@tanstack/query-persist-client-core@5.51.9':
+ '@tanstack/query-persist-client-core@5.51.21':
dependencies:
- '@tanstack/query-core': 5.51.9
+ '@tanstack/query-core': 5.51.21
- '@tanstack/react-virtual@3.8.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-virtual@3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/virtual-core': 3.8.3
+ '@tanstack/virtual-core': 3.8.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@tanstack/solid-form@0.20.0(patch_hash=u7mggdzwgkctmq3zwzwnyiwq4y)(solid-js@1.8.18)':
+ '@tanstack/solid-form@0.20.0(solid-js@1.8.19)':
dependencies:
'@tanstack/form-core': 0.20.0
- '@tanstack/solid-store': 0.3.1(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@tanstack/solid-store': 0.3.1(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@tanstack/solid-query-devtools@5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)':
+ '@tanstack/solid-query-devtools@5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)':
dependencies:
- '@tanstack/query-devtools': 5.51.9
- '@tanstack/solid-query': 5.51.9(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@tanstack/query-devtools': 5.51.16
+ '@tanstack/solid-query': 5.51.21(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@tanstack/solid-query-persist-client@5.51.9(@tanstack/solid-query@5.51.9(solid-js@1.8.18))(solid-js@1.8.18)':
+ '@tanstack/solid-query-persist-client@5.51.21(@tanstack/solid-query@5.51.21(solid-js@1.8.19))(solid-js@1.8.19)':
dependencies:
- '@tanstack/query-persist-client-core': 5.51.9
- '@tanstack/solid-query': 5.51.9(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@tanstack/query-persist-client-core': 5.51.21
+ '@tanstack/solid-query': 5.51.21(solid-js@1.8.19)
+ solid-js: 1.8.19
- '@tanstack/solid-query@5.51.9(solid-js@1.8.18)':
+ '@tanstack/solid-query@5.51.21(solid-js@1.8.19)':
dependencies:
- '@tanstack/query-core': 5.51.9
- solid-js: 1.8.18
+ '@tanstack/query-core': 5.51.21
+ solid-js: 1.8.19
- '@tanstack/solid-store@0.3.1(solid-js@1.8.18)':
+ '@tanstack/solid-store@0.3.1(solid-js@1.8.19)':
dependencies:
'@tanstack/store': 0.3.1
- solid-js: 1.8.18
+ solid-js: 1.8.19
- '@tanstack/solid-table@8.19.3(solid-js@1.8.18)':
+ '@tanstack/solid-table@8.20.1(solid-js@1.8.19)':
dependencies:
- '@tanstack/table-core': 8.19.3
- solid-js: 1.8.18
+ '@tanstack/table-core': 8.20.1
+ solid-js: 1.8.19
- '@tanstack/solid-virtual@3.8.3(solid-js@1.8.18)':
+ '@tanstack/solid-virtual@3.8.4(solid-js@1.8.19)':
dependencies:
- '@tanstack/virtual-core': 3.8.3
- solid-js: 1.8.18
+ '@tanstack/virtual-core': 3.8.4
+ solid-js: 1.8.19
'@tanstack/store@0.3.1': {}
- '@tanstack/table-core@8.19.3': {}
+ '@tanstack/store@0.5.5': {}
- '@tanstack/virtual-core@3.8.3': {}
+ '@tanstack/table-core@8.20.1': {}
- '@tanstack/zod-form-adapter@0.20.3(zod@3.23.8)':
+ '@tanstack/virtual-core@3.8.4': {}
+
+ '@tanstack/zod-form-adapter@0.27.0(zod@3.23.8)':
dependencies:
- '@tanstack/form-core': 0.20.3
+ '@tanstack/form-core': 0.27.0
zod: 3.23.8
'@trpc/client@10.45.2(@trpc/server@10.45.2)':
@@ -13470,57 +12362,47 @@ snapshots:
'@tsconfig/node20@20.1.4': {}
- '@tufjs/canonical-json@2.0.0': {}
-
- '@tufjs/models@2.0.1':
- dependencies:
- '@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.5
-
'@tybys/wasm-util@0.8.3':
dependencies:
tslib: 2.6.3
optional: true
+ '@tybys/wasm-util@0.9.0':
+ dependencies:
+ tslib: 2.6.3
+
'@types/acorn@4.0.6':
dependencies:
'@types/estree': 1.0.5
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.2
'@types/braces@3.0.4': {}
- '@types/cacheable-request@6.0.3':
- dependencies:
- '@types/http-cache-semantics': 4.0.4
- '@types/keyv': 3.1.4
- '@types/node': 20.14.11
- '@types/responselike': 1.0.3
-
'@types/cookie@0.4.1': {}
'@types/cors@2.8.17':
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
'@types/debug@4.1.12':
dependencies:
@@ -13528,10 +12410,10 @@ snapshots:
'@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 8.56.10
+ '@types/eslint': 9.6.0
'@types/estree': 1.0.5
- '@types/eslint@8.56.10':
+ '@types/eslint@9.6.0':
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
@@ -13542,26 +12424,18 @@ snapshots:
'@types/estree@1.0.5': {}
- '@types/google-protobuf@3.15.12': {}
-
'@types/hast@3.0.4':
dependencies:
'@types/unist': 3.0.2
- '@types/http-cache-semantics@4.0.4': {}
-
'@types/http-proxy@1.17.14':
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
'@types/json-schema@7.0.15': {}
'@types/json5@0.0.29': {}
- '@types/keyv@3.1.4':
- dependencies:
- '@types/node': 20.14.11
-
'@types/mdast@4.0.4':
dependencies:
'@types/unist': 3.0.2
@@ -13576,15 +12450,15 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
- '@types/node@20.14.11':
+ '@types/node@22.1.0':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.13.0
'@types/plist@3.0.5':
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
xmlbuilder: 15.1.1
'@types/pluralize@0.0.33': {}
@@ -13597,7 +12471,7 @@ snapshots:
dependencies:
'@types/react': 18.3.3
- '@types/react-highlight-words@0.16.7':
+ '@types/react-highlight-words@0.20.0':
dependencies:
'@types/react': 18.3.3
@@ -13614,25 +12488,15 @@ snapshots:
'@types/resolve@1.20.2': {}
- '@types/responselike@1.0.3':
- dependencies:
- '@types/node': 20.14.11
-
'@types/scheduler@0.23.0': {}
- '@types/semver@7.5.8': {}
-
- '@types/shimmer@1.2.0': {}
-
- '@types/tmp@0.2.6': {}
-
'@types/unist@2.0.10': {}
'@types/unist@3.0.2': {}
'@types/webpack@5.28.5(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)':
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
tapable: 2.2.1
webpack: 5.93.0(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)
transitivePeerDependencies:
@@ -13641,14 +12505,14 @@ snapshots:
- uglify-js
- webpack-cli
- '@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.2.0
'@typescript-eslint/types': 7.2.0
'@typescript-eslint/typescript-estree': 7.2.0(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.2.0
- debug: 4.3.5
- eslint: 9.7.0
+ debug: 4.3.6
+ eslint: 9.8.0
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
@@ -13665,7 +12529,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 7.2.0
'@typescript-eslint/visitor-keys': 7.2.0
- debug: 4.3.5
+ debug: 4.3.6
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
@@ -13723,9 +12587,9 @@ snapshots:
transitivePeerDependencies:
- uWebSockets.js
- '@vinxi/plugin-directives@0.3.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
+ '@vinxi/plugin-directives@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
dependencies:
- '@babel/parser': 7.24.8
+ '@babel/parser': 7.25.3
acorn: 8.12.1
acorn-jsx: 5.3.2(acorn@8.12.1)
acorn-loose: 8.4.0
@@ -13734,64 +12598,29 @@ snapshots:
magicast: 0.2.11
recast: 0.23.9
tslib: 2.6.3
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
-
- '@vinxi/plugin-directives@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
- dependencies:
- '@babel/parser': 7.24.8
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
- acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.1)
- astring: 1.8.6
- magicast: 0.2.11
- recast: 0.23.9
- tslib: 2.6.3
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
-
- '@vinxi/server-components@0.3.3(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
- dependencies:
- '@vinxi/plugin-directives': 0.3.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- acorn: 8.12.1
- acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.1)
- astring: 1.8.6
- magicast: 0.2.11
- recast: 0.23.9
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
-
- '@vinxi/server-components@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
- dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
- acorn: 8.12.1
- acorn-loose: 8.4.0
- acorn-typescript: 1.4.13(acorn@8.12.1)
- astring: 1.8.6
- magicast: 0.2.11
- recast: 0.23.9
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
- '@vinxi/server-functions@0.3.3(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
+ '@vinxi/server-components@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
dependencies:
- '@vinxi/plugin-directives': 0.3.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
acorn: 8.12.1
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.12.1)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
- '@vinxi/server-functions@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
+ '@vinxi/server-functions@0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@planetscale/database@1.18.0)(pg@8.12.0))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
+ '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2))
acorn: 8.12.1
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.12.1)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
+ vinxi: 0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2)
'@webassemblyjs/ast@1.12.1':
dependencies:
@@ -13923,21 +12752,10 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
- agent-base@7.1.1:
- dependencies:
- debug: 4.3.5
- transitivePeerDependencies:
- - supports-color
-
- aggregate-error@3.1.0:
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
-
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
@@ -13949,23 +12767,23 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- algoliasearch@4.23.3:
- dependencies:
- '@algolia/cache-browser-local-storage': 4.23.3
- '@algolia/cache-common': 4.23.3
- '@algolia/cache-in-memory': 4.23.3
- '@algolia/client-account': 4.23.3
- '@algolia/client-analytics': 4.23.3
- '@algolia/client-common': 4.23.3
- '@algolia/client-personalization': 4.23.3
- '@algolia/client-search': 4.23.3
- '@algolia/logger-common': 4.23.3
- '@algolia/logger-console': 4.23.3
- '@algolia/recommend': 4.23.3
- '@algolia/requester-browser-xhr': 4.23.3
- '@algolia/requester-common': 4.23.3
- '@algolia/requester-node-http': 4.23.3
- '@algolia/transporter': 4.23.3
+ algoliasearch@4.24.0:
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-account': 4.24.0
+ '@algolia/client-analytics': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-personalization': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/recommend': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
ansi-align@3.0.1:
dependencies:
@@ -13977,8 +12795,6 @@ snapshots:
ansi-regex@6.0.1: {}
- ansi-sequence-parser@1.1.1: {}
-
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -14089,13 +12905,6 @@ snapshots:
es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
- array.prototype.toreversed@1.1.2:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.2
-
array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
@@ -14141,22 +12950,22 @@ snapshots:
autoprefixer@10.4.14(postcss@8.4.38):
dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001642
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001649
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
postcss: 8.4.38
postcss-value-parser: 4.2.0
- autoprefixer@10.4.19(postcss@8.4.39):
+ autoprefixer@10.4.20(postcss@8.4.41):
dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001642
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001649
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
- postcss: 8.4.39
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -14167,9 +12976,9 @@ snapshots:
aws4fetch@1.0.19: {}
- axe-core@4.9.1: {}
+ axe-core@4.10.0: {}
- axios@1.7.2:
+ axios@1.7.3:
dependencies:
follow-redirects: 1.15.6
form-data: 4.0.0
@@ -14183,19 +12992,19 @@ snapshots:
b4a@1.6.6: {}
- babel-plugin-jsx-dom-expressions@0.37.23(@babel/core@7.24.9):
+ babel-plugin-jsx-dom-expressions@0.38.1(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/types': 7.24.9
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/types': 7.25.2
html-entities: 2.3.3
validate-html-nesting: 1.2.2
- babel-preset-solid@1.8.18(@babel/core@7.24.9):
+ babel-preset-solid@1.8.19(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
- babel-plugin-jsx-dom-expressions: 0.37.23(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ babel-plugin-jsx-dom-expressions: 0.38.1(@babel/core@7.25.2)
bail@2.0.2: {}
@@ -14214,13 +13023,6 @@ snapshots:
big.js@5.2.2: {}
- bin-links@4.0.4:
- dependencies:
- cmd-shim: 6.0.3
- npm-normalize-package-bin: 3.0.1
- read-cmd-shim: 4.0.0
- write-file-atomic: 5.0.1
-
binary-extensions@2.3.0: {}
bindings@1.5.0:
@@ -14267,12 +13069,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.23.2:
+ browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001642
- electron-to-chromium: 1.4.832
- node-releases: 2.0.17
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ caniuse-lite: 1.0.30001649
+ electron-to-chromium: 1.5.5
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.0(browserslist@4.23.3)
buffer-crc32@1.0.0: {}
@@ -14288,8 +13090,6 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.0.0: {}
-
builtin-modules@3.3.0: {}
bundle-name@3.0.0:
@@ -14315,33 +13115,6 @@ snapshots:
pkg-types: 1.1.3
rc9: 2.1.2
- cacache@18.0.4:
- dependencies:
- '@npmcli/fs': 3.1.1
- fs-minipass: 3.0.3
- glob: 10.4.5
- lru-cache: 10.4.3
- minipass: 7.1.2
- minipass-collect: 2.0.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- p-map: 4.0.0
- ssri: 10.0.6
- tar: 6.2.1
- unique-filename: 3.0.0
-
- cacheable-lookup@5.0.4: {}
-
- cacheable-request@7.0.4:
- dependencies:
- clone-response: 1.0.3
- get-stream: 5.2.0
- http-cache-semantics: 4.1.1
- keyv: 4.5.4
- lowercase-keys: 2.0.0
- normalize-url: 6.1.0
- responselike: 2.0.1
-
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -14363,11 +13136,11 @@ snapshots:
camelcase@7.0.1: {}
- caniuse-lite@1.0.30001642: {}
+ caniuse-lite@1.0.30001649: {}
capnp-ts@0.7.0:
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
tslib: 2.6.3
transitivePeerDependencies:
- supports-color
@@ -14431,8 +13204,6 @@ snapshots:
dependencies:
consola: 3.2.3
- cjs-module-lexer@1.3.1: {}
-
class-variance-authority@0.7.0:
dependencies:
clsx: 2.0.0
@@ -14441,18 +13212,8 @@ snapshots:
dependencies:
source-map: 0.6.1
- clean-stack@2.2.0: {}
-
cli-boxes@3.0.0: {}
- cli-color@2.0.4:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-iterator: 2.0.3
- memoizee: 0.4.17
- timers-ext: 0.1.8
-
cli-cursor@3.1.0:
dependencies:
restore-cursor: 3.1.0
@@ -14475,10 +13236,6 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- clone-response@1.0.3:
- dependencies:
- mimic-response: 1.0.1
-
clone@1.0.4: {}
clsx@1.2.1: {}
@@ -14491,15 +13248,13 @@ snapshots:
cluster-key-slot@1.1.2: {}
- cmd-shim@6.0.3: {}
-
- cmdk-solid@1.0.1(patch_hash=dag6pt7gimjmc5acuz5pepq574)(solid-js@1.8.18):
+ cmdk-solid@1.1.0(solid-js@1.8.19):
dependencies:
- '@kobalte/core': 0.12.6(solid-js@1.8.18)
- '@kobalte/utils': 0.9.0(solid-js@1.8.18)
- '@solid-primitives/deep': 0.2.9(solid-js@1.8.18)
- '@solid-primitives/mutation-observer': 1.1.17(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@kobalte/core': 0.12.6(solid-js@1.8.19)
+ '@kobalte/utils': 0.9.0(solid-js@1.8.19)
+ '@solid-primitives/deep': 0.2.9(solid-js@1.8.19)
+ '@solid-primitives/mutation-observer': 1.1.17(solid-js@1.8.19)
+ solid-js: 1.8.19
codejar@4.2.0: {}
@@ -14547,10 +13302,6 @@ snapshots:
commander@8.3.0: {}
- commander@9.5.0: {}
-
- common-ancestor-path@1.0.1: {}
-
commondir@1.0.1: {}
compress-commons@6.0.2:
@@ -14580,7 +13331,7 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-es@1.2.1: {}
+ cookie-es@1.2.2: {}
cookie@0.4.2: {}
@@ -14604,7 +13355,7 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.5.2
- croner@8.1.0: {}
+ croner@8.1.1: {}
cross-fetch@4.0.0(encoding@0.1.13):
dependencies:
@@ -14634,11 +13385,6 @@ snapshots:
csstype@3.1.3: {}
- d@1.0.2:
- dependencies:
- es5-ext: 0.10.64
- type: 2.7.3
-
damerau-levenshtein@1.0.8: {}
data-uri-to-buffer@2.0.2: {}
@@ -14668,9 +13414,9 @@ snapshots:
'@deno/shim-deno': 0.19.2
undici-types: 5.28.4
- db0@0.1.4(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)):
+ db0@0.1.4(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)):
optionalDependencies:
- drizzle-orm: 0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
+ drizzle-orm: 0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1)
debounce@2.0.0: {}
@@ -14682,7 +13428,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.5:
+ debug@4.3.6:
dependencies:
ms: 2.1.2
@@ -14690,10 +13436,6 @@ snapshots:
dependencies:
character-entities: 2.0.2
- decompress-response@6.0.0:
- dependencies:
- mimic-response: 3.1.0
-
deep-equal@2.2.3:
dependencies:
array-buffer-byte-length: 1.0.1
@@ -14735,8 +13477,6 @@ snapshots:
dependencies:
clone: 1.0.4
- defer-to-connect@2.0.1: {}
-
define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
@@ -14785,10 +13525,6 @@ snapshots:
diff-sequences@29.6.3: {}
- difflib@0.2.4:
- dependencies:
- heap: 0.2.7
-
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -14842,41 +13578,32 @@ snapshots:
dependencies:
type-fest: 3.13.1
- dotenv-expand@10.0.0: {}
+ dotenv-expand@11.0.6:
+ dependencies:
+ dotenv: 16.4.5
dotenv-expand@8.0.3: {}
dotenv@16.0.3: {}
- dotenv@16.3.2: {}
-
dotenv@16.4.5: {}
- dreamopt@0.8.0:
- dependencies:
- wordwrap: 1.0.0
-
- drizzle-kit@0.21.4:
+ drizzle-kit@0.23.2:
dependencies:
+ '@drizzle-team/brocli': 0.8.2
'@esbuild-kit/esm-loader': 2.6.5
- commander: 9.5.0
- env-paths: 3.0.0
esbuild: 0.19.12
- esbuild-register: 3.5.0(esbuild@0.19.12)
- glob: 8.1.0
- hanji: 0.0.5
- json-diff: 0.9.0
- zod: 3.23.8
+ esbuild-register: 3.6.0(esbuild@0.19.12)
transitivePeerDependencies:
- supports-color
- drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1):
+ drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1):
optionalDependencies:
- '@cloudflare/workers-types': 4.20240512.0
+ '@cloudflare/workers-types': 4.20240729.0
'@opentelemetry/api': 1.9.0
'@planetscale/database': 1.18.0
'@types/react': 18.3.3
- mysql2: 3.10.3
+ mysql2: 3.11.0
pg: 8.12.0
postgres: 3.4.4
react: 18.3.1
@@ -14898,7 +13625,7 @@ snapshots:
dependencies:
jake: 10.9.2
- electron-to-chromium@1.4.832: {}
+ electron-to-chromium@1.5.5: {}
emoji-regex@8.0.0: {}
@@ -14920,7 +13647,7 @@ snapshots:
engine.io-client@6.5.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.5
+ debug: 4.3.6
engine.io-parser: 5.2.3
ws: 8.17.1
xmlhttprequest-ssl: 2.0.0
@@ -14935,12 +13662,12 @@ snapshots:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.17
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
cors: 2.8.5
- debug: 4.3.5
+ debug: 4.3.6
engine.io-parser: 5.2.3
ws: 8.17.1
transitivePeerDependencies:
@@ -14948,7 +13675,7 @@ snapshots:
- supports-color
- utf-8-validate
- enhanced-resolve@5.17.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -14961,12 +13688,6 @@ snapshots:
entities@4.5.0: {}
- env-paths@2.2.1: {}
-
- env-paths@3.0.0: {}
-
- err-code@2.0.3: {}
-
error-stack-parser-es@0.1.5: {}
error-stack-parser@2.1.4:
@@ -15079,34 +13800,9 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es5-ext@0.10.64:
+ esbuild-register@3.6.0(esbuild@0.19.12):
dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.4
- esniff: 2.0.1
- next-tick: 1.1.0
-
- es6-iterator@2.0.3:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-symbol: 3.1.4
-
- es6-symbol@3.1.4:
- dependencies:
- d: 1.0.2
- ext: 1.7.0
-
- es6-weak-map@2.0.3:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-iterator: 2.0.3
- es6-symbol: 3.1.4
-
- esbuild-register@3.5.0(esbuild@0.19.12):
- dependencies:
- debug: 4.3.5
+ debug: 4.3.6
esbuild: 0.19.12
transitivePeerDependencies:
- supports-color
@@ -15275,32 +13971,32 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-config-next@14.2.5(eslint@9.7.0)(typescript@5.5.4):
+ eslint-config-next@14.2.5(eslint@9.8.0)(typescript@5.5.4):
dependencies:
'@next/eslint-plugin-next': 14.2.5
- '@rushstack/eslint-patch': 1.10.3
- '@typescript-eslint/parser': 7.2.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/parser': 7.2.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@9.7.0)
- eslint-plugin-jsx-a11y: 6.9.0(eslint@9.7.0)
- eslint-plugin-react: 7.34.4(eslint@9.7.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@9.7.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0)
+ eslint-plugin-jsx-a11y: 6.9.0(eslint@9.8.0)
+ eslint-plugin-react: 7.35.0(eslint@9.8.0)
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.8.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
- eslint-config-prettier@9.0.0(eslint@9.7.0):
+ eslint-config-prettier@9.0.0(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
- eslint-config-turbo@1.10.12(eslint@9.7.0):
+ eslint-config-turbo@1.10.12(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
- eslint-plugin-turbo: 1.10.12(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-plugin-turbo: 1.10.12(eslint@9.8.0)
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -15310,13 +14006,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0):
+ eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0):
dependencies:
- debug: 4.3.5
- enhanced-resolve: 5.17.0
- eslint: 9.7.0
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0))(eslint@9.7.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@9.7.0)
+ debug: 4.3.6
+ enhanced-resolve: 5.17.1
+ eslint: 9.8.0
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.6
is-core-module: 2.15.0
@@ -15327,18 +14023,18 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0))(eslint@9.7.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.2.0(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@typescript-eslint/parser': 7.2.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0)
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1)(eslint@9.7.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -15346,9 +14042,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.7.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.7.0))(eslint@9.7.0))(eslint@9.7.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@9.8.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1(eslint@9.8.0))(eslint@9.8.0))(eslint@9.8.0)
hasown: 2.0.2
is-core-module: 2.15.0
is-glob: 4.0.3
@@ -15359,24 +14055,24 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.2.0(eslint@9.7.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.2.0(eslint@9.8.0)(typescript@5.5.4)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.9.0(eslint@9.7.0):
+ eslint-plugin-jsx-a11y@6.9.0(eslint@9.8.0):
dependencies:
aria-query: 5.1.3
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.9.1
+ axe-core: 4.10.0
axobject-query: 3.1.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.7.0
+ eslint: 9.8.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -15385,20 +14081,19 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.0
- eslint-plugin-react-hooks@4.6.2(eslint@9.7.0):
+ eslint-plugin-react-hooks@4.6.2(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
- eslint-plugin-react@7.34.4(eslint@9.7.0):
+ eslint-plugin-react@7.35.0(eslint@9.8.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
- array.prototype.toreversed: 1.1.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.7.0
+ eslint: 9.8.0
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -15412,10 +14107,10 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-turbo@1.10.12(eslint@9.7.0):
+ eslint-plugin-turbo@1.10.12(eslint@9.8.0):
dependencies:
dotenv: 16.0.3
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-scope@5.1.1:
dependencies:
@@ -15431,20 +14126,20 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@9.7.0:
+ eslint@9.8.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
'@eslint-community/regexpp': 4.11.0
- '@eslint/config-array': 0.17.0
+ '@eslint/config-array': 0.17.1
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.7.0
+ '@eslint/js': 9.8.0
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.3.0
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.5
+ debug: 4.3.6
escape-string-regexp: 4.0.0
eslint-scope: 8.0.2
eslint-visitor-keys: 4.0.0
@@ -15470,13 +14165,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- esniff@2.0.1:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- event-emitter: 0.3.5
- type: 2.7.3
-
espree@10.1.0:
dependencies:
acorn: 8.12.1
@@ -15538,11 +14226,6 @@ snapshots:
etag@1.8.1: {}
- event-emitter@0.3.5:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
-
event-target-shim@5.0.1: {}
eventemitter3@4.0.7: {}
@@ -15587,14 +14270,10 @@ snapshots:
exit-hook@2.2.1: {}
- exponential-backoff@3.1.1: {}
-
- ext@1.7.0:
- dependencies:
- type: 2.7.3
-
extend@3.0.2: {}
+ fast-deep-equal@2.0.1: {}
+
fast-deep-equal@3.1.3: {}
fast-fifo@1.3.2: {}
@@ -15619,10 +14298,6 @@ snapshots:
dependencies:
reusify: 1.0.4
- fdir@6.1.1(picomatch@3.0.1):
- optionalDependencies:
- picomatch: 3.0.1
-
figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -15646,11 +14321,6 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- find-up@6.3.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
-
flat-cache@4.0.1:
dependencies:
flatted: 3.3.1
@@ -15689,16 +14359,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- framer-motion@11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@11.3.21(@emotion/is-prop-valid@1.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
tslib: 2.6.3
optionalDependencies:
- '@emotion/is-prop-valid': 1.2.2
+ '@emotion/is-prop-valid': 1.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
fresh@0.5.2: {}
+ front-matter@4.0.2:
+ dependencies:
+ js-yaml: 3.14.1
+
fs-constants@1.0.0: {}
fs-extra@10.1.0:
@@ -15717,10 +14391,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- fs-minipass@3.0.3:
- dependencies:
- minipass: 7.1.2
-
fs-monkey@1.0.6:
optional: true
@@ -15777,10 +14447,6 @@ snapshots:
data-uri-to-buffer: 2.0.2
source-map: 0.6.1
- get-stream@5.2.0:
- dependencies:
- pump: 3.0.0
-
get-stream@6.0.1: {}
get-stream@8.0.1: {}
@@ -15887,26 +14553,10 @@ snapshots:
globrex@0.1.2: {}
- google-protobuf@3.21.4: {}
-
gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.4
- got@11.8.6:
- dependencies:
- '@sindresorhus/is': 4.6.0
- '@szmarczak/http-timer': 4.0.6
- '@types/cacheable-request': 6.0.3
- '@types/responselike': 1.0.3
- cacheable-lookup: 5.0.4
- cacheable-request: 7.0.4
- decompress-response: 6.0.0
- http2-wrapper: 1.0.3
- lowercase-keys: 2.0.0
- p-cancelable: 2.1.1
- responselike: 2.0.1
-
graceful-fs@4.2.11: {}
gzip-size@7.0.0:
@@ -15915,7 +14565,7 @@ snapshots:
h3@1.11.1:
dependencies:
- cookie-es: 1.2.1
+ cookie-es: 1.2.2
crossws: 0.2.4
defu: 6.1.4
destr: 2.0.3
@@ -15930,7 +14580,7 @@ snapshots:
h3@1.12.0:
dependencies:
- cookie-es: 1.2.1
+ cookie-es: 1.2.2
crossws: 0.2.4
defu: 6.1.4
destr: 2.0.3
@@ -15943,11 +14593,6 @@ snapshots:
transitivePeerDependencies:
- uWebSockets.js
- hanji@0.0.5:
- dependencies:
- lodash.throttle: 4.1.1
- sisteransi: 1.0.5
-
has-bigints@1.0.2: {}
has-flag@3.0.0: {}
@@ -16019,18 +14664,12 @@ snapshots:
he@1.2.0: {}
- heap@0.2.7: {}
-
highlight-words-core@1.2.2: {}
- hono@4.5.0: {}
+ hono@4.5.4: {}
hookable@5.5.3: {}
- hosted-git-info@7.0.2:
- dependencies:
- lru-cache: 10.4.3
-
html-entities@2.3.3: {}
html-minifier-terser@6.1.0:
@@ -16060,8 +14699,6 @@ snapshots:
domutils: 3.1.0
entities: 4.5.0
- http-cache-semantics@4.1.1: {}
-
http-errors@2.0.0:
dependencies:
depd: 2.0.0
@@ -16070,13 +14707,6 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-proxy-agent@7.0.2:
- dependencies:
- agent-base: 7.1.1
- debug: 4.3.5
- transitivePeerDependencies:
- - supports-color
-
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
@@ -16087,22 +14717,10 @@ snapshots:
http-shutdown@1.2.2: {}
- http2-wrapper@1.0.3:
- dependencies:
- quick-lru: 5.1.1
- resolve-alpn: 1.2.1
-
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.5
- transitivePeerDependencies:
- - supports-color
-
- https-proxy-agent@7.0.5:
- dependencies:
- agent-base: 7.1.1
- debug: 4.3.5
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
@@ -16114,7 +14732,7 @@ snapshots:
human-signals@5.0.0: {}
- husky@9.1.1: {}
+ husky@9.1.4: {}
iconv-lite@0.6.3:
dependencies:
@@ -16124,10 +14742,6 @@ snapshots:
ieee754@1.2.1: {}
- ignore-walk@6.0.5:
- dependencies:
- minimatch: 9.0.5
-
ignore@5.3.1: {}
import-fresh@3.3.0:
@@ -16135,17 +14749,8 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-in-the-middle@1.9.1:
- dependencies:
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- cjs-module-lexer: 1.3.1
- module-details-from-path: 1.0.3
-
imurmurhash@0.1.4: {}
- indent-string@4.0.0: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -16155,10 +14760,6 @@ snapshots:
ini@1.3.8: {}
- ini@2.0.0: {}
-
- ini@4.1.3: {}
-
inline-style-parser@0.1.1: {}
inline-style-parser@0.2.3: {}
@@ -16177,7 +14778,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.5
+ debug: 4.3.6
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -16187,11 +14788,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ip-address@9.0.5:
- dependencies:
- jsbn: 1.1.0
- sprintf-js: 1.1.3
-
ipaddr.js@2.2.0: {}
iron-webcrypto@1.2.1: {}
@@ -16280,8 +14876,6 @@ snapshots:
is-interactive@1.0.0: {}
- is-lambda@1.0.1: {}
-
is-map@2.0.3: {}
is-module@1.0.0: {}
@@ -16300,8 +14894,6 @@ snapshots:
is-primitive@3.0.1: {}
- is-promise@2.2.2: {}
-
is-property@1.0.2: {}
is-reference@1.2.1:
@@ -16412,7 +15004,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -16447,28 +15039,16 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsbn@1.1.0: {}
-
jsesc@2.5.2: {}
json-buffer@3.0.1: {}
- json-diff@0.9.0:
- dependencies:
- cli-color: 2.0.4
- difflib: 0.2.4
- dreamopt: 0.8.0
-
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.2: {}
-
json-schema-traverse@0.4.1: {}
json-stable-stringify-without-jsonify@1.0.1: {}
- json-stringify-nice@1.1.4: {}
-
json5@1.0.2:
dependencies:
minimist: 1.2.8
@@ -16477,16 +15057,12 @@ snapshots:
jsonc-parser@3.2.0: {}
- jsonc-parser@3.3.1: {}
-
jsonfile@6.1.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- jsonparse@1.3.1: {}
-
jsx-ast-utils@3.3.5:
dependencies:
array-includes: 3.1.8
@@ -16494,10 +15070,6 @@ snapshots:
object.assign: 4.1.5
object.values: 1.2.0
- just-diff-apply@5.5.0: {}
-
- just-diff@6.0.2: {}
-
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
@@ -16573,12 +15145,6 @@ snapshots:
dependencies:
p-locate: 5.0.0
- locate-path@7.2.0:
- dependencies:
- p-locate: 6.0.0
-
- lodash.camelcase@4.3.0: {}
-
lodash.castarray@4.4.0: {}
lodash.defaults@4.2.0: {}
@@ -16589,8 +15155,6 @@ snapshots:
lodash.merge@4.6.2: {}
- lodash.throttle@4.1.1: {}
-
lodash@4.17.21: {}
log-symbols@4.1.0:
@@ -16610,8 +15174,6 @@ snapshots:
dependencies:
tslib: 2.6.3
- lowercase-keys@2.0.0: {}
-
lru-cache@10.4.3: {}
lru-cache@5.1.1:
@@ -16626,10 +15188,6 @@ snapshots:
lru-cache@8.0.5: {}
- lru-queue@0.1.0:
- dependencies:
- es5-ext: 0.10.64
-
lucia@3.2.0:
dependencies:
oslo: 1.2.0
@@ -16638,37 +15196,20 @@ snapshots:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.10:
+ magic-string@0.30.11:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.2.11:
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
recast: 0.23.9
make-dir@3.1.0:
dependencies:
semver: 6.3.1
- make-fetch-happen@13.0.1:
- dependencies:
- '@npmcli/agent': 2.2.2
- cacache: 18.0.4
- http-cache-semantics: 4.1.1
- is-lambda: 1.0.1
- minipass: 7.1.2
- minipass-fetch: 3.0.5
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 0.6.3
- proc-log: 4.2.0
- promise-retry: 2.0.1
- ssri: 10.0.6
- transitivePeerDependencies:
- - supports-color
-
markdown-extensions@2.0.0: {}
markdown-table@3.0.3: {}
@@ -16861,17 +15402,6 @@ snapshots:
memoize-one@4.0.3: {}
- memoizee@0.4.17:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-weak-map: 2.0.3
- event-emitter: 0.3.5
- is-promise: 2.2.2
- lru-queue: 0.1.0
- next-tick: 1.1.0
- timers-ext: 0.1.8
-
merge-anything@5.1.7:
dependencies:
is-what: 4.1.16
@@ -17125,7 +15655,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.5
+ debug: 4.3.6
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -17157,8 +15687,6 @@ snapshots:
mime@1.6.0: {}
- mime@2.6.0: {}
-
mime@3.0.0: {}
mime@4.0.4: {}
@@ -17167,13 +15695,9 @@ snapshots:
mimic-fn@4.0.0: {}
- mimic-response@1.0.1: {}
-
- mimic-response@3.1.0: {}
-
mini-svg-data-uri@1.4.4: {}
- miniflare@3.20240718.0:
+ miniflare@3.20240725.0:
dependencies:
'@cspotcode/source-map-support': 0.8.1
acorn: 8.12.1
@@ -17183,7 +15707,7 @@ snapshots:
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.4
- workerd: 1.20240718.0
+ workerd: 1.20240725.0
ws: 8.18.0
youch: 3.3.3
zod: 3.23.8
@@ -17214,30 +15738,6 @@ snapshots:
minimist@1.2.8: {}
- minipass-collect@2.0.1:
- dependencies:
- minipass: 7.1.2
-
- minipass-fetch@3.0.5:
- dependencies:
- minipass: 7.1.2
- minipass-sized: 1.0.3
- minizlib: 2.1.2
- optionalDependencies:
- encoding: 0.1.13
-
- minipass-flush@1.0.5:
- dependencies:
- minipass: 3.3.6
-
- minipass-pipeline@1.2.4:
- dependencies:
- minipass: 3.3.6
-
- minipass-sized@1.0.3:
- dependencies:
- minipass: 3.3.6
-
minipass@3.3.6:
dependencies:
yallist: 4.0.0
@@ -17260,8 +15760,6 @@ snapshots:
pkg-types: 1.1.3
ufo: 1.5.4
- module-details-from-path@1.0.3: {}
-
mri@1.2.0: {}
mrmime@2.0.0: {}
@@ -17274,7 +15772,7 @@ snapshots:
mustache@4.2.0: {}
- mysql2@3.10.3:
+ mysql2@3.11.0:
dependencies:
aws-ssl-profiles: 1.1.1
denque: 2.1.0
@@ -17309,14 +15807,12 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- next-tick@1.1.0: {}
-
next@14.1.4(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.1.4
'@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001642
+ caniuse-lite: 1.0.30001649
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
@@ -17337,17 +15833,17 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@14.2.5(@babel/core@7.24.9)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.5(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.2.5
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001642
+ caniuse-lite: 1.0.30001649
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.24.9)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.25.2)(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.5
'@next/swc-darwin-x64': 14.2.5
@@ -17363,18 +15859,18 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- nitropack@2.9.6(patch_hash=p7ld6mmkgyxaavdzhe4ztnoviq)(@planetscale/database@1.18.0)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(xml2js@0.6.2):
+ nitropack@2.9.6(@planetscale/database@1.18.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(xml2js@0.6.2):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.1
- '@rollup/plugin-alias': 5.1.0(rollup@4.18.1)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.18.1)
- '@rollup/plugin-inject': 5.0.5(rollup@4.18.1)
- '@rollup/plugin-json': 6.1.0(rollup@4.18.1)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.18.1)
- '@rollup/plugin-replace': 5.0.7(rollup@4.18.1)
- '@rollup/plugin-terser': 0.4.4(rollup@4.18.1)
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/plugin-alias': 5.1.0(rollup@4.20.0)
+ '@rollup/plugin-commonjs': 25.0.8(rollup@4.20.0)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.20.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.20.0)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@4.20.0)
+ '@rollup/plugin-replace': 5.0.7(rollup@4.20.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.20.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
'@types/http-proxy': 1.17.14
'@vercel/nft': 0.26.5(encoding@0.1.13)
archiver: 7.0.1
@@ -17383,10 +15879,10 @@ snapshots:
chokidar: 3.6.0
citty: 0.1.6
consola: 3.2.3
- cookie-es: 1.2.1
- croner: 8.1.0
+ cookie-es: 1.2.2
+ croner: 8.1.1
crossws: 0.2.4
- db0: 0.1.4(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))
+ db0: 0.1.4(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))
defu: 6.1.4
destr: 2.0.3
dot-prop: 8.0.2
@@ -17405,7 +15901,7 @@ snapshots:
klona: 2.0.6
knitwork: 1.1.0
listhen: 1.7.2
- magic-string: 0.30.10
+ magic-string: 0.30.11
mime: 4.0.4
mlly: 1.7.1
mri: 1.2.0
@@ -17418,8 +15914,8 @@ snapshots:
pkg-types: 1.1.3
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.18.1
- rollup-plugin-visualizer: 5.12.0(rollup@4.18.1)
+ rollup: 4.20.0
+ rollup-plugin-visualizer: 5.12.0(rollup@4.20.0)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
@@ -17429,7 +15925,7 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.9.0(rollup@4.18.1)
+ unimport: 3.10.0(rollup@4.20.0)
unstorage: 1.10.2(@planetscale/database@1.18.0)(ioredis@5.4.1)
unwasm: 0.3.9
optionalDependencies:
@@ -17474,21 +15970,6 @@ snapshots:
node-gyp-build@4.8.1: {}
- node-gyp@10.2.0:
- dependencies:
- env-paths: 2.2.1
- exponential-backoff: 3.1.1
- glob: 10.4.5
- graceful-fs: 4.2.11
- make-fetch-happen: 13.0.1
- nopt: 7.2.1
- proc-log: 4.2.0
- semver: 7.6.3
- tar: 6.2.1
- which: 4.0.0
- transitivePeerDependencies:
- - supports-color
-
node-html-parser@5.4.2:
dependencies:
css-select: 4.3.0
@@ -17496,7 +15977,7 @@ snapshots:
node-machine-id@1.1.12: {}
- node-releases@2.0.17: {}
+ node-releases@2.0.18: {}
nopt@5.0.0:
dependencies:
@@ -17506,59 +15987,10 @@ snapshots:
dependencies:
abbrev: 2.0.0
- normalize-package-data@6.0.2:
- dependencies:
- hosted-git-info: 7.0.2
- semver: 7.6.3
- validate-npm-package-license: 3.0.4
-
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
- normalize-url@6.1.0: {}
-
- npm-bundled@3.0.1:
- dependencies:
- npm-normalize-package-bin: 3.0.1
-
- npm-install-checks@6.3.0:
- dependencies:
- semver: 7.6.3
-
- npm-normalize-package-bin@3.0.1: {}
-
- npm-package-arg@11.0.2:
- dependencies:
- hosted-git-info: 7.0.2
- proc-log: 4.2.0
- semver: 7.6.3
- validate-npm-package-name: 5.0.1
-
- npm-packlist@8.0.2:
- dependencies:
- ignore-walk: 6.0.5
-
- npm-pick-manifest@9.1.0:
- dependencies:
- npm-install-checks: 6.3.0
- npm-normalize-package-bin: 3.0.1
- npm-package-arg: 11.0.2
- semver: 7.6.3
-
- npm-registry-fetch@17.1.0:
- dependencies:
- '@npmcli/redact': 2.0.1
- jsonparse: 1.3.1
- make-fetch-happen: 13.0.1
- minipass: 7.1.2
- minipass-fetch: 3.0.5
- minizlib: 2.1.2
- npm-package-arg: 11.0.2
- proc-log: 4.2.0
- transitivePeerDependencies:
- - supports-color
-
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -17578,22 +16010,24 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nx@19.1.1(@swc/core@1.3.101):
+ nx@19.5.6(@swc/core@1.7.6):
dependencies:
- '@nrwl/tao': 19.1.1(@swc/core@1.3.101)
+ '@napi-rs/wasm-runtime': 0.2.4
+ '@nrwl/tao': 19.5.6(@swc/core@1.7.6)
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.7
- axios: 1.7.2
+ axios: 1.7.3
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
cliui: 8.0.1
- dotenv: 16.3.2
- dotenv-expand: 10.0.0
+ dotenv: 16.4.5
+ dotenv-expand: 11.0.6
enquirer: 2.3.6
figures: 3.2.0
flat: 5.0.2
+ front-matter: 4.0.2
fs-extra: 11.2.0
ignore: 5.3.1
jest-diff: 29.7.0
@@ -17614,17 +16048,17 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 19.1.1
- '@nx/nx-darwin-x64': 19.1.1
- '@nx/nx-freebsd-x64': 19.1.1
- '@nx/nx-linux-arm-gnueabihf': 19.1.1
- '@nx/nx-linux-arm64-gnu': 19.1.1
- '@nx/nx-linux-arm64-musl': 19.1.1
- '@nx/nx-linux-x64-gnu': 19.1.1
- '@nx/nx-linux-x64-musl': 19.1.1
- '@nx/nx-win32-arm64-msvc': 19.1.1
- '@nx/nx-win32-x64-msvc': 19.1.1
- '@swc/core': 1.3.101(@swc/helpers@0.5.12)
+ '@nx/nx-darwin-arm64': 19.5.6
+ '@nx/nx-darwin-x64': 19.5.6
+ '@nx/nx-freebsd-x64': 19.5.6
+ '@nx/nx-linux-arm-gnueabihf': 19.5.6
+ '@nx/nx-linux-arm64-gnu': 19.5.6
+ '@nx/nx-linux-arm64-musl': 19.5.6
+ '@nx/nx-linux-x64-gnu': 19.5.6
+ '@nx/nx-linux-x64-musl': 19.5.6
+ '@nx/nx-win32-arm64-msvc': 19.5.6
+ '@nx/nx-win32-x64-msvc': 19.5.6
+ '@swc/core': 1.7.6
transitivePeerDependencies:
- debug
@@ -17781,53 +16215,16 @@ snapshots:
'@node-rs/argon2': 1.7.0
'@node-rs/bcrypt': 1.9.0
- p-cancelable@2.1.1: {}
-
p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
- p-limit@4.0.0:
- dependencies:
- yocto-queue: 1.1.1
-
p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
- p-locate@6.0.0:
- dependencies:
- p-limit: 4.0.0
-
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
package-json-from-dist@1.0.0: {}
- pacote@18.0.6:
- dependencies:
- '@npmcli/git': 5.0.8
- '@npmcli/installed-package-contents': 2.1.0
- '@npmcli/package-json': 5.2.0
- '@npmcli/promise-spawn': 7.0.2
- '@npmcli/run-script': 8.1.0
- cacache: 18.0.4
- fs-minipass: 3.0.3
- minipass: 7.1.2
- npm-package-arg: 11.0.2
- npm-packlist: 8.0.2
- npm-pick-manifest: 9.1.0
- npm-registry-fetch: 17.1.0
- proc-log: 4.2.0
- promise-retry: 2.0.1
- sigstore: 2.3.1
- ssri: 10.0.6
- tar: 6.2.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
@@ -17837,12 +16234,6 @@ snapshots:
dependencies:
callsites: 3.1.0
- parse-conflict-json@3.0.1:
- dependencies:
- json-parse-even-better-errors: 3.0.2
- just-diff: 6.0.2
- just-diff-apply: 5.5.0
-
parse-entities@4.0.1:
dependencies:
'@types/unist': 2.0.10
@@ -17868,8 +16259,6 @@ snapshots:
path-exists@4.0.0: {}
- path-exists@5.0.0: {}
-
path-is-absolute@1.0.1: {}
path-key@3.1.1: {}
@@ -17942,16 +16331,10 @@ snapshots:
picomatch@2.3.1: {}
- picomatch@3.0.1: {}
-
pify@2.3.0: {}
pirates@4.0.6: {}
- pkg-dir@7.0.0:
- dependencies:
- find-up: 6.3.0
-
pkg-types@1.1.3:
dependencies:
confbox: 0.1.7
@@ -17968,28 +16351,52 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.39):
+ postcss-import@15.1.0(postcss@8.4.38):
+ dependencies:
+ postcss: 8.4.38
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.8
+
+ postcss-import@15.1.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.39
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.39):
+ postcss-js@4.0.1(postcss@8.4.38):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.39
+ postcss: 8.4.38
+
+ postcss-js@4.0.1(postcss@8.4.41):
+ dependencies:
+ camelcase-css: 2.0.1
+ postcss: 8.4.41
+
+ postcss-load-config@4.0.2(postcss@8.4.38):
+ dependencies:
+ lilconfig: 3.1.2
+ yaml: 2.5.0
+ optionalDependencies:
+ postcss: 8.4.38
- postcss-load-config@4.0.2(postcss@8.4.39):
+ postcss-load-config@4.0.2(postcss@8.4.41):
dependencies:
lilconfig: 3.1.2
- yaml: 2.4.5
+ yaml: 2.5.0
optionalDependencies:
- postcss: 8.4.39
+ postcss: 8.4.41
+
+ postcss-nested@6.2.0(postcss@8.4.38):
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.1.1
- postcss-nested@6.2.0(postcss@8.4.39):
+ postcss-nested@6.2.0(postcss@8.4.41):
dependencies:
- postcss: 8.4.39
+ postcss: 8.4.41
postcss-selector-parser: 6.1.1
postcss-selector-parser@6.0.10:
@@ -18016,7 +16423,7 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
- postcss@8.4.39:
+ postcss@8.4.41:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.1
@@ -18037,7 +16444,7 @@ snapshots:
prelude-ls@1.2.1: {}
- prettier-plugin-tailwindcss@0.5.14(prettier@3.3.3):
+ prettier-plugin-tailwindcss@0.6.5(prettier@3.3.3):
dependencies:
prettier: 3.3.3
@@ -18053,7 +16460,7 @@ snapshots:
printable-characters@1.0.42: {}
- prism-code-editor@3.3.3: {}
+ prism-code-editor@3.4.0-beta.1: {}
prism-react-renderer@2.1.0(react@18.3.1):
dependencies:
@@ -18065,25 +16472,10 @@ snapshots:
prismjs@1.29.0: {}
- proc-log@4.2.0: {}
-
process-nextick-args@2.0.1: {}
process@0.11.10: {}
- proggy@2.0.0: {}
-
- promise-all-reject-late@1.0.1: {}
-
- promise-call-limit@3.0.1: {}
-
- promise-inflight@1.0.1: {}
-
- promise-retry@2.0.1:
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
-
prop-types@15.8.1:
dependencies:
loose-envify: 1.4.0
@@ -18094,28 +16486,8 @@ snapshots:
proto-list@1.2.4: {}
- protobufjs@7.3.2:
- dependencies:
- '@protobufjs/aspromise': 1.1.2
- '@protobufjs/base64': 1.1.2
- '@protobufjs/codegen': 2.0.4
- '@protobufjs/eventemitter': 1.1.0
- '@protobufjs/fetch': 1.1.0
- '@protobufjs/float': 1.0.2
- '@protobufjs/inquire': 1.1.0
- '@protobufjs/path': 1.1.2
- '@protobufjs/pool': 1.1.0
- '@protobufjs/utf8': 1.1.0
- '@types/node': 20.14.11
- long: 5.2.3
-
proxy-from-env@1.1.0: {}
- pump@3.0.0:
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
-
punycode@2.3.1: {}
pvtsutils@1.3.5:
@@ -18124,7 +16496,7 @@ snapshots:
pvutils@1.1.3: {}
- qs@6.12.3:
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
@@ -18132,8 +16504,6 @@ snapshots:
queue-tick@1.0.1: {}
- quick-lru@5.1.1: {}
-
radix3@1.1.2: {}
randombytes@2.1.0:
@@ -18153,7 +16523,7 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-email@2.1.5(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.12)(eslint@9.7.0):
+ react-email@2.1.6(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.12)(eslint@9.8.0):
dependencies:
'@babel/core': 7.24.5
'@babel/parser': 7.24.5
@@ -18174,8 +16544,8 @@ snapshots:
commander: 11.1.0
debounce: 2.0.0
esbuild: 0.19.11
- eslint-config-prettier: 9.0.0(eslint@9.7.0)
- eslint-config-turbo: 1.10.12(eslint@9.7.0)
+ eslint-config-prettier: 9.0.0(eslint@9.8.0)
+ eslint-config-turbo: 1.10.12(eslint@9.8.0)
framer-motion: 10.17.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
glob: 10.3.4
log-symbols: 4.1.0
@@ -18219,6 +16589,10 @@ snapshots:
react-is@18.3.1: {}
+ react-promise-suspense@0.3.4:
+ dependencies:
+ fast-deep-equal: 2.0.1
+
react-remove-scroll-bar@2.3.6(@types/react@18.2.47)(react@18.3.1):
dependencies:
react: 18.3.1
@@ -18255,13 +16629,6 @@ snapshots:
dependencies:
pify: 2.3.0
- read-cmd-shim@4.0.0: {}
-
- read-package-json-fast@3.0.2:
- dependencies:
- json-parse-even-better-errors: 3.0.2
- npm-normalize-package-bin: 3.0.1
-
readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.3
@@ -18316,7 +16683,7 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
globalthis: 1.0.4
- which-builtin-type: 1.1.3
+ which-builtin-type: 1.1.4
regenerator-runtime@0.14.1: {}
@@ -18381,20 +16748,8 @@ snapshots:
require-directory@2.1.1: {}
- require-from-string@2.0.2: {}
-
- require-in-the-middle@7.3.0:
- dependencies:
- debug: 4.3.5
- module-details-from-path: 1.0.3
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
requires-port@1.0.0: {}
- resolve-alpn@1.2.1: {}
-
resolve-from@4.0.0: {}
resolve-from@5.0.0: {}
@@ -18415,17 +16770,11 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- responselike@2.0.1:
- dependencies:
- lowercase-keys: 2.0.0
-
restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- retry@0.12.0: {}
-
reusify@1.0.4: {}
rimraf@3.0.2:
@@ -18442,39 +16791,39 @@ snapshots:
dependencies:
rollup-plugin-inject: 3.0.2
- rollup-plugin-visualizer@5.12.0(rollup@4.18.1):
+ rollup-plugin-visualizer@5.12.0(rollup@4.20.0):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.18.1
+ rollup: 4.20.0
rollup-pluginutils@2.8.2:
dependencies:
estree-walker: 0.6.1
- rollup@4.18.1:
+ rollup@4.20.0:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.18.1
- '@rollup/rollup-android-arm64': 4.18.1
- '@rollup/rollup-darwin-arm64': 4.18.1
- '@rollup/rollup-darwin-x64': 4.18.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.18.1
- '@rollup/rollup-linux-arm-musleabihf': 4.18.1
- '@rollup/rollup-linux-arm64-gnu': 4.18.1
- '@rollup/rollup-linux-arm64-musl': 4.18.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.18.1
- '@rollup/rollup-linux-riscv64-gnu': 4.18.1
- '@rollup/rollup-linux-s390x-gnu': 4.18.1
- '@rollup/rollup-linux-x64-gnu': 4.18.1
- '@rollup/rollup-linux-x64-musl': 4.18.1
- '@rollup/rollup-win32-arm64-msvc': 4.18.1
- '@rollup/rollup-win32-ia32-msvc': 4.18.1
- '@rollup/rollup-win32-x64-msvc': 4.18.1
+ '@rollup/rollup-android-arm-eabi': 4.20.0
+ '@rollup/rollup-android-arm64': 4.20.0
+ '@rollup/rollup-darwin-arm64': 4.20.0
+ '@rollup/rollup-darwin-x64': 4.20.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.20.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.20.0
+ '@rollup/rollup-linux-arm64-gnu': 4.20.0
+ '@rollup/rollup-linux-arm64-musl': 4.20.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.20.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.20.0
+ '@rollup/rollup-linux-s390x-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-musl': 4.20.0
+ '@rollup/rollup-win32-arm64-msvc': 4.20.0
+ '@rollup/rollup-win32-ia32-msvc': 4.20.0
+ '@rollup/rollup-win32-x64-msvc': 4.20.0
fsevents: 2.3.3
run-applescript@5.0.0:
@@ -18518,7 +16867,7 @@ snapshots:
scule@1.3.0: {}
- search-insights@2.13.0: {}
+ search-insights@2.16.0: {}
selderee@0.11.0:
dependencies:
@@ -18557,11 +16906,11 @@ snapshots:
dependencies:
randombytes: 2.1.0
- seroval-plugins@1.1.0(seroval@1.1.0):
+ seroval-plugins@1.1.1(seroval@1.1.1):
dependencies:
- seroval: 1.1.0
+ seroval: 1.1.1
- seroval@1.1.0: {}
+ seroval@1.1.1: {}
serve-placeholder@2.0.2:
dependencies:
@@ -18628,12 +16977,10 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@0.14.7:
+ shiki@1.12.1:
dependencies:
- ansi-sequence-parser: 1.1.1
- jsonc-parser: 3.3.1
- vscode-oniguruma: 1.7.0
- vscode-textmate: 8.0.0
+ '@shikijs/core': 1.12.1
+ '@types/hast': 3.0.4
shikiji-core@0.9.19: {}
@@ -18641,8 +16988,6 @@ snapshots:
dependencies:
shikiji-core: 0.9.19
- shimmer@1.2.1: {}
-
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -18654,17 +16999,6 @@ snapshots:
signal-exit@4.1.0: {}
- sigstore@2.3.1:
- dependencies:
- '@sigstore/bundle': 2.3.2
- '@sigstore/core': 1.1.0
- '@sigstore/protobuf-specs': 0.3.2
- '@sigstore/sign': 2.3.2
- '@sigstore/tuf': 2.3.4
- '@sigstore/verify': 1.2.1
- transitivePeerDependencies:
- - supports-color
-
simple-functional-loader@1.2.1:
dependencies:
loader-utils: 2.0.4
@@ -18679,21 +17013,17 @@ snapshots:
mrmime: 2.0.0
totalist: 3.0.1
- sisteransi@1.0.5: {}
-
slash@3.0.0: {}
slash@4.0.0: {}
slash@5.1.0: {}
- smart-buffer@4.2.0: {}
-
smob@1.5.0: {}
socket.io-adapter@2.5.5:
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
ws: 8.17.1
transitivePeerDependencies:
- bufferutil
@@ -18703,7 +17033,7 @@ snapshots:
socket.io-client@4.7.3:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.5
+ debug: 4.3.6
engine.io-client: 6.5.4
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -18714,7 +17044,7 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.5
+ debug: 4.3.6
transitivePeerDependencies:
- supports-color
@@ -18723,7 +17053,7 @@ snapshots:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
- debug: 4.3.5
+ debug: 4.3.6
engine.io: 6.5.5
socket.io-adapter: 2.5.5
socket.io-parser: 4.2.4
@@ -18732,70 +17062,57 @@ snapshots:
- supports-color
- utf-8-validate
- socks-proxy-agent@8.0.4:
- dependencies:
- agent-base: 7.1.1
- debug: 4.3.5
- socks: 2.8.3
- transitivePeerDependencies:
- - supports-color
-
- socks@2.8.3:
- dependencies:
- ip-address: 9.0.5
- smart-buffer: 4.2.0
-
- solid-devtools@0.30.1(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ solid-devtools@0.30.1(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
- '@babel/types': 7.24.9
- '@solid-devtools/debugger': 0.23.4(solid-js@1.8.18)
- '@solid-devtools/shared': 0.13.2(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/types': 7.25.2
+ '@solid-devtools/debugger': 0.23.4(solid-js@1.8.19)
+ '@solid-devtools/shared': 0.13.2(solid-js@1.8.19)
+ solid-js: 1.8.19
optionalDependencies:
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
transitivePeerDependencies:
- supports-color
- solid-js@1.8.18:
+ solid-js@1.8.19:
dependencies:
csstype: 3.1.3
- seroval: 1.1.0
- seroval-plugins: 1.1.0(seroval@1.1.0)
+ seroval: 1.1.1
+ seroval-plugins: 1.1.1(seroval@1.1.1)
- solid-presence@0.1.7(solid-js@1.8.18):
+ solid-presence@0.1.8(solid-js@1.8.19):
dependencies:
- '@corvu/utils': 0.3.2(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@corvu/utils': 0.4.0(solid-js@1.8.19)
+ solid-js: 1.8.19
- solid-prevent-scroll@0.1.9(solid-js@1.8.18):
+ solid-prevent-scroll@0.1.9(solid-js@1.8.19):
dependencies:
- '@corvu/utils': 0.3.2(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@corvu/utils': 0.3.2(solid-js@1.8.19)
+ solid-js: 1.8.19
- solid-refresh@0.6.3(solid-js@1.8.18):
+ solid-refresh@0.6.3(solid-js@1.8.19):
dependencies:
- '@babel/generator': 7.24.10
+ '@babel/generator': 7.25.0
'@babel/helper-module-imports': 7.24.7
- '@babel/types': 7.24.9
- solid-js: 1.8.18
+ '@babel/types': 7.25.2
+ solid-js: 1.8.19
transitivePeerDependencies:
- supports-color
- solid-sonner@0.2.8(solid-js@1.8.18):
+ solid-sonner@0.2.8(solid-js@1.8.19):
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
- solid-transition-group@0.2.3(solid-js@1.8.18):
+ solid-transition-group@0.2.3(solid-js@1.8.19):
dependencies:
- '@solid-primitives/refs': 1.0.8(solid-js@1.8.18)
- '@solid-primitives/transition-group': 1.0.5(solid-js@1.8.18)
- solid-js: 1.8.18
+ '@solid-primitives/refs': 1.0.8(solid-js@1.8.19)
+ '@solid-primitives/transition-group': 1.0.5(solid-js@1.8.19)
+ solid-js: 1.8.19
- solid-use@0.8.0(solid-js@1.8.18):
+ solid-use@0.8.0(solid-js@1.8.19):
dependencies:
- solid-js: 1.8.18
+ solid-js: 1.8.19
sonner@1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -18819,33 +17136,13 @@ snapshots:
space-separated-tokens@2.0.2: {}
- spdx-correct@3.2.0:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.18
-
- spdx-exceptions@2.5.0: {}
-
- spdx-expression-parse@3.0.1:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.18
-
- spdx-license-ids@3.0.18: {}
-
split2@4.2.0: {}
sprintf-js@1.0.3: {}
- sprintf-js@1.1.3: {}
-
sqlstring@2.3.3: {}
- ssri@10.0.6:
- dependencies:
- minipass: 7.1.2
-
- sst@3.0.30(hono@4.5.0):
+ sst@3.0.30(hono@4.5.4):
dependencies:
'@aws-sdk/client-lambda': 3.478.0
'@tsconfig/node20': 20.1.4
@@ -18853,7 +17150,7 @@ snapshots:
jose: 5.2.3
openid-client: 5.6.4
optionalDependencies:
- hono: 4.5.0
+ hono: 4.5.4
transitivePeerDependencies:
- aws-crt
@@ -18981,10 +17278,10 @@ snapshots:
dependencies:
js-tokens: 9.0.0
- stripe@15.12.0:
+ stripe@16.6.0:
dependencies:
- '@types/node': 20.14.11
- qs: 6.12.3
+ '@types/node': 22.1.0
+ qs: 6.13.0
strnum@1.0.5: {}
@@ -19009,12 +17306,12 @@ snapshots:
optionalDependencies:
'@babel/core': 7.24.5
- styled-jsx@5.1.1(@babel/core@7.24.9)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.25.2)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
sucrase@3.35.0:
dependencies:
@@ -19052,15 +17349,15 @@ snapshots:
tailwind-merge@2.2.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
- tailwind-scrollbar@3.1.0(tailwindcss@3.4.6):
+ tailwind-scrollbar@3.1.0(tailwindcss@3.4.7):
dependencies:
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
- tailwindcss-animate@1.0.7(tailwindcss@3.4.6):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.7):
dependencies:
- tailwindcss: 3.4.6
+ tailwindcss: 3.4.7
tailwindcss@3.4.0:
dependencies:
@@ -19078,18 +17375,18 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.39
- postcss-import: 15.1.0(postcss@8.4.39)
- postcss-js: 4.0.1(postcss@8.4.39)
- postcss-load-config: 4.0.2(postcss@8.4.39)
- postcss-nested: 6.2.0(postcss@8.4.39)
+ postcss: 8.4.38
+ postcss-import: 15.1.0(postcss@8.4.38)
+ postcss-js: 4.0.1(postcss@8.4.38)
+ postcss-load-config: 4.0.2(postcss@8.4.38)
+ postcss-nested: 6.2.0(postcss@8.4.38)
postcss-selector-parser: 6.1.1
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.6:
+ tailwindcss@3.4.7:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -19105,11 +17402,11 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.39
- postcss-import: 15.1.0(postcss@8.4.39)
- postcss-js: 4.0.1(postcss@8.4.39)
- postcss-load-config: 4.0.2(postcss@8.4.39)
- postcss-nested: 6.2.0(postcss@8.4.39)
+ postcss: 8.4.41
+ postcss-import: 15.1.0(postcss@8.4.41)
+ postcss-js: 4.0.1(postcss@8.4.41)
+ postcss-load-config: 4.0.2(postcss@8.4.41)
+ postcss-nested: 6.2.0(postcss@8.4.41)
postcss-selector-parser: 6.1.1
resolve: 1.22.8
sucrase: 3.35.0
@@ -19141,12 +17438,12 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- terracotta@1.0.5(solid-js@1.8.18):
+ terracotta@1.0.5(solid-js@1.8.19):
dependencies:
- solid-js: 1.8.18
- solid-use: 0.8.0(solid-js@1.8.18)
+ solid-js: 1.8.19
+ solid-use: 0.8.0(solid-js@1.8.19)
- terser-webpack-plugin@5.3.10(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
@@ -19158,16 +17455,16 @@ snapshots:
'@swc/core': 1.3.101(@swc/helpers@0.5.12)
esbuild: 0.19.11
- terser-webpack-plugin@5.3.10(@swc/core@1.3.101)(esbuild@0.19.12)(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.6)(esbuild@0.19.12)(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.31.3
- webpack: 5.93.0(@swc/core@1.3.101)(esbuild@0.19.12)
+ webpack: 5.93.0(@swc/core@1.7.6)(esbuild@0.19.12)
optionalDependencies:
- '@swc/core': 1.3.101(@swc/helpers@0.5.12)
+ '@swc/core': 1.7.6
esbuild: 0.19.12
terser@5.31.3:
@@ -19193,11 +17490,6 @@ snapshots:
through@2.3.8: {}
- timers-ext@0.1.8:
- dependencies:
- es5-ext: 0.10.64
- next-tick: 1.1.0
-
tiny-invariant@1.3.3: {}
titleize@3.0.0: {}
@@ -19216,8 +17508,6 @@ snapshots:
tr46@0.0.3: {}
- treeverse@3.0.0: {}
-
trim-lines@3.0.1: {}
trough@2.2.0: {}
@@ -19251,19 +17541,11 @@ snapshots:
tslib@2.6.3: {}
- tuf-js@2.2.1:
- dependencies:
- '@tufjs/models': 2.0.1
- debug: 4.3.5
- make-fetch-happen: 13.0.1
- transitivePeerDependencies:
- - supports-color
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- type-detect@4.0.8: {}
+ type-detect@4.1.0: {}
type-fest@0.7.1: {}
@@ -19271,8 +17553,6 @@ snapshots:
type-fest@3.13.1: {}
- type@2.7.3: {}
-
typed-array-buffer@1.0.2:
dependencies:
call-bind: 1.0.7
@@ -19324,13 +17604,13 @@ snapshots:
dependencies:
acorn: 8.12.1
estree-walker: 3.0.3
- magic-string: 0.30.10
- unplugin: 1.11.0
-
- undici-types@5.26.5: {}
+ magic-string: 0.30.11
+ unplugin: 1.12.0
undici-types@5.28.4: {}
+ undici-types@6.13.0: {}
+
undici@5.28.4:
dependencies:
'@fastify/busboy': 2.1.1
@@ -19364,32 +17644,24 @@ snapshots:
trough: 2.2.0
vfile: 6.0.2
- unimport@3.9.0(rollup@4.18.1):
+ unimport@3.10.0(rollup@4.20.0):
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
acorn: 8.12.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.1.3
scule: 1.3.0
strip-literal: 2.1.0
- unplugin: 1.11.0
+ unplugin: 1.12.0
transitivePeerDependencies:
- rollup
- unique-filename@3.0.0:
- dependencies:
- unique-slug: 4.0.0
-
- unique-slug@4.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unist-util-filter@5.0.1:
dependencies:
'@types/unist': 3.0.2
@@ -19445,32 +17717,32 @@ snapshots:
universalify@2.0.1: {}
- unplugin-auto-import@0.17.8(rollup@4.18.1):
+ unplugin-auto-import@0.18.2(rollup@4.20.0):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
minimatch: 9.0.5
- unimport: 3.9.0(rollup@4.18.1)
- unplugin: 1.11.0
+ unimport: 3.10.0(rollup@4.20.0)
+ unplugin: 1.12.0
transitivePeerDependencies:
- rollup
- unplugin-icons@0.19.0:
+ unplugin-icons@0.19.1:
dependencies:
'@antfu/install-pkg': 0.3.3
'@antfu/utils': 0.7.10
- '@iconify/utils': 2.1.25
- debug: 4.3.5
+ '@iconify/utils': 2.1.30
+ debug: 4.3.6
kolorist: 1.8.0
local-pkg: 0.5.0
- unplugin: 1.11.0
+ unplugin: 1.12.0
transitivePeerDependencies:
- supports-color
- unplugin@1.11.0:
+ unplugin@1.12.0:
dependencies:
acorn: 8.12.1
chokidar: 3.6.0
@@ -19506,17 +17778,15 @@ snapshots:
unwasm@0.3.9:
dependencies:
knitwork: 1.1.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.1.3
- unplugin: 1.11.0
-
- upath@1.2.0: {}
+ unplugin: 1.12.0
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
escalade: 3.1.2
picocolors: 1.0.1
@@ -19553,13 +17823,6 @@ snapshots:
validate-html-nesting@1.2.2: {}
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
-
- validate-npm-package-name@5.0.1: {}
-
vary@1.1.2: {}
vfile-message@4.0.2:
@@ -19573,11 +17836,11 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@20.14.11)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2):
+ vinxi@0.4.1(@planetscale/database@1.18.0)(@types/node@22.1.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(ioredis@5.4.1)(terser@5.31.3)(xml2js@0.6.2):
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2)
'@types/micromatch': 4.0.9
'@vinxi/listhen': 1.5.6
boxen: 7.1.1
@@ -19595,7 +17858,7 @@ snapshots:
hookable: 5.5.3
http-proxy: 1.18.1
micromatch: 4.0.7
- nitropack: 2.9.6(patch_hash=p7ld6mmkgyxaavdzhe4ztnoviq)(@planetscale/database@1.18.0)(drizzle-orm@0.30.10(patch_hash=kbhw3lxqs5ui6og332q7mjjsdu)(@cloudflare/workers-types@4.20240512.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.10.3)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(xml2js@0.6.2)
+ nitropack: 2.9.6(@planetscale/database@1.18.0)(drizzle-orm@0.30.10(@cloudflare/workers-types@4.20240729.0)(@opentelemetry/api@1.9.0)(@planetscale/database@1.18.0)(@types/react@18.3.3)(mysql2@3.11.0)(pg@8.12.0)(postgres@3.4.4)(react@18.3.1))(encoding@0.1.13)(xml2js@0.6.2)
node-fetch-native: 1.6.4
path-to-regexp: 6.2.2
pathe: 1.1.2
@@ -19607,7 +17870,7 @@ snapshots:
unctx: 2.3.1
unenv: 1.10.0
unstorage: 1.10.2(@planetscale/database@1.18.0)(ioredis@5.4.1)
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
zod: 3.23.8
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -19640,7 +17903,7 @@ snapshots:
- uWebSockets.js
- xml2js
- vite-plugin-html@3.2.2(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ vite-plugin-html@3.2.2(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
dependencies:
'@rollup/pluginutils': 4.2.1
colorette: 2.0.20
@@ -19654,66 +17917,60 @@ snapshots:
html-minifier-terser: 6.1.0
node-html-parser: 5.4.2
pathe: 0.2.0
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
- vite-plugin-inspect@0.7.42(rollup@4.18.1)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ vite-plugin-inspect@0.7.42(rollup@4.20.0)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.18.1)
- debug: 4.3.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.20.0)
+ debug: 4.3.6
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 9.1.0
picocolors: 1.0.1
sirv: 2.0.4
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-solid@2.10.2(solid-js@1.8.18)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ vite-plugin-solid@2.10.2(solid-js@1.8.19)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.18(@babel/core@7.24.9)
+ babel-preset-solid: 1.8.19(@babel/core@7.25.2)
merge-anything: 5.1.7
- solid-js: 1.8.18
- solid-refresh: 0.6.3(solid-js@1.8.18)
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
- vitefu: 0.2.5(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3))
+ solid-js: 1.8.19
+ solid-refresh: 0.6.3(solid-js@1.8.19)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
+ vitefu: 0.2.5(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3))
transitivePeerDependencies:
- supports-color
- vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
dependencies:
- debug: 4.3.5
+ debug: 4.3.6
globrex: 0.1.2
tsconfck: 3.1.1(typescript@5.5.4)
optionalDependencies:
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.3.4(@types/node@20.14.11)(terser@5.31.3):
+ vite@5.3.5(@types/node@22.1.0)(terser@5.31.3):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.39
- rollup: 4.18.1
+ postcss: 8.4.41
+ rollup: 4.20.0
optionalDependencies:
- '@types/node': 20.14.11
+ '@types/node': 22.1.0
fsevents: 2.3.3
terser: 5.31.3
- vitefu@0.2.5(vite@5.3.4(@types/node@20.14.11)(terser@5.31.3)):
+ vitefu@0.2.5(vite@5.3.5(@types/node@22.1.0)(terser@5.31.3)):
optionalDependencies:
- vite: 5.3.4(@types/node@20.14.11)(terser@5.31.3)
-
- vscode-oniguruma@1.7.0: {}
-
- vscode-textmate@8.0.0: {}
-
- walk-up-path@3.0.1: {}
+ vite: 5.3.5(@types/node@22.1.0)(terser@5.31.3)
watchpack@2.4.1:
dependencies:
@@ -19739,9 +17996,9 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.23.2
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.0
+ enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
@@ -19753,7 +18010,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.3.101(@swc/helpers@0.5.12))(esbuild@0.19.11)(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -19761,7 +18018,7 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12):
+ webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
@@ -19770,9 +18027,9 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.23.2
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.0
+ enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
@@ -19784,7 +18041,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.3.101)(esbuild@0.19.12)(webpack@5.93.0(@swc/core@1.3.101)(esbuild@0.19.12))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.6)(esbuild@0.19.12)(webpack@5.93.0(@swc/core@1.7.6)(esbuild@0.19.12))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -19805,7 +18062,7 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-builtin-type@1.1.3:
+ which-builtin-type@1.1.4:
dependencies:
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
@@ -19853,17 +18110,15 @@ snapshots:
word-wrap@1.2.5: {}
- wordwrap@1.0.0: {}
-
- workerd@1.20240718.0:
+ workerd@1.20240725.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240718.0
- '@cloudflare/workerd-darwin-arm64': 1.20240718.0
- '@cloudflare/workerd-linux-64': 1.20240718.0
- '@cloudflare/workerd-linux-arm64': 1.20240718.0
- '@cloudflare/workerd-windows-64': 1.20240718.0
+ '@cloudflare/workerd-darwin-64': 1.20240725.0
+ '@cloudflare/workerd-darwin-arm64': 1.20240725.0
+ '@cloudflare/workerd-linux-64': 1.20240725.0
+ '@cloudflare/workerd-linux-arm64': 1.20240725.0
+ '@cloudflare/workerd-windows-64': 1.20240725.0
- wrangler@3.65.1:
+ wrangler@3.68.0(@cloudflare/workers-types@4.20240729.0):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
@@ -19872,7 +18127,7 @@ snapshots:
chokidar: 3.6.0
date-fns: 3.6.0
esbuild: 0.17.19
- miniflare: 3.20240718.0
+ miniflare: 3.20240725.0
nanoid: 3.3.7
path-to-regexp: 6.2.2
resolve: 1.22.8
@@ -19880,8 +18135,10 @@ snapshots:
selfsigned: 2.4.1
source-map: 0.6.1
unenv: unenv-nightly@1.10.0-1717606461.a117952
+ workerd: 1.20240725.0
xxhash-wasm: 1.0.2
optionalDependencies:
+ '@cloudflare/workers-types': 4.20240729.0
fsevents: 2.3.3
transitivePeerDependencies:
- bufferutil
@@ -19902,11 +18159,6 @@ snapshots:
wrappy@1.0.2: {}
- write-file-atomic@5.0.1:
- dependencies:
- imurmurhash: 0.1.4
- signal-exit: 4.1.0
-
ws@8.17.1: {}
ws@8.18.0: {}
@@ -19932,7 +18184,7 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.4.5: {}
+ yaml@2.5.0: {}
yargs-parser@21.1.1: {}
@@ -19948,8 +18200,6 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.1.1: {}
-
youch@3.3.3:
dependencies:
cookie: 0.5.0
diff --git a/tsconfig.json b/tsconfig.json
index 2217f953..14e3b2bd 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -11,8 +11,7 @@
{ "path": "./packages/mysql-planetscale" },
{ "path": "./packages/policy-composer" },
{ "path": "./packages/trpc-server-function" },
- { "path": "./packages/ui" },
- { "path": "./infra" }
+ { "path": "./packages/ui" }
],
"compilerOptions": {
"incremental": true,