(
+ (resolve, reject) =>
+ transporter.sendMail(
+ {
+ from: `"BlockNote" <${process.env.SMTP_FROM || process.env.SMTP_USER}>`,
+ to,
+ subject: TEMPLATE_COMPONENTS[template].subject,
+ text,
+ html,
+ },
+ (err, data) => {
+ if (err) {
+ Sentry.captureException(err);
+ reject(err);
+ return;
+ }
+ resolve(data);
+ },
+ ),
+ );
+
+ console.log("Email sent: ", info.messageId);
+}
diff --git a/fumadocs/vercel.json b/fumadocs/vercel.json
new file mode 100644
index 0000000000..bd6fd8faa8
--- /dev/null
+++ b/fumadocs/vercel.json
@@ -0,0 +1,3 @@
+{
+ "cleanUrls": true
+}
diff --git a/packages/core/README.md b/packages/core/README.md
index 6ad9973798..87b1e80f30 100644
--- a/packages/core/README.md
+++ b/packages/core/README.md
@@ -10,7 +10,7 @@ React rich text editor. Easily add a modern text editing experience to your app.
-
+
@@ -18,7 +18,7 @@ React rich text editor. Easily add a modern text editing experience to your app.
Homepage
-
Documentation
- -
+ -
Quickstart
-
Examples
@@ -54,31 +54,31 @@ If you prefer to create your own UI components (menus), or don't want to use Rea
BlockNote comes with a number of features and components to make it easy to embed a high-quality block-based editor in your app:
-### Animations:
+### Animations
-### Helpful placeholders:
+### Helpful placeholders
-### Drag and drop blocks:
+### Drag and drop blocks
-### Nesting / indentation with tab and shift+tab:
+### Nesting / indentation with tab and shift+tab
-### Slash (/) menu:
+### Slash (/) menu
-### Format menu:
+### Format menu
-### Real-time collaboration:
+### Real-time collaboration
diff --git a/packages/core/src/editor/BlockNoteEditor.ts b/packages/core/src/editor/BlockNoteEditor.ts
index fe68128033..300d0040cf 100644
--- a/packages/core/src/editor/BlockNoteEditor.ts
+++ b/packages/core/src/editor/BlockNoteEditor.ts
@@ -155,8 +155,11 @@ export type BlockNoteEditorOptions<
/**
* When enabled, allows for collaboration between multiple users.
+ * See [Real-time Collaboration](https://www.blocknotejs.org/docs/advanced/real-time-collaboration) for more info.
+ *
+ * @remarks `CollaborationOptions`
*/
- collaboration: {
+ collaboration?: {
/**
* The Yjs XML fragment that's used for collaboration.
*/
@@ -190,7 +193,13 @@ export type BlockNoteEditorOptions<
*/
codeBlock?: CodeBlockOptions;
- comments: {
+ /**
+ * Configuration for the comments feature, requires a `threadStore`.
+ *
+ * See [Comments](https://www.blocknotejs.org/docs/collaboration/comments) for more info.
+ * @remarks `CommentsOptions`
+ */
+ comments?: {
threadStore: ThreadStore;
};
@@ -199,25 +208,38 @@ export type BlockNoteEditorOptions<
*
* @default true
*/
- defaultStyles: boolean;
+ defaultStyles?: boolean;
/**
* A dictionary object containing translations for the editor.
+ *
+ * See [Localization / i18n](https://www.blocknotejs.org/docs/advanced/localization) for more info.
+ *
+ * @remarks `Dictionary` is a type that contains all the translations for the editor.
*/
dictionary?: Dictionary & Record;
/**
* Disable internal extensions (based on keys / extension name)
+ *
+ * @note Advanced
*/
- disableExtensions: string[];
+ disableExtensions?: string[];
/**
* An object containing attributes that should be added to HTML elements of the editor.
*
+ * See [Adding DOM Attributes](https://www.blocknotejs.org/docs/theming#adding-dom-attributes) for more info.
+ *
* @example { editor: { class: "my-editor-class" } }
+ * @remarks `Record>`
*/
- domAttributes: Partial;
+ domAttributes?: Partial;
+ /**
+ * A replacement indicator to use when dragging and dropping blocks. Uses the [ProseMirror drop cursor](https://github.com/ProseMirror/prosemirror-dropcursor), or a modified version when [Column Blocks](https://www.blocknotejs.org/docs/document-structure#column-blocks) are enabled.
+ * @remarks `() => Plugin`
+ */
dropCursor?: (opts: {
editor: BlockNoteEditor<
NoInfer,
@@ -242,9 +264,13 @@ export type BlockNoteEditorOptions<
};
/**
- * The content that should be in the editor when it's created, represented as an array of partial block objects.
+ * The content that should be in the editor when it's created, represented as an array of {@link PartialBlock} objects.
+ *
+ * See [Partial Blocks](https://www.blocknotejs.org/docs/editor-api/manipulating-blocks#partial-blocks) for more info.
+ *
+ * @remarks `PartialBlock[]`
*/
- initialContent: PartialBlock<
+ initialContent?: PartialBlock<
NoInfer,
NoInfer,
NoInfer
@@ -252,14 +278,19 @@ export type BlockNoteEditorOptions<
/**
* @deprecated, provide placeholders via dictionary instead
+ * @internal
*/
- placeholders: Record<
+ placeholders?: Record<
string | "default" | "emptyDocument",
string | undefined
>;
/**
* Custom paste handler that can be used to override the default paste behavior.
+ *
+ * See [Paste Handling](https://www.blocknotejs.org/docs/advanced/paste-handling) for more info.
+ *
+ * @remarks `PasteHandler`
* @returns The function should return `true` if the paste event was handled, otherwise it should return `false` if it should be canceled or `undefined` if it should be handled by another handler.
*
* @example
@@ -296,10 +327,21 @@ export type BlockNoteEditorOptions<
* implementing custom protocols / schemes
* @returns The URL that's
*/
- resolveFileUrl: (url: string) => Promise;
+ resolveFileUrl?: (url: string) => Promise;
- resolveUsers: (userIds: string[]) => Promise;
+ /**
+ * Resolve user information for comments.
+ *
+ * See [Comments](https://www.blocknotejs.org/docs/collaboration/comments) for more info.
+ */
+ resolveUsers?: (userIds: string[]) => Promise;
+ /**
+ * The schema of the editor. The schema defines which Blocks, InlineContent, and Styles are available in the editor.
+ *
+ * See [Custom Schemas](https://www.blocknotejs.org/docs/custom-schemas) for more info.
+ * @remarks `BlockNoteSchema`
+ */
schema: BlockNoteSchema;
/**
@@ -313,31 +355,29 @@ export type BlockNoteEditorOptions<
setIdAttribute?: boolean;
/**
- * The detection mode for showing the side menu - "viewport" always shows the
- * side menu for the block next to the mouse cursor, while "editor" only shows
- * it when hovering the editor or the side menu itself.
- *
+ * Controls how the Side Menu and block drag & drop interact with the editor bounds.
+ * - When set to `"viewport"`, the Side Menu appears next to the nearest block to the cursor,
+ * regardless of viewport position. Block dropping is locked to editor bounds.
+ * - When set to `"editor"`, the Side Menu and block dropping only work within editor bounds.
+ * Required when using multiple editors.
* @default "viewport"
*/
- sideMenuDetection: "viewport" | "editor";
+ sideMenuDetection?: "viewport" | "editor";
/**
- Select desired behavior when pressing `Tab` (or `Shift-Tab`). Specifically,
- what should happen when a user has selected multiple blocks while a toolbar
- is open:
- - `"prefer-navigate-ui"`: Change focus to the toolbar. The user needs to
- first press `Escape` to close the toolbar, and can then indent multiple
- blocks. Better for keyboard accessibility.
- - `"prefer-indent"`: Regardless of whether toolbars are open, indent the
- selection of blocks. In this case, it's not possible to navigate toolbars
- with the keyboard.
-
- @default "prefer-navigate-ui"
+ * Determines behavior when pressing Tab (or Shift-Tab) while multiple blocks are selected and a toolbar is open.
+ * - `"prefer-navigate-ui"`: Changes focus to the toolbar. User must press Escape to close toolbar before indenting blocks. Better for keyboard accessibility.
+ * - `"prefer-indent"`: Always indents selected blocks, regardless of toolbar state. Keyboard navigation of toolbars not possible.
+ * @default "prefer-navigate-ui"
*/
- tabBehavior: "prefer-navigate-ui" | "prefer-indent";
+ tabBehavior?: "prefer-navigate-ui" | "prefer-indent";
/**
* Allows enabling / disabling features of tables.
+ *
+ * See [Tables](https://www.blocknotejs.org/docs/editor-basics/document-structure#tables) for more info.
+ *
+ * @remarks `TableConfig`
*/
tables?: {
/**
@@ -366,6 +406,11 @@ export type BlockNoteEditorOptions<
headers?: boolean;
};
+ /**
+ * An option which user can pass with `false` value to disable the automatic creation of a trailing new block on the next line when the user types or edits any block.
+ *
+ * @default true
+ */
trailingBlock?: boolean;
/**
@@ -376,23 +421,26 @@ export type BlockNoteEditorOptions<
*
* @param file The file that should be uploaded.
* @returns The URL of the uploaded file OR an object containing props that should be set on the file block (such as an id)
+ * @remarks `(file: File) => Promise`
*/
- uploadFile: (
+ uploadFile?: (
file: File,
blockId?: string,
) => Promise>;
/**
* additional tiptap options, undocumented
+ * @internal
*/
- _tiptapOptions: Partial;
+ _tiptapOptions?: Partial;
/**
* (experimental) add extra extensions to the editor
*
* @deprecated, should use `extensions` instead
+ * @internal
*/
- _extensions: Record<
+ _extensions?: Record<
string,
| { plugin: Plugin; priority?: number }
| ((editor: BlockNoteEditor) => {
@@ -402,9 +450,11 @@ export type BlockNoteEditorOptions<
>;
/**
- * Register
+ * Register extensions to the editor.
+ *
+ * @internal
*/
- extensions: Array;
+ extensions?: Array;
/**
* Boolean indicating whether the editor is in headless mode.
@@ -412,8 +462,9 @@ export type BlockNoteEditorOptions<
* but there's no underlying editor (UI) instantiated.
*
* You probably don't need to set this manually, but use the `server-util` package instead that uses this option internally
+ * @internal
*/
- _headless: boolean;
+ _headless?: boolean;
};
const blockNoteTipTapOptions = {
diff --git a/packages/dev-scripts/examples/genDocs.ts b/packages/dev-scripts/examples/genDocs.ts
index 48d8e3e2b8..7540563907 100644
--- a/packages/dev-scripts/examples/genDocs.ts
+++ b/packages/dev-scripts/examples/genDocs.ts
@@ -3,7 +3,6 @@ import * as path from "node:path";
import { fileURLToPath } from "node:url";
import {
addTitleToGroups,
- Files,
getExampleProjects,
getProjectFiles,
groupProjects,
@@ -16,88 +15,65 @@ import {
*/
const dir = path.parse(fileURLToPath(import.meta.url)).dir;
-const getLanguageFromFileName = (fileName: string) => fileName.split(".").pop();
-
-/******* templates + generate functions *******/
-const templateExampleBlock = (
- project: Project,
- files: Files,
-) => `import { ExampleBlock } from "@/components/example/ExampleBlock";
-import { Tabs } from "nextra/components";
-
-
- fileName.slice(1)),
- )}}>
- ${Object.entries(files)
- .map(
- ([filename, file]) =>
- `
-
-\`\`\`${getLanguageFromFileName(filename)}
-${file.code}
-\`\`\`
-
- `,
- )
- .join("")}
-
-`;
-
-const COMPONENT_DIR = path.resolve(
- dir,
- "../../../docs/components/example/generated/",
-);
-
-const EXAMPLES_PAGES_DIR = path.resolve(dir, "../../../docs/pages/examples/");
+const DOCS_DIR = path.resolve(dir, "../../../fumadocs/");
+const COMPONENT_DIR = path.resolve(DOCS_DIR, "./components/example/generated/");
+const EXAMPLES_PAGES_DIR = path.resolve(DOCS_DIR, "./content/examples/");
/**
* Generates the component that has all the source code of the example
* This block can be used both in the /docs and in the /example page
*/
async function generateCodeForExample(project: Project) {
- const target = path.join(COMPONENT_DIR, "mdx", project.fullSlug + ".mdx");
-
- const files = getProjectFiles(project);
- const filtered = Object.fromEntries(
- Object.entries(files).filter(([filename, file]) => !file.hidden),
+ const projectFiles = getProjectFiles(project);
+ const componentTarget = path.join(
+ COMPONENT_DIR,
+ "components",
+ project.fullSlug,
);
+ const indexFile = path.join(componentTarget, "index.tsx");
+ fs.rmSync(componentTarget, { recursive: true, force: true });
+ fs.mkdirSync(componentTarget, { recursive: true });
+ fs.writeFileSync(
+ indexFile,
+ `"use client";
+import dynamic from "next/dynamic";
+const Component = dynamic(() => import("./App"), {
+ ssr: false,
+});
- const code = templateExampleBlock(project, filtered);
-
- fs.mkdirSync(path.dirname(target), { recursive: true });
+export default Component;`,
+ );
- fs.writeFileSync(target, code);
+ projectFiles.forEach(({ filename, code }) => {
+ const target = path.join(componentTarget, filename);
+ fs.mkdirSync(path.dirname(target), { recursive: true });
+ fs.writeFileSync(target, code);
+ });
}
-const templatePageForExample = (
- project: Project,
- readme: string,
-) => `import { Example } from "@/components/example";
-
-${readme}
+const templatePageForExample = (project: Project) => `---
+title: ${project.title}
+author: ${project.config.author}
+---
-`;
+${project.readme}
+`;
/**
* Generate the page for the example in /examples overview
*
- * Consists of the contents of the readme + the interactive example
+ * Consists of the contents of the readme
*/
async function generatePageForExample(project: Project) {
- const target = path.join(EXAMPLES_PAGES_DIR, project.fullSlug + ".mdx");
-
- const files = getProjectFiles(project);
+ const code = templatePageForExample(project);
- const code = templatePageForExample(project, files["/README.md"]!.code);
+ const target = path.join(EXAMPLES_PAGES_DIR, project.fullSlug + ".mdx");
fs.writeFileSync(target, code);
}
/**
- * generates _meta.json file for each example group, so that order is preserved
+ * generates meta.json file for each example group, so that order is preserved
*/
async function generateMetaForExampleGroup(group: {
title: string;
@@ -108,84 +84,92 @@ async function generateMetaForExampleGroup(group: {
fs.mkdirSync(path.join(EXAMPLES_PAGES_DIR, group.slug));
}
- const target = path.join(EXAMPLES_PAGES_DIR, group.slug, "_meta.json");
+ const target = path.join(EXAMPLES_PAGES_DIR, group.slug, "meta.json");
- const meta = Object.fromEntries(
- group.projects.map((project) => [
- project.projectSlug,
- {
- title: project.config.shortTitle || project.title,
- },
- ]),
- );
+ const meta = {
+ title: group.title,
+ pages: group.projects.map((project) => project.projectSlug),
+ };
const code = JSON.stringify(meta, undefined, 2);
fs.writeFileSync(target, code);
}
-const templateExampleComponents = (
- projects: Project[],
-) => `// generated by dev-scripts/examples/genDocs.ts
-import dynamic from "next/dynamic";
-
-export const examples = {
-${projects
- .map((p) => {
- const importPath = `../../../../${p.pathFromRoot}/App`;
-
- return ` "${p.fullSlug}": {
- // App: () => hello
,
- App: dynamic(() => import(${JSON.stringify(importPath)}), {
- ssr: false,
- }),
- ExampleWithCode: dynamic(() => import("./mdx/${p.fullSlug}.mdx"), {
- //ssr: false,
- }),
- pro: ${p.config.pro || false}
- },`;
- })
- .join("\n")}
-};`;
-
/**
- * Generate the file with all the dynamic imports for examples (exampleComponents.gen.tsx)
+ * Generates the exampleGroups.gen.ts file, which contains all the necessary
+ * data about the examples & their groups for the components we use in the
+ * docs. E.g. the interactive demos and example cards.
*/
-async function generateExampleComponents(projects: Project[]) {
- const target = path.join(COMPONENT_DIR, "exampleComponents.gen.tsx");
-
- const code = templateExampleComponents(projects);
-
- fs.writeFileSync(target, code);
-}
-
-/**
- * generates exampleList.gen.ts file with data about all the examples
- */
-async function generateExampleList(projects: Project[]) {
- const target = path.join(COMPONENT_DIR, "exampleList.gen.ts");
+async function generateExampleGroupsData(projects: Project[]) {
+ const target = path.join(COMPONENT_DIR, "exampleGroupsData.gen.ts");
const groups = addTitleToGroups(groupProjects(projects));
- const items = Object.entries(groups).map(([key, group]) => {
- return {
- text: group.title,
- items: group.projects.map((project) => {
- return {
- text: project.title,
- link: `/examples/${project.fullSlug}`,
- author: project.config.author,
- };
- }),
- };
- });
+ const exampleGroupsData = Object.values(groups).map((group) => ({
+ exampleGroupName: group.slug,
+ title: group.title,
+ pathFromRoot: group.pathFromRoot,
+ examplesData: group.projects.map((project) => ({
+ exampleName: project.projectSlug,
+ exampleGroupName: group.slug,
+ title: project.title,
+ author: project.config.author,
+ isPro: project.config.pro || false,
+ pathFromRoot: project.pathFromRoot,
+ files: Object.fromEntries(
+ getProjectFiles(project).map((file) => [
+ file.filename.substring(1), // remove leading slash
+ file.code,
+ ]),
+ ),
+ })),
+ }));
const code = `// generated by dev-scripts/examples/genDocs.ts
- export const EXAMPLES_LIST = ${JSON.stringify(items, undefined, 2)};`;
+export type ExampleGroupsData = {
+ exampleGroupName: string;
+ title: string;
+ pathFromRoot: string;
+ examplesData: {
+ exampleName: string;
+ exampleGroupName: string;
+ title: string;
+ author: string;
+ isPro: boolean;
+ pathFromRoot: string;
+ files: Record;
+ }[];
+}[];
+export type ExampleData = ExampleGroupsData[number]["examplesData"][number];
+export const exampleGroupsData: ExampleGroupsData = ${JSON.stringify(exampleGroupsData, undefined, 2)};
+`;
fs.writeFileSync(target, code);
}
+async function addDependenciesToExample(project: Project) {
+ const dependencies = project.config.dependencies || {};
+ const devDependencies = project.config.devDependencies || {};
+ if (
+ Object.keys(dependencies).length > 0 ||
+ Object.keys(devDependencies).length > 0
+ ) {
+ const packageJson = path.join(DOCS_DIR, "package.json");
+ const packageJsonContent = fs.readFileSync(packageJson, "utf-8");
+ const packageJsonObject = JSON.parse(packageJsonContent);
+ packageJsonObject.dependencies = {
+ ...packageJsonObject.dependencies,
+ ...dependencies,
+ };
+ packageJsonObject.devDependencies = {
+ ...packageJsonObject.devDependencies,
+ ...devDependencies,
+ };
+ fs.writeFileSync(packageJson, JSON.stringify(packageJsonObject, null, 2));
+ }
+}
+
// clean old files / dirs
fs.rmSync(COMPONENT_DIR, { recursive: true, force: true });
@@ -210,8 +194,8 @@ for (const group of Object.values(groups)) {
console.log("generating docs for", project.fullSlug);
await generateCodeForExample(project);
await generatePageForExample(project);
+ await addDependenciesToExample(project);
}
}
-await generateExampleComponents(projects);
-await generateExampleList(projects);
+await generateExampleGroupsData(projects);
diff --git a/packages/dev-scripts/examples/template-react/main.tsx.template.tsx b/packages/dev-scripts/examples/template-react/main.tsx.template.tsx
index 957a01a8c9..f9be8923e1 100644
--- a/packages/dev-scripts/examples/template-react/main.tsx.template.tsx
+++ b/packages/dev-scripts/examples/template-react/main.tsx.template.tsx
@@ -5,7 +5,7 @@ const template = (
) => `// AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY
import React from "react";
import { createRoot } from "react-dom/client";
-import App from "./App.jsx";
+import App from "./src/App.jsx";
const root = createRoot(document.getElementById("root")!);
root.render(
diff --git a/packages/dev-scripts/examples/util.ts b/packages/dev-scripts/examples/util.ts
index d5bb43fccf..adb6cd49c6 100644
--- a/packages/dev-scripts/examples/util.ts
+++ b/packages/dev-scripts/examples/util.ts
@@ -44,6 +44,7 @@ export type Project = {
author: string;
pro?: boolean;
};
+ readme: string;
};
export function groupBy(arr: T[], key: (el: T) => string) {
@@ -104,37 +105,24 @@ export function addTitleToGroups(grouped: ReturnType) {
return groupsWithTitles;
}
-export type Files = Record<
- string,
- {
- filename: string;
- code: string;
- hidden: boolean;
- }
->;
+export type Files = {
+ filename: string;
+ code: string;
+}[];
export function getProjectFiles(project: Project): Files {
- const dir = path.resolve("../..", project.pathFromRoot);
- const files = globSync(["**/*", "!node_modules/**/*", "!dist/**/*"], {
+ const dir = path.resolve("../..", project.pathFromRoot, "src");
+ const files = globSync(["**/*"], {
absolute: true,
cwd: dir,
});
- const passedFiles = Object.fromEntries(
- files.map((fullPath) => {
- const filename = fullPath.substring(dir.length);
- return [
- filename,
- {
- filename,
- code: fs.readFileSync(fullPath, "utf-8"),
- hidden:
- !(filename.endsWith(".tsx") || filename.endsWith(".css")) ||
- filename.endsWith("main.tsx"),
- },
- ];
- }),
- );
- return passedFiles;
+ return files.map((fullPath) => {
+ const filename = fullPath.substring(dir.length);
+ return {
+ filename,
+ code: fs.readFileSync(fullPath, "utf-8"),
+ };
+ });
}
/**
@@ -172,7 +160,8 @@ export function getExampleProjects(): Project[] {
}
const md = fs.readFileSync(readmePath, "utf-8");
- const title = md.match(/# (.*)/)?.[1];
+ const [mdTitle, ...rest] = md.split("\n");
+ const title = mdTitle.match(/# (.*)/)?.[1];
if (!title?.length) {
throw new Error(`Missing title in README.md for ${directory}`);
@@ -200,7 +189,9 @@ export function getExampleProjects(): Project[] {
config,
title,
group,
+ readme: rest.join("\n").trim(),
};
+
return project;
});
diff --git a/packages/react/README.md b/packages/react/README.md
index 6ad9973798..f5a97c6c50 100644
--- a/packages/react/README.md
+++ b/packages/react/README.md
@@ -10,7 +10,7 @@ React rich text editor. Easily add a modern text editing experience to your app.
-
+
@@ -18,8 +18,8 @@ React rich text editor. Easily add a modern text editing experience to your app.
Homepage
-
Documentation
- -
- Quickstart
+ -
+ Install
-
Examples
@@ -54,31 +54,31 @@ If you prefer to create your own UI components (menus), or don't want to use Rea
BlockNote comes with a number of features and components to make it easy to embed a high-quality block-based editor in your app:
-### Animations:
+### Animations
-### Helpful placeholders:
+### Helpful placeholders
-### Drag and drop blocks:
+### Drag and drop blocks
-### Nesting / indentation with tab and shift+tab:
+### Nesting / indentation with tab and shift+tab
-### Slash (/) menu:
+### Slash (/) menu
-### Format menu:
+### Format menu
-### Real-time collaboration:
+### Real-time collaboration
diff --git a/packages/react/src/editor/BlockNoteDefaultUI.tsx b/packages/react/src/editor/BlockNoteDefaultUI.tsx
index 73b010922a..6ef058466e 100644
--- a/packages/react/src/editor/BlockNoteDefaultUI.tsx
+++ b/packages/react/src/editor/BlockNoteDefaultUI.tsx
@@ -10,13 +10,52 @@ import { TableHandlesController } from "../components/TableHandles/TableHandlesC
import { useBlockNoteEditor } from "../hooks/useBlockNoteEditor.js";
export type BlockNoteDefaultUIProps = {
+ /**
+ * Whether the formatting toolbar should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/formatting-toolbar}
+ */
formattingToolbar?: boolean;
+
+ /**
+ * Whether the link toolbar should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/link-toolbar}
+ */
linkToolbar?: boolean;
+
+ /**
+ * Whether the slash menu should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/suggestion-menus#slash-menu}
+ */
slashMenu?: boolean;
+
+ /**
+ * Whether the block side menu should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/side-menu}
+ */
sideMenu?: boolean;
+
+ /**
+ * Whether the file panel should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/file-panel}
+ */
filePanel?: boolean;
+
+ /**
+ * Whether the table handles should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/table-handles}
+ */
tableHandles?: boolean;
+
+ /**
+ * Whether the emoji picker should be enabled.
+ * @see {@link https://blocknotejs.org/docs/advanced/grid-suggestion-menus#emoji-picker}
+ */
emojiPicker?: boolean;
+
+ /**
+ * Whether the default comments UI feature should be enabled.
+ * @see {@link https://blocknotejs.org/docs/ui-components/comments}
+ */
comments?: boolean;
};
diff --git a/packages/react/src/editor/BlockNoteView.tsx b/packages/react/src/editor/BlockNoteView.tsx
index 8fba028132..0738019da1 100644
--- a/packages/react/src/editor/BlockNoteView.tsx
+++ b/packages/react/src/editor/BlockNoteView.tsx
@@ -45,17 +45,16 @@ export type BlockNoteViewProps<
ISchema extends InlineContentSchema,
SSchema extends StyleSchema,
> = {
+ /**
+ * The {@link BlockNoteEditor} instance to render.
+ * @remarks `BlockNoteEditor`
+ */
editor: BlockNoteEditor;
- theme?: "light" | "dark";
-
/**
- * Whether to render the editor element itself.
- * When `false`, you're responsible for rendering the editor yourself using the `BlockNoteViewEditor` component.
- *
- * @default true
+ * The editor's theme, see [Themes](https://www.blocknotejs.org/docs/styling-theming/themes) for more about this.
*/
- renderEditor?: boolean;
+ theme?: "light" | "dark";
/**
* Locks the editor from being editable by the user if set to `false`.
@@ -70,26 +69,39 @@ export type BlockNoteViewProps<
/**
* A callback function that runs whenever the editor's contents change.
+ * Same as {@link BlockNoteEditor.onChange}.
+ * @remarks `(editor: BlockNoteEditor) => void`
*/
onChange?: Parameters<
BlockNoteEditor["onChange"]
>[0];
+ /**
+ * Whether to render the editor element itself.
+ * When `false`, you're responsible for rendering the editor yourself using the {@link BlockNoteViewEditor} component.
+ *
+ * @default true
+ */
+ renderEditor?: boolean;
+
+ /**
+ * Pass child elements to the {@link BlockNoteView} to create or customize toolbars, menus, or other UI components. See [UI Components](https://www.blocknotejs.org/docs/ui-components) for more.
+ */
children?: ReactNode;
ref?: Ref | undefined; // only here to get types working with the generics. Regular form doesn't work
-} & Omit<
- HTMLAttributes,
- "onChange" | "onSelectionChange" | "children"
-> &
- BlockNoteDefaultUIProps;
+} & BlockNoteDefaultUIProps;
function BlockNoteViewComponent<
BSchema extends BlockSchema,
ISchema extends InlineContentSchema,
SSchema extends StyleSchema,
>(
- props: BlockNoteViewProps,
+ props: BlockNoteViewProps &
+ Omit<
+ HTMLAttributes,
+ "onChange" | "onSelectionChange" | "children"
+ >,
ref: React.Ref,
) {
const {
diff --git a/playground/src/examples.gen.tsx b/playground/src/examples.gen.tsx
index 27f52c431a..7f9df4e8ed 100644
--- a/playground/src/examples.gen.tsx
+++ b/playground/src/examples.gen.tsx
@@ -20,7 +20,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example shows the minimal code required to set up a BlockNote editor in React.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "block-objects",
@@ -40,7 +41,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "In this example, the document's JSON representation is displayed below the editor.\n\n**Try it out:** Try typing in the editor and see the JSON update!\n\n**Relevant Docs:**\n\n- [Document Structure](/docs/editor-basics/document-structure)\n- [Getting the Document](/docs/editor-api/manipulating-blocks#getting-the-document)"
},
{
"projectSlug": "multi-column",
@@ -63,7 +65,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example showcases multi-column blocks, allowing you to stack blocks next to each other. These come as part of the `@blocknote/xl-multi-column` package.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Document Structure](/docs/editor-basics/document-structure)"
},
{
"projectSlug": "default-blocks",
@@ -83,7 +86,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example showcases each block and inline content type in BlockNote's default schema.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Document Structure](/docs/editor-basics/document-structure)\n- [Default Schema](/docs/editor-basics/default-schema)"
},
{
"projectSlug": "removing-default-blocks",
@@ -103,7 +107,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example shows how to change the default schema and disable the Audio and Image blocks. To do this, we pass in a custom schema based on the built-in, default schema, with two specific blocks removed.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Custom Schemas](/docs/custom-schemas)"
},
{
"projectSlug": "block-manipulation",
@@ -122,7 +127,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example shows 4 buttons to manipulate the first block using the `insertBlocks`, `updateBlock`, `removeBlocks` and `replaceBlocks` methods.\n\n**Relevant Docs:**\n\n- [Block Manipulation](/docs/manipulating-blocks)"
},
{
"projectSlug": "selection-blocks",
@@ -141,7 +147,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "In this example, the JSON representation of blocks spanned by the user's selection, is displayed below the editor.\n\n**Try it out:** Select different blocks in the editor and see the JSON update!\n\n**Relevant Docs:**\n\n- [Cursor & Selections](/docs/editor-api/cursor-selections)"
},
{
"projectSlug": "ariakit",
@@ -159,7 +166,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example shows how you can use BlockNote with Ariakit (instead of Mantine).\n\n**Relevant Docs:**\n\n- [Ariakit](/docs/advanced/ariakit)"
},
{
"projectSlug": "shadcn",
@@ -177,7 +185,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example shows how you can use BlockNote with ShadCN (instead of Mantine).\n\n**Relevant Docs:**\n\n- [ShadCN](/docs/advanced/shadcn)"
},
{
"projectSlug": "localization",
@@ -195,7 +204,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "In this example, we pass in a custom dictionary to change the interface of the editor to use Dutch (NL) strings.\n\nYou can also provide your own dictionary to customize the strings used in the editor, or submit a Pull Request to add support for your language of your choice.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "custom-placeholder",
@@ -213,7 +223,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "In this example, we show how to change the placeholders:\n\n- For an empty document, we show a placeholder `Start typing..` (by default, this is not set)\n- the default placeholder in this editor shows `Custom default placeholder` instead of the default (`Enter text or type '/' for commands`)\n- for Headings, the placeholder shows `Custom heading placeholder` instead of the default (`Heading`). Try adding a Heading to see the change\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Localization (i18n)](/examples/basic/localization)"
},
{
"projectSlug": "multi-editor",
@@ -231,7 +242,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example showcases use of multiple editors in a single page - you can even drag blocks between them.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "custom-paste-handler",
@@ -249,7 +261,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "In this example, we change the default paste handler to append some text to the pasted content when the content is plain text.\n\n**Try it out:** Use the buttons to copy some content to the clipboard and paste it in the editor to trigger our custom paste handler.\n\n**Relevant Docs:**\n\n- [Paste Handling](/docs/advanced/paste-handling)"
},
{
"projectSlug": "testing",
@@ -263,7 +276,8 @@
"group": {
"pathFromRoot": "examples/01-basic",
"slug": "basic"
- }
+ },
+ "readme": "This example is meant for use in end-to-end tests."
}
]
},
@@ -288,7 +302,8 @@
"group": {
"pathFromRoot": "examples/02-backend",
"slug": "backend"
- }
+ },
+ "readme": "This example allows users to upload files and use them in the editor. The files are uploaded to [/TMP/Files](https://tmpfiles.org/), and can be used for File, Image, Video, and Audio blocks.\n\n**Try it out:** Click the \"Add Image\" button and see there's now an \"Upload\" tab in the toolbar!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [File Block](/docs/editor-basics/default-schema#file)"
},
{
"projectSlug": "saving-loading",
@@ -308,7 +323,8 @@
"group": {
"pathFromRoot": "examples/02-backend",
"slug": "backend"
- }
+ },
+ "readme": "This example shows how to save the editor contents to local storage whenever a change is made, and load the saved contents when the editor is created.\n\nYou can replace the `saveToStorage` and `loadFromStorage` functions with calls to your backend or database.\n\n**Try it out:** Try typing in the editor and reloading the page!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Getting the Document](/docs/editor-api/manipulating-blocks#getting-the-document)"
},
{
"projectSlug": "s3",
@@ -332,7 +348,8 @@
"group": {
"pathFromRoot": "examples/02-backend",
"slug": "backend"
- }
+ },
+ "readme": "This example allows users to upload files to an AWS S3 bucket and use them in the editor. The files can be used for File, Image, Video, and Audio blocks.\n\n**Try it out:** Click the \"Add Image\" button and see there's now an \"Upload\" tab in the toolbar!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [File Block](/docs/editor-basics/default-schema#file)"
},
{
"projectSlug": "rendering-static-documents",
@@ -353,7 +370,8 @@
"group": {
"pathFromRoot": "examples/02-backend",
"slug": "backend"
- }
+ },
+ "readme": "This example shows how you can use HTML exported using the `blocksToFullHTML` and render it as a static document (a view-only document, without the editor). You can use this for example if you use BlockNote to edit blog posts in a CMS, but want to display non-editable static, published pages to end-users.\n\n**Relevant Docs:**\n\n- [Server-side processing](/docs/editor-api/server-processing)"
}
]
},
@@ -380,7 +398,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we add a blue text/background color and code style button to the Formatting Toolbar.\n\n**Try it out:** Select some text to open the Formatting Toolbar, and click one of the new buttons!\n\n**Relevant Docs:**\n\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Manipulating Inline Content](/docs/editor-api/manipulating-inline-content)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "formatting-toolbar-block-type-items",
@@ -406,7 +425,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we add an item to the Block Type Select, so that it works for a custom alert block we create.\n\n**Try it out:** Select some text to open the Formatting Toolbar, and click \"Alert\" in the Block Type Select to change the selected block!\n\n**Relevant Docs:**\n\n- [Changing Block Type Select Items](/docs/ui-components/formatting-toolbar#changing-block-type-select-items)\n- [Custom Block Types](/docs/custom-schemas/custom-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "side-menu-buttons",
@@ -430,7 +450,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we replace the button to add a block in the Block Side Menu, with a button to remove the hovered block.\n\n**Try it out:** Hover a block to open the Block Side Menu, and click the new button!\n\n**Relevant Docs:**\n\n- [Changing the Block Side Menu](/docs/ui-components/side-menu#changing-the-block-side-menu)\n- [Removing Blocks](/docs/editor-api/manipulating-blocks#removing-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "side-menu-drag-handle-items",
@@ -454,7 +475,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we add an item to the Drag Handle Menu, which resets the hovered block to a paragraph.\n\n**Try it out:** Hover a block to open the Block Side Menu, and click \"Reset Type\" in the Drag Handle Menu to reset the selected block!\n\n**Relevant Docs:**\n\n- [Changing Drag Handle Menu Items](/docs/ui-components/side-menu#changing-drag-handle-menu-items)\n- [Updating Blocks](/docs/editor-api/manipulating-blocks#updating-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-slash-menu-items",
@@ -479,7 +501,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we add an item to the Slash Menu, which adds a new block below with a bold \"Hello World\" string.\n\n**Try it out:** Press the \"/\" key to open the Slash Menu and select the new item!\n\n**Relevant Docs:**\n\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)\n- [Getting Text Cursor Position](/docs/editor-api/cursor-selections#getting-text-cursor-position)\n- [Inserting New Blocks](/docs/editor-api/manipulating-blocks#inserting-new-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-slash-menu-component",
@@ -501,7 +524,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we replace the default Slash Menu component with a basic custom one.\n\n**Try it out:** Press the \"/\" key to see the new Slash Menu!\n\n**Relevant Docs:**\n\n- [Replacing the Slash Menu Component](/docs/ui-components/suggestion-menus#replacing-the-suggestion-menu-component)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-emoji-picker-columns",
@@ -523,7 +547,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we change the Emoji Picker to display 5 columns instead of 10.\n\n**Try it out:** Press the \":\" key to open the Emoji Picker!\n\n**Relevant Docs:**\n\n- [Changing Emoji Picker Columns](/docs/ui-components/suggestion-menus#changing-emoji-picker-columns)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-emoji-picker-component",
@@ -545,7 +570,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we replace the default Emoji Picker component with a basic custom one.\n\n**Try it out:** Press the \":\" key to see the new Emoji Picker!\n\n**Relevant Docs:**\n\n- [Replacing the Emoji Picker Component](/docs/ui-components/suggestion-menus#replacing-the-emoji-picker-component)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-grid-mentions",
@@ -566,7 +592,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we create a custom `Mention` inline content type which is used to tag people. In addition, we create a new Suggestion Menu for mentions which opens with the \"@\" character. This Suggestion Menu is displayed as a grid of 2 columns, where each item is the first letter of the person's name.\n\n**Try it out:** Press the \"@\" key to open the mentions menu and insert a mention!\n\n**Relevant Docs:**\n\n- [Custom Inline Content Types](/docs/custom-schemas/custom-inline-content)\n- [Creating Suggestion Menus](/docs/ui-components/suggestion-menus#creating-additional-suggestion-menus)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "uppy-file-panel",
@@ -600,7 +627,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "This example allows users to upload files using [Uppy](https://uppy.io/) by replacing the default File Panel with an Uppy Dashboard.\n\nUppy is highly extensible and has an extensive ecosystem of plugins. For example, you can:\n\n- Record audio, screen or webcam\n- Import files from Box / Dropbox / Facebook / Google Drive / Google Photos / Instagram / OneDrive / Zoom\n- Select files from Unsplash\n- Show an image editor (crop, rotate, etc)\n\nIn this example, we've enabled the Webcam, ScreenCapture and Image Editor plugins.\n\n**Try it out:** Click the \"Add Image\" button and you can either drop files or click \"browse files\" to upload them.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Image](/docs/editor-basics/default-schema#image)"
},
{
"projectSlug": "static-formatting-toolbar",
@@ -621,7 +649,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "This example shows how to make the formatting toolbar always visible and static\nabove the editor.\n\n**Relevant Docs:**\n\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "custom-ui",
@@ -653,7 +682,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we implement a basic editor interface using components from Material UI. We replace the Formatting Toolbar, Slash Menu, and Block Side Menu while disabling the other default elements. Additionally, the Formatting Toolbar is made static and always visible above the editor.\n\n**Relevant Docs:**\n\n- [Formatting Toolbar](/docs/ui-components/formatting-toolbar)\n- [Manipulating Inline Content](/docs/editor-api/manipulating-inline-content)\n- [Slash Menu](/docs/ui-components/suggestion-menus#slash-menu)\n- [Side Menu](/docs/ui-components/side-menu)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "experimental-mobile-formatting-toolbar",
@@ -674,7 +704,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "This example shows how to use the experimental mobile formatting toolbar, which uses [Visual Viewport API](https://developer.mozilla.org/en-US/docs/Web/API/Visual_Viewport_API) to position the toolbar right above the virtual keyboard on mobile devices.\n\nController is currently marked **experimental** due to the flickering issue with positioning (caused by delays of the Visual Viewport API)\n\n**Relevant Docs:**\n\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "advanced-tables",
@@ -695,7 +726,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "This example enables the following features in tables:\n\n- Split cells\n- Cell background color\n- Cell text color\n- Table row and column headers\n\n**Relevant Docs:**\n\n- [Tables](/docs/advanced/tables)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "link-toolbar-buttons",
@@ -711,7 +743,8 @@
"group": {
"pathFromRoot": "examples/03-ui-components",
"slug": "ui-components"
- }
+ },
+ "readme": "In this example, we add a button to the Link Toolbar which opens a browser alert.\n\n**Try it out:** Hover the link open the Link Toolbar, and click the new \"Open Alert\" button!\n\n**Relevant Docs:**\n\n- [Changing the Link Toolbar](/docs/ui-components/link-toolbar#changing-the-link-toolbar)\n- [Editor Setup](/docs/editor-basics/setup)"
}
]
},
@@ -737,7 +770,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "In this example, we add a `hello-world-block` class to each block in the editor. We also create a CSS rule to add a border to all elements with that class.\n\n**Relevant Docs:**\n\n- [Adding DOM Attributes](/docs/styling-theming/adding-dom-attributes)"
},
{
"projectSlug": "changing-font",
@@ -756,7 +790,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "In this example, we override some of the default editor CSS to change font within the editor.\n\n**Relevant Docs:**\n\n- [Overriding CSS](/docs/styling-theming/overriding-css)"
},
{
"projectSlug": "theming-css",
@@ -776,7 +811,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "In this example, we override some of the default editor CSS to make the editor text and hovered Slash Menu items blue.\n\n**Relevant Docs:**\n\n- [Overriding CSS](/docs/styling-theming/overriding-css)"
},
{
"projectSlug": "theming-css-variables",
@@ -796,7 +832,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "In this example, we override the editor's default theme CSS variables to create a red theme for both light and dark modes.\n\n**Relevant Docs:**\n\n- [Theme CSS Variables](/docs/styling-theming/themes#theme-css-variables)"
},
{
"projectSlug": "theming-css-variables-code",
@@ -816,7 +853,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "In this example, we use the `BlockNoteView` component's `theme` props to create a red theme for both light and dark modes.\n\n**Relevant Docs:**\n\n- [Changing CSS Variables Through Code](/docs/styling-theming/themes#changing-css-variables-through-code)"
},
{
"projectSlug": "code-block",
@@ -837,7 +875,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "To enable code block syntax highlighting, you can use the `codeBlock` option in the `useCreateBlockNote` hook. This is excluded by default to reduce bundle size.\n\n**Relevant Docs:**\n\n- [Code Block Syntax Highlighting](/docs/advanced/code-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "custom-code-block",
@@ -863,7 +902,8 @@
"group": {
"pathFromRoot": "examples/04-theming",
"slug": "theming"
- }
+ },
+ "readme": "To configure a code block highlighting theme and language, you can use the `codeBlock` option in the `useCreateBlockNote` hook.\n\nThis allows you to configure a shiki highlighter for the code blocks of your editor, allowing you to tailor the themes and languages you would like to use.\n\nTo create a syntax highlighter, you can use the [shiki-codegen](https://shiki.style/packages/codegen) CLI for generating the code to create a syntax highlighter for your languages and themes.\n\nFor example to create a syntax highlighter using the optimized javascript engine, javascript, typescript, vue, with light and dark themes, you can run the following command:\n\n```bash\nnpx shiki-codegen --langs javascript,typescript,vue --themes light,dark --engine javascript --precompiled ./shiki.bundle.ts\n```\n\nThis will generate a `shiki.bundle.ts` file that you can use to create a syntax highlighter for your editor.\n\nLike this:\n\n```ts\nimport { createHighlighter } from \"./shiki.bundle\";\n\nexport default function App() {\n // Creates a new editor instance.\n const editor = useCreateBlockNote({\n codeBlock: {\n indentLineWithTab: true,\n defaultLanguage: \"typescript\",\n supportedLanguages: {\n typescript: {\n name: \"TypeScript\",\n aliases: [\"ts\"],\n },\n },\n createHighlighter: () =>\n createHighlighter({\n themes: [\"light-plus\", \"dark-plus\"],\n langs: [],\n }),\n },\n });\n\n return ;\n}\n```\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [shiki-codegen](https://shiki.style/packages/codegen)"
}
]
},
@@ -889,7 +929,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as HTML and displays it below the editor.\n\n**Try it out:** Edit the document to see the HTML representation!\n\n**Relevant Docs:**\n\n- [Converting Blocks to HTML](/docs/editor-api/converting-blocks#converting-blocks-to-html)"
},
{
"projectSlug": "converting-blocks-from-html",
@@ -909,7 +950,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example shows how you can convert HTML content to a BlockNote document.\n\nNote that the editor itself is locked for editing by setting `editable` to `false`.\n\n**Try it out:** Edit the HTML in the textarea to see the BlockNote document update!\n\n**Relevant Docs:**\n\n- [Parsing HTML to Blocks](/docs/editor-api/converting-blocks#parsing-html-to-blocks)"
},
{
"projectSlug": "converting-blocks-to-md",
@@ -929,7 +971,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as Markdown and displays it below the editor.\n\n**Try it out:** Edit the document to see the Markdown representation!\n\n**Relevant Docs:**\n\n- [Converting Blocks to Markdown](/docs/editor-api/converting-blocks#converting-blocks-to-markdown)"
},
{
"projectSlug": "converting-blocks-from-md",
@@ -949,7 +992,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example shows how you can convert HTML content to a BlockNote document.\n\nNote that the editor itself is locked for editing by setting `editable` to `false`.\n\n**Try it out:** Edit the Markdown in the textarea to see the BlockNote document update!\n\n**Relevant Docs:**\n\n- [Parsing Markdown to Blocks](/docs/editor-api/converting-blocks#parsing-markdown-to-blocks)"
},
{
"projectSlug": "converting-blocks-to-pdf",
@@ -973,7 +1017,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as an PDF file and downloads it to your computer.\n\n**Try it out:** Edit the document and click \"Download .pdf\" in top-left corner, to download the PDF file."
},
{
"projectSlug": "converting-blocks-to-docx",
@@ -997,7 +1042,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as an Microsoft Word Document (DOCX) file and downloads it to your computer.\n\n**Try it out:** Edit the document and click \"Download .docx\" in top-left corner, to download the DOCX file."
},
{
"projectSlug": "converting-blocks-to-odt",
@@ -1020,7 +1066,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as an Open Document Text (ODT) file and downloads it to your computer.\n\n**Try it out:** Edit the document and click \"Download .odt\" in top-left corner, to download the ODT file."
},
{
"projectSlug": "converting-blocks-to-react-email",
@@ -1043,7 +1090,8 @@
"group": {
"pathFromRoot": "examples/05-interoperability",
"slug": "interoperability"
- }
+ },
+ "readme": "This example exports the current document (all blocks) as a React Email document.\n\n**Try it out:** Edit the document and the preview will update."
}
]
},
@@ -1075,7 +1123,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "In this example, we create a custom `Alert` block which is used to emphasize text.\n\n**Try it out:** Click the \"!\" icon to change the alert type!\n\n**Relevant Docs:**\n\n- [Custom Blocks](/docs/custom-schemas/custom-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "suggestion-menus-mentions",
@@ -1096,7 +1145,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "In this example, we create a custom `Mention` inline content type which is used to tag people. In addition, we create a new Suggestion Menu for mentions which opens with the \"@\" character.\n\n**Try it out:** Press the \"@\" key to open the mentions menu and insert a mention!\n\n**Relevant Docs:**\n\n- [Custom Inline Content Types](/docs/custom-schemas/custom-inline-content)\n- [Creating Suggestion Menus](/docs/ui-components/suggestion-menus#creating-additional-suggestion-menus)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "font-style",
@@ -1120,7 +1170,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "In this example, we create a custom `Font` style which is used to set the `fontFamily` style. In addition, we create a Formatting Toolbar button which sets the `Font` style on the selected text.\n\n**Try it out:** Highlight some text to open the Formatting Toolbar and set the `Font` style!\n\n**Relevant Docs:**\n\n- [Custom Styles](/docs/custom-schemas/custom-styles)\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "pdf-file-block",
@@ -1147,7 +1198,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "In this example, we create a custom `PDF` block which extends the built-in `File` block. In addition, we create a Slash Menu item which inserts a `PDF` block.\n\n**Try it out:** Press the \"/\" key to open the Slash Menu and insert an `PDF` block!\n\n**Relevant Docs:**\n\n- [Custom Blocks](/docs/custom-schemas/custom-blocks)\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "alert-block-full-ux",
@@ -1174,7 +1226,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "In this example, we create a custom `Alert` block which is used to emphasize text, same as in the [minimal `Alert` block example](/examples/custom-schema/alert-block). However, in this example, we also add a command to insert the block via the Slash Menu, and an entry in the Formatting Toolbar's Block Type Select to change the current block to an `Alert`.\n\n**Try it out:** Press the \"/\" key to open the Slash Menu and insert an `Alert` block! Or highlight text in a paragraph, then change the block type to an `Alert` using the Block Type Select in the Formatting Toolbar!\n\n**Relevant Docs:**\n\n- [Minimal Alert Block Example](/examples/custom-schema/alert-block)\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)\n- [Changing Block Type Select Items](/docs/ui-components/formatting-toolbar#changing-block-type-select-items)\n- [Custom Blocks](/docs/custom-schemas/custom-blocks)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "toggleable-blocks",
@@ -1192,7 +1245,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": "This example shows how to create custom blocks with a toggle button to show/hide their children, like with the default toggle heading and list item blocks. This is done using the use the `ToggleWrapper` component from `@blocknote/react`.\n\n**Relevant Docs:**\n\n- [Custom Blocks](/docs/custom-schemas/custom-blocks)\n- [Editor Setup](/docs/editor-basics/setup)\n- [Default Schema](/docs/editor-basics/default-schema)"
},
{
"projectSlug": "react-custom-blocks",
@@ -1208,7 +1262,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": ""
},
{
"projectSlug": "react-custom-inline-content",
@@ -1224,7 +1279,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": ""
},
{
"projectSlug": "react-custom-styles",
@@ -1240,7 +1296,8 @@
"group": {
"pathFromRoot": "examples/06-custom-schema",
"slug": "custom-schema"
- }
+ },
+ "readme": ""
}
]
},
@@ -1270,7 +1327,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, we use PartyKit to let multiple users collaborate on a single BlockNote document in real-time.\n\n**Try it out:** Open this page in a new browser tab or window to see it in action!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [PartyKit](/docs/collaboration/real-time-collaboration#partykit)"
},
{
"projectSlug": "liveblocks",
@@ -1298,7 +1356,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, we use\nthe [Liveblocks + BlockNote setup guide](https://liveblocks.io/docs/get-started/react-blocknote)\nto create a collaborative BlockNote editor, where multiple people can work on\nthe same document in real-time.\n\nUsers can also add comments to the documents to start threads, which are\ndisplayed next to the editor. As well as that, they can react to, reply to, and\nresolve existing comments.\n\n**Try it out:** Open this page in a new browser tab or window to see it in\naction!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Liveblocks](/docs/collaboration/real-time-collaboration#liveblocks)\n\n**From Liveblocks Website:**\n\n- [Get Started with BlockNote](https://liveblocks.io/docs/get-started/react-blocknote)\n- [Ready Made Features](https://liveblocks.io/docs/ready-made-features/text-editor/blocknote)\n- [API Reference](https://liveblocks.io/docs/api-reference/liveblocks-react-blocknote)\n- [Advanced Example](https://liveblocks.io/examples/collaborative-text-editor/nextjs-blocknote)"
},
{
"projectSlug": "y-sweet",
@@ -1321,7 +1380,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, we use Y-Sweet to let multiple users collaborate on a single BlockNote document in real-time.\n\n**Try it out:** Open the [Y-Sweet BlockNote demo](https://demos.y-sweet.dev/blocknote) in multiple browser tabs to see it in action!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Real-time collaboration](/docs/collaboration/real-time-collaboration)\n- [Y-Sweet on Jamsocket](https://docs.jamsocket.com/y-sweet/tutorials/blocknote)"
},
{
"projectSlug": "comments",
@@ -1345,7 +1405,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, you can add comments to the document while collaborating with others. You can also pick user accounts with different permissions, as well as react to, reply to, and resolve existing comments. The comments are displayed floating next to the text they refer to, and appear when selecting said text.\n\n**Try it out:** Click the \"Add comment\" button in the [Formatting Toolbar](/docs/ui-components/formatting-toolbar) to add a comment!\n\n**Relevant Docs:**\n\n- [Comments](/docs/collaboration/comments)\n- [Real-time collaboration](/docs/collaboration/real-time-collaboration)\n- [Y-Sweet on Jamsocket](https://docs.jamsocket.com/y-sweet/tutorials/blocknote)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "comments-with-sidebar",
@@ -1369,7 +1430,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, you can add comments to the document while collaborating with others. You can also pick user accounts with different permissions, as well as react to, reply to, and resolve existing comments. The comments are displayed floating next to the text they refer to, and appear when selecting said text. The comments are shown in a separate sidebar using the `ThreadsSidebar` component.\n\n**Try it out:** Click the \"Add comment\" button in\nthe [Formatting Toolbar](/docs/ui-components/formatting-toolbar) to add a\ncomment!\n\n**Relevant Docs:**\n\n- [Comments Sidebar](/docs/collaboration/comments#sidebar-view)\n- [Real-time collaboration](/docs/collaboration/real-time-collaboration)\n- [Y-Sweet on Jamsocket](https://docs.jamsocket.com/y-sweet/tutorials/blocknote)\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "ghost-writer",
@@ -1393,7 +1455,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, we use a local Yjs document to store the document state, and have a ghost writer that edits the document in real-time.\n\n**Try it out:** Open this page in a new browser tab or window to see it in action!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)"
},
{
"projectSlug": "forking",
@@ -1417,7 +1480,8 @@
"group": {
"pathFromRoot": "examples/07-collaboration",
"slug": "collaboration"
- }
+ },
+ "readme": "In this example, we can fork a document and edit it independently of other collaborators. Then, we can choose to merge the changes back into the original document, or discard the changes.\n\n**Try it out:** Open this page in a new browser tab or window to see it in action!\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)"
}
]
},
@@ -1445,7 +1509,8 @@
"group": {
"pathFromRoot": "examples/08-extensions",
"slug": "extensions"
- }
+ },
+ "readme": "This example shows how to set up a BlockNote editor with a TipTap extension that registers an InputRule to convert `->` into `→`.\n\n**Try it out:** Type `->` anywhere in the editor and see how it's automatically converted to a single arrow unicode character."
}
]
},
@@ -1477,7 +1542,8 @@
"group": {
"pathFromRoot": "examples/09-ai",
"slug": "ai"
- }
+ },
+ "readme": "This example shows the minimal setup to add AI integration to your BlockNote rich text editor.\n\nSelect some text and click the AI (stars) button, or type `/ai` anywhere in the editor to access AI functionality.\n\n**Relevant Docs:**\n\n- [Getting Stared with BlockNote AI](/docs/ai/getting-started)\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)"
},
{
"projectSlug": "playground",
@@ -1508,7 +1574,8 @@
"group": {
"pathFromRoot": "examples/09-ai",
"slug": "ai"
- }
+ },
+ "readme": "The AI Playground example shows how to customize different options of the AI Extension such as model type and streaming mode.\n\nChange the configuration, the highlight some text to access the AI menu, or type `/ai` anywhere in the editor.\n\n**Relevant Docs:**\n\n- [Getting Stared with BlockNote AI](/docs/ai/getting-started)\n- [BlockNote AI Reference](/docs/ai/reference)\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)"
},
{
"projectSlug": "custom-ai-menu-items",
@@ -1536,7 +1603,8 @@
"group": {
"pathFromRoot": "examples/09-ai",
"slug": "ai"
- }
+ },
+ "readme": "In this example, we add two items to the AI Menu. The first prompts the AI to make the selected text more casual, and can be found by selecting some text and click the AI (stars) button. The second prompts the AI to give ideas on related topics to extend the document with, and can be found by clicking the \"Ask AI\" Slash Menu item.\n\nSelect some text and click the AI (stars) button, or type `/ai` anywhere in the editor to access AI functionality.\n\n**Relevant Docs:**\n\n- [Getting Stared with BlockNote AI](/docs/ai/getting-started)\n- [Custom AI Menu Items](/docs/ai/custom-commands)"
},
{
"projectSlug": "with-collaboration",
@@ -1564,7 +1632,8 @@
"group": {
"pathFromRoot": "examples/09-ai",
"slug": "ai"
- }
+ },
+ "readme": "This example combines the AI extension with the ghost writer example to show how to use the AI extension in a collaborative environment.\n\n**Relevant Docs:**\n\n- [Editor Setup](/docs/editor-basics/setup)\n- [Changing the Formatting Toolbar](/docs/ui-components/formatting-toolbar#changing-the-formatting-toolbar)\n- [Changing Slash Menu Items](/docs/ui-components/suggestion-menus#changing-slash-menu-items)\n- [Getting Stared with BlockNote AI](/docs/ai/setup)"
}
]
},
@@ -1586,7 +1655,8 @@
"group": {
"pathFromRoot": "examples/vanilla-js",
"slug": "vanilla-js"
- }
+ },
+ "readme": ""
},
{
"projectSlug": "react-vanilla-custom-inline-content",
@@ -1602,7 +1672,8 @@
"group": {
"pathFromRoot": "examples/vanilla-js",
"slug": "vanilla-js"
- }
+ },
+ "readme": ""
},
{
"projectSlug": "react-vanilla-custom-styles",
@@ -1618,7 +1689,8 @@
"group": {
"pathFromRoot": "examples/vanilla-js",
"slug": "vanilla-js"
- }
+ },
+ "readme": ""
}
]
}
diff --git a/playground/src/main.tsx b/playground/src/main.tsx
index 64b3427b97..9ee444b26c 100644
--- a/playground/src/main.tsx
+++ b/playground/src/main.tsx
@@ -97,7 +97,7 @@ const App = (props: { project: (typeof examples.basic)["projects"][0] }) => {
React.useEffect(() => {
(async () => {
// load app async
- const moduleName = "../../" + props.project.pathFromRoot + "/App.tsx";
+ const moduleName = "../../" + props.project.pathFromRoot + "/src/App.tsx";
const module = modules[moduleName];
const c: any = await module();
setExampleComponent(c);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 24ab649d97..56eef1b702 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -49,7 +49,7 @@ importers:
version: 5.8.2
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
wait-on:
specifier: 8.0.3
version: 8.0.3
@@ -249,10 +249,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/02-block-objects:
dependencies:
@@ -286,10 +286,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/03-multi-column:
dependencies:
@@ -326,10 +326,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/04-default-blocks:
dependencies:
@@ -363,10 +363,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/05-removing-default-blocks:
dependencies:
@@ -400,10 +400,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/06-block-manipulation:
dependencies:
@@ -437,10 +437,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/07-selection-blocks:
dependencies:
@@ -474,10 +474,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/08-ariakit:
dependencies:
@@ -511,10 +511,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/09-shadcn:
dependencies:
@@ -548,10 +548,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/10-localization:
dependencies:
@@ -585,10 +585,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/11-custom-placeholder:
dependencies:
@@ -622,10 +622,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/12-multi-editor:
dependencies:
@@ -659,10 +659,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/13-custom-paste-handler:
dependencies:
@@ -696,10 +696,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/01-basic/testing:
dependencies:
@@ -733,10 +733,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/02-backend/01-file-uploading:
dependencies:
@@ -770,10 +770,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/02-backend/02-saving-loading:
dependencies:
@@ -807,10 +807,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/02-backend/03-s3:
dependencies:
@@ -850,10 +850,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/02-backend/04-rendering-static-documents:
dependencies:
@@ -890,10 +890,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/01-ui-elements-remove:
dependencies:
@@ -927,10 +927,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/02-formatting-toolbar-buttons:
dependencies:
@@ -964,10 +964,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/03-formatting-toolbar-block-type-items:
dependencies:
@@ -1007,10 +1007,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/04-side-menu-buttons:
dependencies:
@@ -1047,10 +1047,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/05-side-menu-drag-handle-items:
dependencies:
@@ -1087,10 +1087,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/06-suggestion-menus-slash-menu-items:
dependencies:
@@ -1127,10 +1127,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/07-suggestion-menus-slash-menu-component:
dependencies:
@@ -1164,10 +1164,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/08-suggestion-menus-emoji-picker-columns:
dependencies:
@@ -1201,10 +1201,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/09-suggestion-menus-emoji-picker-component:
dependencies:
@@ -1238,10 +1238,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/10-suggestion-menus-grid-mentions:
dependencies:
@@ -1275,10 +1275,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/11-uppy-file-panel:
dependencies:
@@ -1348,10 +1348,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/12-static-formatting-toolbar:
dependencies:
@@ -1385,10 +1385,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/13-custom-ui:
dependencies:
@@ -1434,10 +1434,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/14-experimental-mobile-formatting-toolbar:
dependencies:
@@ -1471,10 +1471,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/15-advanced-tables:
dependencies:
@@ -1508,10 +1508,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/03-ui-components/link-toolbar-buttons:
dependencies:
@@ -1545,10 +1545,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/01-theming-dom-attributes:
dependencies:
@@ -1582,10 +1582,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/02-changing-font:
dependencies:
@@ -1619,10 +1619,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/03-theming-css:
dependencies:
@@ -1656,10 +1656,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/04-theming-css-variables:
dependencies:
@@ -1693,10 +1693,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/05-theming-css-variables-code:
dependencies:
@@ -1730,10 +1730,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/06-code-block:
dependencies:
@@ -1770,10 +1770,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/04-theming/07-custom-code-block:
dependencies:
@@ -1825,10 +1825,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/01-converting-blocks-to-html:
dependencies:
@@ -1862,10 +1862,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/02-converting-blocks-from-html:
dependencies:
@@ -1899,10 +1899,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/03-converting-blocks-to-md:
dependencies:
@@ -1936,10 +1936,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/04-converting-blocks-from-md:
dependencies:
@@ -1973,10 +1973,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/05-converting-blocks-to-pdf:
dependencies:
@@ -2019,10 +2019,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/06-converting-blocks-to-docx:
dependencies:
@@ -2065,10 +2065,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/07-converting-blocks-to-odt:
dependencies:
@@ -2108,10 +2108,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/05-interoperability/08-converting-blocks-to-react-email:
dependencies:
@@ -2151,10 +2151,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.4.1(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.4.1(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/01-alert-block:
dependencies:
@@ -2194,10 +2194,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/02-suggestion-menus-mentions:
dependencies:
@@ -2231,10 +2231,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/03-font-style:
dependencies:
@@ -2271,10 +2271,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/04-pdf-file-block:
dependencies:
@@ -2314,10 +2314,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/05-alert-block-full-ux:
dependencies:
@@ -2357,10 +2357,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/06-toggleable-blocks:
dependencies:
@@ -2394,10 +2394,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.4.1(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.4.1(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/react-custom-blocks:
dependencies:
@@ -2431,10 +2431,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/react-custom-inline-content:
dependencies:
@@ -2468,10 +2468,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/06-custom-schema/react-custom-styles:
dependencies:
@@ -2505,10 +2505,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/01-partykit:
dependencies:
@@ -2548,10 +2548,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/02-liveblocks:
dependencies:
@@ -2578,10 +2578,10 @@ importers:
version: 2.23.1(react@18.3.1)
'@liveblocks/react-blocknote':
specifier: ^2.23.1
- version: 2.23.1(f7e1392d47807ef889348b4cdb3b8972)
+ version: 2.23.1(86fe50283eaddaea296c5b0736a1f4f3)
'@liveblocks/react-tiptap':
specifier: ^2.23.1
- version: 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
+ version: 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
'@liveblocks/react-ui':
specifier: ^2.23.1
version: 2.23.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -2603,10 +2603,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/03-y-sweet:
dependencies:
@@ -2627,7 +2627,7 @@ importers:
version: link:../../../packages/shadcn
'@y-sweet/react':
specifier: ^0.6.3
- version: 0.6.4(react@18.3.1)(yjs@13.6.24)
+ version: 0.6.4(react@18.3.1)(yjs@13.6.27)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2643,10 +2643,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/04-comments:
dependencies:
@@ -2670,7 +2670,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@y-sweet/react':
specifier: ^0.6.3
- version: 0.6.4(react@18.3.1)(yjs@13.6.24)
+ version: 0.6.4(react@18.3.1)(yjs@13.6.27)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2686,10 +2686,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/05-comments-with-sidebar:
dependencies:
@@ -2713,7 +2713,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@y-sweet/react':
specifier: ^0.6.3
- version: 0.6.4(react@18.3.1)(yjs@13.6.24)
+ version: 0.6.4(react@18.3.1)(yjs@13.6.27)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2729,10 +2729,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/06-ghost-writer:
dependencies:
@@ -2772,10 +2772,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/07-collaboration/07-forking:
dependencies:
@@ -2815,10 +2815,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/08-extensions/01-tiptap-arrow-conversion:
dependencies:
@@ -2855,16 +2855,16 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/09-ai/01-minimal:
dependencies:
'@ai-sdk/groq':
specifier: ^1.2.9
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@blocknote/ariakit':
specifier: latest
version: link:../../../packages/ariakit
@@ -2888,7 +2888,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ai:
specifier: ^4.3.15
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2907,31 +2907,31 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/09-ai/02-playground:
dependencies:
'@ai-sdk/anthropic':
specifier: ^1.2.11
- version: 1.2.11(zod@3.24.2)
+ version: 1.2.11(zod@3.25.75)
'@ai-sdk/google':
specifier: ^1.2.20
- version: 1.2.20(zod@3.24.2)
+ version: 1.2.20(zod@3.25.75)
'@ai-sdk/groq':
specifier: ^1.2.9
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@ai-sdk/mistral':
specifier: ^1.2.8
- version: 1.2.8(zod@3.24.2)
+ version: 1.2.8(zod@3.25.75)
'@ai-sdk/openai':
specifier: ^1.3.22
- version: 1.3.22(zod@3.24.2)
+ version: 1.3.22(zod@3.25.75)
'@ai-sdk/openai-compatible':
specifier: ^0.2.14
- version: 0.2.14(zod@3.24.2)
+ version: 0.2.14(zod@3.25.75)
'@blocknote/ariakit':
specifier: latest
version: link:../../../packages/ariakit
@@ -2955,7 +2955,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ai:
specifier: ^4.3.15
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -2974,19 +2974,19 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/09-ai/03-custom-ai-menu-items:
dependencies:
'@ai-sdk/groq':
specifier: ^1.1.0
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@ai-sdk/openai':
specifier: ^1.1.0
- version: 1.3.22(zod@3.24.2)
+ version: 1.3.22(zod@3.25.75)
'@blocknote/ariakit':
specifier: latest
version: link:../../../packages/ariakit
@@ -3010,7 +3010,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ai:
specifier: ^4.1.0
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -3032,16 +3032,16 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/09-ai/04-with-collaboration:
dependencies:
'@ai-sdk/groq':
specifier: ^1.2.9
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@blocknote/ariakit':
specifier: latest
version: link:../../../packages/ariakit
@@ -3065,7 +3065,7 @@ importers:
version: 7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ai:
specifier: ^4.3.15
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -3090,10 +3090,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/vanilla-js/react-vanilla-custom-blocks:
dependencies:
@@ -3127,10 +3127,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/vanilla-js/react-vanilla-custom-inline-content:
dependencies:
@@ -3164,10 +3164,10 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
examples/vanilla-js/react-vanilla-custom-styles:
dependencies:
@@ -3201,10 +3201,332 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
+
+ fumadocs:
+ dependencies:
+ '@ai-sdk/anthropic':
+ specifier: ^1.2.11
+ version: 1.2.12(zod@3.25.75)
+ '@ai-sdk/google':
+ specifier: ^1.2.20
+ version: 1.2.20(zod@3.25.75)
+ '@ai-sdk/groq':
+ specifier: ^1.1.0
+ version: 1.2.9(zod@3.25.75)
+ '@ai-sdk/mistral':
+ specifier: ^1.2.8
+ version: 1.2.8(zod@3.25.75)
+ '@ai-sdk/openai':
+ specifier: ^1.1.0
+ version: 1.3.22(zod@3.25.75)
+ '@ai-sdk/openai-compatible':
+ specifier: ^0.2.14
+ version: 0.2.14(zod@3.25.75)
+ '@aws-sdk/client-s3':
+ specifier: ^3.609.0
+ version: 3.842.0
+ '@aws-sdk/s3-request-presigner':
+ specifier: ^3.609.0
+ version: 3.842.0
+ '@blocknote/code-block':
+ specifier: latest
+ version: link:../packages/code-block
+ '@blocknote/server-util':
+ specifier: latest
+ version: link:../packages/server-util
+ '@blocknote/xl-ai':
+ specifier: latest
+ version: link:../packages/xl-ai
+ '@blocknote/xl-docx-exporter':
+ specifier: latest
+ version: link:../packages/xl-docx-exporter
+ '@blocknote/xl-email-exporter':
+ specifier: latest
+ version: link:../packages/xl-email-exporter
+ '@blocknote/xl-multi-column':
+ specifier: latest
+ version: link:../packages/xl-multi-column
+ '@blocknote/xl-odt-exporter':
+ specifier: latest
+ version: link:../packages/xl-odt-exporter
+ '@blocknote/xl-pdf-exporter':
+ specifier: latest
+ version: link:../packages/xl-pdf-exporter
+ '@emotion/react':
+ specifier: ^11.11.4
+ version: 11.14.0(@types/react@19.1.8)(react@19.1.0)
+ '@emotion/styled':
+ specifier: ^11.11.5
+ version: 11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+ '@fumadocs/mdx-remote':
+ specifier: 1.3.0
+ version: 1.3.0(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@headlessui/react':
+ specifier: ^1.7.19
+ version: 1.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@heroicons/react':
+ specifier: ^2.2.0
+ version: 2.2.0(react@19.1.0)
+ '@liveblocks/client':
+ specifier: ^2.23.1
+ version: 2.24.3
+ '@liveblocks/react':
+ specifier: ^2.23.1
+ version: 2.24.3(react@19.1.0)
+ '@liveblocks/react-blocknote':
+ specifier: ^2.23.1
+ version: 2.24.3(8539b2342d61009ca8ec75e6340b0d67)
+ '@liveblocks/react-tiptap':
+ specifier: ^2.23.1
+ version: 2.24.3(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(y-protocols@1.0.6(yjs@13.6.27))
+ '@liveblocks/react-ui':
+ specifier: ^2.23.1
+ version: 2.24.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@mantine/core':
+ specifier: ^7.10.1
+ version: 7.17.8(@mantine/hooks@7.17.3(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@mui/icons-material':
+ specifier: ^5.16.1
+ version: 5.17.1(@mui/material@5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+ '@mui/material':
+ specifier: ^5.16.1
+ version: 5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@polar-sh/better-auth':
+ specifier: ^1.0.2
+ version: 1.0.4(@polar-sh/sdk@0.34.3(zod@3.25.75))(better-auth@1.2.12)
+ '@polar-sh/nextjs':
+ specifier: ^0.4.1
+ version: 0.4.2(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(zod@3.25.75)
+ '@polar-sh/sdk':
+ specifier: ^0.34.2
+ version: 0.34.3(zod@3.25.75)
+ '@react-email/render':
+ specifier: ^1.1.2
+ version: 1.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-pdf/renderer':
+ specifier: ^4.3.0
+ version: 4.3.0(react@19.1.0)
+ '@sentry/nextjs':
+ specifier: 9.14.0
+ version: 9.14.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.98.0)
+ '@shikijs/core':
+ specifier: ^3.2.1
+ version: 3.7.0
+ '@shikijs/engine-javascript':
+ specifier: ^3.2.1
+ version: 3.7.0
+ '@shikijs/langs-precompiled':
+ specifier: ^3.2.1
+ version: 3.7.0
+ '@shikijs/themes':
+ specifier: ^3.2.1
+ version: 3.7.0
+ '@shikijs/types':
+ specifier: ^3.2.1
+ version: 3.2.1
+ '@tiptap/core':
+ specifier: ^2.12.0
+ version: 2.25.0(@tiptap/pm@2.12.0)
+ '@uppy/core':
+ specifier: ^3.13.1
+ version: 3.13.1
+ '@uppy/dashboard':
+ specifier: ^3.9.1
+ version: 3.9.1(@uppy/core@3.13.1)
+ '@uppy/drag-drop':
+ specifier: ^3.1.1
+ version: 3.1.1(@uppy/core@3.13.1)
+ '@uppy/file-input':
+ specifier: ^3.1.2
+ version: 3.1.2(@uppy/core@3.13.1)
+ '@uppy/image-editor':
+ specifier: ^2.4.6
+ version: 2.4.6(@uppy/core@3.13.1)
+ '@uppy/progress-bar':
+ specifier: ^3.1.1
+ version: 3.1.1(@uppy/core@3.13.1)
+ '@uppy/react':
+ specifier: ^3.4.0
+ version: 3.4.0(@uppy/core@3.13.1)(@uppy/dashboard@3.9.1(@uppy/core@3.13.1))(@uppy/drag-drop@3.1.1(@uppy/core@3.13.1))(@uppy/file-input@3.1.2(@uppy/core@3.13.1))(@uppy/progress-bar@3.1.1(@uppy/core@3.13.1))(@uppy/status-bar@3.3.3(@uppy/core@3.13.1))(react@19.1.0)
+ '@uppy/screen-capture':
+ specifier: ^3.2.0
+ version: 3.2.0(@uppy/core@3.13.1)
+ '@uppy/status-bar':
+ specifier: ^3.1.1
+ version: 3.3.3(@uppy/core@3.13.1)
+ '@uppy/webcam':
+ specifier: ^3.4.2
+ version: 3.4.2(@uppy/core@3.13.1)
+ '@uppy/xhr-upload':
+ specifier: ^3.4.0
+ version: 3.6.8(@uppy/core@3.13.1)
+ '@vercel/analytics':
+ specifier: ^1.5.0
+ version: 1.5.0(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@vercel/og':
+ specifier: ^0.6.8
+ version: 0.6.8
+ '@y-sweet/react':
+ specifier: ^0.6.3
+ version: 0.6.4(react@19.1.0)(yjs@13.6.27)
+ ai:
+ specifier: ^4.1.0
+ version: 4.3.15(react@19.1.0)(zod@3.25.75)
+ babel-plugin-react-compiler:
+ specifier: 19.1.0-rc.2
+ version: 19.1.0-rc.2
+ better-auth:
+ specifier: ^1.2.10
+ version: 1.2.12
+ better-sqlite3:
+ specifier: ^11.10.0
+ version: 11.10.0
+ classnames:
+ specifier: 2.3.2
+ version: 2.3.2
+ clsx:
+ specifier: 2.1.1
+ version: 2.1.1
+ docx:
+ specifier: ^9.0.2
+ version: 9.5.1
+ framer-motion:
+ specifier: ^10.18.0
+ version: 10.18.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ fumadocs-core:
+ specifier: ^15.5.4
+ version: 15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ fumadocs-docgen:
+ specifier: ^2.0.1
+ version: 2.1.0
+ fumadocs-mdx:
+ specifier: ^11.6.9
+ version: 11.6.10(@fumadocs/mdx-remote@1.3.0(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0))(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.3.5(@types/node@22.15.2)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ fumadocs-twoslash:
+ specifier: ^3.1.4
+ version: 3.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(fumadocs-ui@15.6.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ fumadocs-typescript:
+ specifier: ^4.0.6
+ version: 4.0.6(@types/react@19.1.8)(typescript@5.8.3)
+ fumadocs-ui:
+ specifier: ^15.5.4
+ version: 15.6.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11)
+ import-in-the-middle:
+ specifier: ^1.14.2
+ version: 1.14.2
+ next:
+ specifier: 15.4.0-canary.116
+ version: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ nodemailer:
+ specifier: ^6.10.1
+ version: 6.10.1
+ pg:
+ specifier: ^8.15.5
+ version: 8.15.5
+ react:
+ specifier: ^19.1.0
+ version: 19.1.0
+ react-dom:
+ specifier: ^19.1.0
+ version: 19.1.0(react@19.1.0)
+ react-github-btn:
+ specifier: ^1.4.0
+ version: 1.4.0(react@19.1.0)
+ react-icons:
+ specifier: ^5.2.1
+ version: 5.5.0(react@19.1.0)
+ remark:
+ specifier: ^15.0.1
+ version: 15.0.1
+ remark-gfm:
+ specifier: ^4.0.1
+ version: 4.0.1
+ remark-mdx:
+ specifier: ^3.1.0
+ version: 3.1.0
+ require-in-the-middle:
+ specifier: ^7.5.2
+ version: 7.5.2
+ shiki:
+ specifier: ^3.7.0
+ version: 3.7.0
+ twoslash:
+ specifier: ^0.3.2
+ version: 0.3.2(typescript@5.8.3)
+ y-partykit:
+ specifier: ^0.0.25
+ version: 0.0.25
+ yjs:
+ specifier: ^13.6.15
+ version: 13.6.27
+ zod:
+ specifier: ^3.25.67
+ version: 3.25.75
+ zustand:
+ specifier: ^5.0.3
+ version: 5.0.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0))
+ devDependencies:
+ '@blocknote/ariakit':
+ specifier: workspace:^
+ version: link:../packages/ariakit
+ '@blocknote/core':
+ specifier: workspace:^
+ version: link:../packages/core
+ '@blocknote/mantine':
+ specifier: workspace:^
+ version: link:../packages/mantine
+ '@blocknote/react':
+ specifier: workspace:^
+ version: link:../packages/react
+ '@blocknote/shadcn':
+ specifier: workspace:^
+ version: link:../packages/shadcn
+ '@react-email/components':
+ specifier: ^0.0.36
+ version: 0.0.36(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tailwindcss/postcss':
+ specifier: ^4.1.10
+ version: 4.1.11
+ '@types/better-sqlite3':
+ specifier: 7.6.13
+ version: 7.6.13
+ '@types/mdx':
+ specifier: ^2.0.13
+ version: 2.0.13
+ '@types/node':
+ specifier: 22.15.2
+ version: 22.15.2
+ '@types/nodemailer':
+ specifier: 6.4.17
+ version: 6.4.17
+ '@types/pg':
+ specifier: 8.11.14
+ version: 8.11.14
+ '@types/react':
+ specifier: ^19.1.8
+ version: 19.1.8
+ '@types/react-dom':
+ specifier: ^19.1.6
+ version: 19.1.6(@types/react@19.1.8)
+ next-themes:
+ specifier: 0.4.6
+ version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ postcss:
+ specifier: ^8.5.6
+ version: 8.5.6
+ react-email:
+ specifier: ^4.0.16
+ version: 4.0.16(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ tailwindcss:
+ specifier: ^4.1.10
+ version: 4.1.11
+ typescript:
+ specifier: ^5.8.3
+ version: 5.8.3
packages/ariakit:
dependencies:
@@ -3232,7 +3554,7 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
eslint:
specifier: ^8.10.0
version: 8.57.1
@@ -3247,13 +3569,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite-plugin-externalize-deps:
specifier: ^0.8.0
- version: 0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
packages/code-block:
dependencies:
@@ -3290,13 +3612,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/core:
dependencies:
@@ -3447,13 +3769,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/dev-scripts:
dependencies:
@@ -3524,7 +3846,7 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
eslint:
specifier: ^8.10.0
version: 8.57.1
@@ -3539,13 +3861,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite-plugin-externalize-deps:
specifier: ^0.8.0
- version: 0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
packages/react:
dependencies:
@@ -3597,7 +3919,7 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
eslint:
specifier: ^8.10.0
version: 8.57.1
@@ -3618,16 +3940,16 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite-plugin-externalize-deps:
specifier: ^0.8.0
- version: 0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/server-util:
dependencies:
@@ -3682,13 +4004,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/shadcn:
dependencies:
@@ -3824,7 +4146,7 @@ importers:
version: 2.12.0(@tiptap/pm@2.12.0)
ai:
specifier: ^4.3.15
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
lodash.isequal:
specifier: ^4.5.0
version: 4.5.0
@@ -3866,29 +4188,29 @@ importers:
version: 10.1.2
y-prosemirror:
specifier: ^1.3.4
- version: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)
+ version: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
zustand:
specifier: ^5.0.3
version: 5.0.3(@types/react@18.3.20)(immer@10.1.1)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1))
devDependencies:
'@ai-sdk/anthropic':
specifier: ^1.2.12
- version: 1.2.12(zod@3.24.2)
+ version: 1.2.12(zod@3.25.75)
'@ai-sdk/google':
specifier: ^1.2.20
- version: 1.2.20(zod@3.24.2)
+ version: 1.2.20(zod@3.25.75)
'@ai-sdk/groq':
specifier: ^1.2.9
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@ai-sdk/mistral':
specifier: ^1.2.8
- version: 1.2.8(zod@3.24.2)
+ version: 1.2.8(zod@3.25.75)
'@ai-sdk/openai':
specifier: ^1.3.22
- version: 1.3.22(zod@3.24.2)
+ version: 1.3.22(zod@3.25.75)
'@ai-sdk/openai-compatible':
specifier: ^0.2.14
- version: 0.2.14(zod@3.24.2)
+ version: 0.2.14(zod@3.25.75)
'@mswjs/interceptors':
specifier: ^0.37.5
version: 0.37.6
@@ -3912,7 +4234,7 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
'@vitest/runner':
specifier: ^2.0.3
version: 2.1.9
@@ -3927,10 +4249,10 @@ importers:
version: 4.0.3
msw:
specifier: ^2.7.3
- version: 2.7.3(@types/node@22.14.1)(typescript@5.8.2)
+ version: 2.7.3(@types/node@24.0.10)(typescript@5.8.2)
msw-snapshot:
specifier: ^5.2.0
- version: 5.2.0(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))
+ version: 5.2.0(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))
rimraf:
specifier: ^5.0.5
version: 5.0.10
@@ -3945,16 +4267,16 @@ importers:
version: 6.21.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite-plugin-externalize-deps:
specifier: ^0.8.0
- version: 0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/xl-ai-server:
dependencies:
@@ -3982,19 +4304,19 @@ importers:
version: 6.21.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-node:
specifier: ^2.1.6
- version: 2.1.9(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vite-plugin-externalize-deps:
specifier: ^0.8.0
- version: 0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/xl-docx-exporter:
dependencies:
@@ -4040,13 +4362,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
xml-formatter:
specifier: ^3.6.3
version: 3.6.5
@@ -4098,13 +4420,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/xl-multi-column:
dependencies:
@@ -4168,13 +4490,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
packages/xl-odt-exporter:
dependencies:
@@ -4217,13 +4539,13 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
xml-formatter:
specifier: ^3.6.3
version: 3.6.5
@@ -4290,34 +4612,34 @@ importers:
version: 5.8.2
vite:
specifier: ^5.3.4
- version: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ version: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
playground:
dependencies:
'@ai-sdk/anthropic':
specifier: ^1.2.11
- version: 1.2.11(zod@3.24.2)
+ version: 1.2.11(zod@3.25.75)
'@ai-sdk/google':
specifier: ^1.2.20
- version: 1.2.20(zod@3.24.2)
+ version: 1.2.20(zod@3.25.75)
'@ai-sdk/groq':
specifier: ^1.2.9
- version: 1.2.9(zod@3.24.2)
+ version: 1.2.9(zod@3.25.75)
'@ai-sdk/mistral':
specifier: ^1.2.8
- version: 1.2.8(zod@3.24.2)
+ version: 1.2.8(zod@3.25.75)
'@ai-sdk/openai':
specifier: ^1.3.22
- version: 1.3.22(zod@3.24.2)
+ version: 1.3.22(zod@3.25.75)
'@ai-sdk/openai-compatible':
specifier: ^0.2.14
- version: 0.2.14(zod@3.24.2)
+ version: 0.2.14(zod@3.25.75)
'@aws-sdk/client-s3':
specifier: ^3.609.0
version: 3.775.0
@@ -4377,10 +4699,10 @@ importers:
version: 2.23.1(react@18.3.1)
'@liveblocks/react-blocknote':
specifier: ^2.23.1
- version: 2.23.1(f7e1392d47807ef889348b4cdb3b8972)
+ version: 2.23.1(86fe50283eaddaea296c5b0736a1f4f3)
'@liveblocks/react-tiptap':
specifier: ^2.23.1
- version: 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
+ version: 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
'@liveblocks/react-ui':
specifier: ^2.23.1
version: 2.23.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -4431,10 +4753,10 @@ importers:
version: 0.6.4(react@18.3.1)(yjs@13.6.24)
ai:
specifier: ^4.3.15
- version: 4.3.15(react@18.3.1)(zod@3.24.2)
+ version: 4.3.15(react@18.3.1)(zod@3.25.75)
autoprefixer:
specifier: 10.4.21
- version: 10.4.21(postcss@8.5.3)
+ version: 10.4.21(postcss@8.5.6)
docx:
specifier: ^9.0.2
version: 9.3.0
@@ -4468,7 +4790,7 @@ importers:
version: 18.3.5(@types/react@18.3.20)
'@vitejs/plugin-react':
specifier: ^4.4.1
- version: 4.4.1(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ version: 4.4.1(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
eslint:
specifier: ^8.10.0
version: 8.57.1
@@ -4486,13 +4808,13 @@ importers:
version: 1.0.7(tailwindcss@3.4.17)
vite:
specifier: ^6
- version: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ version: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
vite-plugin-eslint:
specifier: ^1.8.1
- version: 1.8.1(eslint@8.57.1)(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ version: 1.8.1(eslint@8.57.1)(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
vite-plugin-inspect:
specifier: 11.1.0
- version: 11.1.0(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ version: 11.1.0(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
shared:
dependencies:
@@ -4571,7 +4893,7 @@ importers:
version: 1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))
vitest:
specifier: ^2.0.3
- version: 2.1.9(@types/node@20.17.28)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.2))(terser@5.39.2)
+ version: 2.1.9(@types/node@20.17.28)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.3))(terser@5.39.2)
packages:
@@ -4696,118 +5018,234 @@ packages:
resolution: {integrity: sha512-Z/BeVmYc3nj4FNE46MtvBYeCVvBZwlujMEvr5UOChP14899QWkBfOvf74RwQY9qy5/DvhVFkHlA8en1L6+0NrA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-s3@3.842.0':
+ resolution: {integrity: sha512-T5Rh72Rcq1xIaM8KkTr1Wpr7/WPCYO++KrM+/Em0rq2jxpjMMhj77ITpgH7eEmNxWmwIndTwqpgfmbpNfk7Gbw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/client-sso@3.775.0':
resolution: {integrity: sha512-vqG1S2ap77WP4D5qt4bEPE0duQ4myN+cDr1NeP8QpSTajetbkDGVo7h1VViYMcUoFUVWBj6Qf1X1VfOq+uaxbA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-sso@3.840.0':
+ resolution: {integrity: sha512-3Zp+FWN2hhmKdpS0Ragi5V2ZPsZNScE3jlbgoJjzjI/roHZqO+e3/+XFN4TlM0DsPKYJNp+1TAjmhxN6rOnfYA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/core@3.775.0':
resolution: {integrity: sha512-8vpW4WihVfz0DX+7WnnLGm3GuQER++b0IwQG35JlQMlgqnc44M//KbJPsIHA0aJUJVwJAEShgfr5dUbY8WUzaA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/core@3.840.0':
+ resolution: {integrity: sha512-x3Zgb39tF1h2XpU+yA4OAAQlW6LVEfXNlSedSYJ7HGKXqA/E9h3rWQVpYfhXXVVsLdYXdNw5KBUkoAoruoZSZA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-env@3.775.0':
resolution: {integrity: sha512-6ESVxwCbGm7WZ17kY1fjmxQud43vzJFoLd4bmlR+idQSWdqlzGDYdcfzpjDKTcivdtNrVYmFvcH1JBUwCRAZhw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-env@3.840.0':
+ resolution: {integrity: sha512-EzF6VcJK7XvQ/G15AVEfJzN2mNXU8fcVpXo4bRyr1S6t2q5zx6UPH/XjDbn18xyUmOq01t+r8gG+TmHEVo18fA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-http@3.775.0':
resolution: {integrity: sha512-PjDQeDH/J1S0yWV32wCj2k5liRo0ssXMseCBEkCsD3SqsU8o5cU82b0hMX4sAib/RkglCSZqGO0xMiN0/7ndww==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-http@3.840.0':
+ resolution: {integrity: sha512-wbnUiPGLVea6mXbUh04fu+VJmGkQvmToPeTYdHE8eRZq3NRDi3t3WltT+jArLBKD/4NppRpMjf2ju4coMCz91g==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-ini@3.775.0':
resolution: {integrity: sha512-0gJc6cALsgrjeC5U3qDjbz4myIC/j49+gPz9nkvY+C0OYWt1KH1tyfiZUuCRGfuFHhQ+3KMMDSL229TkBP3E7g==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-ini@3.840.0':
+ resolution: {integrity: sha512-7F290BsWydShHb+7InXd+IjJc3mlEIm9I0R57F/Pjl1xZB69MdkhVGCnuETWoBt4g53ktJd6NEjzm/iAhFXFmw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-node@3.775.0':
resolution: {integrity: sha512-D8Zre5W2sXC/ANPqCWPqwYpU1cKY9DF6ckFZyDrqlcBC0gANgpY6fLrBtYo2fwJsbj+1A24iIpBINV7erdprgA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-node@3.840.0':
+ resolution: {integrity: sha512-KufP8JnxA31wxklLm63evUPSFApGcH8X86z3mv9SRbpCm5ycgWIGVCTXpTOdgq6rPZrwT9pftzv2/b4mV/9clg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-process@3.775.0':
resolution: {integrity: sha512-A6k68H9rQp+2+7P7SGO90Csw6nrUEm0Qfjpn9Etc4EboZhhCLs9b66umUsTsSBHus4FDIe5JQxfCUyt1wgNogg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-process@3.840.0':
+ resolution: {integrity: sha512-HkDQWHy8tCI4A0Ps2NVtuVYMv9cB4y/IuD/TdOsqeRIAT12h8jDb98BwQPNLAImAOwOWzZJ8Cu0xtSpX7CQhMw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-sso@3.775.0':
resolution: {integrity: sha512-du06V7u9HDmRuwZnRjf85shO3dffeKOkQplV5/2vf3LgTPNEI9caNomi/cCGyxKGOeSUHAKrQ1HvpPfOaI6t5Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-sso@3.840.0':
+ resolution: {integrity: sha512-2qgdtdd6R0Z1y0KL8gzzwFUGmhBHSUx4zy85L2XV1CXhpRNwV71SVWJqLDVV5RVWVf9mg50Pm3AWrUC0xb0pcA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/credential-provider-web-identity@3.775.0':
resolution: {integrity: sha512-z4XLYui5aHsr78mbd5BtZfm55OM5V55qK/X17OPrEqjYDDk3GlI8Oe2ZjTmOVrKwMpmzXKhsakeFHKfDyOvv1A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-web-identity@3.840.0':
+ resolution: {integrity: sha512-dpEeVXG8uNZSmVXReE4WP0lwoioX2gstk4RnUgrdUE3YaPq8A+hJiVAyc3h+cjDeIqfbsQbZm9qFetKC2LF9dQ==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-bucket-endpoint@3.775.0':
resolution: {integrity: sha512-qogMIpVChDYr4xiUNC19/RDSw/sKoHkAhouS6Skxiy6s27HBhow1L3Z1qVYXuBmOZGSWPU0xiyZCvOyWrv9s+Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-bucket-endpoint@3.840.0':
+ resolution: {integrity: sha512-+gkQNtPwcSMmlwBHFd4saVVS11In6ID1HczNzpM3MXKXRBfSlbZJbCt6wN//AZ8HMklZEik4tcEOG0qa9UY8SQ==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-expect-continue@3.775.0':
resolution: {integrity: sha512-Apd3owkIeUW5dnk3au9np2IdW2N0zc9NjTjHiH+Mx3zqwSrc+m+ANgJVgk9mnQjMzU/vb7VuxJ0eqdEbp5gYsg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-expect-continue@3.840.0':
+ resolution: {integrity: sha512-iJg2r6FKsKKvdiU4oCOuCf7Ro/YE0Q2BT/QyEZN3/Rt8Nr4SAZiQOlcBXOCpGvuIKOEAhvDOUnW3aDHL01PdVw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-flexible-checksums@3.775.0':
resolution: {integrity: sha512-OmHLfRIb7IIXsf9/X/pMOlcSV3gzW/MmtPSZTkrz5jCTKzWXd7eRoyOJqewjsaC6KMAxIpNU77FoAd16jOZ21A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-flexible-checksums@3.840.0':
+ resolution: {integrity: sha512-Kg/o2G6o72sdoRH0J+avdcf668gM1bp6O4VeEXpXwUj/urQnV5qiB2q1EYT110INHUKWOLXPND3sQAqh6sTqHw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-host-header@3.775.0':
resolution: {integrity: sha512-tkSegM0Z6WMXpLB8oPys/d+umYIocvO298mGvcMCncpRl77L9XkvSLJIFzaHes+o7djAgIduYw8wKIMStFss2w==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-host-header@3.840.0':
+ resolution: {integrity: sha512-ub+hXJAbAje94+Ya6c6eL7sYujoE8D4Bumu1NUI8TXjUhVVn0HzVWQjpRLshdLsUp1AW7XyeJaxyajRaJQ8+Xg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-location-constraint@3.775.0':
resolution: {integrity: sha512-8TMXEHZXZTFTckQLyBT5aEI8fX11HZcwZseRifvBKKpj0RZDk4F0EEYGxeNSPpUQ7n+PRWyfAEnnZNRdAj/1NQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-location-constraint@3.840.0':
+ resolution: {integrity: sha512-KVLD0u0YMF3aQkVF8bdyHAGWSUY6N1Du89htTLgqCcIhSxxAJ9qifrosVZ9jkAzqRW99hcufyt2LylcVU2yoKQ==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-logger@3.775.0':
resolution: {integrity: sha512-FaxO1xom4MAoUJsldmR92nT1G6uZxTdNYOFYtdHfd6N2wcNaTuxgjIvqzg5y7QIH9kn58XX/dzf1iTjgqUStZw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-logger@3.840.0':
+ resolution: {integrity: sha512-lSV8FvjpdllpGaRspywss4CtXV8M7NNNH+2/j86vMH+YCOZ6fu2T/TyFd/tHwZ92vDfHctWkRbQxg0bagqwovA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-recursion-detection@3.775.0':
resolution: {integrity: sha512-GLCzC8D0A0YDG5u3F5U03Vb9j5tcOEFhr8oc6PDk0k0vm5VwtZOE6LvK7hcCSoAB4HXyOUM0sQuXrbaAh9OwXA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-recursion-detection@3.840.0':
+ resolution: {integrity: sha512-Gu7lGDyfddyhIkj1Z1JtrY5NHb5+x/CRiB87GjaSrKxkDaydtX2CU977JIABtt69l9wLbcGDIQ+W0uJ5xPof7g==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-sdk-s3@3.775.0':
resolution: {integrity: sha512-zsvcu7cWB28JJ60gVvjxPCI7ZU7jWGcpNACPiZGyVtjYXwcxyhXbYEVDSWKsSA6ERpz9XrpLYod8INQWfW3ECg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-sdk-s3@3.840.0':
+ resolution: {integrity: sha512-rOUji7CayWN3O09zvvgLzDVQe0HiJdZkxoTS6vzOS3WbbdT7joGdVtAJHtn+x776QT3hHzbKU5gnfhel0o6gQA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-ssec@3.775.0':
resolution: {integrity: sha512-Iw1RHD8vfAWWPzBBIKaojO4GAvQkHOYIpKdAfis/EUSUmSa79QsnXnRqsdcE0mCB0Ylj23yi+ah4/0wh9FsekA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-ssec@3.840.0':
+ resolution: {integrity: sha512-CBZP9t1QbjDFGOrtnUEHL1oAvmnCUUm7p0aPNbIdSzNtH42TNKjPRN3TuEIJDGjkrqpL3MXyDSmNayDcw/XW7Q==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/middleware-user-agent@3.775.0':
resolution: {integrity: sha512-7Lffpr1ptOEDE1ZYH1T78pheEY1YmeXWBfFt/amZ6AGsKSLG+JPXvof3ltporTGR2bhH/eJPo7UHCglIuXfzYg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-user-agent@3.840.0':
+ resolution: {integrity: sha512-hiiMf7BP5ZkAFAvWRcK67Mw/g55ar7OCrvrynC92hunx/xhMkrgSLM0EXIZ1oTn3uql9kH/qqGF0nqsK6K555A==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/nested-clients@3.775.0':
resolution: {integrity: sha512-f37jmAzkuIhKyhtA6s0LGpqQvm218vq+RNMUDkGm1Zz2fxJ5pBIUTDtygiI3vXTcmt9DTIB8S6JQhjrgtboktw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/nested-clients@3.840.0':
+ resolution: {integrity: sha512-LXYYo9+n4hRqnRSIMXLBb+BLz+cEmjMtTudwK1BF6Bn2RfdDv29KuyeDRrPCS3TwKl7ZKmXUmE9n5UuHAPfBpA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/region-config-resolver@3.775.0':
resolution: {integrity: sha512-40iH3LJjrQS3LKUJAl7Wj0bln7RFPEvUYKFxtP8a+oKFDO0F65F52xZxIJbPn6sHkxWDAnZlGgdjZXM3p2g5wQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/region-config-resolver@3.840.0':
+ resolution: {integrity: sha512-Qjnxd/yDv9KpIMWr90ZDPtRj0v75AqGC92Lm9+oHXZ8p1MjG5JE2CW0HL8JRgK9iKzgKBL7pPQRXI8FkvEVfrA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/s3-request-presigner@3.775.0':
resolution: {integrity: sha512-NpACBvEdT3VERGX1cWGIITZ5Qq2MknrEugY3ivs8CDGze1uunm6+oTh8YPMUlHOZq2TuI9ktKWh7YZoHBRRUTw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/s3-request-presigner@3.842.0':
+ resolution: {integrity: sha512-daS69IJ20X+BzsiEtj3XuyyM765iFOdZ648lrptHncQHRWdpzahk67/nP/SKYhWvnNrQ4pw2vYlVxpOs9vl1yg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/signature-v4-multi-region@3.775.0':
resolution: {integrity: sha512-cnGk8GDfTMJ8p7+qSk92QlIk2bmTmFJqhYxcXZ9PysjZtx0xmfCMxnG3Hjy1oU2mt5boPCVSOptqtWixayM17g==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/signature-v4-multi-region@3.840.0':
+ resolution: {integrity: sha512-8AoVgHrkSfhvGPtwx23hIUO4MmMnux2pjnso1lrLZGqxfElM6jm2w4jTNLlNXk8uKHGyX89HaAIuT0lL6dJj9g==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/token-providers@3.775.0':
resolution: {integrity: sha512-Q6MtbEhkOggVSz/dN89rIY/ry80U3v89o0Lrrc+Rpvaiaaz8pEN0DsfEcg0IjpzBQ8Owoa6lNWyglHbzPhaJpA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/token-providers@3.840.0':
+ resolution: {integrity: sha512-6BuTOLTXvmgwjK7ve7aTg9JaWFdM5UoMolLVPMyh3wTv9Ufalh8oklxYHUBIxsKkBGO2WiHXytveuxH6tAgTYg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/types@3.775.0':
resolution: {integrity: sha512-ZoGKwa4C9fC9Av6bdfqcW6Ix5ot05F/S4VxWR2nHuMv7hzfmAjTOcUiWT7UR4hM/U0whf84VhDtXN/DWAk52KA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/types@3.840.0':
+ resolution: {integrity: sha512-xliuHaUFZxEx1NSXeLLZ9Dyu6+EJVQKEoD+yM+zqUo3YDZ7medKJWY6fIOKiPX/N7XbLdBYwajb15Q7IL8KkeA==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/util-arn-parser@3.723.0':
resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-arn-parser@3.804.0':
+ resolution: {integrity: sha512-wmBJqn1DRXnZu3b4EkE6CWnoWMo1ZMvlfkqU5zPz67xx1GMaXlDCchFvKAXMjk4jn/L1O3tKnoFDNsoLV1kgNQ==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/util-endpoints@3.775.0':
resolution: {integrity: sha512-yjWmUgZC9tUxAo8Uaplqmq0eUh0zrbZJdwxGRKdYxfm4RG6fMw1tj52+KkatH7o+mNZvg1GDcVp/INktxonJLw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-endpoints@3.840.0':
+ resolution: {integrity: sha512-eqE9ROdg/Kk0rj3poutyRCFauPDXIf/WSvCqFiRDDVi6QOnCv/M0g2XW8/jSvkJlOyaXkNCptapIp6BeeFFGYw==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/util-format-url@3.775.0':
resolution: {integrity: sha512-Nw4nBeyCbWixoGh8NcVpa/i8McMA6RXJIjQFyloJLaPr7CPquz7ZbSl0MUWMFVwP/VHaJ7B+lNN3Qz1iFCEP/Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-format-url@3.840.0':
+ resolution: {integrity: sha512-VB1PWyI1TQPiPvg4w7tgUGGQER1xxXPNUqfh3baxUSFi1Oh8wHrDnFywkxLm3NMmgDmnLnSZ5Q326qAoyqKLSg==}
+ engines: {node: '>=18.0.0'}
+
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
@@ -4815,6 +5253,9 @@ packages:
'@aws-sdk/util-user-agent-browser@3.775.0':
resolution: {integrity: sha512-txw2wkiJmZKVdDbscK7VBK+u+TJnRtlUjRTLei+elZg2ADhpQxfVAQl436FUeIv6AhB/oRHW6/K/EAGXUSWi0A==}
+ '@aws-sdk/util-user-agent-browser@3.840.0':
+ resolution: {integrity: sha512-JdyZM3EhhL4PqwFpttZu1afDpPJCCc3eyZOLi+srpX11LsGj6sThf47TYQN75HT1CarZ7cCdQHGzP2uy3/xHfQ==}
+
'@aws-sdk/util-user-agent-node@3.775.0':
resolution: {integrity: sha512-N9yhTevbizTOMo3drH7Eoy6OkJ3iVPxhV7dwb6CMAObbLneS36CSfA6xQXupmHWcRvZPTz8rd1JGG3HzFOau+g==}
engines: {node: '>=18.0.0'}
@@ -4824,10 +5265,23 @@ packages:
aws-crt:
optional: true
+ '@aws-sdk/util-user-agent-node@3.840.0':
+ resolution: {integrity: sha512-Fy5JUEDQU1tPm2Yw/YqRYYc27W5+QD/J4mYvQvdWjUGZLB5q3eLFMGD35Uc28ZFoGMufPr4OCxK/bRfWROBRHQ==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ aws-crt: '>=1.0.0'
+ peerDependenciesMeta:
+ aws-crt:
+ optional: true
+
'@aws-sdk/xml-builder@3.775.0':
resolution: {integrity: sha512-b9NGO6FKJeLGYnV7Z1yvcP1TNU4dkD5jNsLWOF1/sygZoASaQhNOlaiJ/1OH331YQ1R1oWk38nBb0frsYkDsOQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/xml-builder@3.821.0':
+ resolution: {integrity: sha512-DIIotRnefVL6DiaHtO6/21DhJ4JZnnIwdNbpwiAhdt/AVbttcE4yw925gsjur0OGv5BTYXQXU3YnANBYnZjuQA==}
+ engines: {node: '>=18.0.0'}
+
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
@@ -5506,6 +5960,9 @@ packages:
'@better-auth/utils@0.2.4':
resolution: {integrity: sha512-ayiX87Xd5sCHEplAdeMgwkA0FgnXsEZBgDn890XHHwSWNqqRZDYOq3uj2Ei2leTv1I2KbG5HHn60Ah1i2JWZjQ==}
+ '@better-auth/utils@0.2.5':
+ resolution: {integrity: sha512-uI2+/8h/zVsH8RrYdG8eUErbuGBk16rZKQfz8CjxQOyCE6v7BqFYEbFwvOkvl1KbUdxhqOnXp78+uE5h8qVEgQ==}
+
'@better-fetch/fetch@1.1.18':
resolution: {integrity: sha512-rEFOE1MYIsBmoMJtQbl32PGHHXuG2hDxvEd7rUHE0vCBoFQVSDqaVs9hkZEtHCxRoY+CljXKFCOuJ8uxqw1LcA==}
@@ -5604,6 +6061,9 @@ packages:
'@emnapi/core@1.3.1':
resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+ '@emnapi/core@1.4.4':
+ resolution: {integrity: sha512-A9CnAbC6ARNMKcIcrQwq6HeHCjpcBZ5wSx4U01WXCqEKlrzB9F9315WDNHkrs2xbx7YjjSxbUYxuN6EQzpcY2g==}
+
'@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
@@ -5613,6 +6073,9 @@ packages:
'@emnapi/wasi-threads@1.0.1':
resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
+ '@emnapi/wasi-threads@1.0.3':
+ resolution: {integrity: sha512-8K5IFFsQqF9wQNJptGbS6FNKgUTsSRYnTqNCG1vPP8jFdjSv18n2mQfJpkt2Oibo9iBEzcDnDxNwKTzC7svlJw==}
+
'@emoji-mart/data@1.2.1':
resolution: {integrity: sha512-no2pQMWiBy6gpBEiqGeU77/bFejDqUTRY7KX+0+iur13op3bqUsXdnwoZs6Xb1zbv0gAj5VvS1PWoUUckSr5Dw==}
@@ -5700,6 +6163,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.6':
+ resolution: {integrity: sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.20.0':
resolution: {integrity: sha512-aVpnM4lURNkp0D3qPoAzSG92VXStYmoVPOgXveAUoQBWRSuQzt51yvSju29J6AHPmwY1BjH49uR29oyfH1ra8Q==}
engines: {node: '>=12'}
@@ -5724,6 +6193,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.6':
+ resolution: {integrity: sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.20.0':
resolution: {integrity: sha512-3bMAfInvByLHfJwYPJRlpTeaQA75n8C/QKpEaiS4HrFWFiJlNI0vzq/zCjBrhAYcPyVPG7Eo9dMrcQXuqmNk5g==}
engines: {node: '>=12'}
@@ -5748,6 +6223,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.6':
+ resolution: {integrity: sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.20.0':
resolution: {integrity: sha512-uK7wAnlRvjkCPzh8jJ+QejFyrP8ObKuR5cBIsQZ+qbMunwR8sbd8krmMbxTLSrDhiPZaJYKQAU5Y3iMDcZPhyQ==}
engines: {node: '>=12'}
@@ -5772,6 +6253,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.6':
+ resolution: {integrity: sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.20.0':
resolution: {integrity: sha512-AjEcivGAlPs3UAcJedMa9qYg9eSfU6FnGHJjT8s346HSKkrcWlYezGE8VaO2xKfvvlZkgAhyvl06OJOxiMgOYQ==}
engines: {node: '>=12'}
@@ -5796,6 +6283,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.6':
+ resolution: {integrity: sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.20.0':
resolution: {integrity: sha512-bsgTPoyYDnPv8ER0HqnJggXK6RyFy4PH4rtsId0V7Efa90u2+EifxytE9pZnsDgExgkARy24WUQGv9irVbTvIw==}
engines: {node: '>=12'}
@@ -5820,6 +6313,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.6':
+ resolution: {integrity: sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.20.0':
resolution: {integrity: sha512-kQ7jYdlKS335mpGbMW5tEe3IrQFIok9r84EM3PXB8qBFJPSc6dpWfrtsC/y1pyrz82xfUIn5ZrnSHQQsd6jebQ==}
engines: {node: '>=12'}
@@ -5844,6 +6343,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.6':
+ resolution: {integrity: sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.20.0':
resolution: {integrity: sha512-uG8B0WSepMRsBNVXAQcHf9+Ko/Tr+XqmK7Ptel9HVmnykupXdS4J7ovSQUIi0tQGIndhbqWLaIL/qO/cWhXKyQ==}
engines: {node: '>=12'}
@@ -5868,6 +6373,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.6':
+ resolution: {integrity: sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.20.0':
resolution: {integrity: sha512-uTtyYAP5veqi2z9b6Gr0NUoNv9F/rOzI8tOD5jKcCvRUn7T60Bb+42NDBCWNhMjkQzI0qqwXkQGo1SY41G52nw==}
engines: {node: '>=12'}
@@ -5892,6 +6403,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.6':
+ resolution: {integrity: sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.20.0':
resolution: {integrity: sha512-2ezuhdiZw8vuHf1HKSf4TIk80naTbP9At7sOqZmdVwvvMyuoDiZB49YZKLsLOfKIr77+I40dWpHVeY5JHpIEIg==}
engines: {node: '>=12'}
@@ -5916,6 +6433,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.6':
+ resolution: {integrity: sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.20.0':
resolution: {integrity: sha512-c88wwtfs8tTffPaoJ+SQn3y+lKtgTzyjkD8NgsyCtCmtoIC8RDL7PrJU05an/e9VuAke6eJqGkoMhJK1RY6z4w==}
engines: {node: '>=12'}
@@ -5940,6 +6463,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.6':
+ resolution: {integrity: sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.20.0':
resolution: {integrity: sha512-lR2rr/128/6svngnVta6JN4gxSXle/yZEZL3o4XZ6esOqhyR4wsKyfu6qXAL04S4S5CgGfG+GYZnjFd4YiG3Aw==}
engines: {node: '>=12'}
@@ -5964,6 +6493,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.6':
+ resolution: {integrity: sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.20.0':
resolution: {integrity: sha512-9Sycc+1uUsDnJCelDf6ZNqgZQoK1mJvFtqf2MUz4ujTxGhvCWw+4chYfDLPepMEvVL9PDwn6HrXad5yOrNzIsQ==}
engines: {node: '>=12'}
@@ -5988,6 +6523,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.6':
+ resolution: {integrity: sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.20.0':
resolution: {integrity: sha512-CoWSaaAXOZd+CjbUTdXIJE/t7Oz+4g90A3VBCHLbfuc5yUQU/nFDLOzQsN0cdxgXd97lYW/psIIBdjzQIwTBGw==}
engines: {node: '>=12'}
@@ -6012,6 +6553,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.6':
+ resolution: {integrity: sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.20.0':
resolution: {integrity: sha512-mlb1hg/eYRJUpv8h/x+4ShgoNLL8wgZ64SUr26KwglTYnwAWjkhR2GpoKftDbPOCnodA9t4Y/b68H4J9XmmPzA==}
engines: {node: '>=12'}
@@ -6036,6 +6583,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.6':
+ resolution: {integrity: sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.20.0':
resolution: {integrity: sha512-fgf9ubb53xSnOBqyvWEY6ukBNRl1mVX1srPNu06B6mNsNK20JfH6xV6jECzrQ69/VMiTLvHMicQR/PgTOgqJUQ==}
engines: {node: '>=12'}
@@ -6060,6 +6613,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.6':
+ resolution: {integrity: sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.20.0':
resolution: {integrity: sha512-H9Eu6MGse++204XZcYsse1yFHmRXEWgadk2N58O/xd50P9EvFMLJTQLg+lB4E1cF2xhLZU5luSWtGTb0l9UeSg==}
engines: {node: '>=12'}
@@ -6084,6 +6643,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.6':
+ resolution: {integrity: sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.0':
resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
engines: {node: '>=18'}
@@ -6096,6 +6661,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.6':
+ resolution: {integrity: sha512-IjA+DcwoVpjEvyxZddDqBY+uJ2Snc6duLpjmkXm/v4xuS3H+3FkLZlDm9ZsAbF9rsfP3zeA0/ArNDORZgrxR/Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.20.0':
resolution: {integrity: sha512-lCT675rTN1v8Fo+RGrE5KjSnfY0x9Og4RN7t7lVrN3vMSjy34/+3na0q7RIfWDAj0e0rCh0OL+P88lu3Rt21MQ==}
engines: {node: '>=12'}
@@ -6120,6 +6691,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.6':
+ resolution: {integrity: sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.0':
resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
@@ -6132,6 +6709,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.6':
+ resolution: {integrity: sha512-l8ZCvXP0tbTJ3iaqdNf3pjaOSd5ex/e6/omLIQCVBLmHTlfXW3zAxQ4fnDmPLOB1x9xrcSi/xtCWFwCZRIaEwg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.20.0':
resolution: {integrity: sha512-HKoUGXz/TOVXKQ+67NhxyHv+aDSZf44QpWLa3I1lLvAwGq8x1k0T+e2HHSRvxWhfJrFxaaqre1+YyzQ99KixoA==}
engines: {node: '>=12'}
@@ -6156,6 +6739,18 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.6':
+ resolution: {integrity: sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openharmony-arm64@0.25.6':
+ resolution: {integrity: sha512-+SqBcAWoB1fYKmpWoQP4pGtx+pUUC//RNYhFdbcSA16617cchuryuhOCRpPsjCblKukAckWsV+aQ3UKT/RMPcA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.20.0':
resolution: {integrity: sha512-GDwAqgHQm1mVoPppGsoq4WJwT3vhnz/2N62CzhvApFD1eJyTroob30FPpOZabN+FgCjhG+AgcZyOPIkR8dfD7g==}
engines: {node: '>=12'}
@@ -6180,6 +6775,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.6':
+ resolution: {integrity: sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.20.0':
resolution: {integrity: sha512-0vYsP8aC4TvMlOQYozoksiaxjlvUcQrac+muDqj1Fxy6jh9l9CZJzj7zmh8JGfiV49cYLTorFLxg7593pGldwQ==}
engines: {node: '>=12'}
@@ -6204,6 +6805,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.25.6':
+ resolution: {integrity: sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.20.0':
resolution: {integrity: sha512-p98u4rIgfh4gdpV00IqknBD5pC84LCub+4a3MO+zjqvU5MVXOc3hqR2UgT2jI2nh3h8s9EQxmOsVI3tyzv1iFg==}
engines: {node: '>=12'}
@@ -6228,6 +6835,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.6':
+ resolution: {integrity: sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.20.0':
resolution: {integrity: sha512-NgJnesu1RtWihtTtXGFMU5YSE6JyyHPMxCwBZK7a6/8d31GuSo9l0Ss7w1Jw5QnKUawG6UEehs883kcXf5fYwg==}
engines: {node: '>=12'}
@@ -6252,6 +6865,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.25.6':
+ resolution: {integrity: sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.5.1':
resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6295,6 +6914,15 @@ packages:
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ '@formatjs/intl-localematcher@0.6.1':
+ resolution: {integrity: sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg==}
+
+ '@fumadocs/mdx-remote@1.3.0':
+ resolution: {integrity: sha512-isXzJLvQSoF5oaKpHoThWIYqJsK97LeZuuiR/R/idZSfCsSsDQXrz8wgXEi/Lxx3SG8o26zmSLB3NTzijkHDmw==}
+ peerDependencies:
+ fumadocs-core: ^14.0.0 || ^15.0.0
+ react: 18.x.x || 19.x.x
+
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -6607,6 +7235,10 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
'@jest/expect-utils@29.7.0':
resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -6655,9 +7287,15 @@ packages:
'@liveblocks/client@2.23.1':
resolution: {integrity: sha512-/Hk1RKqEiSae6uhod/suT1nZ75/i35vk2wqU1nudMeLfWvRL7yM5j+Zz6o0PgA5B/o6ns7BloA81fjZL+6IahQ==}
+ '@liveblocks/client@2.24.3':
+ resolution: {integrity: sha512-DkCZ58WypMzEL2bDmhAjgzwRxs0Df0BWmDk7nwazAaE54/DGUmcJhuDtde8or1HG7My03/fiiLzIN/xqZYzXuA==}
+
'@liveblocks/core@2.23.1':
resolution: {integrity: sha512-LnVMqqPlLeSrqO9XpUDgrFbxUf+lIS3Q9L3YClRxqf+q7qbr98G78onYG1QEw770czlEIfhwA8+haYai/LwdPQ==}
+ '@liveblocks/core@2.24.3':
+ resolution: {integrity: sha512-a0OL6VJ9jBexIcv7dAB+d0IPENZ8knFBxD/OzHUakQFVHNztriXVEQtZ84SYIxMGf0LayZO9UgA0gR9Qx0inIQ==}
+
'@liveblocks/react-blocknote@2.23.1':
resolution: {integrity: sha512-IETmiIoXzi2164ooIdgHN7yMrhr+d6T/9eNs4lBipuDi9w2VRk/jQboGSnM8H1Y+B9eM4cMquH8txfbOFg8CAw==}
peerDependencies:
@@ -6667,6 +7305,15 @@ packages:
react: ^18 || ^19 || ^19.0.0-rc
react-dom: ^18 || ^19 || ^19.0.0-rc
+ '@liveblocks/react-blocknote@2.24.3':
+ resolution: {integrity: sha512-Ls9gsb18xcuk30ZiRjSVs4tPVI6mxIOuFoOZU/JpX+Tnxy6pJcyVIDFNzD2KFuGra2rITJD5wuZDba+obVhDGA==}
+ peerDependencies:
+ '@blocknote/core': 0.25.1 - 1.0.0
+ '@blocknote/react': 0.25.1 - 1.0.0
+ '@tiptap/core': ^2.7.2
+ react: ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^18 || ^19 || ^19.0.0-rc
+
'@liveblocks/react-tiptap@2.23.1':
resolution: {integrity: sha512-QPdDsmk0DygoqYHkf3xh/iQdUbVaDIlRO52GIJqf8nhCnkoCOGR/isCwPAPUrq0lvRJDRoPK4VlF/88pdayM5g==}
peerDependencies:
@@ -6678,21 +7325,47 @@ packages:
react: ^18 || ^19 || ^19.0.0-rc
react-dom: ^18 || ^19 || ^19.0.0-rc
+ '@liveblocks/react-tiptap@2.24.3':
+ resolution: {integrity: sha512-4SsqqMAmLwQWxzSFzU8f7KBsQaYSwFphfG1i/LjnCvaJAvtvZstlEGD4K825DIwj3VQYDtYQ2ziopQJL5ASY2w==}
+ peerDependencies:
+ '@tiptap/extension-collaboration': ^2.7.2
+ '@tiptap/extension-collaboration-cursor': ^2.7.2
+ '@tiptap/pm': ^2.7.2
+ '@tiptap/react': ^2.7.2
+ '@tiptap/suggestion': ^2.7.2
+ react: ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^18 || ^19 || ^19.0.0-rc
+
'@liveblocks/react-ui@2.23.1':
resolution: {integrity: sha512-tfKHI7MMyMZiLj+tYai7WPlQt5VrVg8bepR5n/xDfYB7vIOoLbBDHAaWS826F6D24Q2pkB0F0nyXxdOgY6Lvbw==}
peerDependencies:
react: ^18 || ^19 || ^19.0.0-rc
+ '@liveblocks/react-ui@2.24.3':
+ resolution: {integrity: sha512-Qmme88OFVhq6rsrtVdUHb9sgqYWOCCdyRuTl2h19quNG+4GpefoNXS4xEXZuzEEe45o65px/0UIS37vRpyu9+w==}
+ peerDependencies:
+ react: ^18 || ^19 || ^19.0.0-rc
+
'@liveblocks/react@2.23.1':
resolution: {integrity: sha512-T7dPyDWnOEaZk67DMoZdeTtGqvuEDUW82P+oFBGtpwFbyF9VMgiK2YbLCrWp+1al1/UwTphwreblRXhXSljwFQ==}
peerDependencies:
react: ^18 || ^19 || ^19.0.0-rc
+ '@liveblocks/react@2.24.3':
+ resolution: {integrity: sha512-XFjoQpt/NSSqe4y4PZHQHab7ff9OwZ6trcmXxMFIGxpX8dEcYVFSwdR4Q+uIBE9ymktiJMgVrw8gg7StTo8iCw==}
+ peerDependencies:
+ react: ^18 || ^19 || ^19.0.0-rc
+
'@liveblocks/yjs@2.23.1':
resolution: {integrity: sha512-fGSWQ+SD7b0B/aY5rcqunH5MAudsxCtf+IXdIW9OR4czOcHLFeB9kJEgg1WcU8erfqevlEcIv3+VMjEn2dAiKA==}
peerDependencies:
yjs: ^13.6.1
+ '@liveblocks/yjs@2.24.3':
+ resolution: {integrity: sha512-WInnceXpSM2Nw+n+ZjmNxAxRGiNfLfKMiAvW5BFlL/XVL7SA3kEKKZsIHsLmUedaJQY5VdcZEsFf4gv8GdtG7w==}
+ peerDependencies:
+ yjs: ^13.6.1
+
'@mantine/core@7.17.3':
resolution: {integrity: sha512-N/AfV5eMnfEMx9WzI7AU5pNFBEzAfT/KtE2XDKS+0ht6RifUmolIxyIvoGMYz2yUEsCBMJZqmBq33Rabf5W7Ug==}
peerDependencies:
@@ -6700,6 +7373,13 @@ packages:
react: ^18.x || ^19.x
react-dom: ^18.x || ^19.x
+ '@mantine/core@7.17.8':
+ resolution: {integrity: sha512-42sfdLZSCpsCYmLCjSuntuPcDg3PLbakSmmYfz5Auea8gZYLr+8SS5k647doVu0BRAecqYOytkX2QC5/u/8VHw==}
+ peerDependencies:
+ '@mantine/hooks': 7.17.8
+ react: ^18.x || ^19.x
+ react-dom: ^18.x || ^19.x
+
'@mantine/hooks@7.17.3':
resolution: {integrity: sha512-6o65Rbfl8jd1C1nF9icvungqL0qZViEOmrZgkyKXxBYkC3x91fz4zftwQgNjt1tZHWDNO6Bo4GpRjJyAdwl48g==}
peerDependencies:
@@ -6717,6 +7397,9 @@ packages:
'@mdx-js/mdx@2.3.0':
resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
+
'@mdx-js/react@2.3.0':
resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==}
peerDependencies:
@@ -6902,6 +7585,9 @@ packages:
resolution: {integrity: sha512-jMxvwzkKzd3cXo2EB9GM2ic0eYo2rP/BS6gJt6HnWbsDO1O8GSD4k7o2Cpr2YERtMpGF/MGcDfsfj2EbQPtrXw==}
engines: {node: '>= 10'}
+ '@napi-rs/wasm-runtime@0.2.11':
+ resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
+
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
@@ -6917,6 +7603,9 @@ packages:
'@next/env@15.3.1':
resolution: {integrity: sha512-cwK27QdzrMblHSn9DZRV+DQscHXRuJv6MydlJRpFSqJWZrTYMLzKDeyueJNN9MGd8NNiUKzDQADAf+dMLXX7YQ==}
+ '@next/env@15.4.0-canary.116':
+ resolution: {integrity: sha512-YRLJgzNe8pnQr3zlH/pNFv1qXA3aZQVKMG1Jm08jwNCARxijKnCmLZh9QZ9JDr2/2hnWvQ0g5dIVwhwQMemu6g==}
+
'@next/eslint-plugin-next@14.1.0':
resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==}
@@ -6932,6 +7621,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@next/swc-darwin-arm64@15.4.0-canary.116':
+ resolution: {integrity: sha512-sIzgZ6LYO6F+dGrGqYy1JhiSxAW9RkXoB3JQv0vY3LkKLpr5uAU8+qfXUFmCuz7/1fv9Xz66JCS4omQ1xHfoZQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@next/swc-darwin-x64@15.2.4':
resolution: {integrity: sha512-3qK2zb5EwCwxnO2HeO+TRqCubeI/NgCe+kL5dTJlPldV/uwCnUgC7VbEzgmxbfrkbjehL4H9BPztWOEtsoMwew==}
engines: {node: '>= 10'}
@@ -6944,6 +7639,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@next/swc-darwin-x64@15.4.0-canary.116':
+ resolution: {integrity: sha512-P0g1dGd232Ku3BkPLi2c4Ia8COjspyS0Lg/0dxdKOh2bU823z1YG1xFHgyK0G+LO3vbkgg7funahrmemmWZtvg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
'@next/swc-linux-arm64-gnu@15.2.4':
resolution: {integrity: sha512-HFN6GKUcrTWvem8AZN7tT95zPb0GUGv9v0d0iyuTb303vbXkkbHDp/DxufB04jNVD+IN9yHy7y/6Mqq0h0YVaQ==}
engines: {node: '>= 10'}
@@ -6956,6 +7657,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-arm64-gnu@15.4.0-canary.116':
+ resolution: {integrity: sha512-HSYbUGkuT1V/BNsFxsQf+ixiow7iFimly/5X3iwaHFN5SxPnt637yXtzZaeZ+uf+D8gYdw3eg/WIOUltjxWG0A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-arm64-musl@15.2.4':
resolution: {integrity: sha512-Oioa0SORWLwi35/kVB8aCk5Uq+5/ZIumMK1kJV+jSdazFm2NzPDztsefzdmzzpx5oGCJ6FkUC7vkaUseNTStNA==}
engines: {node: '>= 10'}
@@ -6968,6 +7675,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-arm64-musl@15.4.0-canary.116':
+ resolution: {integrity: sha512-dJplzUNyE2UbMVXUYXhdfDPDOmU8IfnY5fp5WYEkPrdsACX+wHHyzsdJ8pmn5HAoI3Ky9Hf5GqaEVB8vipSwFQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-x64-gnu@15.2.4':
resolution: {integrity: sha512-yb5WTRaHdkgOqFOZiu6rHV1fAEK0flVpaIN2HB6kxHVSy/dIajWbThS7qON3W9/SNOH2JWkVCyulgGYekMePuw==}
engines: {node: '>= 10'}
@@ -6980,6 +7693,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@next/swc-linux-x64-gnu@15.4.0-canary.116':
+ resolution: {integrity: sha512-mKvU0vGgLqdQ6+42kFdT1/dMxGhkZGA3lG4Qu39W1cXJe+PwgtskjAynp+VQh/Dwhs8O2EJ4cvu+Y2xWKw2DMQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-linux-x64-musl@15.2.4':
resolution: {integrity: sha512-Dcdv/ix6srhkM25fgXiyOieFUkz+fOYkHlydWCtB0xMST6X9XYI3yPDKBZt1xuhOytONsIFJFB08xXYsxUwJLw==}
engines: {node: '>= 10'}
@@ -6992,6 +7711,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@next/swc-linux-x64-musl@15.4.0-canary.116':
+ resolution: {integrity: sha512-f3b05lNPjoXMd7l2p2YuJLCUJuECR3XMawunQh5MNnJuAYMV5U9TyDCRILTvi66Jh68ZRukgzn6O9RE1db28vQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-win32-arm64-msvc@15.2.4':
resolution: {integrity: sha512-dW0i7eukvDxtIhCYkMrZNQfNicPDExt2jPb9AZPpL7cfyUo7QSNl1DjsHjmmKp6qNAqUESyT8YFl/Aw91cNJJg==}
engines: {node: '>= 10'}
@@ -7004,6 +7729,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@next/swc-win32-arm64-msvc@15.4.0-canary.116':
+ resolution: {integrity: sha512-UcM5PWrIazvwW7EwiEZ0ET0xR7hvVvLQ2pWT5LvRTK+iLc1ZFLj5mOdIfm/UZ7sWi1WOgr2K31w3rqyeLtCd1w==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
'@next/swc-win32-x64-msvc@15.2.4':
resolution: {integrity: sha512-SbnWkJmkS7Xl3kre8SdMF6F/XDh1DTFEhp0jRTj/uB8iPKoU2bb2NDfcu+iifv1+mxQEd1g2vvSxcZbXSKyWiQ==}
engines: {node: '>= 10'}
@@ -7016,6 +7747,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@next/swc-win32-x64-msvc@15.4.0-canary.116':
+ resolution: {integrity: sha512-3tpsqUcRC+1WCp6aWXNWrHOBy5pGvq3Y4dGCdXDM5FsoUnL9AhHMARPWvHcUdk/CbM8zKJO65nJSMD0X76qGlA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
@@ -7321,6 +8058,99 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.1.0
+ '@orama/orama@3.1.10':
+ resolution: {integrity: sha512-YNou2xlCIgPhMDe1TBEmp1wsAPFCL7Fd11rct7YfXYYiNAVBNL2rWoEydJRDJFVmqgt0l6mzSg35sDQ3i8yfKQ==}
+ engines: {node: '>= 20.0.0'}
+
+ '@oxc-transform/binding-android-arm64@0.75.1':
+ resolution: {integrity: sha512-nCWttA1TJpRlK6CFd8VbHHh7G8x06Fo1WKjuziwls112eSJrqPKQMCzWlpemgcbkzii1llviWOhNi46F+/rV3Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-transform/binding-darwin-arm64@0.75.1':
+ resolution: {integrity: sha512-5+1psmFWqciPWNnnku2d+Xsv3Zn9zbDux8+3eEYHdps1w+hbNd1Va2KmyIVCyAVtHhAaQGwEzqV3GFxHjXXMdQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-transform/binding-darwin-x64@0.75.1':
+ resolution: {integrity: sha512-9EEE+TmIBVHVGGlmvay4jCLoK78dC6OXvWc+W0bDKn6sBQ5Z91CACYMsJGQScEzgB//7nl4aRYNDR2x/I9afDQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-transform/binding-freebsd-x64@0.75.1':
+ resolution: {integrity: sha512-nMCpHhTHcmZD+CJGIBR24Qisrwqxn5Fhf3CkmJYQl9iUXXR/JDv85NRWBhNAyPAVqmQVBOq3h60Z7HQX7B1hWg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.75.1':
+ resolution: {integrity: sha512-tfRL3Pw38zwuSrYyzjNLW3xn450z4AyCzM9yfYaTVXHvqSFmNslQEbZddTyE/6n25orr++bxWlNk8D9CfO3vhw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-arm-musleabihf@0.75.1':
+ resolution: {integrity: sha512-z/4TzdN/Sa9IIkBbMZkKwm5kNaJumlh8gcklA7CpRElCqG0ZI2UdqpTDse7rAAoVOarau2E+raR99pzqWM6U7Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-arm64-gnu@0.75.1':
+ resolution: {integrity: sha512-qNGEpVsQ3UjcE4IdEMIRqO56LXcevOjAls85PJG5Su4eObAjzQXUBbLw/Ap/FEcdDGH9rf1uQeTg5GRHgSM+xw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-arm64-musl@0.75.1':
+ resolution: {integrity: sha512-u02pnIvaqP+YAk6hiw/+3WzVCAJexHO2wBSVMPw2a6wMTfyWEF6BzhLPttOpEzH2m/Kc1soguFUrHvToHbfX2Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-riscv64-gnu@0.75.1':
+ resolution: {integrity: sha512-Jthd7RETAjo0OmtmTYG1ACjcLKTiwYwldiyyU8stWInYUH15RTA4LgDckL2+Yozr5wy5P/GguzZCXb4k3H5hhg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-s390x-gnu@0.75.1':
+ resolution: {integrity: sha512-SrUSdD6xO36q+kBOArT1cEV3uvsfSM+lvktNlkdKcb6TwstmJYiAK3JssYvC1R+3+LsB8wnFaTgyMPbA29Dv4g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-x64-gnu@0.75.1':
+ resolution: {integrity: sha512-1cKfaVFgVH8eOj3jWCHeRzKXt2xBdBlvgGsg7nV08eieN3CLYuN6UFklEBwCIMScZGZABIZv1f31jKf8/Bf6hw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxc-transform/binding-linux-x64-musl@0.75.1':
+ resolution: {integrity: sha512-gHUo7pI1V8axZTXJH7BEzIxCry1gzKyOMjCcbipoacZXTTlYUXKxUR23F0Q+yH50SI5Jh7fkBBKArI3WthhS/g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxc-transform/binding-wasm32-wasi@0.75.1':
+ resolution: {integrity: sha512-nPWarRi6gQr8Ob+vOezOKHq7ZeJZET4OVNtRBFcyGKpZoNxgsP/Yj1ha5u3NhaOI2FTOSeicWlPIgaJJWt0YSw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@oxc-transform/binding-win32-arm64-msvc@0.75.1':
+ resolution: {integrity: sha512-rixs4g/+TjpsxI866GUJAPzCqnp3uI/Dh3F9+TPpYe2ZODfzrTCq17l9S35COv+VRKluO0kSe/8Sfw0tBWPNSQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-transform/binding-win32-x64-msvc@0.75.1':
+ resolution: {integrity: sha512-llqatJ5Qucry0G1VgFpJNaVntEq9lV11gQeZX49Fhv/EeHJ/X/tCvRcxIPsW4TcrlfxAeHcQ7tSuDD6IbFtIEA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [win32]
+
'@peculiar/asn1-android@2.3.16':
resolution: {integrity: sha512-a1viIv3bIahXNssrOIkXZIlI2ePpZaNmR30d4aBL99mu2rO+mT9D6zBsp7H6eROWGtmwv0Ionp5olJurIo09dw==}
@@ -7357,6 +8187,9 @@ packages:
'@polar-sh/adapter-utils@0.1.15':
resolution: {integrity: sha512-hYHdvFRAaV8Z8FrPYZX2uTxEVwHNKy/woLFDn5SSxPo+Uqmrog7a/v8XZN7T9Sz8UePTFRUY6m+QbEBAPjDK9A==}
+ '@polar-sh/adapter-utils@0.2.1':
+ resolution: {integrity: sha512-qcfTi6es9j4DRodYoPN1w5OHlVIjmPuTwV8CF1B09ghwI3gkI0s2wyCK0anTafcOSK5/astCTCbvUbgtRdw6yg==}
+
'@polar-sh/better-auth@0.1.0':
resolution: {integrity: sha512-Gw67CoLoPIelwpa+BR7cMZb/i8MJP2g2E93MhEl26OuWGt8xNbAqzXasDoyUgZQ/r6ZwwdYPRzUqMWmwnRTEqQ==}
engines: {node: '>=16'}
@@ -7364,12 +8197,25 @@ packages:
'@polar-sh/sdk': ^0.32.11
better-auth: ^1.2.0
+ '@polar-sh/better-auth@1.0.4':
+ resolution: {integrity: sha512-sEuZtImh+kwEHqH5adOUPeEqqwrXbiVJ91BIeKdptD+1rdoXmtQSkazlnSWPA1LAo2xXe4Df/KQOaE1ByteuHw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@polar-sh/sdk': ^0.32.15
+ better-auth: ^1.2.7
+
'@polar-sh/nextjs@0.3.23':
resolution: {integrity: sha512-AiQDffXnpaydBeCghDsBaGHTanUEG2039JbukDCBbbbzgbjdl1NpgpmPh62le+Fl0f+s21qU+ZCnwEeJJelrTg==}
engines: {node: '>=16'}
peerDependencies:
next: ^15.0.0 || ^15.2.0-canary.*
+ '@polar-sh/nextjs@0.4.2':
+ resolution: {integrity: sha512-9xhOGr2pZ0Sbg8LPlXKn8qhSKiIC0VvYFgTnHQd7Fgogyu146KAGMTqQkSADuNmdoWctHoeNxHDLGvMDiKZYOg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ next: ^15.0.0 || ^15.2.0-canary.*
+
'@polar-sh/sdk@0.32.11':
resolution: {integrity: sha512-GmMDrWyJJnM45rByMRkY8U8DYbL2ggJNohhTc/9naMlGHnP3+RRgIG9IG6yxuXfQ1wljKyoViHAWCAGCvS3DPA==}
hasBin: true
@@ -7380,8 +8226,28 @@ packages:
'@modelcontextprotocol/sdk':
optional: true
- '@polka/url@1.0.0-next.28':
- resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@polar-sh/sdk@0.32.16':
+ resolution: {integrity: sha512-s+FvSJieNv9KcXGFNSbVzXpTY/hW8oYk8soa3Ow7NgWw/dY+pJ1py+qv+hNwxIuEmlHlpBIBHJVYQqPI9lLzCA==}
+ hasBin: true
+ peerDependencies:
+ '@modelcontextprotocol/sdk': '>=1.5.0 <1.10.0'
+ zod: '>= 3'
+ peerDependenciesMeta:
+ '@modelcontextprotocol/sdk':
+ optional: true
+
+ '@polar-sh/sdk@0.34.3':
+ resolution: {integrity: sha512-D6887BO+ogK1idUVYJo2J5OvDKK8u+kzYNtUGfdfn2CiV24I8wgCyr/mUCMTJa1KZD2yhcUjgrxVUcufQABE6g==}
+ hasBin: true
+ peerDependencies:
+ '@modelcontextprotocol/sdk': '>=1.5.0 <1.10.0'
+ zod: '>= 3'
+ peerDependenciesMeta:
+ '@modelcontextprotocol/sdk':
+ optional: true
+
+ '@polka/url@1.0.0-next.28':
+ resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
@@ -7391,15 +8257,39 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.8
+ '@prisma/instrumentation@6.6.0':
+ resolution: {integrity: sha512-M/a6njz3hbf2oucwdbjNKrSMLuyMCwgDrmTtkF1pm4Nm7CU45J/Hd6lauF2CDACTUYzu3ymcV7P0ZAhIoj6WRw==}
+ peerDependencies:
+ '@opentelemetry/api': ^1.8
+
'@radix-ui/colors@3.0.0':
resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
'@radix-ui/number@1.1.0':
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+ '@radix-ui/number@1.1.1':
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
+
'@radix-ui/primitive@1.1.1':
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
+ '@radix-ui/primitive@1.1.2':
+ resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==}
+
+ '@radix-ui/react-accordion@1.2.11':
+ resolution: {integrity: sha512-l3W5D54emV2ues7jjeG1xcyN7S3jnK3zE2zHqgn0CmMsy9lNJwmgcrmaxS+7ipw15FAivzKNzH3d5EcGoFKw0A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-arrow@1.1.2':
resolution: {integrity: sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==}
peerDependencies:
@@ -7413,6 +8303,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-arrow@1.1.7':
+ resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-avatar@1.1.3':
resolution: {integrity: sha512-Paen00T4P8L8gd9bNsRMw7Cbaz85oxiv+hzomsRZgFm2byltPFDtfcoqlWJ8GyZlIBWgLssJlzLCnKU0G0302g==}
peerDependencies:
@@ -7426,6 +8329,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-collapsible@1.1.11':
+ resolution: {integrity: sha512-2qrRsVGSCYasSz1RFOorXwl0H7g7J1frQtgpQgYrt+MOidtPAINHn9CPovQXb83r8ahapdx3Tu0fa/pdFFSdPg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-collection@1.1.2':
resolution: {integrity: sha512-9z54IEKRxIa9VityapoEYMuByaG42iSy1ZXlY2KcuLSEtq8x4987/N6m15ppoMffgZX72gER2uHe1D9Y6Unlcw==}
peerDependencies:
@@ -7439,6 +8355,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-collection@1.1.7':
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-compose-refs@1.1.1':
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
@@ -7448,6 +8377,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-context@1.1.1':
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
peerDependencies:
@@ -7457,8 +8395,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dialog@1.1.6':
- resolution: {integrity: sha512-/IVhJV5AceX620DUJ4uYVMymzsipdKBzo3edo+omeskCKGm9FRHM0ebIdbPnlQVJqyuHbuBltQUOG2mOTq2IYw==}
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dialog@1.1.14':
+ resolution: {integrity: sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -7479,6 +8426,28 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dismissable-layer@1.1.10':
+ resolution: {integrity: sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-dismissable-layer@1.1.5':
resolution: {integrity: sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==}
peerDependencies:
@@ -7514,6 +8483,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-focus-guards@1.1.2':
+ resolution: {integrity: sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-focus-scope@1.1.2':
resolution: {integrity: sha512-zxwE80FCU7lcXUGWkdt6XpTTCKPitG1XKOwViTxHVKIJhZl9MvIl2dVHeZENCWD9+EdWv05wlaEkRXUykU27RA==}
peerDependencies:
@@ -7527,6 +8505,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-focus-scope@1.1.7':
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-id@1.1.0':
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
@@ -7536,6 +8527,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-id@1.1.1':
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-label@2.1.2':
resolution: {integrity: sha512-zo1uGMTaNlHehDyFQcDZXRJhUPDuukcnHz0/jnrup0JA6qL+AFpAnty+7VKa9esuU5xTblAZzTGYJKSKaBxBhw==}
peerDependencies:
@@ -7562,6 +8562,32 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-navigation-menu@1.2.13':
+ resolution: {integrity: sha512-WG8wWfDiJlSF5hELjwfjSGOXcBR/ZMhBFCGYe8vERpC39CQYZeq1PQ2kaYHdye3V95d06H89KGMsVCIE4LWo3g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popover@1.1.14':
+ resolution: {integrity: sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-popover@1.1.6':
resolution: {integrity: sha512-NQouW0x4/GnkFJ/pRqsIS3rM/k97VzKnVb2jB7Gq7VEGPy5g7uNV1ykySFt7eWSp3i2uSGFwaJcvIRJBAHmmFg==}
peerDependencies:
@@ -7588,6 +8614,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-popper@1.2.7':
+ resolution: {integrity: sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-portal@1.1.4':
resolution: {integrity: sha512-sn2O9k1rPFYVyKd5LAJfo96JlSGVFpa1fS6UuBJfrZadudiw5tAmru+n1x7aMRQ84qDM71Zh1+SzK5QwU0tJfA==}
peerDependencies:
@@ -7601,6 +8640,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-portal@1.1.9':
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-presence@1.1.2':
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
peerDependencies:
@@ -7614,6 +8666,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-presence@1.1.4':
+ resolution: {integrity: sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-primitive@2.0.2':
resolution: {integrity: sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==}
peerDependencies:
@@ -7627,6 +8692,32 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-primitive@2.1.3':
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.10':
+ resolution: {integrity: sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-roving-focus@1.1.2':
resolution: {integrity: sha512-zgMQWkNO169GtGqRvYrzb0Zf8NhMHS2DuEB/TiEmVnpr5OqPU3i8lfbxaAmC2J/KYuIQxyoQQ6DxepyXp61/xw==}
peerDependencies:
@@ -7640,6 +8731,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-scroll-area@1.2.9':
+ resolution: {integrity: sha512-YSjEfBXnhUELsO2VzjdtYYD4CfQjvao+lhhrX5XsHD7/cyUNzljF1FHEbgTPN7LH2MClfwRMIsYlqTYpKTTe2A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-select@2.1.6':
resolution: {integrity: sha512-T6ajELxRvTuAMWH0YmRJ1qez+x4/7Nq7QIx7zJ0VK3qaEWdnWpNbEDnmWldG1zBDwqrLy5aLMUWcoGirVj5kMg==}
peerDependencies:
@@ -7662,6 +8766,28 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-slot@1.2.3':
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-tabs@1.1.12':
+ resolution: {integrity: sha512-GTVAlRVrQrSw3cEARM0nAx73ixrWDPNZAruETn3oHCNP6SbZ/hNxdxp+u7VkIEv3/sFoLq1PfcHrl7Pnp0CDpw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-tabs@1.1.3':
resolution: {integrity: sha512-9mFyI30cuRDImbmFF6O2KUJdgEOsGh9Vmx9x/Dh9tOhL7BngmQPQfwW4aejKm5OHpfWIdmeV6ySyuxoOGjtNng==}
peerDependencies:
@@ -7710,6 +8836,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-controllable-state@1.1.0':
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
@@ -7719,6 +8854,24 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-controllable-state@1.2.2':
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-effect-event@0.0.2':
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-escape-keydown@1.1.0':
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
@@ -7728,6 +8881,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-escape-keydown@1.1.1':
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-layout-effect@1.1.0':
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
@@ -7737,6 +8899,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-previous@1.1.0':
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
@@ -7746,6 +8917,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-previous@1.1.1':
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-rect@1.1.0':
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
peerDependencies:
@@ -7755,6 +8935,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-rect@1.1.1':
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-use-size@1.1.0':
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
@@ -7764,6 +8953,15 @@ packages:
'@types/react':
optional: true
+ '@radix-ui/react-use-size@1.1.1':
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-visually-hidden@1.1.2':
resolution: {integrity: sha512-1SzA4ns2M1aRlvxErqhLHsBHoS5eI5UUcI2awAMgGUp4LoaoWOKYmvqDY2s/tltuPkh3Yk77YF/r3IRj+Amx4Q==}
peerDependencies:
@@ -7777,9 +8975,25 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-visually-hidden@1.2.3':
+ resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/rect@1.1.0':
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+ '@radix-ui/rect@1.1.1':
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
+
'@react-email/body@0.0.11':
resolution: {integrity: sha512-ZSD2SxVSgUjHGrB0Wi+4tu3MEpB4fYSbezsFNEJk2xCWDBkFiOeEsjTmR5dvi+CxTK691hQTQlHv0XWuP7ENTg==}
peerDependencies:
@@ -8030,66 +9244,131 @@ packages:
rollup:
optional: true
+ '@rollup/rollup-android-arm-eabi@4.35.0':
+ resolution: {integrity: sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==}
+ cpu: [arm]
+ os: [android]
+
'@rollup/rollup-android-arm-eabi@4.37.0':
resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==}
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm64@4.35.0':
+ resolution: {integrity: sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==}
+ cpu: [arm64]
+ os: [android]
+
'@rollup/rollup-android-arm64@4.37.0':
resolution: {integrity: sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==}
cpu: [arm64]
os: [android]
+ '@rollup/rollup-darwin-arm64@4.35.0':
+ resolution: {integrity: sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rollup/rollup-darwin-arm64@4.37.0':
resolution: {integrity: sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==}
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.35.0':
+ resolution: {integrity: sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==}
+ cpu: [x64]
+ os: [darwin]
+
'@rollup/rollup-darwin-x64@4.37.0':
resolution: {integrity: sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==}
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-freebsd-arm64@4.35.0':
+ resolution: {integrity: sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==}
+ cpu: [arm64]
+ os: [freebsd]
+
'@rollup/rollup-freebsd-arm64@4.37.0':
resolution: {integrity: sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==}
cpu: [arm64]
os: [freebsd]
+ '@rollup/rollup-freebsd-x64@4.35.0':
+ resolution: {integrity: sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==}
+ cpu: [x64]
+ os: [freebsd]
+
'@rollup/rollup-freebsd-x64@4.37.0':
resolution: {integrity: sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==}
cpu: [x64]
os: [freebsd]
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
+ resolution: {integrity: sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-gnueabihf@4.37.0':
resolution: {integrity: sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
+ resolution: {integrity: sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-musleabihf@4.37.0':
resolution: {integrity: sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
+ resolution: {integrity: sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-gnu@4.37.0':
resolution: {integrity: sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
+ resolution: {integrity: sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-musl@4.37.0':
resolution: {integrity: sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
+ resolution: {integrity: sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==}
+ cpu: [loong64]
+ os: [linux]
+
'@rollup/rollup-linux-loongarch64-gnu@4.37.0':
resolution: {integrity: sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==}
cpu: [loong64]
os: [linux]
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
+ resolution: {integrity: sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==}
+ cpu: [ppc64]
+ os: [linux]
+
'@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
resolution: {integrity: sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==}
cpu: [ppc64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
+ resolution: {integrity: sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-gnu@4.37.0':
resolution: {integrity: sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==}
cpu: [riscv64]
@@ -8100,31 +9379,61 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
+ resolution: {integrity: sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-s390x-gnu@4.37.0':
resolution: {integrity: sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==}
cpu: [s390x]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
+ resolution: {integrity: sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.37.0':
resolution: {integrity: sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.35.0':
+ resolution: {integrity: sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-musl@4.37.0':
resolution: {integrity: sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
+ resolution: {integrity: sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==}
+ cpu: [arm64]
+ os: [win32]
+
'@rollup/rollup-win32-arm64-msvc@4.37.0':
resolution: {integrity: sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==}
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
+ resolution: {integrity: sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==}
+ cpu: [ia32]
+ os: [win32]
+
'@rollup/rollup-win32-ia32-msvc@4.37.0':
resolution: {integrity: sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==}
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
+ resolution: {integrity: sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==}
+ cpu: [x64]
+ os: [win32]
+
'@rollup/rollup-win32-x64-msvc@4.37.0':
resolution: {integrity: sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==}
cpu: [x64]
@@ -8139,18 +9448,34 @@ packages:
'@selderee/plugin-htmlparser2@0.11.0':
resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
+ '@sentry-internal/browser-utils@9.14.0':
+ resolution: {integrity: sha512-pDk9XUu9zf7lcT9QX0nTObPNp/y0xQyy1Dj+5/8TSB3vAfe0LQcooKGl/D1h7EoIXVHUozZk5JC/dH+gz6BXRg==}
+ engines: {node: '>=18'}
+
'@sentry-internal/browser-utils@9.4.0':
resolution: {integrity: sha512-huoSluJhyhN/EFXpRhUIFg0DQICrE9bCGZ4TBSG7l0zOVm3i957W5pUiE5qQkR7wmAfCuJ8Dh/tgo4ngSA21Gg==}
engines: {node: '>=18'}
+ '@sentry-internal/feedback@9.14.0':
+ resolution: {integrity: sha512-D+PiEUWbDT0vqmaTiOs6OzXwVRVFgf7BCkFs48qsN9sAPwUgT+5zh2oo/rU2r0NrmMcvJVtSY+ezwPMk8BgGsg==}
+ engines: {node: '>=18'}
+
'@sentry-internal/feedback@9.4.0':
resolution: {integrity: sha512-EgytfcwvV2eoyQQv4vxXzs5cgEhwuKKQu4oN3IUk7+6fY9lKKfBvCme+477Lx7jZ/O4Xe5o3QjTbamnwtHZokg==}
engines: {node: '>=18'}
+ '@sentry-internal/replay-canvas@9.14.0':
+ resolution: {integrity: sha512-GhCSqc0oNzRiLhQsi9LCXgUmIwdHdvzVIsX4fihoFYWfgWSSj5YLqeEkb3CMM8htM6vheSFzIbPLlRS8fjCrPQ==}
+ engines: {node: '>=18'}
+
'@sentry-internal/replay-canvas@9.4.0':
resolution: {integrity: sha512-qPIlEEKQSA5FCP8++NmyQXANGcXm9W+saGEdlXKY0oKwACP/9sIUidkz78IOfvKFe46g5j9EqxJV3sFhitXJ0w==}
engines: {node: '>=18'}
+ '@sentry-internal/replay@9.14.0':
+ resolution: {integrity: sha512-wgt397/PtpfVQ9t779a0L+hGH3JN9doXv3+9Wj98MLWwhymvJBjpjCFUBLScO5iP6imewTbRqQHbq7XS7I+x1A==}
+ engines: {node: '>=18'}
+
'@sentry-internal/replay@9.4.0':
resolution: {integrity: sha512-eQnmbVcAJlUpEL/zYhG5cBXwqD4BdFqZcN/OGIPYdiJ6WnNhgk4oD9sSx05caq1STN8HRubw0DmBPb9XSqJi/g==}
engines: {node: '>=18'}
@@ -8159,6 +9484,14 @@ packages:
resolution: {integrity: sha512-tUp2e+CERpRFzTftjPxt7lg4BF0R3K+wGfeJyIqrc0tbJ2y6duT8OD0ArWoOi1g8xQ73NDn1/mEeS8pC+sbjTQ==}
engines: {node: '>= 14'}
+ '@sentry/babel-plugin-component-annotate@3.3.1':
+ resolution: {integrity: sha512-5GOxGT7lZN+I8A7Vp0rWY+726FDKEw8HnFiebe51rQrMbfGfCu2Aw9uSM0nT9OG6xhV6WvGccIcCszTPs4fUZQ==}
+ engines: {node: '>= 14'}
+
+ '@sentry/browser@9.14.0':
+ resolution: {integrity: sha512-acxFbFEei3hzKr/IW3OmkzHlwohRaRBG0872nIhLYV2f/BgZmR6eV5zrUoELMmt2cgoLmDYyfp1734OoplfDbw==}
+ engines: {node: '>=18'}
+
'@sentry/browser@9.4.0':
resolution: {integrity: sha512-meMKoalrlmd5VAHAl0XVkLmt3FXxHIQxFWu0ymyPTfajK6yYs8MBjT/ZIEAXnOg0M0TlB2HNY2owMKDnwTTi/g==}
engines: {node: '>=18'}
@@ -8167,6 +9500,10 @@ packages:
resolution: {integrity: sha512-1wId05LXf6LyTeNwqyhSDSWYbYtFT/NQRqq3sW7hcL4nZuAgzT82PSvxeeCgR/D2qXOj7RCYXXZtyWzzo3wtXA==}
engines: {node: '>= 14'}
+ '@sentry/bundler-plugin-core@3.3.1':
+ resolution: {integrity: sha512-Dd6xaWb293j9otEJ1yJqG2Ra6zB49OPzMNdIkdP8wdY+S9UFQE5PyKTyredmPY7hqCc005OrUQZolIIo9Zl13A==}
+ engines: {node: '>= 14'}
+
'@sentry/cli-darwin@2.42.2':
resolution: {integrity: sha512-GtJSuxER7Vrp1IpxdUyRZzcckzMnb4N5KTW7sbTwUiwqARRo+wxS+gczYrS8tdgtmXs5XYhzhs+t4d52ITHMIg==}
engines: {node: '>=10'}
@@ -8213,20 +9550,45 @@ packages:
engines: {node: '>= 10'}
hasBin: true
+ '@sentry/core@9.14.0':
+ resolution: {integrity: sha512-OLfucnP3LAL5bxVNWc2RVOHCX7fk9Er5bWPCS+O5cPjqNUUz0HQHhVh2Vhei5C0kYZZM4vy4BQit5T9LrlOaNA==}
+ engines: {node: '>=18'}
+
'@sentry/core@9.4.0':
resolution: {integrity: sha512-Edd/uWDGZ+1CMuVVWdxIOm1rBhzgpqiqz984TZu20wryoIoRsA8ZllUar6N+cWK17VusNY0OS2DozKO69y7fVQ==}
engines: {node: '>=18'}
+ '@sentry/nextjs@9.14.0':
+ resolution: {integrity: sha512-uQnG7tPs1qX8OZ5lW3mpslAoN2+XiV2ZJ/3T+VtBatx9MFgEga8lMA/qgdkZP+Q139sroGlUe0tcUSDwwIzaVw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0
+
'@sentry/nextjs@9.4.0':
resolution: {integrity: sha512-VLfVdHGQNcbByjKHcGXPYOkGMZcK4/U29lgGuKG7TicZCQvB+TN7rlLk7WgRtr0tG7PgEy72cLWkSa6Me9JGrQ==}
engines: {node: '>=18'}
peerDependencies:
next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0
+ '@sentry/node@9.14.0':
+ resolution: {integrity: sha512-AWPc6O+zAdSgnsiKm6Nb1txyiKCOIBriJEONdXFSslgZgkm8EWAYRRHyS2Hkmnz0/5bEQ3jEffIw22qJuaHN+Q==}
+ engines: {node: '>=18'}
+
'@sentry/node@9.4.0':
resolution: {integrity: sha512-DNcoQ3pj+03XJn9fuiNJM+9TksQFDpOhKPGppwL9kF0P7DS2eLyls4o2Ec+gtdDSu8Gcyes7sVD7Cw6J61bC2Q==}
engines: {node: '>=18'}
+ '@sentry/opentelemetry@9.14.0':
+ resolution: {integrity: sha512-NnHJjSQGpWaZ6+0QK9Xn1T3CTOM16Ij07VnSiGmVz3/IMsNC1/jndqc8p9BxEI+67XhZjOUUN0Ogpq1XRY7YeA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@opentelemetry/api': ^1.9.0
+ '@opentelemetry/context-async-hooks': ^1.30.1
+ '@opentelemetry/core': ^1.30.1
+ '@opentelemetry/instrumentation': ^0.57.1
+ '@opentelemetry/sdk-trace-base': ^1.30.1
+ '@opentelemetry/semantic-conventions': ^1.28.0
+
'@sentry/opentelemetry@9.4.0':
resolution: {integrity: sha512-utayMpcdgohSdET1PPsqOfS26XpVEuNkDYwNFqM8mciXsqqox1DgHQ985jicnziNcowGsSYjR6SazVPFauQkBw==}
engines: {node: '>=18'}
@@ -8238,12 +9600,22 @@ packages:
'@opentelemetry/sdk-trace-base': ^1.30.1
'@opentelemetry/semantic-conventions': ^1.28.0
+ '@sentry/react@9.14.0':
+ resolution: {integrity: sha512-0dRfTorcInBjxVnis6Zv0+Jqex2OXFNQf+cQanKuC0IRkAhZyD2+UO2/v39sSmtvrHIcZRQ9fta8qKdhFUXCqg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ react: ^16.14.0 || 17.x || 18.x || 19.x
+
'@sentry/react@9.4.0':
resolution: {integrity: sha512-CnCCpSTr4Qr1reyjS2G5cO1Epin/eQ/X5HuGvuWv3sq5loRtkgcHQei1IhOlbNTcnY9r1PeUFgloRgASe8idzg==}
engines: {node: '>=18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
+ '@sentry/vercel-edge@9.14.0':
+ resolution: {integrity: sha512-qcQddIRNFJbDaBuGFfEthwMgR7+wsPfMVwMurQdxS7Axr3GgT03wVG/SPAVS/yhVLeqXrfeHaqJaNg05z0aErA==}
+ engines: {node: '>=18'}
+
'@sentry/vercel-edge@9.4.0':
resolution: {integrity: sha512-PCKfYDs6g4umCcE/494/7isGQR6o5CaQ4noa929OT32/yZ49Yo9N0yUUHsSBnlcJw0m7kkLyAQTl+1wgFTrzgA==}
engines: {node: '>=18'}
@@ -8254,25 +9626,64 @@ packages:
peerDependencies:
webpack: '>=4.40.0'
+ '@sentry/webpack-plugin@3.3.1':
+ resolution: {integrity: sha512-AFRnGNUnlIvq3M+ADdfWb+DIXWKK6yYEkVPAyOppkjO+cL/19gjXMdvAwv+CMFts28YCFKF8Kr3pamUiCmwodA==}
+ engines: {node: '>= 14'}
+ peerDependencies:
+ webpack: '>=4.40.0'
+
'@shikijs/core@3.2.1':
resolution: {integrity: sha512-FhsdxMWYu/C11sFisEp7FMGBtX/OSSbnXZDMBhGuUDBNTdsoZlMSgQv5f90rwvzWAdWIW6VobD+G3IrazxA6dQ==}
+ '@shikijs/core@3.7.0':
+ resolution: {integrity: sha512-yilc0S9HvTPyahHpcum8eonYrQtmGTU0lbtwxhA6jHv4Bm1cAdlPFRCJX4AHebkCm75aKTjjRAW+DezqD1b/cg==}
+
'@shikijs/engine-javascript@3.2.1':
resolution: {integrity: sha512-eMdcUzN3FMQYxOmRf2rmU8frikzoSHbQDFH2hIuXsrMO+IBOCI9BeeRkCiBkcLDHeRKbOCtYMJK3D6U32ooU9Q==}
+ '@shikijs/engine-javascript@3.7.0':
+ resolution: {integrity: sha512-0t17s03Cbv+ZcUvv+y33GtX75WBLQELgNdVghnsdhTgU3hVcWcMsoP6Lb0nDTl95ZJfbP1mVMO0p3byVh3uuzA==}
+
+ '@shikijs/engine-oniguruma@3.7.0':
+ resolution: {integrity: sha512-5BxcD6LjVWsGu4xyaBC5bu8LdNgPCVBnAkWTtOCs/CZxcB22L8rcoWfv7Hh/3WooVjBZmFtyxhgvkQFedPGnFw==}
+
'@shikijs/langs-precompiled@3.2.1':
resolution: {integrity: sha512-M8AQBjYRVk6seMMwlz7FNIWolAE0bZalBLOwFUPNuM8g8LL7o+GjD/2vKmV7/vxaJ79P0XyZ3I1tFAbWS1wCHQ==}
engines: {node: '>=20'}
+ '@shikijs/langs-precompiled@3.7.0':
+ resolution: {integrity: sha512-5EzicQUzjLT9QkAnVTz8qX/jjgwa/fFMVzOZMtqpHo3xbuSOVre6hvTplwiytp1vuXxbzXMhL6KuWuzmYsIoSA==}
+ engines: {node: '>=20'}
+
'@shikijs/langs@3.2.1':
resolution: {integrity: sha512-If0iDHYRSGbihiA8+7uRsgb1er1Yj11pwpX1c6HLYnizDsKAw5iaT3JXj5ZpaimXSWky/IhxTm7C6nkiYVym+A==}
+ '@shikijs/langs@3.7.0':
+ resolution: {integrity: sha512-1zYtdfXLr9xDKLTGy5kb7O0zDQsxXiIsw1iIBcNOO8Yi5/Y1qDbJ+0VsFoqTlzdmneO8Ij35g7QKF8kcLyznCQ==}
+
+ '@shikijs/rehype@3.7.0':
+ resolution: {integrity: sha512-YjAZxhQnBXE8ehppKGzuVGPoE4pjVsxqzkWhBZlkP495AjlR++MgfiRFcQfDt3qX5lK3gEDTcghB/8E3yNrWqQ==}
+
'@shikijs/themes@3.2.1':
resolution: {integrity: sha512-k5DKJUT8IldBvAm8WcrDT5+7GA7se6lLksR+2E3SvyqGTyFMzU2F9Gb7rmD+t+Pga1MKrYFxDIeyWjMZWM6uBQ==}
+ '@shikijs/themes@3.7.0':
+ resolution: {integrity: sha512-VJx8497iZPy5zLiiCTSIaOChIcKQwR0FebwE9S3rcN0+J/GTWwQ1v/bqhTbpbY3zybPKeO8wdammqkpXc4NVjQ==}
+
+ '@shikijs/transformers@3.7.0':
+ resolution: {integrity: sha512-VplaqIMRNsNOorCXJHkbF5S0pT6xm8Z/s7w7OPZLohf8tR93XH0krvUafpNy/ozEylrWuShJF0+ftEB+wFRwGA==}
+
+ '@shikijs/twoslash@3.7.0':
+ resolution: {integrity: sha512-EjnV193iasm/M5UHVDJg6WyX6dIMCb0YhsKKlgWv3OK7iLFjuW7sUp978ZkO2OIn3niqBT6e+CX1LgoPM8jYjQ==}
+ peerDependencies:
+ typescript: '>=5.5.0'
+
'@shikijs/types@3.2.1':
resolution: {integrity: sha512-/NTWAk4KE2M8uac0RhOsIhYQf4pdU0OywQuYDGIGAJ6Mjunxl2cGiuLkvu4HLCMn+OTTLRWkjZITp+aYJv60yA==}
+ '@shikijs/types@3.7.0':
+ resolution: {integrity: sha512-MGaLeaRlSWpnP0XSAum3kP3a8vtcTsITqoEPYdt3lQG3YCdQH4DnEhodkYcNMcU0uW0RffhoD1O3e0vG5eSBBg==}
+
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -8304,6 +9715,10 @@ packages:
resolution: {integrity: sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw==}
engines: {node: '>=18.0.0'}
+ '@smithy/abort-controller@4.0.4':
+ resolution: {integrity: sha512-gJnEjZMvigPDQWHrW3oPrFhQtkrgqBkyjj3pCIdF3A5M6vsZODG93KNlfJprv6bp4245bdT32fsHK4kkH3KYDA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/chunked-blob-reader-native@4.0.0':
resolution: {integrity: sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==}
engines: {node: '>=18.0.0'}
@@ -8316,54 +9731,106 @@ packages:
resolution: {integrity: sha512-8smPlwhga22pwl23fM5ew4T9vfLUCeFXlcqNOCD5M5h8VmNPNUE9j6bQSuRXpDSV11L/E/SwEBQuW8hr6+nS1A==}
engines: {node: '>=18.0.0'}
+ '@smithy/config-resolver@4.1.4':
+ resolution: {integrity: sha512-prmU+rDddxHOH0oNcwemL+SwnzcG65sBF2yXRO7aeXIn/xTlq2pX7JLVbkBnVLowHLg4/OL4+jBmv9hVrVGS+w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/core@3.2.0':
resolution: {integrity: sha512-k17bgQhVZ7YmUvA8at4af1TDpl0NDMBuBKJl8Yg0nrefwmValU+CnA5l/AriVdQNthU/33H3nK71HrLgqOPr1Q==}
engines: {node: '>=18.0.0'}
+ '@smithy/core@3.6.0':
+ resolution: {integrity: sha512-Pgvfb+TQ4wUNLyHzvgCP4aYZMh16y7GcfF59oirRHcgGgkH1e/s9C0nv/v3WP+Quymyr5je71HeFQCwh+44XLg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/credential-provider-imds@4.0.2':
resolution: {integrity: sha512-32lVig6jCaWBHnY+OEQ6e6Vnt5vDHaLiydGrwYMW9tPqO688hPGTYRamYJ1EptxEC2rAwJrHWmPoKRBl4iTa8w==}
engines: {node: '>=18.0.0'}
+ '@smithy/credential-provider-imds@4.0.6':
+ resolution: {integrity: sha512-hKMWcANhUiNbCJouYkZ9V3+/Qf9pteR1dnwgdyzR09R4ODEYx8BbUysHwRSyex4rZ9zapddZhLFTnT4ZijR4pw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-codec@4.0.2':
resolution: {integrity: sha512-p+f2kLSK7ZrXVfskU/f5dzksKTewZk8pJLPvER3aFHPt76C2MxD9vNatSfLzzQSQB4FNO96RK4PSXfhD1TTeMQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-codec@4.0.4':
+ resolution: {integrity: sha512-7XoWfZqWb/QoR/rAU4VSi0mWnO2vu9/ltS6JZ5ZSZv0eovLVfDfu0/AX4ub33RsJTOth3TiFWSHS5YdztvFnig==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-browser@4.0.2':
resolution: {integrity: sha512-CepZCDs2xgVUtH7ZZ7oDdZFH8e6Y2zOv8iiX6RhndH69nlojCALSKK+OXwZUgOtUZEUaZ5e1hULVCHYbCn7pug==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-browser@4.0.4':
+ resolution: {integrity: sha512-3fb/9SYaYqbpy/z/H3yIi0bYKyAa89y6xPmIqwr2vQiUT2St+avRt8UKwsWt9fEdEasc5d/V+QjrviRaX1JRFA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-config-resolver@4.1.0':
resolution: {integrity: sha512-1PI+WPZ5TWXrfj3CIoKyUycYynYJgZjuQo8U+sphneOtjsgrttYybdqESFReQrdWJ+LKt6NEdbYzmmfDBmjX2A==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-config-resolver@4.1.2':
+ resolution: {integrity: sha512-JGtambizrWP50xHgbzZI04IWU7LdI0nh/wGbqH3sJesYToMi2j/DcoElqyOcqEIG/D4tNyxgRuaqBXWE3zOFhQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-node@4.0.2':
resolution: {integrity: sha512-C5bJ/C6x9ENPMx2cFOirspnF9ZsBVnBMtP6BdPl/qYSuUawdGQ34Lq0dMcf42QTjUZgWGbUIZnz6+zLxJlb9aw==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-node@4.0.4':
+ resolution: {integrity: sha512-RD6UwNZ5zISpOWPuhVgRz60GkSIp0dy1fuZmj4RYmqLVRtejFqQ16WmfYDdoSoAjlp1LX+FnZo+/hkdmyyGZ1w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-universal@4.0.2':
resolution: {integrity: sha512-St8h9JqzvnbB52FtckiHPN4U/cnXcarMniXRXTKn0r4b4XesZOGiAyUdj1aXbqqn1icSqBlzzUsCl6nPB018ng==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-universal@4.0.4':
+ resolution: {integrity: sha512-UeJpOmLGhq1SLox79QWw/0n2PFX+oPRE1ZyRMxPIaFEfCqWaqpB7BU9C8kpPOGEhLF7AwEqfFbtwNxGy4ReENA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/fetch-http-handler@5.0.2':
resolution: {integrity: sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/fetch-http-handler@5.0.4':
+ resolution: {integrity: sha512-AMtBR5pHppYMVD7z7G+OlHHAcgAN7v0kVKEpHuTO4Gb199Gowh0taYi9oDStFeUhetkeP55JLSVlTW1n9rFtUw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-blob-browser@4.0.2':
resolution: {integrity: sha512-3g188Z3DyhtzfBRxpZjU8R9PpOQuYsbNnyStc/ZVS+9nVX1f6XeNOa9IrAh35HwwIZg+XWk8bFVtNINVscBP+g==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-blob-browser@4.0.4':
+ resolution: {integrity: sha512-WszRiACJiQV3QG6XMV44i5YWlkrlsM5Yxgz4jvsksuu7LDXA6wAtypfPajtNTadzpJy3KyJPoWehYpmZGKUFIQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-node@4.0.2':
resolution: {integrity: sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-node@4.0.4':
+ resolution: {integrity: sha512-qnbTPUhCVnCgBp4z4BUJUhOEkVwxiEi1cyFM+Zj6o+aY8OFGxUQleKWq8ltgp3dujuhXojIvJWdoqpm6dVO3lQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-stream-node@4.0.2':
resolution: {integrity: sha512-POWDuTznzbIwlEXEvvXoPMS10y0WKXK790soe57tFRfvf4zBHyzE529HpZMqmDdwG9MfFflnyzndUQ8j78ZdSg==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-stream-node@4.0.4':
+ resolution: {integrity: sha512-wHo0d8GXyVmpmMh/qOR0R7Y46/G1y6OR8U+bSTB4ppEzRxd1xVAQ9xOE9hOc0bSjhz0ujCPAbfNLkLrpa6cevg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/invalid-dependency@4.0.2':
resolution: {integrity: sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/invalid-dependency@4.0.4':
+ resolution: {integrity: sha512-bNYMi7WKTJHu0gn26wg8OscncTt1t2b8KcsZxvOv56XA6cyXtOAAAaNP7+m45xfppXfOatXF3Sb1MNsLUgVLTw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
@@ -8376,74 +9843,146 @@ packages:
resolution: {integrity: sha512-Hc0R8EiuVunUewCse2syVgA2AfSRco3LyAv07B/zCOMa+jpXI9ll+Q21Nc6FAlYPcpNcAXqBzMhNs1CD/pP2bA==}
engines: {node: '>=18.0.0'}
+ '@smithy/md5-js@4.0.4':
+ resolution: {integrity: sha512-uGLBVqcOwrLvGh/v/jw423yWHq/ofUGK1W31M2TNspLQbUV1Va0F5kTxtirkoHawODAZcjXTSGi7JwbnPcDPJg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/middleware-content-length@4.0.2':
resolution: {integrity: sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A==}
engines: {node: '>=18.0.0'}
+ '@smithy/middleware-content-length@4.0.4':
+ resolution: {integrity: sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/middleware-endpoint@4.1.0':
resolution: {integrity: sha512-xhLimgNCbCzsUppRTGXWkZywksuTThxaIB0HwbpsVLY5sceac4e1TZ/WKYqufQLaUy+gUSJGNdwD2jo3cXL0iA==}
engines: {node: '>=18.0.0'}
+ '@smithy/middleware-endpoint@4.1.13':
+ resolution: {integrity: sha512-xg3EHV/Q5ZdAO5b0UiIMj3RIOCobuS40pBBODguUDVdko6YK6QIzCVRrHTogVuEKglBWqWenRnZ71iZnLL3ZAQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/middleware-retry@4.1.0':
resolution: {integrity: sha512-2zAagd1s6hAaI/ap6SXi5T3dDwBOczOMCSkkYzktqN1+tzbk1GAsHNAdo/1uzxz3Ky02jvZQwbi/vmDA6z4Oyg==}
engines: {node: '>=18.0.0'}
+ '@smithy/middleware-retry@4.1.14':
+ resolution: {integrity: sha512-eoXaLlDGpKvdmvt+YBfRXE7HmIEtFF+DJCbTPwuLunP0YUnrydl+C4tS+vEM0+nyxXrX3PSUFqC+lP1+EHB1Tw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/middleware-serde@4.0.3':
resolution: {integrity: sha512-rfgDVrgLEVMmMn0BI8O+8OVr6vXzjV7HZj57l0QxslhzbvVfikZbVfBVthjLHqib4BW44QhcIgJpvebHlRaC9A==}
engines: {node: '>=18.0.0'}
+ '@smithy/middleware-serde@4.0.8':
+ resolution: {integrity: sha512-iSSl7HJoJaGyMIoNn2B7czghOVwJ9nD7TMvLhMWeSB5vt0TnEYyRRqPJu/TqW76WScaNvYYB8nRoiBHR9S1Ddw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/middleware-stack@4.0.2':
resolution: {integrity: sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/middleware-stack@4.0.4':
+ resolution: {integrity: sha512-kagK5ggDrBUCCzI93ft6DjteNSfY8Ulr83UtySog/h09lTIOAJ/xUSObutanlPT0nhoHAkpmW9V5K8oPyLh+QA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/node-config-provider@4.0.2':
resolution: {integrity: sha512-WgCkILRZfJwJ4Da92a6t3ozN/zcvYyJGUTmfGbgS/FkCcoCjl7G4FJaCDN1ySdvLvemnQeo25FdkyMSTSwulsw==}
engines: {node: '>=18.0.0'}
+ '@smithy/node-config-provider@4.1.3':
+ resolution: {integrity: sha512-HGHQr2s59qaU1lrVH6MbLlmOBxadtzTsoO4c+bF5asdgVik3I8o7JIOzoeqWc5MjVa+vD36/LWE0iXKpNqooRw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/node-http-handler@4.0.4':
resolution: {integrity: sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g==}
engines: {node: '>=18.0.0'}
+ '@smithy/node-http-handler@4.0.6':
+ resolution: {integrity: sha512-NqbmSz7AW2rvw4kXhKGrYTiJVDHnMsFnX4i+/FzcZAfbOBauPYs2ekuECkSbtqaxETLLTu9Rl/ex6+I2BKErPA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/property-provider@4.0.2':
resolution: {integrity: sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A==}
engines: {node: '>=18.0.0'}
+ '@smithy/property-provider@4.0.4':
+ resolution: {integrity: sha512-qHJ2sSgu4FqF4U/5UUp4DhXNmdTrgmoAai6oQiM+c5RZ/sbDwJ12qxB1M6FnP+Tn/ggkPZf9ccn4jqKSINaquw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/protocol-http@5.1.0':
resolution: {integrity: sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g==}
engines: {node: '>=18.0.0'}
+ '@smithy/protocol-http@5.1.2':
+ resolution: {integrity: sha512-rOG5cNLBXovxIrICSBm95dLqzfvxjEmuZx4KK3hWwPFHGdW3lxY0fZNXfv2zebfRO7sJZ5pKJYHScsqopeIWtQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/querystring-builder@4.0.2':
resolution: {integrity: sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q==}
engines: {node: '>=18.0.0'}
+ '@smithy/querystring-builder@4.0.4':
+ resolution: {integrity: sha512-SwREZcDnEYoh9tLNgMbpop+UTGq44Hl9tdj3rf+yeLcfH7+J8OXEBaMc2kDxtyRHu8BhSg9ADEx0gFHvpJgU8w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/querystring-parser@4.0.2':
resolution: {integrity: sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q==}
engines: {node: '>=18.0.0'}
+ '@smithy/querystring-parser@4.0.4':
+ resolution: {integrity: sha512-6yZf53i/qB8gRHH/l2ZwUG5xgkPgQF15/KxH0DdXMDHjesA9MeZje/853ifkSY0x4m5S+dfDZ+c4x439PF0M2w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/service-error-classification@4.0.2':
resolution: {integrity: sha512-LA86xeFpTKn270Hbkixqs5n73S+LVM0/VZco8dqd+JT75Dyx3Lcw/MraL7ybjmz786+160K8rPOmhsq0SocoJQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/service-error-classification@4.0.6':
+ resolution: {integrity: sha512-RRoTDL//7xi4tn5FrN2NzH17jbgmnKidUqd4KvquT0954/i6CXXkh1884jBiunq24g9cGtPBEXlU40W6EpNOOg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/shared-ini-file-loader@4.0.2':
resolution: {integrity: sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw==}
engines: {node: '>=18.0.0'}
+ '@smithy/shared-ini-file-loader@4.0.4':
+ resolution: {integrity: sha512-63X0260LoFBjrHifPDs+nM9tV0VMkOTl4JRMYNuKh/f5PauSjowTfvF3LogfkWdcPoxsA9UjqEOgjeYIbhb7Nw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/signature-v4@5.0.2':
resolution: {integrity: sha512-Mz+mc7okA73Lyz8zQKJNyr7lIcHLiPYp0+oiqiMNc/t7/Kf2BENs5d63pEj7oPqdjaum6g0Fc8wC78dY1TgtXw==}
engines: {node: '>=18.0.0'}
+ '@smithy/signature-v4@5.1.2':
+ resolution: {integrity: sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/smithy-client@4.2.0':
resolution: {integrity: sha512-Qs65/w30pWV7LSFAez9DKy0Koaoh3iHhpcpCCJ4waj/iqwsuSzJna2+vYwq46yBaqO5ZbP9TjUsATUNxrKeBdw==}
engines: {node: '>=18.0.0'}
+ '@smithy/smithy-client@4.4.5':
+ resolution: {integrity: sha512-+lynZjGuUFJaMdDYSTMnP/uPBBXXukVfrJlP+1U/Dp5SFTEI++w6NMga8DjOENxecOF71V9Z2DllaVDYRnGlkg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/types@4.2.0':
resolution: {integrity: sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg==}
engines: {node: '>=18.0.0'}
+ '@smithy/types@4.3.1':
+ resolution: {integrity: sha512-UqKOQBL2x6+HWl3P+3QqFD4ncKq0I8Nuz9QItGv5WuKuMHuuwlhvqcZCoXGfc+P1QmfJE7VieykoYYmrOoFJxA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/url-parser@4.0.2':
resolution: {integrity: sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/url-parser@4.0.4':
+ resolution: {integrity: sha512-eMkc144MuN7B0TDA4U2fKs+BqczVbk3W+qIvcoCY6D1JY3hnAdCuhCZODC+GAeaxj0p6Jroz4+XMUn3PCxQQeQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-base64@4.0.0':
resolution: {integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==}
engines: {node: '>=18.0.0'}
@@ -8468,10 +10007,18 @@ packages:
resolution: {integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-defaults-mode-browser@4.0.21':
+ resolution: {integrity: sha512-wM0jhTytgXu3wzJoIqpbBAG5U6BwiubZ6QKzSbP7/VbmF1v96xlAbX2Am/mz0Zep0NLvLh84JT0tuZnk3wmYQA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-defaults-mode-browser@4.0.8':
resolution: {integrity: sha512-ZTypzBra+lI/LfTYZeop9UjoJhhGRTg3pxrNpfSTQLd3AJ37r2z4AXTKpq1rFXiiUIJsYyFgNJdjWRGP/cbBaQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-defaults-mode-node@4.0.21':
+ resolution: {integrity: sha512-/F34zkoU0GzpUgLJydHY8Rxu9lBn8xQC/s/0M0U9lLBkYbA1htaAFjWYJzpzsbXPuri5D1H8gjp2jBum05qBrA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-defaults-mode-node@4.0.8':
resolution: {integrity: sha512-Rgk0Jc/UDfRTzVthye/k2dDsz5Xxs9LZaKCNPgJTRyoyBoeiNCnHsYGOyu1PKN+sDyPnJzMOz22JbwxzBp9NNA==}
engines: {node: '>=18.0.0'}
@@ -8480,6 +10027,10 @@ packages:
resolution: {integrity: sha512-6QSutU5ZyrpNbnd51zRTL7goojlcnuOB55+F9VBD+j8JpRY50IGamsjlycrmpn8PQkmJucFW8A0LSfXj7jjtLQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-endpoints@3.0.6':
+ resolution: {integrity: sha512-YARl3tFL3WgPuLzljRUnrS2ngLiUtkwhQtj8PAL13XZSyUiNLQxwG3fBBq3QXFqGFUXepIN73pINp3y8c2nBmA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-hex-encoding@4.0.0':
resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==}
engines: {node: '>=18.0.0'}
@@ -8488,14 +10039,26 @@ packages:
resolution: {integrity: sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-middleware@4.0.4':
+ resolution: {integrity: sha512-9MLKmkBmf4PRb0ONJikCbCwORACcil6gUWojwARCClT7RmLzF04hUR4WdRprIXal7XVyrddadYNfp2eF3nrvtQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-retry@4.0.2':
resolution: {integrity: sha512-Qryc+QG+7BCpvjloFLQrmlSd0RsVRHejRXd78jNO3+oREueCjwG1CCEH1vduw/ZkM1U9TztwIKVIi3+8MJScGg==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-retry@4.0.6':
+ resolution: {integrity: sha512-+YekoF2CaSMv6zKrA6iI/N9yva3Gzn4L6n35Luydweu5MMPYpiGZlWqehPHDHyNbnyaYlz/WJyYAZnC+loBDZg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-stream@4.2.0':
resolution: {integrity: sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-stream@4.2.2':
+ resolution: {integrity: sha512-aI+GLi7MJoVxg24/3J1ipwLoYzgkB4kUfogZfnslcYlynj3xsQ0e7vk4TnTro9hhsS5PvX1mwmkRqqHQjwcU7w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-uri-escape@4.0.0':
resolution: {integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==}
engines: {node: '>=18.0.0'}
@@ -8512,18 +10075,113 @@ packages:
resolution: {integrity: sha512-JtaY3FxmD+te+KSI2FJuEcfNC9T/DGGVf551babM7fAaXhjJUt7oSYurH1Devxd2+BOSUACCgt3buinx4UnmEA==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-waiter@4.0.6':
+ resolution: {integrity: sha512-slcr1wdRbX7NFphXZOxtxRNA7hXAAtJAXJDE/wdoMAos27SIquVCKiSqfB6/28YzQ8FCsB5NKkhdM5gMADbqxg==}
+ engines: {node: '>=18.0.0'}
+
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
'@stablelib/base64@1.0.1':
resolution: {integrity: sha512-1bnPQqSxSuc3Ii6MhBysoWCg58j97aUjuCSZrGSmDxNqtytIi0k8utUenAwTZN4V5mXXYGsVUI9zeBqy+jBOSQ==}
+ '@standard-schema/spec@1.0.0':
+ resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==}
+
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ '@tailwindcss/node@4.1.11':
+ resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==}
+
+ '@tailwindcss/oxide-android-arm64@4.1.11':
+ resolution: {integrity: sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.11':
+ resolution: {integrity: sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.1.11':
+ resolution: {integrity: sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.11':
+ resolution: {integrity: sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11':
+ resolution: {integrity: sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.11':
+ resolution: {integrity: sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.11':
+ resolution: {integrity: sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.11':
+ resolution: {integrity: sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.11':
+ resolution: {integrity: sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.11':
+ resolution: {integrity: sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.11':
+ resolution: {integrity: sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.11':
+ resolution: {integrity: sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.1.11':
+ resolution: {integrity: sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/postcss@4.1.11':
+ resolution: {integrity: sha512-q/EAIIpF6WpLhKEuQSEVMZNMIY8KhWoAemZ9eylNAih9jxMGAYPPWBn3I9QL/2jZ+e7OEz/tZkX5HwbBR4HohA==}
+
'@tanstack/react-virtual@3.13.5':
resolution: {integrity: sha512-MzSSMGkFWCDSb2xXqmdbfQqBG4wcRI3JKVjpYGZG0CccnViLpfRW4tGU97ImfBbSYzvEWJ/2SK/OiIoSmcUBAA==}
peerDependencies:
@@ -8565,6 +10223,11 @@ packages:
peerDependencies:
'@tiptap/pm': ^2.7.0
+ '@tiptap/core@2.25.0':
+ resolution: {integrity: sha512-pTLV0+g+SBL49/Y5A9ii7oHwlzIzpgroJVI3AcBk7/SeR7554ZzjxxtJmZkQ9/NxJO+k1jQp9grXaqqOLqC7cA==}
+ peerDependencies:
+ '@tiptap/pm': ^2.7.0
+
'@tiptap/extension-bold@2.11.5':
resolution: {integrity: sha512-OAq03MHEbl7MtYCUzGuwb0VpOPnM0k5ekMbEaRILFU5ZC7cEAQ36XmPIw1dQayrcuE8GZL35BKub2qtRxyC9iA==}
peerDependencies:
@@ -8683,6 +10346,9 @@ packages:
'@transloadit/prettier-bytes@0.3.5':
resolution: {integrity: sha512-xF4A3d/ZyX2LJWeQZREZQw+qFX4TGQ8bGVP97OLRt6sPO6T0TNHBFTuRHOJh7RNmYOBmQ9MHxpolD9bXihpuVA==}
+ '@ts-morph/common@0.27.0':
+ resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
+
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -8845,8 +10511,11 @@ packages:
'@types/node@22.13.13':
resolution: {integrity: sha512-ClsL5nMwKaBRwPcCvH8E7+nU4GxHVx1axNvMZTFHMEfNI7oahimt26P5zjVCRrjiIWj6YFXfE1v3dEp94wLcGQ==}
- '@types/node@22.14.1':
- resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
+ '@types/node@22.15.2':
+ resolution: {integrity: sha512-uKXqKN9beGoMdBfcaTY1ecwz6ctxuJAcUlwE55938g0ZJ8lRxwAZqRz2AJ4pzpt5dHdTPMB863UZ0ESiFUcP7A==}
+
+ '@types/node@24.0.10':
+ resolution: {integrity: sha512-ENHwaH+JIRTDIEEbDK6QSQntAYGtbvdDXnMXnZaZ6k13Du1dPMmprkEHIL7ok2Wl2aZevetwTAb5S+7yIF+enA==}
'@types/nodemailer@6.4.17':
resolution: {integrity: sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww==}
@@ -8874,6 +10543,11 @@ packages:
peerDependencies:
'@types/react': ^18.0.0
+ '@types/react-dom@19.1.6':
+ resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==}
+ peerDependencies:
+ '@types/react': ^19.0.0
+
'@types/react-transition-group@4.4.12':
resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==}
peerDependencies:
@@ -8882,6 +10556,9 @@ packages:
'@types/react@18.3.20':
resolution: {integrity: sha512-IPaCZN7PShZK/3t6Q87pfTkRm6oLTd4vztyoj+cbHUF1g3FfVb2tFIL79uCRKEfv16AhqDMBywP2VW3KIZUvcg==}
+ '@types/react@19.1.8':
+ resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==}
+
'@types/retry@0.12.2':
resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==}
@@ -8915,6 +10592,9 @@ packages:
'@types/uuid@8.3.4':
resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
+ '@types/uuid@9.0.8':
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -8985,6 +10665,11 @@ packages:
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@typescript/vfs@1.6.1':
+ resolution: {integrity: sha512-JwoxboBh7Oz1v38tPbkrZ62ZXNHAk9bJ7c9x0eI5zBfBnBYGhURdbnh7Z4smN/MV48Y5OCcZb58n972UtbazsA==}
+ peerDependencies:
+ typescript: '*'
+
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
@@ -9189,6 +10874,10 @@ packages:
resolution: {integrity: sha512-GFXtgid3+TcVHTd668a10vGpzAh4Ty/yBZPRxKf1UicI8Vi8EthfvSxcaLW0KvQBBe1+d7TcjecLZHRT8JzQ4g==}
engines: {node: '>=16'}
+ '@vercel/og@0.6.8':
+ resolution: {integrity: sha512-e4kQK9mP8ntpo3dACWirGod/hHv4qO5JMj9a/0a2AZto7b4persj5YP7t1Er372gTtYFTYxNhMx34jRvHooglw==}
+ engines: {node: '>=16'}
+
'@vitejs/plugin-react@4.3.4':
resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -9596,6 +11285,9 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-react-compiler@19.1.0-rc.2:
+ resolution: {integrity: sha512-kSNA//p5fMO6ypG8EkEVPIqAjwIXm5tMjfD1XRPL/sRjYSbJ6UsvORfaeolNWnZ9n310aM0xJP7peW26BuCVzA==}
+
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
@@ -9628,12 +11320,18 @@ packages:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
+ better-auth@1.2.12:
+ resolution: {integrity: sha512-YicCyjQ+lxb7YnnaCewrVOjj3nPVa0xcfrOJK7k5MLMX9Mt9UnJ8GYaVQNHOHLyVxl92qc3C758X1ihqAUzm4w==}
+
better-auth@1.2.7:
resolution: {integrity: sha512-2hCB263GSrgetsMUZw8vv9O1e4S4AlYJW3P4e8bX9u3Q3idv4u9BzDFCblpTLuL4YjYovghMCN0vurAsctXOAQ==}
better-call@1.0.8:
resolution: {integrity: sha512-/PV8JLqDRUN7JyBPbklVsS/8E4SO3pnf8hbpa8B7xrBrr+BBYpeOAxoqtnsyk/pRs35vNB4MZx8cn9dBuNlLDA==}
+ better-sqlite3@11.10.0:
+ resolution: {integrity: sha512-EwhOpyXiOEL/lKzHz9AW1msWFNzGc/z+LzeB3/jnFJpxu+th2yqvzsSWas1v9jgs9+xiXJcD5A8CJxAG2TaghQ==}
+
better-sqlite3@11.9.1:
resolution: {integrity: sha512-Ba0KR+Fzxh2jDRhdg6TSH0SJGzb8C0aBY4hR8w8madIdIzzC6Y1+kx5qR6eS1Z+Gy20h6ZU28aeyg0z1VIrShQ==}
@@ -9820,6 +11518,10 @@ packages:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
+ chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
+
chrome-trace-event@1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
@@ -9898,6 +11600,12 @@ packages:
react: ^18 || ^19 || ^19.0.0-rc
react-dom: ^18 || ^19 || ^19.0.0-rc
+ code-block-writer@13.0.3:
+ resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
+
+ collapse-white-space@2.1.0:
+ resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==}
+
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -10426,6 +12134,10 @@ packages:
resolution: {integrity: sha512-IQwbSLBEMKNJmP9CDqSu3vJDhJps6tv/DlxsxuvfTclapd0JPCz1IFJTU//WdTjUenPMFaUD2Kg1nkQb/BWPIg==}
engines: {node: '>=10'}
+ docx@9.5.1:
+ resolution: {integrity: sha512-ABDI7JEirFD2+bHhOBlsGZxaG1UgZb2M/QMKhLSDGgVNhxDesTCDcP+qoDnDGjZ4EOXTRfUjUgwHVuZ6VSTfWQ==}
+ engines: {node: '>=10'}
+
dom-accessibility-api@0.5.16:
resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
@@ -10571,6 +12283,12 @@ packages:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
+ esast-util-from-estree@2.0.0:
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
+
+ esast-util-from-js@2.0.1:
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
+
esbuild@0.20.0:
resolution: {integrity: sha512-6iwE3Y2RVYCME1jLpBqq7LQWK3MW6vjV2bZy6gt/WrqkY+WE74Spyc0ThAOYpMtITvnjX09CrC6ym7A/m9mebA==}
engines: {node: '>=12'}
@@ -10591,6 +12309,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.6:
+ resolution: {integrity: sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -10786,22 +12509,43 @@ packages:
estree-util-attach-comments@2.1.1:
resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
+ estree-util-attach-comments@3.0.0:
+ resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
+
estree-util-build-jsx@2.2.2:
resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
+ estree-util-build-jsx@3.0.1:
+ resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==}
+
estree-util-is-identifier-name@2.1.0:
resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
+ estree-util-is-identifier-name@3.0.0:
+ resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+
+ estree-util-scope@1.0.0:
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
+
estree-util-to-js@1.2.0:
resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
+ estree-util-to-js@2.0.0:
+ resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
+
estree-util-value-to-estree@1.3.0:
resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==}
engines: {node: '>=12.0.0'}
+ estree-util-value-to-estree@3.4.0:
+ resolution: {integrity: sha512-Zlp+gxis+gCfK12d3Srl2PdX2ybsEA8ZYy6vQGVQTNNYLEGRQQ56XB64bjemN8kxIKXP1nC9ip4Z+ILy9LGzvQ==}
+
estree-util-visit@1.2.1:
resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
+ estree-util-visit@2.0.0:
+ resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
+
estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
@@ -11019,6 +12763,83 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
+ fumadocs-core@15.6.1:
+ resolution: {integrity: sha512-5DXVptT+LN145xUHzUy07IAtaBYBoWOVMAKbUQQhcGNxhXPvbVAT9bIHnfjklU+yyosc8Rhn/gxSrKdlrn9HtQ==}
+ peerDependencies:
+ '@oramacloud/client': 1.x.x || 2.x.x
+ '@types/react': '*'
+ algoliasearch: 5.x.x
+ next: 14.x.x || 15.x.x
+ react: 18.x.x || 19.x.x
+ react-dom: 18.x.x || 19.x.x
+ peerDependenciesMeta:
+ '@oramacloud/client':
+ optional: true
+ '@types/react':
+ optional: true
+ algoliasearch:
+ optional: true
+ next:
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
+ fumadocs-docgen@2.1.0:
+ resolution: {integrity: sha512-OX1JKA3dqIuUxwpt66i6GyT2ZiYT937dvTR3vuHtUi9zx9Nft03h9Z2aLuVcdTaH5WmLdGvZUTYHPyYa9xeHrw==}
+
+ fumadocs-mdx@11.6.10:
+ resolution: {integrity: sha512-W13mGPKDviKHq1FdxJqbBmA8vQ0niEISUUREJU8u3q1g5lQgnZ9whZjTnvijnqiGNbBsjb8CmjU20OlmwG6nhA==}
+ hasBin: true
+ peerDependencies:
+ '@fumadocs/mdx-remote': ^1.2.0
+ fumadocs-core: ^14.0.0 || ^15.0.0
+ next: ^15.3.0
+ vite: 6.x.x
+ peerDependenciesMeta:
+ '@fumadocs/mdx-remote':
+ optional: true
+ next:
+ optional: true
+ vite:
+ optional: true
+
+ fumadocs-twoslash@3.1.4:
+ resolution: {integrity: sha512-mD3byKodAZ9c7OG6coppMUg/KcaYlM5DznTR4Yh0/adFkaToFYJcK/cJHHc/hHSou9WOXlwdSOrDUdMny8Qugw==}
+ peerDependencies:
+ '@types/react': '*'
+ fumadocs-ui: ^15.0.0
+ react: 18.x.x || 19.x.x
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ fumadocs-typescript@4.0.6:
+ resolution: {integrity: sha512-cr2GPMH1TSHQJXRBDbxWGMXpOd7F5uLU8Y2xMOXMc6kQqEpvM2KYlq+QJ/lHTfXmhNgJBr/iKZJtQ2xHSWxaaQ==}
+ peerDependencies:
+ '@types/react': '*'
+ typescript: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ fumadocs-ui@15.6.1:
+ resolution: {integrity: sha512-3O0uTMeU1ohVQE7HTV7+8I/1IIlgJPIBFOHjoQkRaXTf41LJ7EKfNHue80BOuhG4vyeL/Sx184v2hjljuKrX3Q==}
+ peerDependencies:
+ '@types/react': '*'
+ next: 14.x.x || 15.x.x
+ react: 18.x.x || 19.x.x
+ react-dom: 18.x.x || 19.x.x
+ tailwindcss: ^3.4.14 || ^4.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ next:
+ optional: true
+ tailwindcss:
+ optional: true
+
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
@@ -11267,15 +13088,24 @@ packages:
hast-util-to-estree@2.3.3:
resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==}
+ hast-util-to-estree@3.1.3:
+ resolution: {integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==}
+
hast-util-to-html@9.0.5:
resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
+ hast-util-to-jsx-runtime@2.3.6:
+ resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
+
hast-util-to-mdast@10.1.2:
resolution: {integrity: sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ==}
hast-util-to-parse5@8.0.0:
resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==}
+ hast-util-to-string@3.0.1:
+ resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==}
+
hast-util-to-text@4.0.2:
resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
@@ -11380,6 +13210,11 @@ packages:
image-meta@0.2.1:
resolution: {integrity: sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==}
+ image-size@2.0.2:
+ resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==}
+ engines: {node: '>=16.x'}
+ hasBin: true
+
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
@@ -11390,8 +13225,8 @@ packages:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
- import-in-the-middle@1.13.1:
- resolution: {integrity: sha512-k2V9wNm9B+ysuelDTHjI9d5KPc4l8zAZTGqj+pcynvWkypZd857ryzN8jNC7Pg2YZXNMJcHRPpaDyCBbNyVRpA==}
+ import-in-the-middle@1.14.2:
+ resolution: {integrity: sha512-5tCuY9BV8ujfOpwtAGgsTx9CGUapcFMEEyByLv1B+v2+6DhAcw+Zr0nhQT7uwaZ7DiourxFEscghOR8e1aPLQw==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -11410,6 +13245,9 @@ packages:
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
+ inline-style-parser@0.2.4:
+ resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
+
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -11753,6 +13591,9 @@ packages:
jose@5.10.0:
resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==}
+ jose@6.0.11:
+ resolution: {integrity: sha512-QxG7EaliDARm1O1S8BGakqncGT9s25bKL1WSf6/oa17Tkqwi8D2ZNglqCF+DsYF88/rV66Q/Q2mFAy697E1DUg==}
+
js-base64@3.7.7:
resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
@@ -11862,6 +13703,10 @@ packages:
resolution: {integrity: sha512-FIyV/64EkKhJmjgC0g2hygpBv5RNWVPyNCqSAD7eTCv6eFWNIi4PN1UvdSJGicN/o35bnevgis4Y0UDC0qi8jQ==}
engines: {node: '>=14.0.0'}
+ kysely@0.28.2:
+ resolution: {integrity: sha512-4YAVLoF0Sf0UTqlhgQMFU9iQECdah7n+13ANkiuVfRvlK+uI0Etbgd7bVP36dKlG+NXWbhGua8vnGt+sdhvT7A==}
+ engines: {node: '>=18.0.0'}
+
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -12062,6 +13907,10 @@ packages:
resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
engines: {node: '>=0.10.0'}
+ markdown-extensions@2.0.0:
+ resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
+ engines: {node: '>=16'}
+
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
@@ -12143,15 +13992,27 @@ packages:
mdast-util-mdx-expression@1.3.2:
resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
+ mdast-util-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
+
mdast-util-mdx-jsx@2.1.4:
resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
+ mdast-util-mdx-jsx@3.2.0:
+ resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
+
mdast-util-mdx@2.0.1:
resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
+ mdast-util-mdx@3.0.0:
+ resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==}
+
mdast-util-mdxjs-esm@1.3.1:
resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
+ mdast-util-mdxjs-esm@2.0.1:
+ resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
+
mdast-util-phrasing@3.0.1:
resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
@@ -12249,18 +14110,33 @@ packages:
micromark-extension-mdx-expression@1.0.8:
resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==}
+ micromark-extension-mdx-expression@3.0.1:
+ resolution: {integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==}
+
micromark-extension-mdx-jsx@1.0.5:
resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==}
+ micromark-extension-mdx-jsx@3.0.2:
+ resolution: {integrity: sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==}
+
micromark-extension-mdx-md@1.0.1:
resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==}
+ micromark-extension-mdx-md@2.0.0:
+ resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==}
+
micromark-extension-mdxjs-esm@1.0.5:
resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==}
+ micromark-extension-mdxjs-esm@3.0.0:
+ resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==}
+
micromark-extension-mdxjs@1.0.1:
resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==}
+ micromark-extension-mdxjs@3.0.0:
+ resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==}
+
micromark-factory-destination@1.1.0:
resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
@@ -12276,6 +14152,9 @@ packages:
micromark-factory-mdx-expression@1.0.9:
resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==}
+ micromark-factory-mdx-expression@2.0.3:
+ resolution: {integrity: sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==}
+
micromark-factory-space@1.1.0:
resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
@@ -12339,6 +14218,9 @@ packages:
micromark-util-events-to-acorn@1.2.3:
resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==}
+ micromark-util-events-to-acorn@2.0.3:
+ resolution: {integrity: sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==}
+
micromark-util-html-tag-name@1.2.0:
resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
@@ -12492,6 +14374,10 @@ packages:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
+ minizlib@3.0.2:
+ resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
+ engines: {node: '>= 18'}
+
mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
@@ -12500,6 +14386,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ mkdirp@3.0.1:
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
module-details-from-path@1.0.3:
resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==}
@@ -12581,6 +14472,10 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -12605,6 +14500,12 @@ packages:
react: '*'
react-dom: '*'
+ next-themes@0.4.6:
+ resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==}
+ peerDependencies:
+ react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
+
next@15.2.4:
resolution: {integrity: sha512-VwL+LAaPSxEkd3lU2xWbgEOtrM8oedmyhBqaVNmgKB+GvZlCy9rgaEc+y2on0wv+l0oSFqLtYD6dcC1eAedUaQ==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
@@ -12647,6 +14548,27 @@ packages:
sass:
optional: true
+ next@15.4.0-canary.116:
+ resolution: {integrity: sha512-DOPjmKrclD13FoFuab3OlwnfkEMiW7ma4y2ZR3YtBcBFI7j+F34YZ1OJK9OBOm9K4kFf5WRoMQNGz5ve8X2Q7g==}
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.51.1
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@playwright/test':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+ sass:
+ optional: true
+
nextra-theme-docs@2.13.4:
resolution: {integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==}
peerDependencies:
@@ -12728,6 +14650,10 @@ packages:
resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ npm-to-yarn@3.0.1:
+ resolution: {integrity: sha512-tt6PvKu4WyzPwWUzy/hvPFqn+uwXO0K1ZHka8az3NnrhWJDmSqI8ncWq0fkL0k/lmmi5tAC11FXwXuh0rFbt1A==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
npmlog@5.0.1:
resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==}
deprecated: This package is no longer supported.
@@ -12808,12 +14734,18 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
+ oniguruma-parser@0.12.1:
+ resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==}
+
oniguruma-parser@0.5.4:
resolution: {integrity: sha512-yNxcQ8sKvURiTwP0mV6bLQCYE7NKfKRRWunhbZnXgxSmB1OXa1lHrN3o4DZd+0Si0kU5blidK7BcROO8qv5TZA==}
oniguruma-to-es@4.1.0:
resolution: {integrity: sha512-SNwG909cSLo4vPyyPbU/VJkEc9WOXqu2ycBlfd1UCXLqk1IijcQktSBb2yRQ2UFPsDhpkaf+C1dtT3PkLK/yWA==}
+ oniguruma-to-es@4.3.3:
+ resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==}
+
open@10.1.2:
resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
engines: {node: '>=18'}
@@ -12852,6 +14784,10 @@ packages:
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
engines: {node: '>= 0.4'}
+ oxc-transform@0.75.1:
+ resolution: {integrity: sha512-kuyQEMzhz6cpBwFifTxgLTw8kgn68h5jP46ChIXVbxN+J75q7cTb95YNYh0FIcdWFmAJOZGhgYtQLPGKqxJN1Q==}
+ engines: {node: '>=14.0.0'}
+
p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
@@ -12921,6 +14857,9 @@ packages:
resolution: {integrity: sha512-qY9WfnEsOPVIYMmPuFye4H0V9JqKt3/Ylu2IBlJNEGTI4OQ9MJp/D24mznE5/KorfaL35MQSGmSuYbrOHa4Jwg==}
hasBin: true
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
@@ -13118,6 +15057,10 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
+ postcss-selector-parser@7.1.0:
+ resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
+ engines: {node: '>=4'}
+
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
@@ -13129,6 +15072,10 @@ packages:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ engines: {node: ^10 || ^12 || >=14}
+
postgres-array@2.0.0:
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
engines: {node: '>=4'}
@@ -13425,6 +15372,11 @@ packages:
peerDependencies:
react: ^18.3.1
+ react-dom@19.1.0:
+ resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ peerDependencies:
+ react: ^19.1.0
+
react-element-to-jsx-string@15.0.0:
resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
@@ -13472,6 +15424,12 @@ packages:
react-is@19.0.0:
resolution: {integrity: sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==}
+ react-medium-image-zoom@5.2.14:
+ resolution: {integrity: sha512-nfTVYcAUnBzXQpPDcZL+cG/e6UceYUIG+zDcnemL7jtAqbJjVVkA85RgneGtJeni12dTyiRPZVM6Szkmwd/o8w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
react-number-format@5.4.3:
resolution: {integrity: sha512-VCY5hFg/soBighAoGcdE+GagkJq0230qN6jcS5sp8wQX1qy1fYN/RX7/BXkrs0oyzzwqR8/+eSUrqXbGeywdUQ==}
peerDependencies:
@@ -13499,8 +15457,18 @@ packages:
'@types/react':
optional: true
- react-remove-scroll@2.6.3:
- resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
+ react-remove-scroll@2.6.3:
+ resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-remove-scroll@2.7.1:
+ resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': '*'
@@ -13538,6 +15506,12 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-textarea-autosize@8.5.9:
+ resolution: {integrity: sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
react-transition-group@4.4.5:
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies:
@@ -13548,6 +15522,10 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
+ react@19.1.0:
+ resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ engines: {node: '>=0.10.0'}
+
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -13569,6 +15547,18 @@ packages:
reading-time@1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
+ recma-build-jsx@1.0.0:
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
+
+ recma-jsx@1.0.0:
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
+
+ recma-parse@1.0.0:
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
+
+ recma-stringify@1.0.0:
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
+
recrawl-sync@2.2.3:
resolution: {integrity: sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==}
@@ -13641,6 +15631,9 @@ packages:
rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
rehype-remark@10.0.0:
resolution: {integrity: sha512-+aDXY/icqMFOafJQomVjxe3BAP7aR3lIsQ3GV6VIwpbCD2nvNFOXjGvotMe5p0Ny+Gt6L13DhEf/FjOOpTuUbQ==}
@@ -13659,6 +15652,9 @@ packages:
remark-mdx@2.3.0:
resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
+ remark-mdx@3.1.0:
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
+
remark-parse@10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
@@ -13674,12 +15670,18 @@ packages:
remark-rehype@11.1.1:
resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
+ remark-rehype@11.1.2:
+ resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
+
remark-stringify@10.0.3:
resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==}
remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
+ remark@15.0.1:
+ resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==}
+
remove-accents@0.5.0:
resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==}
@@ -13774,6 +15776,11 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.35.0:
+ resolution: {integrity: sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
rollup@4.37.0:
resolution: {integrity: sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -13836,6 +15843,10 @@ packages:
resolution: {integrity: sha512-0SbjchvDrDbeXeQgxWVtSWxww7qcFgk3DtSE2/blHOSlLsSHwIqO2fCrtVa/EudJ7Eqno8A33QNx56rUyGbLuw==}
engines: {node: '>=16'}
+ satori@0.12.2:
+ resolution: {integrity: sha512-3C/laIeE6UUe9A+iQ0A48ywPVCCMKCNSTU5Os101Vhgsjd3AAxGNjyq0uAA8kulMPK5n0csn8JlxPN9riXEjLA==}
+ engines: {node: '>=16'}
+
sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
@@ -13849,6 +15860,9 @@ packages:
scheduler@0.25.0-rc-603e6108-20241029:
resolution: {integrity: sha512-pFwF6H1XrSdYYNLfOcGlM28/j8CGLu8IvdrxqhjWULe2bPcKiKW4CV+OWqR/9fT52mywx65l7ysNkjLKBda7eA==}
+ scheduler@0.26.0:
+ resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+
schema-utils@3.3.0:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
@@ -13942,6 +15956,9 @@ packages:
shiki@0.14.7:
resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
+ shiki@3.7.0:
+ resolution: {integrity: sha512-ZcI4UT9n6N2pDuM2n3Jbk0sR4Swzq43nLPgS/4h0E3B/NrFn2HKElrDtceSf8Zx/OWYOo7G1SAtBLypCp+YXqg==}
+
shimmer@1.2.1:
resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
@@ -14196,9 +16213,15 @@ packages:
strnum@1.1.2:
resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==}
+ style-to-js@1.1.17:
+ resolution: {integrity: sha512-xQcBGDxJb6jjFCTzvQtfiPn6YvvP2O8U1MDIPNfJQlWMYfktPy+iGsHE7cssjs7y84d9fQaK4UF3RIJaAHSoYA==}
+
style-to-object@0.4.4:
resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==}
+ style-to-object@1.0.9:
+ resolution: {integrity: sha512-G4qppLgKu/k6FwRpHiGiKPaPTFcG3g4wNVX/Qsfu+RqQM30E7Tyu/TEgxcL9PNLF5pdRLwQdE3YKKf+KF2Dzlw==}
+
styled-jsx@5.1.6:
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
@@ -14260,6 +16283,9 @@ packages:
tailwind-merge@2.6.0:
resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
+ tailwind-merge@3.3.1:
+ resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
+
tailwindcss-animate@1.0.7:
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
@@ -14270,6 +16296,9 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
+ tailwindcss@4.1.11:
+ resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==}
+
tapable@2.2.2:
resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
engines: {node: '>=6'}
@@ -14285,6 +16314,10 @@ packages:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
+ tar@7.4.3:
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
+ engines: {node: '>=18'}
+
terser-webpack-plugin@5.3.14:
resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
engines: {node: '>= 10.13.0'}
@@ -14335,6 +16368,9 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+ tinyexec@1.0.1:
+ resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
+
tinyglobby@0.2.12:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
engines: {node: '>=12.0.0'}
@@ -14343,6 +16379,10 @@ packages:
resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ engines: {node: '>=12.0.0'}
+
tinypool@1.0.2:
resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -14424,6 +16464,9 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
+ ts-morph@26.0.0:
+ resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==}
+
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
@@ -14451,6 +16494,14 @@ packages:
tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+ twoslash-protocol@0.3.2:
+ resolution: {integrity: sha512-lWIL1dGcMr7cywSLSn8ufCoeyPab3bIwPE6DmAlQYQSMjJUgzzRvSz/LsQ179eNJafRghYDlIgF2v7pmsjV3Ww==}
+
+ twoslash@0.3.2:
+ resolution: {integrity: sha512-TB+ja888uMKhbng8HzpTHm+JfxIWbngIHPy4nKEt2N93MFjpqmkqn8ppnPhIKj4kDnrohEsiogMF7T1gMY06rw==}
+ peerDependencies:
+ typescript: ^5.5.0
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -14500,6 +16551,11 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
@@ -14519,6 +16575,9 @@ packages:
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
+ undici-types@7.8.0:
+ resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==}
+
undici@5.29.0:
resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==}
engines: {node: '>=14.0'}
@@ -14570,6 +16629,9 @@ packages:
unist-util-position-from-estree@1.1.2:
resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
+ unist-util-position-from-estree@2.0.0:
+ resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==}
+
unist-util-position@4.0.4:
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
@@ -15130,6 +17192,10 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
@@ -15151,6 +17217,10 @@ packages:
resolution: {integrity: sha512-xn/pYLTZa3uD1uDG8lpxfLRo5SR/rp0frdASOl2a71aYNvUXdWcLtVL91s2y7j+Q8ppmjZ9H3jsGVgoFMbT2VA==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
+ yjs@13.6.27:
+ resolution: {integrity: sha512-OIDwaflOaq4wC6YlPBy2L6ceKeKuF7DeTxx+jPzv1FHn9tCZ0ZwSRnUBxD05E3yed46fv/FWJbvR+Ud7x0L7zw==}
+ engines: {node: '>=16.0.0', npm: '>=8.0.0'}
+
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -15180,6 +17250,9 @@ packages:
zod@3.24.2:
resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
+ zod@3.25.75:
+ resolution: {integrity: sha512-OhpzAmVzabPOL6C3A3gpAifqr9MqihV/Msx3gor2b2kviCgcb+HM9SEOpMWwwNp9MRunWnhtAKUoo0AHhjyPPg==}
+
zustand@5.0.3:
resolution: {integrity: sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==}
engines: {node: '>=12.20.0'}
@@ -15198,80 +17271,108 @@ packages:
use-sync-external-store:
optional: true
+ zustand@5.0.6:
+ resolution: {integrity: sha512-ihAqNeUVhe0MAD+X8M5UzqyZ9k3FFZLBTtqo6JLPwV53cbRB/mJwBI0PxcIgqhBBHlEs8G45OTDTMq3gNcLq3A==}
+ engines: {node: '>=12.20.0'}
+ peerDependencies:
+ '@types/react': '>=18.0.0'
+ immer: '>=9.0.6'
+ react: '>=18.0.0'
+ use-sync-external-store: '>=1.2.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ immer:
+ optional: true
+ react:
+ optional: true
+ use-sync-external-store:
+ optional: true
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@ai-sdk/anthropic@1.2.11(zod@3.24.2)':
+ '@ai-sdk/anthropic@1.2.11(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/anthropic@1.2.12(zod@3.24.2)':
+ '@ai-sdk/anthropic@1.2.12(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/google@1.2.20(zod@3.24.2)':
+ '@ai-sdk/google@1.2.20(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/groq@1.2.9(zod@3.24.2)':
+ '@ai-sdk/groq@1.2.9(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/mistral@1.2.8(zod@3.24.2)':
+ '@ai-sdk/mistral@1.2.8(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/openai-compatible@0.2.14(zod@3.24.2)':
+ '@ai-sdk/openai-compatible@0.2.14(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/openai@1.3.22(zod@3.24.2)':
+ '@ai-sdk/openai@1.3.22(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
- '@ai-sdk/provider-utils@2.2.8(zod@3.24.2)':
+ '@ai-sdk/provider-utils@2.2.8(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
nanoid: 3.3.11
secure-json-parse: 2.7.0
- zod: 3.24.2
+ zod: 3.25.75
'@ai-sdk/provider@1.1.3':
dependencies:
json-schema: 0.4.0
- '@ai-sdk/react@1.2.12(react@18.3.1)(zod@3.24.2)':
+ '@ai-sdk/react@1.2.12(react@18.3.1)(zod@3.25.75)':
dependencies:
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- '@ai-sdk/ui-utils': 1.2.11(zod@3.24.2)
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ '@ai-sdk/ui-utils': 1.2.11(zod@3.25.75)
react: 18.3.1
swr: 2.3.3(react@18.3.1)
throttleit: 2.1.0
optionalDependencies:
- zod: 3.24.2
+ zod: 3.25.75
+
+ '@ai-sdk/react@1.2.12(react@19.1.0)(zod@3.25.75)':
+ dependencies:
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ '@ai-sdk/ui-utils': 1.2.11(zod@3.25.75)
+ react: 19.1.0
+ swr: 2.3.3(react@19.1.0)
+ throttleit: 2.1.0
+ optionalDependencies:
+ zod: 3.25.75
- '@ai-sdk/ui-utils@1.2.11(zod@3.24.2)':
+ '@ai-sdk/ui-utils@1.2.11(zod@3.25.75)':
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- zod: 3.24.2
- zod-to-json-schema: 3.24.5(zod@3.24.2)
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ zod: 3.25.75
+ zod-to-json-schema: 3.24.5(zod@3.25.75)
'@alloc/quick-lru@5.2.0': {}
@@ -15307,20 +17408,20 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
tslib: 2.8.1
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
tslib: 2.8.1
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
'@aws-sdk/util-locate-window': 3.723.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -15330,7 +17431,7 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
'@aws-sdk/util-locate-window': 3.723.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -15338,7 +17439,7 @@ snapshots:
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -15347,7 +17448,7 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.775.0
+ '@aws-sdk/types': 3.840.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -15412,6 +17513,69 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/client-s3@3.842.0':
+ dependencies:
+ '@aws-crypto/sha1-browser': 5.2.0
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/credential-provider-node': 3.840.0
+ '@aws-sdk/middleware-bucket-endpoint': 3.840.0
+ '@aws-sdk/middleware-expect-continue': 3.840.0
+ '@aws-sdk/middleware-flexible-checksums': 3.840.0
+ '@aws-sdk/middleware-host-header': 3.840.0
+ '@aws-sdk/middleware-location-constraint': 3.840.0
+ '@aws-sdk/middleware-logger': 3.840.0
+ '@aws-sdk/middleware-recursion-detection': 3.840.0
+ '@aws-sdk/middleware-sdk-s3': 3.840.0
+ '@aws-sdk/middleware-ssec': 3.840.0
+ '@aws-sdk/middleware-user-agent': 3.840.0
+ '@aws-sdk/region-config-resolver': 3.840.0
+ '@aws-sdk/signature-v4-multi-region': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-endpoints': 3.840.0
+ '@aws-sdk/util-user-agent-browser': 3.840.0
+ '@aws-sdk/util-user-agent-node': 3.840.0
+ '@aws-sdk/xml-builder': 3.821.0
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/core': 3.6.0
+ '@smithy/eventstream-serde-browser': 4.0.4
+ '@smithy/eventstream-serde-config-resolver': 4.1.2
+ '@smithy/eventstream-serde-node': 4.0.4
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/hash-blob-browser': 4.0.4
+ '@smithy/hash-node': 4.0.4
+ '@smithy/hash-stream-node': 4.0.4
+ '@smithy/invalid-dependency': 4.0.4
+ '@smithy/md5-js': 4.0.4
+ '@smithy/middleware-content-length': 4.0.4
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-retry': 4.1.14
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-body-length-node': 4.0.0
+ '@smithy/util-defaults-mode-browser': 4.0.21
+ '@smithy/util-defaults-mode-node': 4.0.21
+ '@smithy/util-endpoints': 3.0.6
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
+ '@smithy/util-stream': 4.2.2
+ '@smithy/util-utf8': 4.0.0
+ '@smithy/util-waiter': 4.0.6
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/client-sso@3.775.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -15426,30 +17590,73 @@ snapshots:
'@aws-sdk/util-endpoints': 3.775.0
'@aws-sdk/util-user-agent-browser': 3.775.0
'@aws-sdk/util-user-agent-node': 3.775.0
- '@smithy/config-resolver': 4.1.0
- '@smithy/core': 3.2.0
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/hash-node': 4.0.2
- '@smithy/invalid-dependency': 4.0.2
- '@smithy/middleware-content-length': 4.0.2
- '@smithy/middleware-endpoint': 4.1.0
- '@smithy/middleware-retry': 4.1.0
- '@smithy/middleware-serde': 4.0.3
- '@smithy/middleware-stack': 4.0.2
- '@smithy/node-config-provider': 4.0.2
- '@smithy/node-http-handler': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.0
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/core': 3.6.0
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/hash-node': 4.0.4
+ '@smithy/invalid-dependency': 4.0.4
+ '@smithy/middleware-content-length': 4.0.4
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-retry': 4.1.14
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
'@smithy/util-base64': 4.0.0
'@smithy/util-body-length-browser': 4.0.0
'@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.8
- '@smithy/util-defaults-mode-node': 4.0.8
- '@smithy/util-endpoints': 3.0.2
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.2
+ '@smithy/util-defaults-mode-browser': 4.0.21
+ '@smithy/util-defaults-mode-node': 4.0.21
+ '@smithy/util-endpoints': 3.0.6
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sso@3.840.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/middleware-host-header': 3.840.0
+ '@aws-sdk/middleware-logger': 3.840.0
+ '@aws-sdk/middleware-recursion-detection': 3.840.0
+ '@aws-sdk/middleware-user-agent': 3.840.0
+ '@aws-sdk/region-config-resolver': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-endpoints': 3.840.0
+ '@aws-sdk/util-user-agent-browser': 3.840.0
+ '@aws-sdk/util-user-agent-node': 3.840.0
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/core': 3.6.0
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/hash-node': 4.0.4
+ '@smithy/invalid-dependency': 4.0.4
+ '@smithy/middleware-content-length': 4.0.4
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-retry': 4.1.14
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-body-length-node': 4.0.0
+ '@smithy/util-defaults-mode-browser': 4.0.21
+ '@smithy/util-defaults-mode-node': 4.0.21
+ '@smithy/util-endpoints': 3.0.6
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
transitivePeerDependencies:
@@ -15469,25 +17676,64 @@ snapshots:
fast-xml-parser: 4.4.1
tslib: 2.8.1
+ '@aws-sdk/core@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/xml-builder': 3.821.0
+ '@smithy/core': 3.6.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/property-provider': 4.0.4
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/signature-v4': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-utf8': 4.0.0
+ fast-xml-parser: 4.4.1
+ tslib: 2.8.1
+
'@aws-sdk/credential-provider-env@3.775.0':
dependencies:
'@aws-sdk/core': 3.775.0
'@aws-sdk/types': 3.775.0
'@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-env@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@aws-sdk/credential-provider-http@3.775.0':
dependencies:
'@aws-sdk/core': 3.775.0
'@aws-sdk/types': 3.775.0
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/node-http-handler': 4.0.4
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/node-http-handler': 4.0.6
'@smithy/property-provider': 4.0.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.0
- '@smithy/types': 4.2.0
- '@smithy/util-stream': 4.2.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/util-stream': 4.2.2
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-http@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/property-provider': 4.0.4
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/util-stream': 4.2.2
tslib: 2.8.1
'@aws-sdk/credential-provider-ini@3.775.0':
@@ -15503,7 +17749,25 @@ snapshots:
'@smithy/credential-provider-imds': 4.0.2
'@smithy/property-provider': 4.0.2
'@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/credential-provider-ini@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/credential-provider-env': 3.840.0
+ '@aws-sdk/credential-provider-http': 3.840.0
+ '@aws-sdk/credential-provider-process': 3.840.0
+ '@aws-sdk/credential-provider-sso': 3.840.0
+ '@aws-sdk/credential-provider-web-identity': 3.840.0
+ '@aws-sdk/nested-clients': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/credential-provider-imds': 4.0.6
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -15525,13 +17789,39 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/credential-provider-node@3.840.0':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.840.0
+ '@aws-sdk/credential-provider-http': 3.840.0
+ '@aws-sdk/credential-provider-ini': 3.840.0
+ '@aws-sdk/credential-provider-process': 3.840.0
+ '@aws-sdk/credential-provider-sso': 3.840.0
+ '@aws-sdk/credential-provider-web-identity': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/credential-provider-imds': 4.0.6
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/credential-provider-process@3.775.0':
dependencies:
'@aws-sdk/core': 3.775.0
'@aws-sdk/types': 3.775.0
'@smithy/property-provider': 4.0.2
'@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-process@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@aws-sdk/credential-provider-sso@3.775.0':
@@ -15542,7 +17832,20 @@ snapshots:
'@aws-sdk/types': 3.775.0
'@smithy/property-provider': 4.0.2
'@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/credential-provider-sso@3.840.0':
+ dependencies:
+ '@aws-sdk/client-sso': 3.840.0
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/token-providers': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -15553,7 +17856,18 @@ snapshots:
'@aws-sdk/nested-clients': 3.775.0
'@aws-sdk/types': 3.775.0
'@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/credential-provider-web-identity@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/nested-clients': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -15568,6 +17882,16 @@ snapshots:
'@smithy/util-config-provider': 4.0.0
tslib: 2.8.1
+ '@aws-sdk/middleware-bucket-endpoint@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-arn-parser': 3.804.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ '@smithy/util-config-provider': 4.0.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-expect-continue@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
@@ -15575,6 +17899,13 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-expect-continue@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-flexible-checksums@3.775.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
@@ -15591,6 +17922,22 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@aws-sdk/middleware-flexible-checksums@3.840.0':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@aws-crypto/crc32c': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/is-array-buffer': 4.0.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-stream': 4.2.2
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-host-header@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
@@ -15598,18 +17945,37 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-host-header@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-location-constraint@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-location-constraint@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-logger@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-logger@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-recursion-detection@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
@@ -15617,6 +17983,13 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-recursion-detection@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-sdk-s3@3.775.0':
dependencies:
'@aws-sdk/core': 3.775.0
@@ -15634,12 +18007,35 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@aws-sdk/middleware-sdk-s3@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-arn-parser': 3.804.0
+ '@smithy/core': 3.6.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/signature-v4': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/util-config-provider': 4.0.0
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-stream': 4.2.2
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-ssec@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-ssec@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/middleware-user-agent@3.775.0':
dependencies:
'@aws-sdk/core': 3.775.0
@@ -15650,6 +18046,16 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-user-agent@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-endpoints': 3.840.0
+ '@smithy/core': 3.6.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/nested-clients@3.775.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -15664,30 +18070,73 @@ snapshots:
'@aws-sdk/util-endpoints': 3.775.0
'@aws-sdk/util-user-agent-browser': 3.775.0
'@aws-sdk/util-user-agent-node': 3.775.0
- '@smithy/config-resolver': 4.1.0
- '@smithy/core': 3.2.0
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/hash-node': 4.0.2
- '@smithy/invalid-dependency': 4.0.2
- '@smithy/middleware-content-length': 4.0.2
- '@smithy/middleware-endpoint': 4.1.0
- '@smithy/middleware-retry': 4.1.0
- '@smithy/middleware-serde': 4.0.3
- '@smithy/middleware-stack': 4.0.2
- '@smithy/node-config-provider': 4.0.2
- '@smithy/node-http-handler': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.0
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/core': 3.6.0
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/hash-node': 4.0.4
+ '@smithy/invalid-dependency': 4.0.4
+ '@smithy/middleware-content-length': 4.0.4
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-retry': 4.1.14
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
'@smithy/util-base64': 4.0.0
'@smithy/util-body-length-browser': 4.0.0
'@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.8
- '@smithy/util-defaults-mode-node': 4.0.8
- '@smithy/util-endpoints': 3.0.2
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.2
+ '@smithy/util-defaults-mode-browser': 4.0.21
+ '@smithy/util-defaults-mode-node': 4.0.21
+ '@smithy/util-endpoints': 3.0.6
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/nested-clients@3.840.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/middleware-host-header': 3.840.0
+ '@aws-sdk/middleware-logger': 3.840.0
+ '@aws-sdk/middleware-recursion-detection': 3.840.0
+ '@aws-sdk/middleware-user-agent': 3.840.0
+ '@aws-sdk/region-config-resolver': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-endpoints': 3.840.0
+ '@aws-sdk/util-user-agent-browser': 3.840.0
+ '@aws-sdk/util-user-agent-node': 3.840.0
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/core': 3.6.0
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/hash-node': 4.0.4
+ '@smithy/invalid-dependency': 4.0.4
+ '@smithy/middleware-content-length': 4.0.4
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-retry': 4.1.14
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-body-length-node': 4.0.0
+ '@smithy/util-defaults-mode-browser': 4.0.21
+ '@smithy/util-defaults-mode-node': 4.0.21
+ '@smithy/util-endpoints': 3.0.6
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
transitivePeerDependencies:
@@ -15702,6 +18151,15 @@ snapshots:
'@smithy/util-middleware': 4.0.2
tslib: 2.8.1
+ '@aws-sdk/region-config-resolver@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/types': 4.3.1
+ '@smithy/util-config-provider': 4.0.0
+ '@smithy/util-middleware': 4.0.4
+ tslib: 2.8.1
+
'@aws-sdk/s3-request-presigner@3.775.0':
dependencies:
'@aws-sdk/signature-v4-multi-region': 3.775.0
@@ -15713,6 +18171,17 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/s3-request-presigner@3.842.0':
+ dependencies:
+ '@aws-sdk/signature-v4-multi-region': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@aws-sdk/util-format-url': 3.840.0
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/signature-v4-multi-region@3.775.0':
dependencies:
'@aws-sdk/middleware-sdk-s3': 3.775.0
@@ -15722,13 +18191,34 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/signature-v4-multi-region@3.840.0':
+ dependencies:
+ '@aws-sdk/middleware-sdk-s3': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/signature-v4': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/token-providers@3.775.0':
dependencies:
'@aws-sdk/nested-clients': 3.775.0
'@aws-sdk/types': 3.775.0
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/token-providers@3.840.0':
+ dependencies:
+ '@aws-sdk/core': 3.840.0
+ '@aws-sdk/nested-clients': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -15738,10 +18228,19 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/types@3.840.0':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/util-arn-parser@3.723.0':
dependencies:
tslib: 2.8.1
+ '@aws-sdk/util-arn-parser@3.804.0':
+ dependencies:
+ tslib: 2.8.1
+
'@aws-sdk/util-endpoints@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
@@ -15749,6 +18248,13 @@ snapshots:
'@smithy/util-endpoints': 3.0.2
tslib: 2.8.1
+ '@aws-sdk/util-endpoints@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/types': 4.3.1
+ '@smithy/util-endpoints': 3.0.6
+ tslib: 2.8.1
+
'@aws-sdk/util-format-url@3.775.0':
dependencies:
'@aws-sdk/types': 3.775.0
@@ -15756,6 +18262,13 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/util-format-url@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/querystring-builder': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/util-locate-window@3.723.0':
dependencies:
tslib: 2.8.1
@@ -15767,6 +18280,13 @@ snapshots:
bowser: 2.11.0
tslib: 2.8.1
+ '@aws-sdk/util-user-agent-browser@3.840.0':
+ dependencies:
+ '@aws-sdk/types': 3.840.0
+ '@smithy/types': 4.3.1
+ bowser: 2.11.0
+ tslib: 2.8.1
+
'@aws-sdk/util-user-agent-node@3.775.0':
dependencies:
'@aws-sdk/middleware-user-agent': 3.775.0
@@ -15775,11 +18295,24 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/util-user-agent-node@3.840.0':
+ dependencies:
+ '@aws-sdk/middleware-user-agent': 3.840.0
+ '@aws-sdk/types': 3.840.0
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@aws-sdk/xml-builder@3.775.0':
dependencies:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/xml-builder@3.821.0':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@babel/code-frame@7.26.2':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
@@ -15867,7 +18400,7 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-compilation-targets': 7.27.0
'@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0
+ debug: 4.4.1
lodash.debounce: 4.0.8
resolve: 1.22.10
transitivePeerDependencies:
@@ -16638,13 +19171,18 @@ snapshots:
'@babel/types@7.27.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.27.1
'@base2/pretty-print-object@1.0.1': {}
'@better-auth/utils@0.2.4':
dependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
+ uncrypto: 0.1.3
+
+ '@better-auth/utils@0.2.5':
+ dependencies:
+ typescript: 5.8.3
uncrypto: 0.1.3
'@better-fetch/fetch@1.1.18': {}
@@ -16721,6 +19259,12 @@ snapshots:
'@emnapi/wasi-threads': 1.0.1
tslib: 2.8.1
+ '@emnapi/core@1.4.4':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.3
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/runtime@1.3.1':
dependencies:
tslib: 2.8.1
@@ -16734,6 +19278,11 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@emnapi/wasi-threads@1.0.3':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emoji-mart/data@1.2.1': {}
'@emotion/babel-plugin@11.13.5':
@@ -16792,6 +19341,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/cache': 11.14.0
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.1.0)
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+ transitivePeerDependencies:
+ - supports-color
+
'@emotion/serialize@1.3.3':
dependencies:
'@emotion/hash': 0.9.2
@@ -16817,12 +19382,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/is-prop-valid': 1.3.1
+ '@emotion/react': 11.14.0(@types/react@19.1.8)(react@19.1.0)
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.1.0)
+ '@emotion/utils': 1.4.2
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+ transitivePeerDependencies:
+ - supports-color
+
'@emotion/unitless@0.10.0': {}
'@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@emotion/utils@1.4.2': {}
'@emotion/weak-memoize@0.4.0': {}
@@ -16839,6 +19423,9 @@ snapshots:
'@esbuild/aix-ppc64@0.25.1':
optional: true
+ '@esbuild/aix-ppc64@0.25.6':
+ optional: true
+
'@esbuild/android-arm64@0.20.0':
optional: true
@@ -16851,6 +19438,9 @@ snapshots:
'@esbuild/android-arm64@0.25.1':
optional: true
+ '@esbuild/android-arm64@0.25.6':
+ optional: true
+
'@esbuild/android-arm@0.20.0':
optional: true
@@ -16863,6 +19453,9 @@ snapshots:
'@esbuild/android-arm@0.25.1':
optional: true
+ '@esbuild/android-arm@0.25.6':
+ optional: true
+
'@esbuild/android-x64@0.20.0':
optional: true
@@ -16875,6 +19468,9 @@ snapshots:
'@esbuild/android-x64@0.25.1':
optional: true
+ '@esbuild/android-x64@0.25.6':
+ optional: true
+
'@esbuild/darwin-arm64@0.20.0':
optional: true
@@ -16887,6 +19483,9 @@ snapshots:
'@esbuild/darwin-arm64@0.25.1':
optional: true
+ '@esbuild/darwin-arm64@0.25.6':
+ optional: true
+
'@esbuild/darwin-x64@0.20.0':
optional: true
@@ -16899,6 +19498,9 @@ snapshots:
'@esbuild/darwin-x64@0.25.1':
optional: true
+ '@esbuild/darwin-x64@0.25.6':
+ optional: true
+
'@esbuild/freebsd-arm64@0.20.0':
optional: true
@@ -16911,6 +19513,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.25.1':
optional: true
+ '@esbuild/freebsd-arm64@0.25.6':
+ optional: true
+
'@esbuild/freebsd-x64@0.20.0':
optional: true
@@ -16923,6 +19528,9 @@ snapshots:
'@esbuild/freebsd-x64@0.25.1':
optional: true
+ '@esbuild/freebsd-x64@0.25.6':
+ optional: true
+
'@esbuild/linux-arm64@0.20.0':
optional: true
@@ -16935,6 +19543,9 @@ snapshots:
'@esbuild/linux-arm64@0.25.1':
optional: true
+ '@esbuild/linux-arm64@0.25.6':
+ optional: true
+
'@esbuild/linux-arm@0.20.0':
optional: true
@@ -16947,6 +19558,9 @@ snapshots:
'@esbuild/linux-arm@0.25.1':
optional: true
+ '@esbuild/linux-arm@0.25.6':
+ optional: true
+
'@esbuild/linux-ia32@0.20.0':
optional: true
@@ -16959,6 +19573,9 @@ snapshots:
'@esbuild/linux-ia32@0.25.1':
optional: true
+ '@esbuild/linux-ia32@0.25.6':
+ optional: true
+
'@esbuild/linux-loong64@0.20.0':
optional: true
@@ -16971,6 +19588,9 @@ snapshots:
'@esbuild/linux-loong64@0.25.1':
optional: true
+ '@esbuild/linux-loong64@0.25.6':
+ optional: true
+
'@esbuild/linux-mips64el@0.20.0':
optional: true
@@ -16983,6 +19603,9 @@ snapshots:
'@esbuild/linux-mips64el@0.25.1':
optional: true
+ '@esbuild/linux-mips64el@0.25.6':
+ optional: true
+
'@esbuild/linux-ppc64@0.20.0':
optional: true
@@ -16995,6 +19618,9 @@ snapshots:
'@esbuild/linux-ppc64@0.25.1':
optional: true
+ '@esbuild/linux-ppc64@0.25.6':
+ optional: true
+
'@esbuild/linux-riscv64@0.20.0':
optional: true
@@ -17007,6 +19633,9 @@ snapshots:
'@esbuild/linux-riscv64@0.25.1':
optional: true
+ '@esbuild/linux-riscv64@0.25.6':
+ optional: true
+
'@esbuild/linux-s390x@0.20.0':
optional: true
@@ -17019,6 +19648,9 @@ snapshots:
'@esbuild/linux-s390x@0.25.1':
optional: true
+ '@esbuild/linux-s390x@0.25.6':
+ optional: true
+
'@esbuild/linux-x64@0.20.0':
optional: true
@@ -17031,12 +19663,18 @@ snapshots:
'@esbuild/linux-x64@0.25.1':
optional: true
+ '@esbuild/linux-x64@0.25.6':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.0':
optional: true
'@esbuild/netbsd-arm64@0.25.1':
optional: true
+ '@esbuild/netbsd-arm64@0.25.6':
+ optional: true
+
'@esbuild/netbsd-x64@0.20.0':
optional: true
@@ -17049,12 +19687,18 @@ snapshots:
'@esbuild/netbsd-x64@0.25.1':
optional: true
+ '@esbuild/netbsd-x64@0.25.6':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.0':
optional: true
'@esbuild/openbsd-arm64@0.25.1':
optional: true
+ '@esbuild/openbsd-arm64@0.25.6':
+ optional: true
+
'@esbuild/openbsd-x64@0.20.0':
optional: true
@@ -17067,6 +19711,12 @@ snapshots:
'@esbuild/openbsd-x64@0.25.1':
optional: true
+ '@esbuild/openbsd-x64@0.25.6':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.25.6':
+ optional: true
+
'@esbuild/sunos-x64@0.20.0':
optional: true
@@ -17079,6 +19729,9 @@ snapshots:
'@esbuild/sunos-x64@0.25.1':
optional: true
+ '@esbuild/sunos-x64@0.25.6':
+ optional: true
+
'@esbuild/win32-arm64@0.20.0':
optional: true
@@ -17091,6 +19744,9 @@ snapshots:
'@esbuild/win32-arm64@0.25.1':
optional: true
+ '@esbuild/win32-arm64@0.25.6':
+ optional: true
+
'@esbuild/win32-ia32@0.20.0':
optional: true
@@ -17103,6 +19759,9 @@ snapshots:
'@esbuild/win32-ia32@0.25.1':
optional: true
+ '@esbuild/win32-ia32@0.25.6':
+ optional: true
+
'@esbuild/win32-x64@0.20.0':
optional: true
@@ -17115,6 +19774,9 @@ snapshots:
'@esbuild/win32-x64@0.25.1':
optional: true
+ '@esbuild/win32-x64@0.25.6':
+ optional: true
+
'@eslint-community/eslint-utils@4.5.1(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
@@ -17155,6 +19817,12 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/dom': 1.6.13
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
'@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -17163,8 +19831,31 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
tabbable: 6.2.0
+ '@floating-ui/react@0.26.28(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@floating-ui/utils': 0.2.9
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ tabbable: 6.2.0
+
'@floating-ui/utils@0.2.9': {}
+ '@formatjs/intl-localematcher@0.6.1':
+ dependencies:
+ tslib: 2.8.1
+
+ '@fumadocs/mdx-remote@1.3.0(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.1)
+ fumadocs-core: 15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ gray-matter: 4.0.3
+ react: 19.1.0
+ zod: 3.25.75
+ transitivePeerDependencies:
+ - acorn
+ - supports-color
+
'@hapi/hoek@9.3.0': {}
'@hapi/topo@5.1.0':
@@ -17178,10 +19869,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@headlessui/react@1.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@tanstack/react-virtual': 3.13.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ client-only: 0.0.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
'@heroicons/react@2.2.0(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@heroicons/react@2.2.0(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@hexagon/base64@1.1.28': {}
'@hocuspocus/common@2.15.2':
@@ -17381,12 +20083,12 @@ snapshots:
'@types/node': 20.17.28
optional: true
- '@inquirer/confirm@5.1.9(@types/node@22.14.1)':
+ '@inquirer/confirm@5.1.9(@types/node@24.0.10)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.14.1)
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/core': 10.1.10(@types/node@24.0.10)
+ '@inquirer/type': 3.0.6(@types/node@24.0.10)
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
'@inquirer/core@10.1.10(@types/node@20.17.28)':
dependencies:
@@ -17402,10 +20104,10 @@ snapshots:
'@types/node': 20.17.28
optional: true
- '@inquirer/core@10.1.10(@types/node@22.14.1)':
+ '@inquirer/core@10.1.10(@types/node@24.0.10)':
dependencies:
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.14.1)
+ '@inquirer/type': 3.0.6(@types/node@24.0.10)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -17413,7 +20115,7 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
'@inquirer/figures@1.0.11': {}
@@ -17422,9 +20124,9 @@ snapshots:
'@types/node': 20.17.28
optional: true
- '@inquirer/type@3.0.6(@types/node@22.14.1)':
+ '@inquirer/type@3.0.6(@types/node@24.0.10)':
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
'@isaacs/balanced-match@4.0.1': {}
@@ -17441,6 +20143,10 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/fs-minipass@4.0.1':
+ dependencies:
+ minipass: 7.1.2
+
'@jest/expect-utils@29.7.0':
dependencies:
jest-get-type: 29.6.3
@@ -17454,7 +20160,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -17495,19 +20201,25 @@ snapshots:
dependencies:
'@liveblocks/core': 2.23.1
+ '@liveblocks/client@2.24.3':
+ dependencies:
+ '@liveblocks/core': 2.24.3
+
'@liveblocks/core@2.23.1': {}
- '@liveblocks/react-blocknote@2.23.1(f7e1392d47807ef889348b4cdb3b8972)':
+ '@liveblocks/core@2.24.3': {}
+
+ '@liveblocks/react-blocknote@2.23.1(86fe50283eaddaea296c5b0736a1f4f3)':
dependencies:
'@blocknote/core': link:packages/core
'@blocknote/react': link:packages/react
'@liveblocks/client': 2.23.1
'@liveblocks/core': 2.23.1
'@liveblocks/react': 2.23.1(react@18.3.1)
- '@liveblocks/react-tiptap': 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
+ '@liveblocks/react-tiptap': 2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))
'@liveblocks/react-ui': 2.23.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@liveblocks/yjs': 2.23.1(yjs@13.6.24)
- '@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
vitest-tsconfig-paths: 3.4.1
@@ -17526,7 +20238,36 @@ snapshots:
- y-protocols
- yjs
- '@liveblocks/react-tiptap@2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))':
+ '@liveblocks/react-blocknote@2.24.3(8539b2342d61009ca8ec75e6340b0d67)':
+ dependencies:
+ '@blocknote/core': link:packages/core
+ '@blocknote/react': link:packages/react
+ '@liveblocks/client': 2.24.3
+ '@liveblocks/core': 2.24.3
+ '@liveblocks/react': 2.24.3(react@19.1.0)
+ '@liveblocks/react-tiptap': 2.24.3(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(y-protocols@1.0.6(yjs@13.6.27))
+ '@liveblocks/react-ui': 2.24.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@liveblocks/yjs': 2.24.3(yjs@13.6.27)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ vitest-tsconfig-paths: 3.4.1
+ transitivePeerDependencies:
+ - '@tiptap/extension-collaboration'
+ - '@tiptap/extension-collaboration-cursor'
+ - '@tiptap/pm'
+ - '@tiptap/react'
+ - '@tiptap/suggestion'
+ - '@types/react'
+ - '@types/react-dom'
+ - prosemirror-model
+ - prosemirror-state
+ - prosemirror-view
+ - supports-color
+ - y-protocols
+ - yjs
+
+ '@liveblocks/react-tiptap@2.23.1(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(y-protocols@1.0.6(yjs@13.6.24))':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@liveblocks/client': 2.23.1
@@ -17537,11 +20278,11 @@ snapshots:
'@radix-ui/react-select': 2.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-toggle': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
- '@tiptap/extension-collaboration': 2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))
- '@tiptap/extension-collaboration-cursor': 2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))
+ '@tiptap/extension-collaboration': 2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))
+ '@tiptap/extension-collaboration-cursor': 2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))
'@tiptap/pm': 2.12.0
- '@tiptap/react': 2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tiptap/suggestion': 2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ '@tiptap/react': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@tiptap/suggestion': 2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
cmdk: 1.1.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(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)
@@ -17555,6 +20296,35 @@ snapshots:
- prosemirror-view
- y-protocols
+ '@liveblocks/react-tiptap@2.24.3(@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)))(@tiptap/pm@2.12.0)(@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0))(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(y-protocols@1.0.6(yjs@13.6.27))':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@liveblocks/client': 2.24.3
+ '@liveblocks/core': 2.24.3
+ '@liveblocks/react': 2.24.3(react@19.1.0)
+ '@liveblocks/react-ui': 2.24.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@liveblocks/yjs': 2.24.3(yjs@13.6.27)
+ '@radix-ui/react-select': 2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-toggle': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/extension-collaboration': 2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ '@tiptap/extension-collaboration-cursor': 2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))
+ '@tiptap/pm': 2.12.0
+ '@tiptap/react': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tiptap/suggestion': 2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ cmdk: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ y-prosemirror: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+ yjs: 13.6.27
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - prosemirror-model
+ - prosemirror-state
+ - prosemirror-view
+ - y-protocols
+
'@liveblocks/react-ui@2.23.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -17577,12 +20347,40 @@ snapshots:
- '@types/react-dom'
- react-dom
+ '@liveblocks/react-ui@2.24.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@liveblocks/client': 2.24.3
+ '@liveblocks/core': 2.24.3
+ '@liveblocks/react': 2.24.3(react@19.1.0)
+ '@radix-ui/react-dropdown-menu': 2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-popover': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-toggle': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-tooltip': 1.1.8(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ frimousse: 0.2.0(react@19.1.0)
+ react: 19.1.0
+ slate: 0.110.2
+ slate-history: 0.110.3(slate@0.110.2)
+ slate-hyperscript: 0.100.0(slate@0.110.2)
+ slate-react: 0.110.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate@0.110.2)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - react-dom
+
'@liveblocks/react@2.23.1(react@18.3.1)':
dependencies:
'@liveblocks/client': 2.23.1
'@liveblocks/core': 2.23.1
react: 18.3.1
+ '@liveblocks/react@2.24.3(react@19.1.0)':
+ dependencies:
+ '@liveblocks/client': 2.24.3
+ '@liveblocks/core': 2.24.3
+ react: 19.1.0
+
'@liveblocks/yjs@2.23.1(yjs@13.6.24)':
dependencies:
'@liveblocks/client': 2.23.1
@@ -17591,6 +20389,14 @@ snapshots:
y-indexeddb: 9.0.12(yjs@13.6.24)
yjs: 13.6.24
+ '@liveblocks/yjs@2.24.3(yjs@13.6.27)':
+ dependencies:
+ '@liveblocks/client': 2.24.3
+ '@liveblocks/core': 2.24.3
+ js-base64: 3.7.7
+ y-indexeddb: 9.0.12(yjs@13.6.27)
+ yjs: 13.6.27
+
'@mantine/core@7.17.3(@mantine/hooks@7.17.3(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -17605,10 +20411,28 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ '@mantine/core@7.17.8(@mantine/hooks@7.17.3(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react': 0.26.28(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@mantine/hooks': 7.17.3(react@19.1.0)
+ clsx: 2.1.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-number-format: 5.4.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-remove-scroll: 2.7.1(@types/react@19.1.8)(react@19.1.0)
+ react-textarea-autosize: 8.5.9(@types/react@19.1.8)(react@19.1.0)
+ type-fest: 4.38.0
+ transitivePeerDependencies:
+ - '@types/react'
+
'@mantine/hooks@7.17.3(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@mantine/hooks@7.17.3(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@mantine/utils@6.0.22(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -17651,6 +20475,36 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@mdx-js/mdx@3.1.0(acorn@8.14.1)':
+ dependencies:
+ '@types/estree': 1.0.7
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdx': 2.0.13
+ collapse-white-space: 2.1.0
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ estree-util-scope: 1.0.0
+ estree-walker: 3.0.3
+ hast-util-to-jsx-runtime: 2.3.6
+ markdown-extensions: 2.0.0
+ recma-build-jsx: 1.0.0
+ recma-jsx: 1.0.0(acorn@8.14.1)
+ recma-stringify: 1.0.0
+ rehype-recma: 1.0.0
+ remark-mdx: 3.1.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ source-map: 0.7.4
+ unified: 11.0.5
+ unist-util-position-from-estree: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - acorn
+ - supports-color
+
'@mdx-js/react@2.3.0(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
@@ -17676,6 +20530,14 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@mui/icons-material@5.17.1(@mui/material@5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@mui/material': 5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@mui/material@5.17.1(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.27.0
@@ -17697,6 +20559,27 @@ snapshots:
'@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1)
'@types/react': 18.3.20
+ '@mui/material@5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@mui/core-downloads-tracker': 5.17.1
+ '@mui/system': 5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+ '@mui/types': 7.2.24(@types/react@19.1.8)
+ '@mui/utils': 5.17.1(@types/react@19.1.8)(react@19.1.0)
+ '@popperjs/core': 2.11.8
+ '@types/react-transition-group': 4.4.12(@types/react@19.1.8)
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 19.0.0
+ react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.1.8)(react@19.1.0)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+ '@types/react': 19.1.8
+
'@mui/private-theming@5.17.1(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@babel/runtime': 7.27.0
@@ -17706,6 +20589,15 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@mui/private-theming@5.17.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@mui/utils': 5.17.1(@types/react@19.1.8)(react@19.1.0)
+ prop-types: 15.8.1
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@mui/styled-engine@5.16.14(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.27.0
@@ -17717,6 +20609,17 @@ snapshots:
'@emotion/react': 11.14.0(@types/react@18.3.20)(react@18.3.1)
'@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1)
+ '@mui/styled-engine@5.16.14(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@emotion/cache': 11.14.0
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 19.1.0
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.1.8)(react@19.1.0)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+
'@mui/system@5.17.1(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@babel/runtime': 7.27.0
@@ -17733,21 +20636,53 @@ snapshots:
'@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@18.3.20)(react@18.3.1))(@types/react@18.3.20)(react@18.3.1)
'@types/react': 18.3.20
+ '@mui/system@5.17.1(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@mui/private-theming': 5.17.1(@types/react@19.1.8)(react@19.1.0)
+ '@mui/styled-engine': 5.16.14(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@emotion/styled@11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0))(react@19.1.0)
+ '@mui/types': 7.2.24(@types/react@19.1.8)
+ '@mui/utils': 5.17.1(@types/react@19.1.8)(react@19.1.0)
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 19.1.0
+ optionalDependencies:
+ '@emotion/react': 11.14.0(@types/react@19.1.8)(react@19.1.0)
+ '@emotion/styled': 11.14.0(@emotion/react@11.14.0(@types/react@19.1.8)(react@19.1.0))(@types/react@19.1.8)(react@19.1.0)
+ '@types/react': 19.1.8
+
'@mui/types@7.2.24(@types/react@18.3.20)':
optionalDependencies:
'@types/react': 18.3.20
- '@mui/utils@5.17.1(@types/react@18.3.20)(react@18.3.1)':
+ '@mui/types@7.2.24(@types/react@19.1.8)':
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@mui/utils@5.17.1(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@mui/types': 7.2.24(@types/react@18.3.20)
+ '@types/prop-types': 15.7.14
+ clsx: 2.1.1
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-is: 19.0.0
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@mui/utils@5.17.1(@types/react@19.1.8)(react@19.1.0)':
dependencies:
'@babel/runtime': 7.27.0
- '@mui/types': 7.2.24(@types/react@18.3.20)
+ '@mui/types': 7.2.24(@types/react@19.1.8)
'@types/prop-types': 15.7.14
clsx: 2.1.1
prop-types: 15.8.1
- react: 18.3.1
+ react: 19.1.0
react-is: 19.0.0
optionalDependencies:
- '@types/react': 18.3.20
+ '@types/react': 19.1.8
'@napi-rs/simple-git-android-arm-eabi@0.1.19':
optional: true
@@ -17808,6 +20743,13 @@ snapshots:
'@napi-rs/simple-git-win32-arm64-msvc': 0.1.19
'@napi-rs/simple-git-win32-x64-msvc': 0.1.19
+ '@napi-rs/wasm-runtime@0.2.11':
+ dependencies:
+ '@emnapi/core': 1.4.4
+ '@emnapi/runtime': 1.4.3
+ '@tybys/wasm-util': 0.9.0
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
'@emnapi/core': 1.3.1
@@ -17817,7 +20759,7 @@ snapshots:
'@napi-rs/wasm-runtime@0.2.7':
dependencies:
'@emnapi/core': 1.3.1
- '@emnapi/runtime': 1.3.1
+ '@emnapi/runtime': 1.4.3
'@tybys/wasm-util': 0.9.0
optional: true
@@ -17832,6 +20774,8 @@ snapshots:
'@next/env@15.3.1': {}
+ '@next/env@15.4.0-canary.116': {}
+
'@next/eslint-plugin-next@14.1.0':
dependencies:
glob: 10.3.10
@@ -17842,48 +20786,72 @@ snapshots:
'@next/swc-darwin-arm64@15.3.1':
optional: true
+ '@next/swc-darwin-arm64@15.4.0-canary.116':
+ optional: true
+
'@next/swc-darwin-x64@15.2.4':
optional: true
'@next/swc-darwin-x64@15.3.1':
optional: true
+ '@next/swc-darwin-x64@15.4.0-canary.116':
+ optional: true
+
'@next/swc-linux-arm64-gnu@15.2.4':
optional: true
'@next/swc-linux-arm64-gnu@15.3.1':
optional: true
+ '@next/swc-linux-arm64-gnu@15.4.0-canary.116':
+ optional: true
+
'@next/swc-linux-arm64-musl@15.2.4':
optional: true
'@next/swc-linux-arm64-musl@15.3.1':
optional: true
+ '@next/swc-linux-arm64-musl@15.4.0-canary.116':
+ optional: true
+
'@next/swc-linux-x64-gnu@15.2.4':
optional: true
'@next/swc-linux-x64-gnu@15.3.1':
optional: true
+ '@next/swc-linux-x64-gnu@15.4.0-canary.116':
+ optional: true
+
'@next/swc-linux-x64-musl@15.2.4':
optional: true
'@next/swc-linux-x64-musl@15.3.1':
optional: true
+ '@next/swc-linux-x64-musl@15.4.0-canary.116':
+ optional: true
+
'@next/swc-win32-arm64-msvc@15.2.4':
optional: true
'@next/swc-win32-arm64-msvc@15.3.1':
optional: true
+ '@next/swc-win32-arm64-msvc@15.4.0-canary.116':
+ optional: true
+
'@next/swc-win32-x64-msvc@15.2.4':
optional: true
'@next/swc-win32-x64-msvc@15.3.1':
optional: true
+ '@next/swc-win32-x64-msvc@15.4.0-canary.116':
+ optional: true
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
dependencies:
eslint-scope: 5.1.1
@@ -18231,7 +21199,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.57.2
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.13.1
+ import-in-the-middle: 1.14.2
require-in-the-middle: 7.5.2
semver: 7.7.1
shimmer: 1.2.1
@@ -18262,6 +21230,55 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0)
+ '@orama/orama@3.1.10': {}
+
+ '@oxc-transform/binding-android-arm64@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-darwin-arm64@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-darwin-x64@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-freebsd-x64@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-arm-gnueabihf@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-arm-musleabihf@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-arm64-gnu@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-arm64-musl@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-riscv64-gnu@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-s390x-gnu@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-x64-gnu@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-linux-x64-musl@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-wasm32-wasi@0.75.1':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.11
+ optional: true
+
+ '@oxc-transform/binding-win32-arm64-msvc@0.75.1':
+ optional: true
+
+ '@oxc-transform/binding-win32-x64-msvc@0.75.1':
+ optional: true
+
'@peculiar/asn1-android@2.3.16':
dependencies:
'@peculiar/asn1-schema': 2.3.15
@@ -18341,7 +21358,14 @@ snapshots:
'@polar-sh/adapter-utils@0.1.15(zod@3.24.2)':
dependencies:
- '@polar-sh/sdk': 0.32.11(zod@3.24.2)
+ '@polar-sh/sdk': 0.32.16(zod@3.24.2)
+ transitivePeerDependencies:
+ - '@modelcontextprotocol/sdk'
+ - zod
+
+ '@polar-sh/adapter-utils@0.2.1(zod@3.25.75)':
+ dependencies:
+ '@polar-sh/sdk': 0.34.3(zod@3.25.75)
transitivePeerDependencies:
- '@modelcontextprotocol/sdk'
- zod
@@ -18352,6 +21376,12 @@ snapshots:
better-auth: 1.2.7
zod: 3.24.2
+ '@polar-sh/better-auth@1.0.4(@polar-sh/sdk@0.34.3(zod@3.25.75))(better-auth@1.2.12)':
+ dependencies:
+ '@polar-sh/sdk': 0.34.3(zod@3.25.75)
+ better-auth: 1.2.12
+ zod: 3.25.75
+
'@polar-sh/nextjs@0.3.23(next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(zod@3.24.2)':
dependencies:
'@polar-sh/adapter-utils': 0.1.15(zod@3.24.2)
@@ -18361,11 +21391,30 @@ snapshots:
- '@modelcontextprotocol/sdk'
- zod
+ '@polar-sh/nextjs@0.4.2(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(zod@3.25.75)':
+ dependencies:
+ '@polar-sh/adapter-utils': 0.2.1(zod@3.25.75)
+ '@polar-sh/sdk': 0.34.3(zod@3.25.75)
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ transitivePeerDependencies:
+ - '@modelcontextprotocol/sdk'
+ - zod
+
'@polar-sh/sdk@0.32.11(zod@3.24.2)':
dependencies:
standardwebhooks: 1.0.0
zod: 3.24.2
+ '@polar-sh/sdk@0.32.16(zod@3.24.2)':
+ dependencies:
+ standardwebhooks: 1.0.0
+ zod: 3.24.2
+
+ '@polar-sh/sdk@0.34.3(zod@3.25.75)':
+ dependencies:
+ standardwebhooks: 1.0.0
+ zod: 3.25.75
+
'@polka/url@1.0.0-next.28': {}
'@popperjs/core@2.11.8': {}
@@ -18377,12 +21426,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@prisma/instrumentation@6.6.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@radix-ui/colors@3.0.0': {}
'@radix-ui/number@1.1.0': {}
+ '@radix-ui/number@1.1.1': {}
+
'@radix-ui/primitive@1.1.1': {}
+ '@radix-ui/primitive@1.1.2': {}
+
+ '@radix-ui/react-accordion@1.2.11(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collapsible': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-arrow@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -18392,6 +21469,24 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-avatar@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-context': 1.1.1(@types/react@18.3.20)(react@18.3.1)
@@ -18404,6 +21499,22 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-collapsible@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-collection@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
@@ -18416,46 +21527,166 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-collection@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-compose-refs@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-context@1.1.1(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
- '@radix-ui/react-dialog@1.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-context@1.1.1(@types/react@19.1.8)(react@19.1.0)':
dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-portal': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.2(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.20)(react@18.3.1)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-context@1.1.2(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-context@1.1.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-dialog@1.1.14(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.20)(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.3(@types/react@18.3.20)(react@18.3.1)
+ react-remove-scroll: 2.7.1(@types/react@18.3.20)(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ aria-hidden: 1.2.4
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.7.1(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-direction@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-direction@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-direction@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18469,6 +21700,19 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18484,12 +21728,45 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-focus-guards@1.1.2(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-focus-scope@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
@@ -18501,6 +21778,39 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-id@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
@@ -18508,6 +21818,27 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-id@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-id@1.1.1(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-id@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-label@2.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -18543,6 +21874,77 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-menu@2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ aria-hidden: 1.2.4
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-navigation-menu@1.2.13(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-popover@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ aria-hidden: 1.2.4
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.7.1(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-popover@1.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18584,35 +21986,175 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-popper@1.2.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/rect': 1.1.0
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-popper@1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/rect': 1.1.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-portal@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-portal@1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-presence@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-presence@1.1.4(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+ '@types/react-dom': 18.3.5(@types/react@18.3.20)
+
+ '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-primitive@2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-slot': 1.1.2(@types/react@18.3.20)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
- '@radix-ui/react-presence@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
optionalDependencies:
- '@types/react': 18.3.20
- '@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
- '@radix-ui/react-primitive@2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@18.3.20)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-roving-focus@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-roving-focus@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18630,6 +22172,40 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-scroll-area@1.2.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-select@2.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/number': 1.1.0
@@ -18659,6 +22235,35 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-select@2.1.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ aria-hidden: 1.2.4
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-remove-scroll: 2.6.3(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-slot@1.1.2(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
@@ -18666,6 +22271,43 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-slot@1.1.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-slot@1.2.3(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-slot@1.2.3(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-tabs@1.1.12(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.2
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-tabs@1.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18693,6 +22335,17 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-toggle@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-tooltip@1.1.8(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.1
@@ -18713,12 +22366,50 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-tooltip@1.1.8(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.20)(react@18.3.1)
@@ -18726,6 +22417,43 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.20)(react@18.3.1)
@@ -18733,18 +22461,69 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.3.20)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-previous@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-previous@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-rect@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/rect': 1.1.0
@@ -18752,6 +22531,20 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-rect@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/rect': 1.1.1
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-use-size@1.1.0(@types/react@18.3.20)(react@18.3.1)':
dependencies:
'@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.20)(react@18.3.1)
@@ -18759,6 +22552,20 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ '@radix-ui/react-use-size@1.1.0(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.1.8)(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
'@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -18768,16 +22575,44 @@ snapshots:
'@types/react': 18.3.20
'@types/react-dom': 18.3.5(@types/react@18.3.20)
+ '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ '@types/react-dom': 19.1.6(@types/react@19.1.8)
+
'@radix-ui/rect@1.1.0': {}
+ '@radix-ui/rect@1.1.1': {}
+
'@react-email/body@0.0.11(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/body@0.0.11(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/button@0.0.19(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/button@0.0.19(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/button@0.1.0(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -18787,6 +22622,11 @@ snapshots:
prismjs: 1.30.0
react: 18.3.1
+ '@react-email/code-block@0.0.12(react@19.1.0)':
+ dependencies:
+ prismjs: 1.30.0
+ react: 19.1.0
+
'@react-email/code-block@0.1.0(react@18.3.1)':
dependencies:
prismjs: 1.30.0
@@ -18796,10 +22636,18 @@ snapshots:
dependencies:
react: 18.3.1
+ '@react-email/code-inline@0.0.5(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/column@0.0.13(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/column@0.0.13(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/components@0.0.36(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-email/body': 0.0.11(react@18.3.1)
@@ -18826,6 +22674,32 @@ snapshots:
transitivePeerDependencies:
- react-dom
+ '@react-email/components@0.0.36(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@react-email/body': 0.0.11(react@19.1.0)
+ '@react-email/button': 0.0.19(react@19.1.0)
+ '@react-email/code-block': 0.0.12(react@19.1.0)
+ '@react-email/code-inline': 0.0.5(react@19.1.0)
+ '@react-email/column': 0.0.13(react@19.1.0)
+ '@react-email/container': 0.0.15(react@19.1.0)
+ '@react-email/font': 0.0.9(react@19.1.0)
+ '@react-email/head': 0.0.12(react@19.1.0)
+ '@react-email/heading': 0.0.15(react@19.1.0)
+ '@react-email/hr': 0.0.11(react@19.1.0)
+ '@react-email/html': 0.0.11(react@19.1.0)
+ '@react-email/img': 0.0.11(react@19.1.0)
+ '@react-email/link': 0.0.12(react@19.1.0)
+ '@react-email/markdown': 0.0.14(react@19.1.0)
+ '@react-email/preview': 0.0.12(react@19.1.0)
+ '@react-email/render': 1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-email/row': 0.0.12(react@19.1.0)
+ '@react-email/section': 0.0.16(react@19.1.0)
+ '@react-email/tailwind': 1.0.4(react@19.1.0)
+ '@react-email/text': 0.1.1(react@19.1.0)
+ react: 19.1.0
+ transitivePeerDependencies:
+ - react-dom
+
'@react-email/components@0.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-email/body': 0.0.11(react@18.3.1)
@@ -18856,39 +22730,76 @@ snapshots:
dependencies:
react: 18.3.1
+ '@react-email/container@0.0.15(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/font@0.0.9(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/font@0.0.9(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/head@0.0.12(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/head@0.0.12(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/heading@0.0.15(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/heading@0.0.15(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/hr@0.0.11(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/hr@0.0.11(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/html@0.0.11(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/html@0.0.11(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/img@0.0.11(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/img@0.0.11(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/link@0.0.12(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/link@0.0.12(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/markdown@0.0.14(react@18.3.1)':
dependencies:
md-to-react-email: 5.0.5(react@18.3.1)
react: 18.3.1
+ '@react-email/markdown@0.0.14(react@19.1.0)':
+ dependencies:
+ md-to-react-email: 5.0.5(react@19.1.0)
+ react: 19.1.0
+
'@react-email/markdown@0.0.15(react@18.3.1)':
dependencies:
md-to-react-email: 5.0.5(react@18.3.1)
@@ -18898,6 +22809,10 @@ snapshots:
dependencies:
react: 18.3.1
+ '@react-email/preview@0.0.12(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/preview@0.0.13(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -18910,6 +22825,14 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-promise-suspense: 0.3.4
+ '@react-email/render@1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ html-to-text: 9.0.5
+ prettier: 3.5.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-promise-suspense: 0.3.4
+
'@react-email/render@1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
html-to-text: 9.0.5
@@ -18918,18 +22841,38 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-promise-suspense: 0.3.4
+ '@react-email/render@1.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ html-to-text: 9.0.5
+ prettier: 3.5.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-promise-suspense: 0.3.4
+
'@react-email/row@0.0.12(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/row@0.0.12(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/section@0.0.16(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/section@0.0.16(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/tailwind@1.0.4(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@react-email/tailwind@1.0.4(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/tailwind@1.0.5(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -18938,6 +22881,10 @@ snapshots:
dependencies:
react: 18.3.1
+ '@react-email/text@0.1.1(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@react-email/text@0.1.5(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -18991,6 +22938,12 @@ snapshots:
react: 18.3.1
scheduler: 0.25.0-rc-603e6108-20241029
+ '@react-pdf/reconciler@1.1.4(react@19.1.0)':
+ dependencies:
+ object-assign: 4.1.1
+ react: 19.1.0
+ scheduler: 0.25.0-rc-603e6108-20241029
+
'@react-pdf/render@4.3.0':
dependencies:
'@babel/runtime': 7.27.0
@@ -19021,6 +22974,23 @@ snapshots:
queue: 6.0.2
react: 18.3.1
+ '@react-pdf/renderer@4.3.0(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.27.0
+ '@react-pdf/fns': 3.1.2
+ '@react-pdf/font': 4.0.2
+ '@react-pdf/layout': 4.4.0
+ '@react-pdf/pdfkit': 4.0.3
+ '@react-pdf/primitives': 4.1.1
+ '@react-pdf/reconciler': 1.1.4(react@19.1.0)
+ '@react-pdf/render': 4.3.0
+ '@react-pdf/types': 2.9.0
+ events: 3.3.0
+ object-assign: 4.1.1
+ prop-types: 15.8.1
+ queue: 6.0.2
+ react: 19.1.0
+
'@react-pdf/stylesheet@6.1.0':
dependencies:
'@react-pdf/fns': 3.1.2
@@ -19054,13 +23024,25 @@ snapshots:
'@rollup/pluginutils': 5.1.4(rollup@3.29.5)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.3(picomatch@4.0.2)
+ fdir: 6.4.4(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
rollup: 3.29.5
+ '@rollup/plugin-commonjs@28.0.1(rollup@4.35.0)':
+ dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
+ commondir: 1.0.1
+ estree-walker: 2.0.2
+ fdir: 6.4.4(picomatch@4.0.2)
+ is-reference: 1.2.1
+ magic-string: 0.30.17
+ picomatch: 4.0.2
+ optionalDependencies:
+ rollup: 4.35.0
+
'@rollup/pluginutils@4.2.1':
dependencies:
estree-walker: 2.0.2
@@ -19074,63 +23056,128 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
+ '@rollup/pluginutils@5.1.4(rollup@4.35.0)':
+ dependencies:
+ '@types/estree': 1.0.7
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
+ optionalDependencies:
+ rollup: 4.35.0
+
+ '@rollup/rollup-android-arm-eabi@4.35.0':
+ optional: true
+
'@rollup/rollup-android-arm-eabi@4.37.0':
optional: true
+ '@rollup/rollup-android-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-android-arm64@4.37.0':
optional: true
+ '@rollup/rollup-darwin-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.37.0':
optional: true
+ '@rollup/rollup-darwin-x64@4.35.0':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.37.0':
optional: true
+ '@rollup/rollup-freebsd-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-freebsd-arm64@4.37.0':
optional: true
+ '@rollup/rollup-freebsd-x64@4.35.0':
+ optional: true
+
'@rollup/rollup-freebsd-x64@4.37.0':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.37.0':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.37.0':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.37.0':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.37.0':
optional: true
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-loongarch64-gnu@4.37.0':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-powerpc64le-gnu@4.37.0':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.37.0':
optional: true
'@rollup/rollup-linux-riscv64-musl@4.37.0':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.37.0':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.37.0':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.37.0':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.37.0':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.37.0':
optional: true
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.37.0':
optional: true
@@ -19143,19 +23190,37 @@ snapshots:
domhandler: 5.0.3
selderee: 0.11.0
+ '@sentry-internal/browser-utils@9.14.0':
+ dependencies:
+ '@sentry/core': 9.14.0
+
'@sentry-internal/browser-utils@9.4.0':
dependencies:
'@sentry/core': 9.4.0
+ '@sentry-internal/feedback@9.14.0':
+ dependencies:
+ '@sentry/core': 9.14.0
+
'@sentry-internal/feedback@9.4.0':
dependencies:
'@sentry/core': 9.4.0
+ '@sentry-internal/replay-canvas@9.14.0':
+ dependencies:
+ '@sentry-internal/replay': 9.14.0
+ '@sentry/core': 9.14.0
+
'@sentry-internal/replay-canvas@9.4.0':
dependencies:
'@sentry-internal/replay': 9.4.0
'@sentry/core': 9.4.0
+ '@sentry-internal/replay@9.14.0':
+ dependencies:
+ '@sentry-internal/browser-utils': 9.14.0
+ '@sentry/core': 9.14.0
+
'@sentry-internal/replay@9.4.0':
dependencies:
'@sentry-internal/browser-utils': 9.4.0
@@ -19163,6 +23228,16 @@ snapshots:
'@sentry/babel-plugin-component-annotate@3.2.1': {}
+ '@sentry/babel-plugin-component-annotate@3.3.1': {}
+
+ '@sentry/browser@9.14.0':
+ dependencies:
+ '@sentry-internal/browser-utils': 9.14.0
+ '@sentry-internal/feedback': 9.14.0
+ '@sentry-internal/replay': 9.14.0
+ '@sentry-internal/replay-canvas': 9.14.0
+ '@sentry/core': 9.14.0
+
'@sentry/browser@9.4.0':
dependencies:
'@sentry-internal/browser-utils': 9.4.0
@@ -19185,6 +23260,20 @@ snapshots:
- encoding
- supports-color
+ '@sentry/bundler-plugin-core@3.3.1(encoding@0.1.13)':
+ dependencies:
+ '@babel/core': 7.26.10
+ '@sentry/babel-plugin-component-annotate': 3.3.1
+ '@sentry/cli': 2.42.2(encoding@0.1.13)
+ dotenv: 16.4.7
+ find-up: 5.0.0
+ glob: 9.3.5
+ magic-string: 0.30.8
+ unplugin: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
'@sentry/cli-darwin@2.42.2':
optional: true
@@ -19225,8 +23314,37 @@ snapshots:
- encoding
- supports-color
+ '@sentry/core@9.14.0': {}
+
'@sentry/core@9.4.0': {}
+ '@sentry/nextjs@9.14.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.98.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/semantic-conventions': 1.30.0
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.35.0)
+ '@sentry-internal/browser-utils': 9.14.0
+ '@sentry/core': 9.14.0
+ '@sentry/node': 9.14.0
+ '@sentry/opentelemetry': 9.14.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)
+ '@sentry/react': 9.14.0(react@19.1.0)
+ '@sentry/vercel-edge': 9.14.0
+ '@sentry/webpack-plugin': 3.3.1(encoding@0.1.13)(webpack@5.98.0)
+ chalk: 3.0.0
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ resolve: 1.22.8
+ rollup: 4.35.0
+ stacktrace-parser: 0.1.11
+ transitivePeerDependencies:
+ - '@opentelemetry/context-async-hooks'
+ - '@opentelemetry/core'
+ - '@opentelemetry/instrumentation'
+ - '@opentelemetry/sdk-trace-base'
+ - encoding
+ - react
+ - supports-color
+ - webpack
+
'@sentry/nextjs@9.4.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.98.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -19254,6 +23372,45 @@ snapshots:
- supports-color
- webpack
+ '@sentry/node@9.14.0':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-amqplib': 0.46.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-connect': 0.43.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-dataloader': 0.16.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-express': 0.47.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fastify': 0.44.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fs': 0.19.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-generic-pool': 0.43.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-graphql': 0.47.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-hapi': 0.45.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-http': 0.57.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-ioredis': 0.47.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-kafkajs': 0.7.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-knex': 0.44.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-koa': 0.47.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-lru-memoizer': 0.44.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongodb': 0.52.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongoose': 0.46.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql': 0.45.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql2': 0.45.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-pg': 0.51.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-redis-4': 0.46.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-tedious': 0.18.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-undici': 0.10.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.30.0
+ '@prisma/instrumentation': 6.6.0(@opentelemetry/api@1.9.0)
+ '@sentry/core': 9.14.0
+ '@sentry/opentelemetry': 9.14.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)
+ import-in-the-middle: 1.14.2
+ transitivePeerDependencies:
+ - supports-color
+
'@sentry/node@9.4.0':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -19289,10 +23446,20 @@ snapshots:
'@prisma/instrumentation': 6.4.1(@opentelemetry/api@1.9.0)
'@sentry/core': 9.4.0
'@sentry/opentelemetry': 9.4.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)
- import-in-the-middle: 1.13.1
+ import-in-the-middle: 1.14.2
transitivePeerDependencies:
- supports-color
+ '@sentry/opentelemetry@9.14.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.30.0
+ '@sentry/core': 9.14.0
+
'@sentry/opentelemetry@9.4.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -19303,6 +23470,13 @@ snapshots:
'@opentelemetry/semantic-conventions': 1.30.0
'@sentry/core': 9.4.0
+ '@sentry/react@9.14.0(react@19.1.0)':
+ dependencies:
+ '@sentry/browser': 9.14.0
+ '@sentry/core': 9.14.0
+ hoist-non-react-statics: 3.3.2
+ react: 19.1.0
+
'@sentry/react@9.4.0(react@18.3.1)':
dependencies:
'@sentry/browser': 9.4.0
@@ -19310,6 +23484,11 @@ snapshots:
hoist-non-react-statics: 3.3.2
react: 18.3.1
+ '@sentry/vercel-edge@9.14.0':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@sentry/core': 9.14.0
+
'@sentry/vercel-edge@9.4.0':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -19325,6 +23504,16 @@ snapshots:
- encoding
- supports-color
+ '@sentry/webpack-plugin@3.3.1(encoding@0.1.13)(webpack@5.98.0)':
+ dependencies:
+ '@sentry/bundler-plugin-core': 3.3.1(encoding@0.1.13)
+ unplugin: 1.0.1
+ uuid: 9.0.1
+ webpack: 5.98.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
'@shikijs/core@3.2.1':
dependencies:
'@shikijs/types': 3.2.1
@@ -19332,30 +23521,89 @@ snapshots:
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
+ '@shikijs/core@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.5
+
'@shikijs/engine-javascript@3.2.1':
dependencies:
'@shikijs/types': 3.2.1
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 4.1.0
+ '@shikijs/engine-javascript@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ oniguruma-to-es: 4.3.3
+
+ '@shikijs/engine-oniguruma@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+
'@shikijs/langs-precompiled@3.2.1':
dependencies:
'@shikijs/types': 3.2.1
oniguruma-to-es: 4.1.0
+ '@shikijs/langs-precompiled@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ oniguruma-to-es: 4.3.3
+
'@shikijs/langs@3.2.1':
dependencies:
'@shikijs/types': 3.2.1
+ '@shikijs/langs@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+
+ '@shikijs/rehype@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+ '@types/hast': 3.0.4
+ hast-util-to-string: 3.0.1
+ shiki: 3.7.0
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
+
'@shikijs/themes@3.2.1':
dependencies:
'@shikijs/types': 3.2.1
+ '@shikijs/themes@3.7.0':
+ dependencies:
+ '@shikijs/types': 3.7.0
+
+ '@shikijs/transformers@3.7.0':
+ dependencies:
+ '@shikijs/core': 3.7.0
+ '@shikijs/types': 3.7.0
+
+ '@shikijs/twoslash@3.7.0(typescript@5.8.3)':
+ dependencies:
+ '@shikijs/core': 3.7.0
+ '@shikijs/types': 3.7.0
+ twoslash: 0.3.2(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@shikijs/types@3.2.1':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
+ '@shikijs/types@3.7.0':
+ dependencies:
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+
'@shikijs/vscode-textmate@10.0.2': {}
'@shuding/opentype.js@1.4.0-beta.0':
@@ -19387,7 +23635,12 @@ snapshots:
'@smithy/abort-controller@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@smithy/abort-controller@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@smithy/chunked-blob-reader-native@4.0.0':
@@ -19407,6 +23660,14 @@ snapshots:
'@smithy/util-middleware': 4.0.2
tslib: 2.8.1
+ '@smithy/config-resolver@4.1.4':
+ dependencies:
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/types': 4.3.1
+ '@smithy/util-config-provider': 4.0.0
+ '@smithy/util-middleware': 4.0.4
+ tslib: 2.8.1
+
'@smithy/core@3.2.0':
dependencies:
'@smithy/middleware-serde': 4.0.3
@@ -19418,18 +23679,45 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@smithy/core@3.6.0':
+ dependencies:
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-stream': 4.2.2
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@smithy/credential-provider-imds@4.0.2':
dependencies:
- '@smithy/node-config-provider': 4.0.2
+ '@smithy/node-config-provider': 4.1.3
'@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
+ tslib: 2.8.1
+
+ '@smithy/credential-provider-imds@4.0.6':
+ dependencies:
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/property-provider': 4.0.4
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
tslib: 2.8.1
'@smithy/eventstream-codec@4.0.2':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ '@smithy/util-hex-encoding': 4.0.0
+ tslib: 2.8.1
+
+ '@smithy/eventstream-codec@4.0.4':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@smithy/types': 4.3.1
'@smithy/util-hex-encoding': 4.0.0
tslib: 2.8.1
@@ -19439,21 +23727,44 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-browser@4.0.4':
+ dependencies:
+ '@smithy/eventstream-serde-universal': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-config-resolver@4.1.0':
dependencies:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-config-resolver@4.1.2':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-node@4.0.2':
dependencies:
'@smithy/eventstream-serde-universal': 4.0.2
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-node@4.0.4':
+ dependencies:
+ '@smithy/eventstream-serde-universal': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-universal@4.0.2':
dependencies:
'@smithy/eventstream-codec': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@smithy/eventstream-serde-universal@4.0.4':
+ dependencies:
+ '@smithy/eventstream-codec': 4.0.4
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@smithy/fetch-http-handler@5.0.2':
@@ -19464,6 +23775,14 @@ snapshots:
'@smithy/util-base64': 4.0.0
tslib: 2.8.1
+ '@smithy/fetch-http-handler@5.0.4':
+ dependencies:
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/querystring-builder': 4.0.4
+ '@smithy/types': 4.3.1
+ '@smithy/util-base64': 4.0.0
+ tslib: 2.8.1
+
'@smithy/hash-blob-browser@4.0.2':
dependencies:
'@smithy/chunked-blob-reader': 5.0.0
@@ -19471,6 +23790,13 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/hash-blob-browser@4.0.4':
+ dependencies:
+ '@smithy/chunked-blob-reader': 5.0.0
+ '@smithy/chunked-blob-reader-native': 4.0.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/hash-node@4.0.2':
dependencies:
'@smithy/types': 4.2.0
@@ -19478,17 +23804,35 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@smithy/hash-node@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ '@smithy/util-buffer-from': 4.0.0
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@smithy/hash-stream-node@4.0.2':
dependencies:
'@smithy/types': 4.2.0
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@smithy/hash-stream-node@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@smithy/invalid-dependency@4.0.2':
dependencies:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/invalid-dependency@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
@@ -19503,12 +23847,24 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@smithy/md5-js@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@smithy/middleware-content-length@4.0.2':
dependencies:
'@smithy/protocol-http': 5.1.0
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/middleware-content-length@4.0.4':
+ dependencies:
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/middleware-endpoint@4.1.0':
dependencies:
'@smithy/core': 3.2.0
@@ -19520,6 +23876,17 @@ snapshots:
'@smithy/util-middleware': 4.0.2
tslib: 2.8.1
+ '@smithy/middleware-endpoint@4.1.13':
+ dependencies:
+ '@smithy/core': 3.6.0
+ '@smithy/middleware-serde': 4.0.8
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
+ '@smithy/url-parser': 4.0.4
+ '@smithy/util-middleware': 4.0.4
+ tslib: 2.8.1
+
'@smithy/middleware-retry@4.1.0':
dependencies:
'@smithy/node-config-provider': 4.0.2
@@ -19532,16 +23899,39 @@ snapshots:
tslib: 2.8.1
uuid: 9.0.1
+ '@smithy/middleware-retry@4.1.14':
+ dependencies:
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/service-error-classification': 4.0.6
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-retry': 4.0.6
+ tslib: 2.8.1
+ uuid: 9.0.1
+
'@smithy/middleware-serde@4.0.3':
dependencies:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/middleware-serde@4.0.8':
+ dependencies:
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/middleware-stack@4.0.2':
dependencies:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/middleware-stack@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/node-config-provider@4.0.2':
dependencies:
'@smithy/property-provider': 4.0.2
@@ -19549,6 +23939,13 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/node-config-provider@4.1.3':
+ dependencies:
+ '@smithy/property-provider': 4.0.4
+ '@smithy/shared-ini-file-loader': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/node-http-handler@4.0.4':
dependencies:
'@smithy/abort-controller': 4.0.2
@@ -19557,9 +23954,22 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/node-http-handler@4.0.6':
+ dependencies:
+ '@smithy/abort-controller': 4.0.4
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/querystring-builder': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/property-provider@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@smithy/property-provider@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@smithy/protocol-http@5.1.0':
@@ -19567,33 +23977,69 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/protocol-http@5.1.2':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/querystring-builder@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ '@smithy/util-uri-escape': 4.0.0
+ tslib: 2.8.1
+
+ '@smithy/querystring-builder@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
'@smithy/util-uri-escape': 4.0.0
tslib: 2.8.1
'@smithy/querystring-parser@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@smithy/querystring-parser@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@smithy/service-error-classification@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+
+ '@smithy/service-error-classification@4.0.6':
+ dependencies:
+ '@smithy/types': 4.3.1
'@smithy/shared-ini-file-loader@4.0.2':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
+ '@smithy/shared-ini-file-loader@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
tslib: 2.8.1
'@smithy/signature-v4@5.0.2':
dependencies:
'@smithy/is-array-buffer': 4.0.0
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
'@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-middleware': 4.0.2
+ '@smithy/util-middleware': 4.0.4
+ '@smithy/util-uri-escape': 4.0.0
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
+ '@smithy/signature-v4@5.1.2':
+ dependencies:
+ '@smithy/is-array-buffer': 4.0.0
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ '@smithy/util-hex-encoding': 4.0.0
+ '@smithy/util-middleware': 4.0.4
'@smithy/util-uri-escape': 4.0.0
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
@@ -19608,16 +24054,36 @@ snapshots:
'@smithy/util-stream': 4.2.0
tslib: 2.8.1
+ '@smithy/smithy-client@4.4.5':
+ dependencies:
+ '@smithy/core': 3.6.0
+ '@smithy/middleware-endpoint': 4.1.13
+ '@smithy/middleware-stack': 4.0.4
+ '@smithy/protocol-http': 5.1.2
+ '@smithy/types': 4.3.1
+ '@smithy/util-stream': 4.2.2
+ tslib: 2.8.1
+
'@smithy/types@4.2.0':
dependencies:
tslib: 2.8.1
+ '@smithy/types@4.3.1':
+ dependencies:
+ tslib: 2.8.1
+
'@smithy/url-parser@4.0.2':
dependencies:
'@smithy/querystring-parser': 4.0.2
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/url-parser@4.0.4':
+ dependencies:
+ '@smithy/querystring-parser': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/util-base64@4.0.0':
dependencies:
'@smithy/util-buffer-from': 4.0.0
@@ -19646,6 +24112,14 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@smithy/util-defaults-mode-browser@4.0.21':
+ dependencies:
+ '@smithy/property-provider': 4.0.4
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ bowser: 2.11.0
+ tslib: 2.8.1
+
'@smithy/util-defaults-mode-browser@4.0.8':
dependencies:
'@smithy/property-provider': 4.0.2
@@ -19654,6 +24128,16 @@ snapshots:
bowser: 2.11.0
tslib: 2.8.1
+ '@smithy/util-defaults-mode-node@4.0.21':
+ dependencies:
+ '@smithy/config-resolver': 4.1.4
+ '@smithy/credential-provider-imds': 4.0.6
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/property-provider': 4.0.4
+ '@smithy/smithy-client': 4.4.5
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/util-defaults-mode-node@4.0.8':
dependencies:
'@smithy/config-resolver': 4.1.0
@@ -19670,6 +24154,12 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/util-endpoints@3.0.6':
+ dependencies:
+ '@smithy/node-config-provider': 4.1.3
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/util-hex-encoding@4.0.0':
dependencies:
tslib: 2.8.1
@@ -19679,12 +24169,23 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/util-middleware@4.0.4':
+ dependencies:
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/util-retry@4.0.2':
dependencies:
'@smithy/service-error-classification': 4.0.2
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/util-retry@4.0.6':
+ dependencies:
+ '@smithy/service-error-classification': 4.0.6
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@smithy/util-stream@4.2.0':
dependencies:
'@smithy/fetch-http-handler': 5.0.2
@@ -19696,6 +24197,17 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
+ '@smithy/util-stream@4.2.2':
+ dependencies:
+ '@smithy/fetch-http-handler': 5.0.4
+ '@smithy/node-http-handler': 4.0.6
+ '@smithy/types': 4.3.1
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-buffer-from': 4.0.0
+ '@smithy/util-hex-encoding': 4.0.0
+ '@smithy/util-utf8': 4.0.0
+ tslib: 2.8.1
+
'@smithy/util-uri-escape@4.0.0':
dependencies:
tslib: 2.8.1
@@ -19716,22 +24228,108 @@ snapshots:
'@smithy/types': 4.2.0
tslib: 2.8.1
+ '@smithy/util-waiter@4.0.6':
+ dependencies:
+ '@smithy/abort-controller': 4.0.4
+ '@smithy/types': 4.3.1
+ tslib: 2.8.1
+
'@socket.io/component-emitter@3.1.2': {}
'@stablelib/base64@1.0.1': {}
+ '@standard-schema/spec@1.0.0': {}
+
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.15':
dependencies:
tslib: 2.8.1
+ '@tailwindcss/node@4.1.11':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ enhanced-resolve: 5.18.1
+ jiti: 2.4.2
+ lightningcss: 1.30.1
+ magic-string: 0.30.17
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.11
+
+ '@tailwindcss/oxide-android-arm64@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.11':
+ optional: true
+
+ '@tailwindcss/oxide@4.1.11':
+ dependencies:
+ detect-libc: 2.0.4
+ tar: 7.4.3
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.11
+ '@tailwindcss/oxide-darwin-arm64': 4.1.11
+ '@tailwindcss/oxide-darwin-x64': 4.1.11
+ '@tailwindcss/oxide-freebsd-x64': 4.1.11
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.11
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.11
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.11
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.11
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.11
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.11
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.11
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.11
+
+ '@tailwindcss/postcss@4.1.11':
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ '@tailwindcss/node': 4.1.11
+ '@tailwindcss/oxide': 4.1.11
+ postcss: 8.5.6
+ tailwindcss: 4.1.11
+
'@tanstack/react-virtual@3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@tanstack/virtual-core': 3.13.5
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@tanstack/react-virtual@3.13.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@tanstack/virtual-core': 3.13.5
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
'@tanstack/virtual-core@3.13.5': {}
'@testing-library/dom@10.4.0':
@@ -19772,6 +24370,10 @@ snapshots:
dependencies:
'@tiptap/pm': 2.12.0
+ '@tiptap/core@2.25.0(@tiptap/pm@2.12.0)':
+ dependencies:
+ '@tiptap/pm': 2.12.0
+
'@tiptap/extension-bold@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))':
dependencies:
'@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
@@ -19782,27 +24384,50 @@ snapshots:
'@tiptap/pm': 2.12.0
tippy.js: 6.3.7
+ '@tiptap/extension-bubble-menu@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/pm': 2.12.0
+ tippy.js: 6.3.7
+
'@tiptap/extension-code@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))':
dependencies:
'@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
- '@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))':
+ '@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))':
dependencies:
- '@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
y-prosemirror: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)
- '@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))':
+ '@tiptap/extension-collaboration-cursor@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
dependencies:
- '@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ y-prosemirror: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+
+ '@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24))':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
'@tiptap/pm': 2.12.0
y-prosemirror: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.24))(yjs@13.6.24)
+ '@tiptap/extension-collaboration@2.11.5(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27))':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/pm': 2.12.0
+ y-prosemirror: 1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27)
+
'@tiptap/extension-floating-menu@2.12.0(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
dependencies:
'@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
'@tiptap/pm': 2.12.0
tippy.js: 6.3.7
+ '@tiptap/extension-floating-menu@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/pm': 2.12.0
+ tippy.js: 6.3.7
+
'@tiptap/extension-gapcursor@2.11.5(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
dependencies:
'@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
@@ -19885,15 +24510,45 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
use-sync-external-store: 1.4.0(react@18.3.1)
- '@tiptap/suggestion@2.11.7(@tiptap/core@2.12.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
+ '@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tiptap/core': 2.12.0(@tiptap/pm@2.12.0)
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/extension-bubble-menu': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ '@tiptap/extension-floating-menu': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ '@tiptap/pm': 2.12.0
+ '@types/use-sync-external-store': 0.0.6
+ fast-deep-equal: 3.1.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ use-sync-external-store: 1.4.0(react@18.3.1)
+
+ '@tiptap/react@2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
+ '@tiptap/extension-bubble-menu': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ '@tiptap/extension-floating-menu': 2.12.0(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)
+ '@tiptap/pm': 2.12.0
+ '@types/use-sync-external-store': 0.0.6
+ fast-deep-equal: 3.1.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ use-sync-external-store: 1.4.0(react@19.1.0)
+
+ '@tiptap/suggestion@2.11.7(@tiptap/core@2.25.0(@tiptap/pm@2.12.0))(@tiptap/pm@2.12.0)':
+ dependencies:
+ '@tiptap/core': 2.25.0(@tiptap/pm@2.12.0)
'@tiptap/pm': 2.12.0
'@tootallnate/once@2.0.0': {}
'@transloadit/prettier-bytes@0.3.5': {}
+ '@ts-morph/common@0.27.0':
+ dependencies:
+ fast-glob: 3.3.3
+ minimatch: 10.0.3
+ path-browserify: 1.0.1
+
'@tybys/wasm-util@0.9.0':
dependencies:
tslib: 2.8.1
@@ -19931,7 +24586,7 @@ snapshots:
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@types/cookie@0.6.0': {}
@@ -20015,7 +24670,7 @@ snapshots:
'@types/jsdom@21.1.7':
dependencies:
- '@types/node': 20.17.28
+ '@types/node': 20.17.50
'@types/tough-cookie': 4.0.5
parse5: 7.2.1
@@ -20068,7 +24723,7 @@ snapshots:
'@types/mysql@2.15.26':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@types/node@20.17.28':
dependencies:
@@ -20086,10 +24741,13 @@ snapshots:
dependencies:
undici-types: 6.20.0
- '@types/node@22.14.1':
+ '@types/node@22.15.2':
dependencies:
undici-types: 6.21.0
- optional: true
+
+ '@types/node@24.0.10':
+ dependencies:
+ undici-types: 7.8.0
'@types/nodemailer@6.4.17':
dependencies:
@@ -20109,13 +24767,13 @@ snapshots:
'@types/pg@8.6.1':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
pg-protocol: 1.9.5
pg-types: 2.2.0
'@types/pixelmatch@5.2.6':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@types/prop-types@15.7.14': {}
@@ -20123,15 +24781,27 @@ snapshots:
dependencies:
'@types/react': 18.3.20
+ '@types/react-dom@19.1.6(@types/react@19.1.8)':
+ dependencies:
+ '@types/react': 19.1.8
+
'@types/react-transition-group@4.4.12(@types/react@18.3.20)':
dependencies:
'@types/react': 18.3.20
+ '@types/react-transition-group@4.4.12(@types/react@19.1.8)':
+ dependencies:
+ '@types/react': 19.1.8
+
'@types/react@18.3.20':
dependencies:
'@types/prop-types': 15.7.14
csstype: 3.1.3
+ '@types/react@19.1.8':
+ dependencies:
+ csstype: 3.1.3
+
'@types/retry@0.12.2': {}
'@types/semver@7.7.0': {}
@@ -20144,7 +24814,7 @@ snapshots:
'@types/tedious@4.0.14':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@types/tough-cookie@4.0.5': {}
@@ -20156,6 +24826,8 @@ snapshots:
'@types/uuid@8.3.4': {}
+ '@types/uuid@9.0.8': {}
+
'@types/yargs-parser@21.0.3': {}
'@types/yargs@17.0.33':
@@ -20254,6 +24926,13 @@ snapshots:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
+ '@typescript/vfs@1.6.1(typescript@5.8.3)':
+ dependencies:
+ debug: 4.4.1
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
'@ungap/structured-clone@1.3.0': {}
'@unrs/resolver-binding-darwin-arm64@1.3.2':
@@ -20390,6 +25069,19 @@ snapshots:
'@uppy/progress-bar': 3.1.1(@uppy/core@3.13.1)
'@uppy/status-bar': 3.3.3(@uppy/core@3.13.1)
+ '@uppy/react@3.4.0(@uppy/core@3.13.1)(@uppy/dashboard@3.9.1(@uppy/core@3.13.1))(@uppy/drag-drop@3.1.1(@uppy/core@3.13.1))(@uppy/file-input@3.1.2(@uppy/core@3.13.1))(@uppy/progress-bar@3.1.1(@uppy/core@3.13.1))(@uppy/status-bar@3.3.3(@uppy/core@3.13.1))(react@19.1.0)':
+ dependencies:
+ '@uppy/core': 3.13.1
+ '@uppy/utils': 5.9.0
+ prop-types: 15.8.1
+ react: 19.1.0
+ optionalDependencies:
+ '@uppy/dashboard': 3.9.1(@uppy/core@3.13.1)
+ '@uppy/drag-drop': 3.1.1(@uppy/core@3.13.1)
+ '@uppy/file-input': 3.1.2(@uppy/core@3.13.1)
+ '@uppy/progress-bar': 3.1.1(@uppy/core@3.13.1)
+ '@uppy/status-bar': 3.3.3(@uppy/core@3.13.1)
+
'@uppy/screen-capture@3.2.0(@uppy/core@3.13.1)':
dependencies:
'@uppy/core': 3.13.1
@@ -20435,12 +25127,23 @@ snapshots:
next: 15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
+ '@vercel/analytics@1.5.0(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ optionalDependencies:
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+
'@vercel/og@0.6.5':
dependencies:
'@resvg/resvg-wasm': 2.4.0
satori: 0.12.1
yoga-wasm-web: 0.3.3
+ '@vercel/og@0.6.8':
+ dependencies:
+ '@resvg/resvg-wasm': 2.4.0
+ satori: 0.12.2
+ yoga-wasm-web: 0.3.3
+
'@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))':
dependencies:
'@babel/core': 7.26.10
@@ -20452,14 +25155,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))':
+ '@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
transitivePeerDependencies:
- supports-color
@@ -20474,25 +25177,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.4.1(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))':
+ '@vitejs/plugin-react@4.4.1(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))':
+ '@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
@@ -20503,23 +25206,23 @@ snapshots:
chai: 5.2.0
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.9(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.2))(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))':
+ '@vitest/mocker@2.1.9(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.3))(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))':
dependencies:
'@vitest/spy': 2.1.9
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- msw: 2.7.3(@types/node@20.17.28)(typescript@5.8.2)
+ msw: 2.7.3(@types/node@20.17.28)(typescript@5.8.3)
vite: 5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)
- '@vitest/mocker@2.1.9(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))':
+ '@vitest/mocker@2.1.9(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))':
dependencies:
'@vitest/spy': 2.1.9
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- msw: 2.7.3(@types/node@22.14.1)(typescript@5.8.2)
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ msw: 2.7.3(@types/node@24.0.10)(typescript@5.8.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
'@vitest/pretty-format@2.1.9':
dependencies:
@@ -20549,7 +25252,7 @@ snapshots:
sirv: 3.0.1
tinyglobby: 0.2.12
tinyrainbow: 1.2.0
- vitest: 2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2)
+ vitest: 2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2)
'@vitest/utils@2.1.9':
dependencies:
@@ -20643,6 +25346,12 @@ snapshots:
y-protocols: 1.0.6(yjs@13.6.24)
yjs: 13.6.24
+ '@y-sweet/client@0.6.4(yjs@13.6.27)':
+ dependencies:
+ '@y-sweet/sdk': 0.6.4
+ y-protocols: 1.0.6(yjs@13.6.27)
+ yjs: 13.6.27
+
'@y-sweet/react@0.6.4(react@18.3.1)(yjs@13.6.24)':
dependencies:
'@y-sweet/client': 0.6.4(yjs@13.6.24)
@@ -20651,9 +25360,25 @@ snapshots:
y-protocols: 1.0.6(yjs@13.6.24)
yjs: 13.6.24
+ '@y-sweet/react@0.6.4(react@18.3.1)(yjs@13.6.27)':
+ dependencies:
+ '@y-sweet/client': 0.6.4(yjs@13.6.27)
+ '@y-sweet/sdk': 0.6.4
+ react: 18.3.1
+ y-protocols: 1.0.6(yjs@13.6.27)
+ yjs: 13.6.27
+
+ '@y-sweet/react@0.6.4(react@19.1.0)(yjs@13.6.27)':
+ dependencies:
+ '@y-sweet/client': 0.6.4(yjs@13.6.27)
+ '@y-sweet/sdk': 0.6.4
+ react: 19.1.0
+ y-protocols: 1.0.6(yjs@13.6.27)
+ yjs: 13.6.27
+
'@y-sweet/sdk@0.6.4':
dependencies:
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
'@yarnpkg/lockfile@1.1.0': {}
@@ -20705,24 +25430,36 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.0
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
agent-base@7.1.3: {}
- ai@4.3.15(react@18.3.1)(zod@3.24.2):
+ ai@4.3.15(react@18.3.1)(zod@3.25.75):
dependencies:
'@ai-sdk/provider': 1.1.3
- '@ai-sdk/provider-utils': 2.2.8(zod@3.24.2)
- '@ai-sdk/react': 1.2.12(react@18.3.1)(zod@3.24.2)
- '@ai-sdk/ui-utils': 1.2.11(zod@3.24.2)
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ '@ai-sdk/react': 1.2.12(react@18.3.1)(zod@3.25.75)
+ '@ai-sdk/ui-utils': 1.2.11(zod@3.25.75)
'@opentelemetry/api': 1.9.0
jsondiffpatch: 0.6.0
- zod: 3.24.2
+ zod: 3.25.75
optionalDependencies:
react: 18.3.1
+ ai@4.3.15(react@19.1.0)(zod@3.25.75):
+ dependencies:
+ '@ai-sdk/provider': 1.1.3
+ '@ai-sdk/provider-utils': 2.2.8(zod@3.25.75)
+ '@ai-sdk/react': 1.2.12(react@19.1.0)(zod@3.25.75)
+ '@ai-sdk/ui-utils': 1.2.11(zod@3.25.75)
+ '@opentelemetry/api': 1.9.0
+ jsondiffpatch: 0.6.0
+ zod: 3.25.75
+ optionalDependencies:
+ react: 19.1.0
+
ajv-formats@2.1.1(ajv@8.17.1):
optionalDependencies:
ajv: 8.17.1
@@ -20924,6 +25661,16 @@ snapshots:
postcss: 8.5.3
postcss-value-parser: 4.2.0
+ autoprefixer@10.4.21(postcss@8.5.6):
+ dependencies:
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001707
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.5.6
+ postcss-value-parser: 4.2.0
+
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
@@ -20979,6 +25726,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-react-compiler@19.1.0-rc.2:
+ dependencies:
+ '@babel/types': 7.27.0
+
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.10)(@babel/traverse@7.27.0):
@@ -21020,6 +25771,21 @@ snapshots:
base64id@2.0.0: {}
+ better-auth@1.2.12:
+ dependencies:
+ '@better-auth/utils': 0.2.5
+ '@better-fetch/fetch': 1.1.18
+ '@noble/ciphers': 0.6.0
+ '@noble/hashes': 1.7.2
+ '@simplewebauthn/browser': 13.1.0
+ '@simplewebauthn/server': 13.1.1
+ better-call: 1.0.8
+ defu: 6.1.4
+ jose: 6.0.11
+ kysely: 0.28.2
+ nanostores: 0.11.4
+ zod: 3.25.75
+
better-auth@1.2.7:
dependencies:
'@better-auth/utils': 0.2.4
@@ -21042,6 +25808,11 @@ snapshots:
set-cookie-parser: 2.7.1
uncrypto: 0.1.3
+ better-sqlite3@11.10.0:
+ dependencies:
+ bindings: 1.5.0
+ prebuild-install: 7.1.3
+
better-sqlite3@11.9.1:
dependencies:
bindings: 1.5.0
@@ -21103,7 +25874,7 @@ snapshots:
browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001707
+ caniuse-lite: 1.0.30001718
electron-to-chromium: 1.5.126
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.24.4)
@@ -21185,7 +25956,7 @@ snapshots:
capnp-ts@0.7.0:
dependencies:
- debug: 4.4.0
+ debug: 4.4.1
tslib: 2.8.1
transitivePeerDependencies:
- supports-color
@@ -21255,6 +26026,8 @@ snapshots:
chownr@2.0.0:
optional: true
+ chownr@3.0.0: {}
+
chrome-trace-event@1.0.4: {}
ci-info@3.9.0: {}
@@ -21316,16 +26089,32 @@ snapshots:
cmdk@1.1.1(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-dialog': 1.1.6(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.20)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.2(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-dialog': 1.1.14(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@18.3.20)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(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)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
+ cmdk@1.1.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
+ code-block-writer@13.0.3: {}
+
+ collapse-white-space@2.1.0: {}
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -21791,8 +26580,7 @@ snapshots:
detect-libc@2.0.3: {}
- detect-libc@2.0.4:
- optional: true
+ detect-libc@2.0.4: {}
detect-node-es@1.1.0: {}
@@ -21842,6 +26630,15 @@ snapshots:
xml: 1.0.1
xml-js: 1.6.11
+ docx@9.5.1:
+ dependencies:
+ '@types/node': 24.0.10
+ hash.js: 1.1.7
+ jszip: 3.10.1
+ nanoid: 5.1.5
+ xml: 1.0.1
+ xml-js: 1.6.11
+
dom-accessibility-api@0.5.16: {}
dom-helpers@5.2.1:
@@ -22055,6 +26852,20 @@ snapshots:
is-date-object: 1.1.0
is-symbol: 1.1.1
+ esast-util-from-estree@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+
+ esast-util-from-js@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ acorn: 8.14.1
+ esast-util-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
esbuild@0.20.0:
optionalDependencies:
'@esbuild/aix-ppc64': 0.20.0
@@ -22163,6 +26974,35 @@ snapshots:
'@esbuild/win32-ia32': 0.25.1
'@esbuild/win32-x64': 0.25.1
+ esbuild@0.25.6:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.6
+ '@esbuild/android-arm': 0.25.6
+ '@esbuild/android-arm64': 0.25.6
+ '@esbuild/android-x64': 0.25.6
+ '@esbuild/darwin-arm64': 0.25.6
+ '@esbuild/darwin-x64': 0.25.6
+ '@esbuild/freebsd-arm64': 0.25.6
+ '@esbuild/freebsd-x64': 0.25.6
+ '@esbuild/linux-arm': 0.25.6
+ '@esbuild/linux-arm64': 0.25.6
+ '@esbuild/linux-ia32': 0.25.6
+ '@esbuild/linux-loong64': 0.25.6
+ '@esbuild/linux-mips64el': 0.25.6
+ '@esbuild/linux-ppc64': 0.25.6
+ '@esbuild/linux-riscv64': 0.25.6
+ '@esbuild/linux-s390x': 0.25.6
+ '@esbuild/linux-x64': 0.25.6
+ '@esbuild/netbsd-arm64': 0.25.6
+ '@esbuild/netbsd-x64': 0.25.6
+ '@esbuild/openbsd-arm64': 0.25.6
+ '@esbuild/openbsd-x64': 0.25.6
+ '@esbuild/openharmony-arm64': 0.25.6
+ '@esbuild/sunos-x64': 0.25.6
+ '@esbuild/win32-arm64': 0.25.6
+ '@esbuild/win32-ia32': 0.25.6
+ '@esbuild/win32-x64': 0.25.6
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -22448,29 +27288,62 @@ snapshots:
dependencies:
'@types/estree': 1.0.7
+ estree-util-attach-comments@3.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+
estree-util-build-jsx@2.2.2:
dependencies:
'@types/estree-jsx': 1.0.5
estree-util-is-identifier-name: 2.1.0
estree-walker: 3.0.3
+ estree-util-build-jsx@3.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ estree-walker: 3.0.3
+
estree-util-is-identifier-name@2.1.0: {}
+ estree-util-is-identifier-name@3.0.0: {}
+
+ estree-util-scope@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ devlop: 1.1.0
+
estree-util-to-js@1.2.0:
dependencies:
'@types/estree-jsx': 1.0.5
astring: 1.9.0
source-map: 0.7.4
+ estree-util-to-js@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ astring: 1.9.0
+ source-map: 0.7.4
+
estree-util-value-to-estree@1.3.0:
dependencies:
is-plain-obj: 3.0.0
+ estree-util-value-to-estree@3.4.0:
+ dependencies:
+ '@types/estree': 1.0.7
+
estree-util-visit@1.2.1:
dependencies:
'@types/estree-jsx': 1.0.5
'@types/unist': 2.0.11
+ estree-util-visit@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/unist': 3.0.3
+
estree-walker@2.0.2: {}
estree-walker@3.0.3:
@@ -22652,18 +27525,30 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@10.18.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ framer-motion@10.18.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
dependencies:
tslib: 2.8.1
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
frimousse@0.2.0(react@18.3.1):
dependencies:
react: 18.3.1
+ frimousse@0.2.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
front-matter@4.0.2:
dependencies:
js-yaml: 3.14.1
@@ -22683,6 +27568,134 @@ snapshots:
fsevents@2.3.3:
optional: true
+ fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@formatjs/intl-localematcher': 0.6.1
+ '@orama/orama': 3.1.10
+ '@shikijs/rehype': 3.7.0
+ '@shikijs/transformers': 3.7.0
+ github-slugger: 2.0.0
+ hast-util-to-estree: 3.1.3
+ hast-util-to-jsx-runtime: 2.3.6
+ image-size: 2.0.2
+ negotiator: 1.0.0
+ npm-to-yarn: 3.0.1
+ react-remove-scroll: 2.7.1(@types/react@19.1.8)(react@19.1.0)
+ remark: 15.0.1
+ remark-gfm: 4.0.1
+ remark-rehype: 11.1.2
+ scroll-into-view-if-needed: 3.1.0
+ shiki: 3.7.0
+ unist-util-visit: 5.0.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ fumadocs-docgen@2.1.0:
+ dependencies:
+ estree-util-to-js: 2.0.0
+ estree-util-value-to-estree: 3.4.0
+ npm-to-yarn: 3.0.1
+ oxc-transform: 0.75.1
+ unist-util-visit: 5.0.0
+ zod: 3.25.75
+
+ fumadocs-mdx@11.6.10(@fumadocs/mdx-remote@1.3.0(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0))(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.3.5(@types/node@22.15.2)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
+ dependencies:
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.1)
+ '@standard-schema/spec': 1.0.0
+ chokidar: 4.0.3
+ esbuild: 0.25.6
+ estree-util-value-to-estree: 3.4.0
+ fumadocs-core: 15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ js-yaml: 4.1.0
+ lru-cache: 11.1.0
+ picocolors: 1.1.1
+ tinyexec: 1.0.1
+ tinyglobby: 0.2.14
+ unist-util-visit: 5.0.0
+ zod: 3.25.75
+ optionalDependencies:
+ '@fumadocs/mdx-remote': 1.3.0(acorn@8.14.1)(fumadocs-core@15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ vite: 6.3.5(@types/node@22.15.2)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ transitivePeerDependencies:
+ - acorn
+ - supports-color
+
+ fumadocs-twoslash@3.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(fumadocs-ui@15.6.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3):
+ dependencies:
+ '@radix-ui/react-popover': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@shikijs/twoslash': 3.7.0(typescript@5.8.3)
+ fumadocs-ui: 15.6.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11)
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-gfm: 3.1.0
+ mdast-util-to-hast: 13.2.0
+ react: 19.1.0
+ shiki: 3.7.0
+ tailwind-merge: 3.3.1
+ twoslash: 0.3.2(typescript@5.8.3)
+ optionalDependencies:
+ '@types/react': 19.1.8
+ transitivePeerDependencies:
+ - '@types/react-dom'
+ - react-dom
+ - supports-color
+ - typescript
+
+ fumadocs-typescript@4.0.6(@types/react@19.1.8)(typescript@5.8.3):
+ dependencies:
+ estree-util-value-to-estree: 3.4.0
+ hast-util-to-estree: 3.1.3
+ hast-util-to-jsx-runtime: 2.3.6
+ remark: 15.0.1
+ remark-rehype: 11.1.2
+ shiki: 3.7.0
+ tinyglobby: 0.2.14
+ ts-morph: 26.0.0
+ typescript: 5.8.3
+ unist-util-visit: 5.0.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+ transitivePeerDependencies:
+ - supports-color
+
+ fumadocs-ui@15.6.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.1.11):
+ dependencies:
+ '@radix-ui/react-accordion': 1.2.11(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-collapsible': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-navigation-menu': 1.2.13(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-popover': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-scroll-area': 1.2.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0)
+ '@radix-ui/react-tabs': 1.1.12(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ class-variance-authority: 0.7.1
+ fumadocs-core: 15.6.1(@types/react@19.1.8)(next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ lodash.merge: 4.6.2
+ next-themes: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ postcss-selector-parser: 7.1.0
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ react-medium-image-zoom: 5.2.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ scroll-into-view-if-needed: 3.1.0
+ tailwind-merge: 3.3.1
+ optionalDependencies:
+ '@types/react': 19.1.8
+ next: 15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ tailwindcss: 4.1.11
+ transitivePeerDependencies:
+ - '@oramacloud/client'
+ - '@types/react-dom'
+ - algoliasearch
+ - supports-color
+
function-bind@1.1.2: {}
function.prototype.name@1.1.8:
@@ -23032,6 +28045,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ hast-util-to-estree@3.1.3:
+ dependencies:
+ '@types/estree': 1.0.7
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-attach-comments: 3.0.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.2.0
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 7.0.0
+ space-separated-tokens: 2.0.2
+ style-to-js: 1.1.17
+ unist-util-position: 5.0.0
+ zwitch: 2.0.4
+ transitivePeerDependencies:
+ - supports-color
+
hast-util-to-html@9.0.5:
dependencies:
'@types/hast': 3.0.4
@@ -23046,6 +28080,26 @@ snapshots:
stringify-entities: 4.0.4
zwitch: 2.0.4
+ hast-util-to-jsx-runtime@2.3.6:
+ dependencies:
+ '@types/estree': 1.0.7
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.2.0
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 7.0.0
+ space-separated-tokens: 2.0.2
+ style-to-js: 1.1.17
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
hast-util-to-mdast@10.1.2:
dependencies:
'@types/hast': 3.0.4
@@ -23073,6 +28127,10 @@ snapshots:
web-namespaces: 2.0.1
zwitch: 2.0.4
+ hast-util-to-string@3.0.1:
+ dependencies:
+ '@types/hast': 3.0.4
+
hast-util-to-text@4.0.2:
dependencies:
'@types/hast': 3.0.4
@@ -23190,6 +28248,8 @@ snapshots:
image-meta@0.2.1: {}
+ image-size@2.0.2: {}
+
immediate@3.0.6: {}
immer@10.1.1: {}
@@ -23199,7 +28259,7 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-in-the-middle@1.13.1:
+ import-in-the-middle@1.14.2:
dependencies:
acorn: 8.14.1
acorn-import-attributes: 1.9.5(acorn@8.14.1)
@@ -23219,6 +28279,8 @@ snapshots:
inline-style-parser@0.1.1: {}
+ inline-style-parser@0.2.4: {}
+
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
@@ -23525,7 +28587,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.17.45
+ '@types/node': 20.17.50
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -23539,8 +28601,7 @@ snapshots:
jiti@1.21.7: {}
- jiti@2.4.2:
- optional: true
+ jiti@2.4.2: {}
joi@17.13.3:
dependencies:
@@ -23552,6 +28613,8 @@ snapshots:
jose@5.10.0: {}
+ jose@6.0.11: {}
+
js-base64@3.7.7: {}
js-tokens@4.0.0: {}
@@ -23692,6 +28755,8 @@ snapshots:
kysely@0.27.6: {}
+ kysely@0.28.2: {}
+
language-subtag-registry@0.3.23: {}
language-tags@1.0.9:
@@ -23759,7 +28824,6 @@ snapshots:
lightningcss-linux-x64-musl: 1.30.1
lightningcss-win32-arm64-msvc: 1.30.1
lightningcss-win32-x64-msvc: 1.30.1
- optional: true
lilconfig@3.1.3: {}
@@ -23859,6 +28923,8 @@ snapshots:
markdown-extensions@1.1.1: {}
+ markdown-extensions@2.0.0: {}
+
markdown-it@14.1.0:
dependencies:
argparse: 2.0.1
@@ -23884,6 +28950,11 @@ snapshots:
marked: 7.0.4
react: 18.3.1
+ md-to-react-email@5.0.5(react@19.1.0):
+ dependencies:
+ marked: 7.0.4
+ react: 19.1.0
+
mdast-util-definitions@5.1.2:
dependencies:
'@types/mdast': 3.0.15
@@ -24055,6 +29126,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-mdx-expression@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-mdx-jsx@2.1.4:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -24072,6 +29154,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-mdx-jsx@3.2.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ parse-entities: 4.0.2
+ stringify-entities: 4.0.4
+ unist-util-stringify-position: 4.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-mdx@2.0.1:
dependencies:
mdast-util-from-markdown: 1.3.1
@@ -24082,6 +29181,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-mdx@3.0.0:
+ dependencies:
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.2.0
+ mdast-util-mdxjs-esm: 2.0.1
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-mdxjs-esm@1.3.1:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -24092,6 +29201,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-mdxjs-esm@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-phrasing@3.0.1:
dependencies:
'@types/mdast': 3.0.15
@@ -24366,6 +29486,17 @@ snapshots:
micromark-util-types: 1.1.0
uvu: 0.5.6
+ micromark-extension-mdx-expression@3.0.1:
+ dependencies:
+ '@types/estree': 1.0.7
+ devlop: 1.1.0
+ micromark-factory-mdx-expression: 2.0.3
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-extension-mdx-jsx@1.0.5:
dependencies:
'@types/acorn': 4.0.6
@@ -24379,10 +29510,27 @@ snapshots:
uvu: 0.5.6
vfile-message: 3.1.4
+ micromark-extension-mdx-jsx@3.0.2:
+ dependencies:
+ '@types/estree': 1.0.7
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ micromark-factory-mdx-expression: 2.0.3
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ vfile-message: 4.0.2
+
micromark-extension-mdx-md@1.0.1:
dependencies:
micromark-util-types: 1.1.0
+ micromark-extension-mdx-md@2.0.0:
+ dependencies:
+ micromark-util-types: 2.0.2
+
micromark-extension-mdxjs-esm@1.0.5:
dependencies:
'@types/estree': 1.0.7
@@ -24395,6 +29543,18 @@ snapshots:
uvu: 0.5.6
vfile-message: 3.1.4
+ micromark-extension-mdxjs-esm@3.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.3
+ micromark-util-character: 2.1.1
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ unist-util-position-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
micromark-extension-mdxjs@1.0.1:
dependencies:
acorn: 8.14.1
@@ -24406,6 +29566,17 @@ snapshots:
micromark-util-combine-extensions: 1.1.0
micromark-util-types: 1.1.0
+ micromark-extension-mdxjs@3.0.0:
+ dependencies:
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
+ micromark-extension-mdx-expression: 3.0.1
+ micromark-extension-mdx-jsx: 3.0.2
+ micromark-extension-mdx-md: 2.0.0
+ micromark-extension-mdxjs-esm: 3.0.0
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-types: 2.0.2
+
micromark-factory-destination@1.1.0:
dependencies:
micromark-util-character: 1.2.0
@@ -24443,6 +29614,18 @@ snapshots:
uvu: 0.5.6
vfile-message: 3.1.4
+ micromark-factory-mdx-expression@2.0.3:
+ dependencies:
+ '@types/estree': 1.0.7
+ devlop: 1.1.0
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-events-to-acorn: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ unist-util-position-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
micromark-factory-space@1.1.0:
dependencies:
micromark-util-character: 1.2.0
@@ -24558,6 +29741,16 @@ snapshots:
uvu: 0.5.6
vfile-message: 3.1.4
+ micromark-util-events-to-acorn@2.0.3:
+ dependencies:
+ '@types/estree': 1.0.7
+ '@types/unist': 3.0.3
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ vfile-message: 4.0.2
+
micromark-util-html-tag-name@1.2.0: {}
micromark-util-html-tag-name@2.0.1: {}
@@ -24615,7 +29808,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0
+ debug: 4.4.1
decode-named-character-reference: 1.1.0
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -24637,7 +29830,7 @@ snapshots:
micromark@4.0.2:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0
+ debug: 4.4.1
decode-named-character-reference: 1.1.0
devlop: 1.1.0
micromark-core-commonmark: 2.0.3
@@ -24707,7 +29900,7 @@ snapshots:
workerd: 1.20240129.0
ws: 8.18.1
youch: 3.3.4
- zod: 3.24.2
+ zod: 3.25.75
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -24759,11 +29952,17 @@ snapshots:
yallist: 4.0.0
optional: true
+ minizlib@3.0.2:
+ dependencies:
+ minipass: 7.1.2
+
mkdirp-classic@0.5.3: {}
mkdirp@1.0.4:
optional: true
+ mkdirp@3.0.1: {}
+
module-details-from-path@1.0.3: {}
mri@1.2.0: {}
@@ -24774,11 +29973,11 @@ snapshots:
ms@2.1.3: {}
- msw-snapshot@5.2.0(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2)):
+ msw-snapshot@5.2.0(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2)):
dependencies:
- msw: 2.7.3(@types/node@22.14.1)(typescript@5.8.2)
+ msw: 2.7.3(@types/node@24.0.10)(typescript@5.8.2)
- msw@2.7.3(@types/node@20.17.28)(typescript@5.8.2):
+ msw@2.7.3(@types/node@20.17.28)(typescript@5.8.3):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
@@ -24799,17 +29998,17 @@ snapshots:
type-fest: 4.38.0
yargs: 17.7.2
optionalDependencies:
- typescript: 5.8.2
+ typescript: 5.8.3
transitivePeerDependencies:
- '@types/node'
optional: true
- msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2):
+ msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.9(@types/node@22.14.1)
+ '@inquirer/confirm': 5.1.9(@types/node@24.0.10)
'@mswjs/interceptors': 0.37.6
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
@@ -24860,6 +30059,8 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
next-mdx-remote@4.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
@@ -24885,13 +30086,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 15.2.4
'@swc/counter': 0.1.3
'@swc/helpers': 0.5.15
busboy: 1.6.0
- caniuse-lite: 1.0.30001707
+ caniuse-lite: 1.0.30001718
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -24912,6 +30118,34 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 15.3.1
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.15
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001707
+ postcss: 8.4.31
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.3.1
+ '@next/swc-darwin-x64': 15.3.1
+ '@next/swc-linux-arm64-gnu': 15.3.1
+ '@next/swc-linux-arm64-musl': 15.3.1
+ '@next/swc-linux-x64-gnu': 15.3.1
+ '@next/swc-linux-x64-musl': 15.3.1
+ '@next/swc-win32-arm64-msvc': 15.3.1
+ '@next/swc-win32-x64-msvc': 15.3.1
+ '@opentelemetry/api': 1.9.0
+ '@playwright/test': 1.51.1
+ babel-plugin-react-compiler: 19.1.0-rc.2
+ sharp: 0.34.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 15.3.1
@@ -24939,6 +30173,32 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
+ next@15.4.0-canary.116(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 15.4.0-canary.116
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001718
+ postcss: 8.4.31
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.4.0-canary.116
+ '@next/swc-darwin-x64': 15.4.0-canary.116
+ '@next/swc-linux-arm64-gnu': 15.4.0-canary.116
+ '@next/swc-linux-arm64-musl': 15.4.0-canary.116
+ '@next/swc-linux-x64-gnu': 15.4.0-canary.116
+ '@next/swc-linux-x64-musl': 15.4.0-canary.116
+ '@next/swc-win32-arm64-msvc': 15.4.0-canary.116
+ '@next/swc-win32-x64-msvc': 15.4.0-canary.116
+ '@opentelemetry/api': 1.9.0
+ '@playwright/test': 1.51.1
+ babel-plugin-react-compiler: 19.1.0-rc.2
+ sharp: 0.34.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
nextra-theme-docs@2.13.4(next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@2.13.4(next@15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@headlessui/react': 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -25047,6 +30307,8 @@ snapshots:
npm-to-yarn@2.2.1: {}
+ npm-to-yarn@3.0.1: {}
+
npmlog@5.0.1:
dependencies:
are-we-there-yet: 2.0.0
@@ -25173,6 +30435,8 @@ snapshots:
dependencies:
mimic-function: 5.0.1
+ oniguruma-parser@0.12.1: {}
+
oniguruma-parser@0.5.4: {}
oniguruma-to-es@4.1.0:
@@ -25182,6 +30446,12 @@ snapshots:
regex: 6.0.1
regex-recursion: 6.0.2
+ oniguruma-to-es@4.3.3:
+ dependencies:
+ oniguruma-parser: 0.12.1
+ regex: 6.0.1
+ regex-recursion: 6.0.2
+
open@10.1.2:
dependencies:
default-browser: 5.2.1
@@ -25251,6 +30521,24 @@ snapshots:
object-keys: 1.1.1
safe-push-apply: 1.0.0
+ oxc-transform@0.75.1:
+ optionalDependencies:
+ '@oxc-transform/binding-android-arm64': 0.75.1
+ '@oxc-transform/binding-darwin-arm64': 0.75.1
+ '@oxc-transform/binding-darwin-x64': 0.75.1
+ '@oxc-transform/binding-freebsd-x64': 0.75.1
+ '@oxc-transform/binding-linux-arm-gnueabihf': 0.75.1
+ '@oxc-transform/binding-linux-arm-musleabihf': 0.75.1
+ '@oxc-transform/binding-linux-arm64-gnu': 0.75.1
+ '@oxc-transform/binding-linux-arm64-musl': 0.75.1
+ '@oxc-transform/binding-linux-riscv64-gnu': 0.75.1
+ '@oxc-transform/binding-linux-s390x-gnu': 0.75.1
+ '@oxc-transform/binding-linux-x64-gnu': 0.75.1
+ '@oxc-transform/binding-linux-x64-musl': 0.75.1
+ '@oxc-transform/binding-wasm32-wasi': 0.75.1
+ '@oxc-transform/binding-win32-arm64-msvc': 0.75.1
+ '@oxc-transform/binding-win32-x64-msvc': 0.75.1
+
p-finally@1.0.0: {}
p-limit@3.1.0:
@@ -25341,6 +30629,8 @@ snapshots:
- supports-color
- utf-8-validate
+ path-browserify@1.0.1: {}
+
path-exists@4.0.0: {}
path-is-absolute@1.0.1: {}
@@ -25510,6 +30800,11 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ postcss-selector-parser@7.1.0:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
postcss-value-parser@4.2.0: {}
postcss@8.4.31:
@@ -25518,7 +30813,13 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.3:
+ postcss@8.5.3:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ postcss@8.5.6:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -25773,6 +31074,11 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
+ react-dom@19.1.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ scheduler: 0.26.0
+
react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@base2/pretty-print-object': 1.0.1
@@ -25781,6 +31087,35 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-is: 18.1.0
+ react-email@4.0.16(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@babel/parser': 7.27.0
+ '@babel/traverse': 7.27.0
+ chalk: 5.4.1
+ chokidar: 4.0.3
+ commander: 13.1.0
+ debounce: 2.0.0
+ esbuild: 0.25.1
+ glob: 11.0.3
+ log-symbols: 7.0.1
+ mime-types: 3.0.1
+ next: 15.3.1(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.1.0-rc.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ normalize-path: 3.0.0
+ ora: 8.2.0
+ socket.io: 4.8.1
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@opentelemetry/api'
+ - '@playwright/test'
+ - babel-plugin-macros
+ - babel-plugin-react-compiler
+ - bufferutil
+ - react
+ - react-dom
+ - sass
+ - supports-color
+ - utf-8-validate
+
react-email@4.0.16(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@babel/parser': 7.27.0
@@ -25844,6 +31179,11 @@ snapshots:
github-buttons: 2.29.1
react: 18.3.1
+ react-github-btn@1.4.0(react@19.1.0):
+ dependencies:
+ github-buttons: 2.29.1
+ react: 19.1.0
+
react-hook-form@7.54.2(react@18.3.1):
dependencies:
react: 18.3.1
@@ -25852,6 +31192,10 @@ snapshots:
dependencies:
react: 18.3.1
+ react-icons@5.5.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
react-is@16.13.1: {}
react-is@17.0.2: {}
@@ -25862,11 +31206,21 @@ snapshots:
react-is@19.0.0: {}
+ react-medium-image-zoom@5.2.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
react-number-format@5.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-number-format@5.4.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
react-promise-suspense@0.3.4:
dependencies:
fast-deep-equal: 2.0.1
@@ -25883,6 +31237,14 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ react-remove-scroll-bar@2.3.8(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0)
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.8
+
react-remove-scroll@2.6.3(@types/react@18.3.20)(react@18.3.1):
dependencies:
react: 18.3.1
@@ -25894,6 +31256,39 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ react-remove-scroll@2.6.3(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.1.8)(react@19.1.0)
+ react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@19.1.8)(react@19.1.0)
+ use-sidecar: 1.1.3(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+
+ react-remove-scroll@2.7.1(@types/react@18.3.20)(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ react-remove-scroll-bar: 2.3.8(@types/react@18.3.20)(react@18.3.1)
+ react-style-singleton: 2.2.3(@types/react@18.3.20)(react@18.3.1)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@18.3.20)(react@18.3.1)
+ use-sidecar: 1.1.3(@types/react@18.3.20)(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.20
+
+ react-remove-scroll@2.7.1(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ react-remove-scroll-bar: 2.3.8(@types/react@19.1.8)(react@19.1.0)
+ react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@19.1.8)(react@19.1.0)
+ use-sidecar: 1.1.3(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+
react-router-dom@6.30.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@remix-run/router': 1.23.0
@@ -25914,6 +31309,14 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ react-style-singleton@2.2.3(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ get-nonce: 1.0.1
+ react: 19.1.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.8
+
react-textarea-autosize@8.5.6(@types/react@18.3.20)(react@18.3.1):
dependencies:
'@babel/runtime': 7.27.0
@@ -25923,6 +31326,15 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
+ react-textarea-autosize@8.5.9(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ '@babel/runtime': 7.27.1
+ react: 19.1.0
+ use-composed-ref: 1.4.0(@types/react@19.1.8)(react@19.1.0)
+ use-latest: 1.3.0(@types/react@19.1.8)(react@19.1.0)
+ transitivePeerDependencies:
+ - '@types/react'
+
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@babel/runtime': 7.27.0
@@ -25932,10 +31344,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@babel/runtime': 7.27.0
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
react@18.3.1:
dependencies:
loose-envify: 1.4.0
+ react@19.1.0: {}
+
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -25964,6 +31387,36 @@ snapshots:
reading-time@1.5.0: {}
+ recma-build-jsx@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ estree-util-build-jsx: 3.0.1
+ vfile: 6.0.3
+
+ recma-jsx@1.0.0(acorn@8.14.1):
+ dependencies:
+ acorn-jsx: 5.3.2(acorn@8.14.1)
+ estree-util-to-js: 2.0.0
+ recma-parse: 1.0.0
+ recma-stringify: 1.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - acorn
+
+ recma-parse@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ esast-util-from-js: 2.0.1
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ recma-stringify@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ estree-util-to-js: 2.0.0
+ unified: 11.0.5
+ vfile: 6.0.3
+
recrawl-sync@2.2.3:
dependencies:
'@cush/relative': 1.0.0
@@ -26077,6 +31530,14 @@ snapshots:
hast-util-raw: 9.1.0
vfile: 6.0.3
+ rehype-recma@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.7
+ '@types/hast': 3.0.4
+ hast-util-to-estree: 3.1.3
+ transitivePeerDependencies:
+ - supports-color
+
rehype-remark@10.0.0:
dependencies:
'@types/hast': 3.0.4
@@ -26125,6 +31586,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-mdx@3.1.0:
+ dependencies:
+ mdast-util-mdx: 3.0.0
+ micromark-extension-mdxjs: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
remark-parse@10.0.2:
dependencies:
'@types/mdast': 3.0.15
@@ -26164,6 +31632,14 @@ snapshots:
unified: 11.0.5
vfile: 6.0.3
+ remark-rehype@11.1.2:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.0
+ unified: 11.0.5
+ vfile: 6.0.3
+
remark-stringify@10.0.3:
dependencies:
'@types/mdast': 3.0.15
@@ -26176,6 +31652,15 @@ snapshots:
mdast-util-to-markdown: 2.1.2
unified: 11.0.5
+ remark@15.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+
remove-accents@0.5.0: {}
require-directory@2.1.1: {}
@@ -26184,9 +31669,9 @@ snapshots:
require-in-the-middle@7.5.2:
dependencies:
- debug: 4.4.0
+ debug: 4.4.1
module-details-from-path: 1.0.3
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
@@ -26258,6 +31743,31 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ rollup@4.35.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.35.0
+ '@rollup/rollup-android-arm64': 4.35.0
+ '@rollup/rollup-darwin-arm64': 4.35.0
+ '@rollup/rollup-darwin-x64': 4.35.0
+ '@rollup/rollup-freebsd-arm64': 4.35.0
+ '@rollup/rollup-freebsd-x64': 4.35.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.35.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.35.0
+ '@rollup/rollup-linux-arm64-gnu': 4.35.0
+ '@rollup/rollup-linux-arm64-musl': 4.35.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.35.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.35.0
+ '@rollup/rollup-linux-s390x-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-musl': 4.35.0
+ '@rollup/rollup-win32-arm64-msvc': 4.35.0
+ '@rollup/rollup-win32-ia32-msvc': 4.35.0
+ '@rollup/rollup-win32-x64-msvc': 4.35.0
+ fsevents: 2.3.3
+
rollup@4.37.0:
dependencies:
'@types/estree': 1.0.6
@@ -26349,6 +31859,20 @@ snapshots:
postcss-value-parser: 4.2.0
yoga-wasm-web: 0.3.3
+ satori@0.12.2:
+ dependencies:
+ '@shuding/opentype.js': 1.4.0-beta.0
+ css-background-parser: 0.1.0
+ css-box-shadow: 1.0.0-3
+ css-gradient-parser: 0.0.16
+ css-to-react-native: 3.2.0
+ emoji-regex: 10.4.0
+ escape-html: 1.0.3
+ linebreak: 1.1.0
+ parse-css-color: 0.2.1
+ postcss-value-parser: 4.2.0
+ yoga-wasm-web: 0.3.3
+
sax@1.4.1: {}
saxes@6.0.0:
@@ -26361,6 +31885,8 @@ snapshots:
scheduler@0.25.0-rc-603e6108-20241029: {}
+ scheduler@0.26.0: {}
+
schema-utils@3.3.0:
dependencies:
'@types/json-schema': 7.0.15
@@ -26482,7 +32008,7 @@ snapshots:
sharp@0.34.1:
dependencies:
color: 4.2.3
- detect-libc: 2.0.3
+ detect-libc: 2.0.4
semver: 7.7.1
optionalDependencies:
'@img/sharp-darwin-arm64': 0.34.1
@@ -26528,6 +32054,17 @@ snapshots:
vscode-oniguruma: 1.7.0
vscode-textmate: 8.0.0
+ shiki@3.7.0:
+ dependencies:
+ '@shikijs/core': 3.7.0
+ '@shikijs/engine-javascript': 3.7.0
+ '@shikijs/engine-oniguruma': 3.7.0
+ '@shikijs/langs': 3.7.0
+ '@shikijs/themes': 3.7.0
+ '@shikijs/types': 3.7.0
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+
shimmer@1.2.1: {}
side-channel-list@1.0.0:
@@ -26620,6 +32157,19 @@ snapshots:
slate: 0.110.2
tiny-invariant: 1.3.1
+ slate-react@0.110.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate@0.110.2):
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ direction: 1.0.4
+ is-hotkey: 0.2.0
+ is-plain-object: 5.0.0
+ lodash: 4.17.21
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ scroll-into-view-if-needed: 3.1.0
+ slate: 0.110.2
+ tiny-invariant: 1.3.1
+
slate@0.110.2:
dependencies:
immer: 10.1.1
@@ -26829,10 +32379,18 @@ snapshots:
strnum@1.1.2: {}
+ style-to-js@1.1.17:
+ dependencies:
+ style-to-object: 1.0.9
+
style-to-object@0.4.4:
dependencies:
inline-style-parser: 0.1.1
+ style-to-object@1.0.9:
+ dependencies:
+ inline-style-parser: 0.2.4
+
styled-jsx@5.1.6(@babel/core@7.26.10)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -26840,6 +32398,13 @@ snapshots:
optionalDependencies:
'@babel/core': 7.26.10
+ styled-jsx@5.1.6(@babel/core@7.26.10)(react@19.1.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.1.0
+ optionalDependencies:
+ '@babel/core': 7.26.10
+
stylis@4.2.0: {}
stylis@4.3.6: {}
@@ -26876,6 +32441,12 @@ snapshots:
react: 18.3.1
use-sync-external-store: 1.4.0(react@18.3.1)
+ swr@2.3.3(react@19.1.0):
+ dependencies:
+ dequal: 2.0.3
+ react: 19.1.0
+ use-sync-external-store: 1.4.0(react@19.1.0)
+
symbol-tree@3.2.4: {}
system-architecture@0.1.0: {}
@@ -26884,6 +32455,8 @@ snapshots:
tailwind-merge@2.6.0: {}
+ tailwind-merge@3.3.1: {}
+
tailwindcss-animate@1.0.7(tailwindcss@3.4.17):
dependencies:
tailwindcss: 3.4.17
@@ -26915,6 +32488,8 @@ snapshots:
transitivePeerDependencies:
- ts-node
+ tailwindcss@4.1.11: {}
+
tapable@2.2.2: {}
tar-fs@2.1.2:
@@ -26942,6 +32517,15 @@ snapshots:
yallist: 4.0.0
optional: true
+ tar@7.4.3:
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.0.2
+ mkdirp: 3.0.1
+ yallist: 5.0.0
+
terser-webpack-plugin@5.3.14(webpack@5.98.0):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -26980,6 +32564,8 @@ snapshots:
tinyexec@0.3.2: {}
+ tinyexec@1.0.1: {}
+
tinyglobby@0.2.12:
dependencies:
fdir: 6.4.3(picomatch@4.0.2)
@@ -26990,6 +32576,11 @@ snapshots:
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
+
tinypool@1.0.2: {}
tinyrainbow@1.2.0: {}
@@ -27056,6 +32647,11 @@ snapshots:
ts-interface-checker@0.1.13: {}
+ ts-morph@26.0.0:
+ dependencies:
+ '@ts-morph/common': 0.27.0
+ code-block-writer: 13.0.3
+
tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
@@ -27089,6 +32685,16 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
+ twoslash-protocol@0.3.2: {}
+
+ twoslash@0.3.2(typescript@5.8.3):
+ dependencies:
+ '@typescript/vfs': 1.6.1(typescript@5.8.3)
+ twoslash-protocol: 0.3.2
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -27140,6 +32746,8 @@ snapshots:
typescript@5.8.2: {}
+ typescript@5.8.3: {}
+
uc.micro@2.1.0: {}
unbox-primitive@1.1.0:
@@ -27155,8 +32763,9 @@ snapshots:
undici-types@6.20.0: {}
- undici-types@6.21.0:
- optional: true
+ undici-types@6.21.0: {}
+
+ undici-types@7.8.0: {}
undici@5.29.0:
dependencies:
@@ -27224,6 +32833,10 @@ snapshots:
dependencies:
'@types/unist': 2.0.11
+ unist-util-position-from-estree@2.0.0:
+ dependencies:
+ '@types/unist': 3.0.3
+
unist-util-position@4.0.4:
dependencies:
'@types/unist': 2.0.11
@@ -27354,18 +32967,37 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ use-callback-ref@1.3.3(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.8
+
use-composed-ref@1.4.0(@types/react@18.3.20)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ use-composed-ref@1.4.0(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
use-isomorphic-layout-effect@1.2.0(@types/react@18.3.20)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.20
+ use-isomorphic-layout-effect@1.2.0(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.8
+
use-latest@1.3.0(@types/react@18.3.20)(react@18.3.1):
dependencies:
react: 18.3.1
@@ -27373,6 +33005,13 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ use-latest@1.3.0(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ use-isomorphic-layout-effect: 1.2.0(@types/react@19.1.8)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.8
+
use-sidecar@1.1.3(@types/react@18.3.20)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
@@ -27381,10 +33020,22 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.20
+ use-sidecar@1.1.3(@types/react@19.1.8)(react@19.1.0):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 19.1.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.8
+
use-sync-external-store@1.4.0(react@18.3.1):
dependencies:
react: 18.3.1
+ use-sync-external-store@1.4.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
util-deprecate@1.0.2: {}
uuid@8.3.2: {}
@@ -27441,15 +33092,15 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- vite-dev-rpc@1.0.7(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
+ vite-dev-rpc@1.0.7(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
dependencies:
birpc: 2.3.0
- vite: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
- vite-hot-client: 2.0.4(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ vite: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ vite-hot-client: 2.0.4(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
- vite-hot-client@2.0.4(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
+ vite-hot-client@2.0.4(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
dependencies:
- vite: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
vite-node@2.1.9(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2):
dependencies:
@@ -27469,13 +33120,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.9(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2):
+ vite-node@2.1.9(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2):
dependencies:
cac: 6.7.14
debug: 4.4.0
es-module-lexer: 1.7.0
pathe: 1.1.2
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27495,31 +33146,31 @@ snapshots:
rollup: 2.79.2
vite: 5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)
- vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)):
+ vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)):
dependencies:
'@rollup/pluginutils': 4.2.1
'@types/eslint': 8.56.12
eslint: 8.57.1
rollup: 2.79.2
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
- vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
+ vite-plugin-eslint@1.8.1(eslint@8.57.1)(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
dependencies:
'@rollup/pluginutils': 4.2.1
'@types/eslint': 8.56.12
eslint: 8.57.1
rollup: 2.79.2
- vite: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ vite: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
vite-plugin-externalize-deps@0.8.0(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)):
dependencies:
vite: 5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2)
- vite-plugin-externalize-deps@0.8.0(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)):
+ vite-plugin-externalize-deps@0.8.0(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)):
dependencies:
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
- vite-plugin-inspect@11.1.0(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
+ vite-plugin-inspect@11.1.0(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)):
dependencies:
ansis: 3.17.0
debug: 4.4.1
@@ -27529,8 +33180,8 @@ snapshots:
perfect-debounce: 1.0.0
sirv: 3.0.1
unplugin-utils: 0.2.4
- vite: 6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
- vite-dev-rpc: 1.0.7(vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
+ vite: 6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0)
+ vite-dev-rpc: 1.0.7(vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0))
transitivePeerDependencies:
- supports-color
@@ -27545,13 +33196,13 @@ snapshots:
lightningcss: 1.30.1
terser: 5.39.2
- vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2):
+ vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2):
dependencies:
esbuild: 0.21.5
postcss: 8.5.3
rollup: 4.37.0
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
fsevents: 2.3.3
lightningcss: 1.30.1
terser: 5.39.2
@@ -27561,7 +33212,7 @@ snapshots:
esbuild: 0.25.1
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
- postcss: 8.5.3
+ postcss: 8.5.6
rollup: 4.37.0
tinyglobby: 0.2.13
optionalDependencies:
@@ -27573,16 +33224,34 @@ snapshots:
tsx: 4.19.3
yaml: 2.7.0
- vite@6.3.5(@types/node@22.14.1)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0):
+ vite@6.3.5(@types/node@22.15.2)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0):
dependencies:
esbuild: 0.25.1
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
- postcss: 8.5.3
+ postcss: 8.5.6
+ rollup: 4.37.0
+ tinyglobby: 0.2.13
+ optionalDependencies:
+ '@types/node': 22.15.2
+ fsevents: 2.3.3
+ jiti: 2.4.2
+ lightningcss: 1.30.1
+ terser: 5.39.2
+ tsx: 4.19.3
+ yaml: 2.7.0
+ optional: true
+
+ vite@6.3.5(@types/node@24.0.10)(jiti@2.4.2)(lightningcss@1.30.1)(terser@5.39.2)(tsx@4.19.3)(yaml@2.7.0):
+ dependencies:
+ esbuild: 0.25.1
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
+ postcss: 8.5.6
rollup: 4.37.0
tinyglobby: 0.2.13
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
fsevents: 2.3.3
jiti: 2.4.2
lightningcss: 1.30.1
@@ -27599,10 +33268,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vitest@2.1.9(@types/node@20.17.28)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.2))(terser@5.39.2):
+ vitest@2.1.9(@types/node@20.17.28)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.3))(terser@5.39.2):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.2))(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))
+ '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@20.17.28)(typescript@5.8.3))(vite@5.4.15(@types/node@20.17.28)(lightningcss@1.30.1)(terser@5.39.2))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
@@ -27636,10 +33305,10 @@ snapshots:
- supports-color
- terser
- vitest@2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2):
+ vitest@2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@21.1.2(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
@@ -27655,11 +33324,11 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
- vite-node: 2.1.9(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
+ vite-node: 2.1.9(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
'@vitest/ui': 2.1.9(vitest@2.1.9)
jsdom: 21.1.2(canvas@2.11.2(encoding@0.1.13))
transitivePeerDependencies:
@@ -27673,10 +33342,10 @@ snapshots:
- supports-color
- terser
- vitest@2.1.9(@types/node@22.14.1)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(terser@5.39.2):
+ vitest@2.1.9(@types/node@24.0.10)(@vitest/ui@2.1.9)(jsdom@25.0.1(canvas@2.11.2(encoding@0.1.13)))(lightningcss@1.30.1)(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(terser@5.39.2):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@22.14.1)(typescript@5.8.2))(vite@5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2))
+ '@vitest/mocker': 2.1.9(msw@2.7.3(@types/node@24.0.10)(typescript@5.8.2))(vite@5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
@@ -27692,11 +33361,11 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 1.2.0
- vite: 5.4.15(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
- vite-node: 2.1.9(@types/node@22.14.1)(lightningcss@1.30.1)(terser@5.39.2)
+ vite: 5.4.15(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
+ vite-node: 2.1.9(@types/node@24.0.10)(lightningcss@1.30.1)(terser@5.39.2)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.14.1
+ '@types/node': 24.0.10
'@vitest/ui': 2.1.9(vitest@2.1.9)
jsdom: 25.0.1(canvas@2.11.2(encoding@0.1.13))
transitivePeerDependencies:
@@ -27957,6 +33626,11 @@ snapshots:
lib0: 0.2.101
yjs: 13.6.24
+ y-indexeddb@9.0.12(yjs@13.6.27):
+ dependencies:
+ lib0: 0.2.101
+ yjs: 13.6.27
+
y-partykit@0.0.25:
dependencies:
lib0: 0.2.101
@@ -27974,11 +33648,25 @@ snapshots:
y-protocols: 1.0.6(yjs@13.6.24)
yjs: 13.6.24
+ y-prosemirror@1.3.4(prosemirror-model@1.25.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.1)(y-protocols@1.0.6(yjs@13.6.27))(yjs@13.6.27):
+ dependencies:
+ lib0: 0.2.101
+ prosemirror-model: 1.25.1
+ prosemirror-state: 1.4.3
+ prosemirror-view: 1.38.1
+ y-protocols: 1.0.6(yjs@13.6.27)
+ yjs: 13.6.27
+
y-protocols@1.0.6(yjs@13.6.24):
dependencies:
lib0: 0.2.101
yjs: 13.6.24
+ y-protocols@1.0.6(yjs@13.6.27):
+ dependencies:
+ lib0: 0.2.101
+ yjs: 13.6.27
+
y18n@5.0.8: {}
yallist@2.1.2: {}
@@ -27988,6 +33676,8 @@ snapshots:
yallist@4.0.0:
optional: true
+ yallist@5.0.0: {}
+
yaml@1.10.2: {}
yaml@2.7.0: {}
@@ -28008,6 +33698,10 @@ snapshots:
dependencies:
lib0: 0.2.101
+ yjs@13.6.27:
+ dependencies:
+ lib0: 0.2.101
+
yocto-queue@0.1.0: {}
yoctocolors-cjs@2.1.2: {}
@@ -28024,12 +33718,14 @@ snapshots:
mustache: 4.2.0
stacktracey: 2.1.8
- zod-to-json-schema@3.24.5(zod@3.24.2):
+ zod-to-json-schema@3.24.5(zod@3.25.75):
dependencies:
- zod: 3.24.2
+ zod: 3.25.75
zod@3.24.2: {}
+ zod@3.25.75: {}
+
zustand@5.0.3(@types/react@18.3.20)(immer@10.1.1)(react@18.3.1)(use-sync-external-store@1.4.0(react@18.3.1)):
optionalDependencies:
'@types/react': 18.3.20
@@ -28037,4 +33733,11 @@ snapshots:
react: 18.3.1
use-sync-external-store: 1.4.0(react@18.3.1)
+ zustand@5.0.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)):
+ optionalDependencies:
+ '@types/react': 19.1.8
+ immer: 10.1.1
+ react: 19.1.0
+ use-sync-external-store: 1.4.0(react@19.1.0)
+
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index bea66b1ad4..a9fb874bbb 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -2,6 +2,7 @@ packages:
- "packages/*"
- "examples/*/*"
- "playground"
+ - "fumadocs"
- "docs"
- "shared"
- "tests"