aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-08-27 11:25:25 -0700
committerGitHub <[email protected]>2024-08-27 11:25:25 -0700
commitcee944e83592bc1a1f4906cb3dfa249fa7616ea3 (patch)
tree67cc4b8466c04fd97c761ccf5c0e457f9c3b474f
parentMerge pull request #259 from supermemoryai/cta-fix (diff)
parenttrigger build (diff)
downloadsupermemory-cee944e83592bc1a1f4906cb3dfa249fa7616ea3.tar.xz
supermemory-cee944e83592bc1a1f4906cb3dfa249fa7616ea3.zip
Merge pull request #268 from supermemoryai/CodeTorso-main
Code torso's editor PR
-rw-r--r--.npmrc2
-rw-r--r--apps/web/.npmrc0
-rw-r--r--apps/web/app/(dash)/(memories)/content.tsx10
-rw-r--r--apps/web/app/(dash)/menu.tsx185
-rw-r--r--apps/web/app/editor/page.tsx8
-rw-r--r--apps/web/components/editor/advanced-editor.tsx158
-rw-r--r--apps/web/components/editor/content.ts4
-rw-r--r--apps/web/components/editor/emoji/emojiList.tsx76
-rw-r--r--apps/web/components/editor/emoji/suggestion.ts68
-rw-r--r--apps/web/components/editor/extensions.ts165
-rw-r--r--apps/web/components/editor/generative/ai-completion-command.tsx66
-rw-r--r--apps/web/components/editor/generative/ai-selector-commands.tsx84
-rw-r--r--apps/web/components/editor/generative/ai-selector.tsx121
-rw-r--r--apps/web/components/editor/generative/generative-menu-switch.tsx75
-rw-r--r--apps/web/components/editor/image-upload.ts62
-rw-r--r--apps/web/components/editor/prosemirror.css212
-rw-r--r--apps/web/components/editor/selectors/align-selector.tsx87
-rw-r--r--apps/web/components/editor/selectors/link-selector.tsx120
-rw-r--r--apps/web/components/editor/selectors/node-selector.tsx148
-rw-r--r--apps/web/components/editor/selectors/text-buttons.tsx75
-rw-r--r--apps/web/components/editor/slash-command.tsx209
-rw-r--r--apps/web/components/editor/toc.tsx88
-rw-r--r--apps/web/components/editor/ui/button.tsx56
-rw-r--r--apps/web/components/editor/ui/command.tsx155
-rw-r--r--apps/web/components/editor/ui/dialog.tsx122
-rw-r--r--apps/web/components/editor/ui/icons/crazy-spinner.tsx11
-rw-r--r--apps/web/components/editor/ui/icons/loading-circle.tsx20
-rw-r--r--apps/web/components/editor/ui/icons/magic.tsx32
-rw-r--r--apps/web/components/editor/ui/menu.tsx93
-rw-r--r--apps/web/components/editor/ui/popover.tsx31
-rw-r--r--apps/web/components/editor/ui/scroll-area.tsx48
-rw-r--r--apps/web/components/editor/ui/separator.tsx31
-rw-r--r--apps/web/migrations/meta/0001_snapshot.json923
-rw-r--r--apps/web/migrations/meta/_journal.json7
-rw-r--r--apps/web/next-env.d.ts2
-rw-r--r--apps/web/package.json60
-rw-r--r--apps/web/wrangler.toml4
-rw-r--r--pnpm-lock.yaml6851
38 files changed, 7142 insertions, 3327 deletions
diff --git a/.npmrc b/.npmrc
index 361b1968..525238b9 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1,2 +1,4 @@
registry=https://registry.npmjs.org/
link-workspace-packages=true
+@tiptap-pro:registry=https://registry.tiptap.dev/
+//registry.tiptap.dev/:_authToken=${TIPTAP_TOKEN} \ No newline at end of file
diff --git a/apps/web/.npmrc b/apps/web/.npmrc
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/apps/web/.npmrc
diff --git a/apps/web/app/(dash)/(memories)/content.tsx b/apps/web/app/(dash)/(memories)/content.tsx
index 0f83d0fc..9dba3637 100644
--- a/apps/web/app/(dash)/(memories)/content.tsx
+++ b/apps/web/app/(dash)/(memories)/content.tsx
@@ -304,7 +304,13 @@ function SpaceComponent({
href={`/space/${id}`}
className="flex items-center justify-between w-full"
>
- <div className="grow">
+ <div>
+ <div className="h-12 w-12 flex justify-center items-center rounded-md">
+ {title.slice(0, 2).toUpperCase()}
+ {id}
+ </div>
+ </div>
+ <div className="grow px-2">
<div className="text-lg text-[#fff] line-clamp-2">{title}</div>
<div>{description}</div>
</div>
@@ -312,7 +318,7 @@ function SpaceComponent({
<Image src={NextIcon} alt="Search icon" />
</div>
</Link>
- <div className="absolute z-40 right-5 top-4 opacity-0 group-hover:opacity-100 hover:text-red-600">
+ <div className="absolute z-40 right-3 top-3 opacity-0 group-hover:opacity-100 hover:text-red-600">
<SpaceDeleteAlert
onClick={() => {
handleDeleteSpace(id);
diff --git a/apps/web/app/(dash)/menu.tsx b/apps/web/app/(dash)/menu.tsx
index abac5411..45cfc599 100644
--- a/apps/web/app/(dash)/menu.tsx
+++ b/apps/web/app/(dash)/menu.tsx
@@ -11,6 +11,7 @@ import {
} from "@repo/ui/icons";
import { Button } from "@repo/ui/shadcn/button";
import { MinusIcon, PlusCircleIcon } from "lucide-react";
+import Editor from "@/components/editor/advanced-editor";
import {
Dialog,
DialogContent,
@@ -58,20 +59,16 @@ function Menu() {
},
];
-
-
const [dialogOpen, setDialogOpen] = useState(false);
return (
- <>
+ <div>
{/* Desktop Menu */}
<Dialog open={dialogOpen} onOpenChange={setDialogOpen}>
<div className="hidden lg:flex fixed h-screen w-full p-4 items-center top-0 left-0 pointer-events-none z-[39]">
<div className="pointer-events-auto group flex w-14 text-foreground-menu text-[15px] font-medium flex-col items-start gap-6 overflow-hidden rounded-[28px] border-2 border-border bg-secondary px-3 py-4 duration-200 hover:w-40 z-[99999]">
<div className="border-b border-border pb-4 w-full">
- <DialogTrigger
- className="flex w-full text-white brightness-75 hover:brightness-125 focus:brightness-125 cursor-pointer items-center gap-3 px-1 duration-200 justify-start"
- >
+ <DialogTrigger className="flex w-full text-white brightness-75 hover:brightness-125 focus:brightness-125 cursor-pointer items-center gap-3 px-1 duration-200 justify-start">
<Image
src={AddIcon}
alt="Logo"
@@ -105,7 +102,7 @@ function Menu() {
</div>
</div>
- <DialogContentMenu setDialogClose={()=> setDialogOpen(false)} />
+ <DialogContentMenu setDialogClose={() => setDialogOpen(false)} />
{/* Mobile Menu */}
<div className="lg:hidden fixed bottom-0 left-0 w-full p-4 bg-secondary z-50 border-t-2 border-border">
@@ -154,12 +151,11 @@ function Menu() {
</div>
</div>
</Dialog>
- </>
+ </div>
);
}
-function DialogContentMenu({setDialogClose}: {setDialogClose: ()=> void}){
-
+function DialogContentMenu({ setDialogClose }: { setDialogClose: () => void }) {
const [spaces, setSpaces] = useState<StoredSpace[]>([]);
useEffect(() => {
@@ -221,7 +217,7 @@ function DialogContentMenu({setDialogClose}: {setDialogClose: ()=> void}){
setContent("");
setSelectedSpaces([]);
return cont;
- }
+ };
const formSubmit = () => {
toast.promise(handleSubmit(content, selectedSpaces), {
@@ -236,89 +232,114 @@ function DialogContentMenu({setDialogClose}: {setDialogClose: ()=> void}){
richColors: true,
});
};
+
+ const [editorOpen, setEditorOpen] = useState(false);
return (
<DialogContent className="sm:max-w-[575px] text-[#F2F3F5] rounded-2xl bg-background z-[39]">
- <form action={formSubmit} className="flex flex-col gap-4 ">
- <DialogHeader>
+ <form action={formSubmit} className="flex flex-col gap-4 ">
+ <DialogHeader>
<DialogTitle>Add memory</DialogTitle>
</DialogHeader>
- <div>
- <Label htmlFor="space">Save to Spaces (Optional)</Label>
- <ComboboxWithCreate
- placeholder="spaces to save to..."
- setSelectedSpaces={setSelectedSpaces}
- selectedSpaces={selectedSpaces}
- options={spaces.map((x) => ({
- label: x.name,
- value: x.id.toString(),
- }))}
- onSelect={(v) =>
- setSelectedSpaces((prev) => {
- if (v === "") {
- return [];
- }
- return [...prev, parseInt(v)];
- })
+ <div>
+ <Label htmlFor="space">Save to Spaces (Optional)</Label>
+ <ComboboxWithCreate
+ placeholder="spaces to save to..."
+ setSelectedSpaces={setSelectedSpaces}
+ selectedSpaces={selectedSpaces}
+ options={spaces.map((x) => ({
+ label: x.name,
+ value: x.id.toString(),
+ }))}
+ onSelect={(v) =>
+ setSelectedSpaces((prev) => {
+ if (v === "") {
+ return [];
}
- onSubmit={async (spaceName) => {
- const space = options.find((x) => x.label === spaceName);
- toast.info("Creating space...");
+ return [...prev, parseInt(v)];
+ })
+ }
+ onSubmit={async (spaceName) => {
+ const space = options.find((x) => x.label === spaceName);
+ toast.info("Creating space...");
- if (space) {
- toast.error("A space with that name already exists.");
- }
+ if (space) {
+ toast.error("A space with that name already exists.");
+ }
- const creationTask = await createSpace(spaceName);
- if (creationTask.success && creationTask.data) {
- toast.success("Space created " + creationTask.data);
- setSpaces((prev) => [
- ...prev,
- {
- name: spaceName,
- id: creationTask.data!,
- createdAt: new Date(),
- user: null,
- numItems: 0,
- },
- ]);
- setSelectedSpaces((prev) => [...prev, creationTask.data!]);
- } else {
- toast.error("Space creation failed: " + creationTask.error);
- }
- }}
- />
- </div>
+ const creationTask = await createSpace(spaceName);
+ if (creationTask.success && creationTask.data) {
+ toast.success("Space created " + creationTask.data);
+ setSpaces((prev) => [
+ ...prev,
+ {
+ name: spaceName,
+ id: creationTask.data!,
+ createdAt: new Date(),
+ user: null,
+ numItems: 0,
+ },
+ ]);
+ setSelectedSpaces((prev) => [...prev, creationTask.data!]);
+ } else {
+ toast.error("Space creation failed: " + creationTask.error);
+ }
+ }}
+ />
+ </div>
- <div>
- <Label htmlFor="name">Resource (URL or content)</Label>
- <Textarea
- autoFocus
- className={`bg-[#2F353C] text-[#DBDEE1] max-h-[35vh] overflow-auto focus-visible:ring-0 border-none focus-visible:ring-offset-0 mt-2 ${/^https?:\/\/\S+$/i.test(content) && "text-[#1D9BF0] underline underline-offset-2"}`}
- id="content"
- name="content"
- rows={8}
- placeholder="Start typing a note or paste a URL here. I'll remember it."
- value={content}
- onChange={(e) => setContent(e.target.value)}
- onKeyDown={(e) => {
- if (e.key === "Enter" && !e.shiftKey) {
- e.preventDefault();
- formSubmit();
- }
- }}
- />
- </div>
+ <div>
+ <Label htmlFor="name">Resource (URL or content)</Label>
+ <Textarea
+ autoFocus
+ className={`bg-[#2F353C] text-[#DBDEE1] max-h-[35vh] overflow-auto focus-visible:ring-0 border-none focus-visible:ring-offset-0 mt-2 ${/^https?:\/\/\S+$/i.test(content) && "text-[#1D9BF0] underline underline-offset-2"}`}
+ id="content"
+ name="content"
+ rows={8}
+ placeholder="Start typing a note or paste a URL here. I'll remember it."
+ value={content}
+ onChange={(e) => setContent(e.target.value)}
+ onKeyDown={(e) => {
+ if (e.key === "Enter" && !e.shiftKey) {
+ e.preventDefault();
+ formSubmit();
+ }
+ }}
+ />
+ </div>
- <DialogFooter>
- <SubmitButton autoDetectedType={autoDetectedType} />
- </DialogFooter>
- </form>
- </DialogContent>
- )
+ <DialogFooter>
+ <Dialog onOpenChange={setEditorOpen} open={editorOpen}>
+ <DialogTrigger>
+ <Button variant={"secondary"} type="button">
+ Open Markdown Editor
+ </Button>
+ </DialogTrigger>
+ <EditorDialog
+ setContent={(e) => {
+ console.log(e);
+ console.log("hello there");
+ setContent(e);
+ setEditorOpen(false);
+ }}
+ />
+ </Dialog>
+ <SubmitButton autoDetectedType={autoDetectedType} />
+ </DialogFooter>
+ </form>
+ </DialogContent>
+ );
+}
+
+function EditorDialog({ setContent }: { setContent: (e: string) => void }) {
+ return (
+ <DialogContent className="max-w-[98vw] h-[98vh] overflow-hidden px-0 py-0 z-[100]">
+ <Editor setContent={(e) => setContent(e)} />
+ </DialogContent>
+ );
}
-function SubmitButton({autoDetectedType}: {autoDetectedType: string}) {
+function SubmitButton({ autoDetectedType }: { autoDetectedType: string }) {
const status = useFormStatus();
return (
<Button disabled={status.pending} variant={"secondary"} type="submit">
diff --git a/apps/web/app/editor/page.tsx b/apps/web/app/editor/page.tsx
new file mode 100644
index 00000000..14d70d79
--- /dev/null
+++ b/apps/web/app/editor/page.tsx
@@ -0,0 +1,8 @@
+import React from "react";
+import Editor from "../../components/editor/advanced-editor";
+
+function page() {
+ return <Editor />;
+}
+
+export default page;
diff --git a/apps/web/components/editor/advanced-editor.tsx b/apps/web/components/editor/advanced-editor.tsx
new file mode 100644
index 00000000..5da44245
--- /dev/null
+++ b/apps/web/components/editor/advanced-editor.tsx
@@ -0,0 +1,158 @@
+"use client";
+import { defaultEditorContent } from "./content";
+import "./prosemirror.css";
+import {
+ EditorCommand,
+ EditorCommandEmpty,
+ EditorCommandItem,
+ EditorCommandList,
+ EditorContent,
+ EditorRoot,
+ useEditor,
+} from "novel";
+import { ImageResizer, handleCommandNavigation } from "novel/extensions";
+import { memo, useState } from "react";
+import { defaultExtensions } from "./extensions";
+import { LinkSelector } from "./selectors/link-selector";
+import { NodeSelector } from "./selectors/node-selector";
+import { Separator } from "./ui/separator";
+
+import GenerativeMenuSwitch from "./generative/generative-menu-switch";
+import { TextButtons } from "./selectors/text-buttons";
+import { slashCommand, suggestionItems } from "./slash-command";
+import { ToC } from "./toc";
+import {
+ getHierarchicalIndexes,
+ TableOfContents,
+} from "@tiptap-pro/extension-table-of-contents";
+import { AlignSelector } from "./selectors/align-selector";
+import { Button } from "@repo/ui/shadcn/button";
+
+const MemorizedToC = memo(ToC);
+
+const hljs = require("highlight.js");
+
+type tContent = {
+ id: string;
+ textContent: string;
+ level: number;
+ isActive: boolean;
+ itemIndex: number;
+ isScrolledOver: boolean;
+ pos: number;
+};
+
+const TailwindAdvancedEditor = memo(
+ ({ setContent }: { setContent: (e: string) => void }) => {
+ const [openNode, setOpenNode] = useState(false);
+ const [openAlign, setOpenAlign] = useState(false);
+ const [openLink, setOpenLink] = useState(false);
+ const [items, setItems] = useState<tContent[]>([]);
+
+ const extensions = [
+ ...defaultExtensions,
+ slashCommand,
+ TableOfContents.configure({
+ getIndex: getHierarchicalIndexes,
+ onUpdate(content) {
+ console.log(content);
+ setItems(content);
+ },
+ }),
+ ];
+
+ return (
+ <div className="relative w-full h-full bg-[#171B1F]">
+ <EditorRoot>
+ <EditorContent
+ autofocus
+ initialContent={defaultEditorContent}
+ extensions={extensions}
+ className="relative w-full h-full py-10 max-w-5xl m-auto overflow-auto bg-transparent sm:rounded-lg sm:shadow-lg"
+ editorProps={{
+ handleDOMEvents: {
+ keydown: (_view, event) => handleCommandNavigation(event),
+ },
+ // handlePaste: (view, event) =>
+ // handleImagePaste(view, event, uploadFn),
+ // handleDrop: (view, event, _slice, moved) =>
+ // handleImageDrop(view, event, moved, uploadFn),
+ attributes: {
+ class:
+ "prose prose-lg dark:prose-invert prose-headings:font-title font-default focus:outline-none max-w-full",
+ },
+ }}
+ // onUpdate={({ editor }) => {
+
+ // }}
+ slotAfter={<ImageResizer />}
+ >
+ <MemorizedToC items={items} />
+ <EditorCommand className="z-50 h-auto max-h-[330px] overflow-y-auto rounded-md bg-[#1F2428] px-1 py-2 shadow-md transition-all">
+ <EditorCommandEmpty className="px-2 text-muted-foreground">
+ No results
+ </EditorCommandEmpty>
+ <EditorCommandList>
+ {suggestionItems.map((item) => (
+ <EditorCommandItem
+ value={item.title}
+ onCommand={(val) => item.command(val)}
+ className="flex w-full items-center space-x-2 rounded-md px-2 py-1 text-left text-sm hover:bg-[#21303D] group aria-selected:bg-[#21303D]"
+ key={item.title}
+ >
+ <div className="flex h-12 w-12 items-center justify-center rounded-md bg-[#2D343A] group-hover:bg-[#369DFD33] group-aria-selected:bg-[#369DFD33]">
+ {item.icon}
+ </div>
+ <div>
+ <p className="font-medium text-[#FFFFFF] group-hover:text-[#369DFD] group-aria-selected:text-[#369DFD]">
+ {item.title}
+ </p>
+ <p className="text-xs text-[#989EA4] group-hover:text-[#369DFDB2] group-aria-selected:text-[#369DFDB2]">
+ {item.description}
+ </p>
+ </div>
+ </EditorCommandItem>
+ ))}
+ </EditorCommandList>
+ </EditorCommand>
+
+ <GenerativeMenuSwitch>
+ <Separator orientation="vertical" />
+ <NodeSelector open={openNode} onOpenChange={setOpenNode} />
+ <Separator orientation="vertical" />
+ <AlignSelector open={openAlign} onOpenChange={setOpenAlign} />
+ <Separator orientation="vertical" />
+
+ <LinkSelector open={openLink} onOpenChange={setOpenLink} />
+ <Separator orientation="vertical" />
+ <Separator orientation="vertical" />
+ <TextButtons />
+ </GenerativeMenuSwitch>
+ <SaveNote setContent={setContent} />
+ </EditorContent>
+ </EditorRoot>
+ </div>
+ );
+ },
+);
+
+function SaveNote({ setContent }: { setContent: (e: string) => void }) {
+ const { editor } = useEditor();
+ if (!editor) return null;
+ return (
+ <Button
+ className="fixed bottom-6 right-5"
+ onClick={() => setContent(editor.storage.markdown.getMarkdown())}
+ variant={"secondary"}
+ >
+ Save Note
+ </Button>
+ );
+}
+
+// function SubmitButton({ autoDetectedType }: { autoDetectedType: string }) {
+// return (
+
+// );
+// }
+export default TailwindAdvancedEditor;
diff --git a/apps/web/components/editor/content.ts b/apps/web/components/editor/content.ts
new file mode 100644
index 00000000..b6259fc3
--- /dev/null
+++ b/apps/web/components/editor/content.ts
@@ -0,0 +1,4 @@
+export const defaultEditorContent = {
+ type: "doc",
+ content: [],
+};
diff --git a/apps/web/components/editor/emoji/emojiList.tsx b/apps/web/components/editor/emoji/emojiList.tsx
new file mode 100644
index 00000000..c5f734c9
--- /dev/null
+++ b/apps/web/components/editor/emoji/emojiList.tsx
@@ -0,0 +1,76 @@
+import React, {
+ forwardRef,
+ useEffect,
+ useImperativeHandle,
+ useState,
+} from "react";
+
+export const EmojiList = forwardRef((props, ref) => {
+ const [selectedIndex, setSelectedIndex] = useState(0);
+
+ const selectItem = (index) => {
+ const item = props.items[index];
+ if (item) {
+ props.command({ name: item.name });
+ }
+ };
+
+ const upHandler = () => {
+ setSelectedIndex(
+ (selectedIndex + props.items.length - 1) % props.items.length,
+ );
+ };
+
+ const downHandler = () => {
+ setSelectedIndex((selectedIndex + 1) % props.items.length);
+ };
+
+ const enterHandler = () => {
+ selectItem(selectedIndex);
+ };
+
+ useEffect(() => setSelectedIndex(0), [props.items]);
+
+ useImperativeHandle(
+ ref,
+ () => ({
+ onKeyDown: (x) => {
+ if (x.event.key === "ArrowUp") {
+ upHandler();
+ return true;
+ }
+ if (x.event.key === "ArrowDown") {
+ downHandler();
+ return true;
+ }
+ if (x.event.key === "Enter") {
+ enterHandler();
+ return true;
+ }
+ return false;
+ },
+ }),
+ [upHandler, downHandler, enterHandler],
+ );
+
+ return (
+ <div className="bg-[#1F2428] shadow-md flex flex-col gap-0.5 overflow-auto p-1.5 relative">
+ {props.items.map((item, index) => (
+ <button
+ className={`flex items-center gap-1 w-full text-left ${
+ index === selectedIndex && "bg-[#21303D] text-[#369DFD]"
+ }`}
+ key={index}
+ onClick={() => selectItem(index)}
+ >
+ {item.fallbackImage ? (
+ <img src={item.fallbackImage} className="w-4 h-4" alt="" />
+ ) : (
+ item.emoji
+ )}
+ :{item.name}:
+ </button>
+ ))}
+ </div>
+ );
+});
diff --git a/apps/web/components/editor/emoji/suggestion.ts b/apps/web/components/editor/emoji/suggestion.ts
new file mode 100644
index 00000000..91c1cc51
--- /dev/null
+++ b/apps/web/components/editor/emoji/suggestion.ts
@@ -0,0 +1,68 @@
+import { ReactRenderer } from "@tiptap/react";
+import tippy from "tippy.js";
+
+import { EmojiList } from "./emojiList";
+
+export default {
+ items: ({ editor, query }) => {
+ return editor.storage.emoji.emojis
+ .filter(({ shortcodes, tags }) => {
+ return (
+ shortcodes.find((shortcode) =>
+ shortcode.startsWith(query.toLowerCase()),
+ ) || tags.find((tag) => tag.startsWith(query.toLowerCase()))
+ );
+ })
+ .slice(0, 5);
+ },
+
+ allowSpaces: false,
+
+ render: () => {
+ let component;
+ let popup;
+
+ return {
+ onStart: (props) => {
+ component = new ReactRenderer(EmojiList, {
+ props,
+ editor: props.editor,
+ });
+
+ popup = tippy("body", {
+ getReferenceClientRect: props.clientRect,
+ appendTo: () => document.body,
+ content: component.element,
+ showOnCreate: true,
+ interactive: true,
+ trigger: "manual",
+ placement: "bottom-start",
+ });
+ },
+
+ onUpdate(props) {
+ component.updateProps(props);
+
+ popup[0].setProps({
+ getReferenceClientRect: props.clientRect,
+ });
+ },
+
+ onKeyDown(props) {
+ if (props.event.key === "Escape") {
+ popup[0].hide();
+ component.destroy();
+
+ return true;
+ }
+
+ return component.ref?.onKeyDown(props);
+ },
+
+ onExit() {
+ popup[0].destroy();
+ component.destroy();
+ },
+ };
+ },
+};
diff --git a/apps/web/components/editor/extensions.ts b/apps/web/components/editor/extensions.ts
new file mode 100644
index 00000000..bc226a2d
--- /dev/null
+++ b/apps/web/components/editor/extensions.ts
@@ -0,0 +1,165 @@
+import {
+ AIHighlight,
+ CharacterCount,
+ CodeBlockLowlight,
+ GlobalDragHandle,
+ HorizontalRule,
+ Placeholder,
+ StarterKit,
+ TaskItem,
+ TaskList,
+ TiptapImage,
+ TiptapLink,
+ Twitter,
+ UpdatedImage,
+ Youtube,
+} from "novel/extensions";
+import suggestion from "./emoji/suggestion";
+import { UploadImagesPlugin } from "novel/plugins";
+import Emoji, { gitHubEmojis } from "@tiptap-pro/extension-emoji";
+import TextAlign from "@tiptap/extension-text-align";
+import Typography from "@tiptap/extension-typography";
+
+import { cx } from "class-variance-authority";
+import { common, createLowlight } from "lowlight";
+
+const aiHighlight = AIHighlight;
+const placeholder = Placeholder;
+const tiptapLink = TiptapLink.configure({
+ HTMLAttributes: {
+ class: cx(
+ "text-muted-foreground underline underline-offset-[3px] hover:text-primary transition-colors cursor-pointer",
+ ),
+ },
+});
+
+const tiptapImage = TiptapImage.extend({
+ addProseMirrorPlugins() {
+ return [
+ UploadImagesPlugin({
+ imageClass: cx("opacity-40 rounded-lg border border-stone-200"),
+ }),
+ ];
+ },
+}).configure({
+ allowBase64: true,
+ HTMLAttributes: {
+ class: cx("rounded-lg border border-muted"),
+ },
+});
+
+const updatedImage = UpdatedImage.configure({
+ HTMLAttributes: {
+ class: cx("rounded-lg border border-muted"),
+ },
+});
+
+const taskList = TaskList.configure({
+ HTMLAttributes: {
+ class: cx("not-prose pl-2 "),
+ },
+});
+const taskItem = TaskItem.configure({
+ HTMLAttributes: {
+ class: cx("flex gap-2 items-start my-4"),
+ },
+ nested: true,
+});
+
+const horizontalRule = HorizontalRule.configure({
+ HTMLAttributes: {
+ class: cx("mt-4 mb-6 border-t border-muted-foreground"),
+ },
+});
+
+const starterKit = StarterKit.configure({
+ bulletList: {
+ HTMLAttributes: {
+ class: cx("list-disc list-outside leading-3 -mt-2"),
+ },
+ },
+ orderedList: {
+ HTMLAttributes: {
+ class: cx("list-decimal list-outside leading-3 -mt-2"),
+ },
+ },
+ listItem: {
+ HTMLAttributes: {
+ class: cx("leading-normal -mb-2"),
+ },
+ },
+ blockquote: {
+ HTMLAttributes: {
+ class: cx("border-l-4 border-primary"),
+ },
+ },
+ codeBlock: {
+ HTMLAttributes: {
+ class: cx(
+ "rounded-md bg-muted text-muted-foreground border p-5 font-mono font-medium",
+ ),
+ },
+ },
+ code: {
+ HTMLAttributes: {
+ class: cx("rounded-md bg-muted px-1.5 py-1 font-mono font-medium"),
+ spellcheck: "false",
+ },
+ },
+ horizontalRule: false,
+ dropcursor: {
+ color: "#DBEAFE",
+ width: 4,
+ },
+ gapcursor: false,
+});
+
+const codeBlockLowlight = CodeBlockLowlight.configure({
+ lowlight: createLowlight(common),
+});
+
+const youtube = Youtube.configure({
+ HTMLAttributes: {
+ class: cx("rounded-lg border border-muted"),
+ },
+ inline: false,
+});
+
+const twitter = Twitter.configure({
+ HTMLAttributes: {
+ class: cx("not-prose"),
+ },
+ inline: false,
+});
+
+const characterCount = CharacterCount.configure();
+
+const textAlign = TextAlign.configure({
+ types: ["heading", "paragraph"],
+});
+
+const emojis = Emoji.configure({
+ emojis: gitHubEmojis,
+ enableEmoticons: true,
+ suggestion,
+});
+
+export const defaultExtensions = [
+ starterKit,
+ placeholder,
+ tiptapLink,
+ tiptapImage,
+ updatedImage,
+ taskList,
+ taskItem,
+ horizontalRule,
+ aiHighlight,
+ codeBlockLowlight,
+ youtube,
+ twitter,
+ characterCount,
+ GlobalDragHandle,
+ textAlign,
+ Typography,
+ emojis,
+];
diff --git a/apps/web/components/editor/generative/ai-completion-command.tsx b/apps/web/components/editor/generative/ai-completion-command.tsx
new file mode 100644
index 00000000..f235fffa
--- /dev/null
+++ b/apps/web/components/editor/generative/ai-completion-command.tsx
@@ -0,0 +1,66 @@
+import { CommandGroup, CommandItem, CommandSeparator } from "../ui/command";
+import { useEditor } from "novel";
+import { Check, TextQuote, TrashIcon } from "lucide-react";
+
+const AICompletionCommands = ({
+ completion,
+ onDiscard,
+}: {
+ completion: string;
+ onDiscard: () => void;
+}) => {
+ const { editor } = useEditor();
+ return (
+ <>
+ <CommandGroup>
+ <CommandItem
+ className="gap-2 px-4"
+ value="replace"
+ onSelect={() => {
+ const selection = editor.view.state.selection;
+
+ editor
+ .chain()
+ .focus()
+ .insertContentAt(
+ {
+ from: selection.from,
+ to: selection.to,
+ },
+ completion,
+ )
+ .run();
+ }}
+ >
+ <Check className="h-4 w-4 text-muted-foreground" />
+ Replace selection
+ </CommandItem>
+ <CommandItem
+ className="gap-2 px-4"
+ value="insert"
+ onSelect={() => {
+ const selection = editor.view.state.selection;
+ editor
+ .chain()
+ .focus()
+ .insertContentAt(selection.to + 1, completion)
+ .run();
+ }}
+ >
+ <TextQuote className="h-4 w-4 text-muted-foreground" />
+ Insert below
+ </CommandItem>
+ </CommandGroup>
+ <CommandSeparator />
+
+ <CommandGroup>
+ <CommandItem onSelect={onDiscard} value="thrash" className="gap-2 px-4">
+ <TrashIcon className="h-4 w-4 text-muted-foreground" />
+ Discard
+ </CommandItem>
+ </CommandGroup>
+ </>
+ );
+};
+
+export default AICompletionCommands;
diff --git a/apps/web/components/editor/generative/ai-selector-commands.tsx b/apps/web/components/editor/generative/ai-selector-commands.tsx
new file mode 100644
index 00000000..eef135f2
--- /dev/null
+++ b/apps/web/components/editor/generative/ai-selector-commands.tsx
@@ -0,0 +1,84 @@
+import {
+ ArrowDownWideNarrow,
+ CheckCheck,
+ RefreshCcwDot,
+ StepForward,
+ WrapText,
+} from "lucide-react";
+import { useEditor } from "novel";
+import { getPrevText } from "novel/utils";
+import { CommandGroup, CommandItem, CommandSeparator } from "../ui/command";
+
+const options = [
+ {
+ value: "improve",
+ label: "Improve writing",
+ icon: RefreshCcwDot,
+ },
+
+ {
+ value: "fix",
+ label: "Fix grammar",
+ icon: CheckCheck,
+ },
+ {
+ value: "shorter",
+ label: "Make shorter",
+ icon: ArrowDownWideNarrow,
+ },
+ {
+ value: "longer",
+ label: "Make longer",
+ icon: WrapText,
+ },
+];
+
+interface AISelectorCommandsProps {
+ onSelect: (value: string, option: string) => void;
+}
+
+const AISelectorCommands = ({ onSelect }: AISelectorCommandsProps) => {
+ const { editor } = useEditor();
+
+ return (
+ <>
+ <CommandGroup heading="Edit or review selection">
+ {options.map((option) => (
+ <CommandItem
+ onSelect={(value) => {
+ const slice = editor.state.selection.content();
+ const text = editor.storage.markdown.serializer.serialize(
+ slice.content,
+ );
+ onSelect(text, value);
+ }}
+ className="flex gap-2 px-4"
+ key={option.value}
+ value={option.value}
+ >
+ <option.icon className="h-4 w-4 text-purple-500" />
+ {option.label}
+ </CommandItem>
+ ))}
+ </CommandGroup>
+ <CommandSeparator />
+ <CommandGroup heading="Use AI to do more">
+ <CommandItem
+ onSelect={() => {
+ const pos = editor.state.selection.from;
+
+ const text = getPrevText(editor, pos);
+ onSelect(text, "continue");
+ }}
+ value="continue"
+ className="gap-2 px-4"
+ >
+ <StepForward className="h-4 w-4 text-purple-500" />
+ Continue writing
+ </CommandItem>
+ </CommandGroup>
+ </>
+ );
+};
+
+export default AISelectorCommands;
diff --git a/apps/web/components/editor/generative/ai-selector.tsx b/apps/web/components/editor/generative/ai-selector.tsx
new file mode 100644
index 00000000..48eb224e
--- /dev/null
+++ b/apps/web/components/editor/generative/ai-selector.tsx
@@ -0,0 +1,121 @@
+"use client";
+
+import { Command, CommandInput } from "../ui/command";
+
+import { useCompletion } from "ai/react";
+import { ArrowUp } from "lucide-react";
+import { useEditor } from "novel";
+import { addAIHighlight } from "novel/extensions";
+import { useState } from "react";
+import Markdown from "react-markdown";
+import { toast } from "sonner";
+import { Button } from "../ui/button";
+import CrazySpinner from "../ui/icons/crazy-spinner";
+import Magic from "../ui/icons/magic";
+import { ScrollArea } from "../ui/scroll-area";
+import AICompletionCommands from "./ai-completion-command";
+import AISelectorCommands from "./ai-selector-commands";
+//TODO: I think it makes more sense to create a custom Tiptap extension for this functionality https://tiptap.dev/docs/editor/ai/introduction
+
+interface AISelectorProps {
+ open: boolean;
+ onOpenChange: (open: boolean) => void;
+}
+
+export function AISelector({ onOpenChange }: AISelectorProps) {
+ const { editor } = useEditor();
+ const [inputValue, setInputValue] = useState("");
+
+ const { completion, complete, isLoading } = useCompletion({
+ // id: "novel",
+ api: "/api/generate",
+ onResponse: (response) => {
+ if (response.status === 429) {
+ toast.error("You have reached your request limit for the day.");
+ return;
+ }
+ },
+ onError: (e) => {
+ toast.error(e.message);
+ },
+ });
+
+ const hasCompletion = completion.length > 0;
+
+ return (
+ <Command className="w-[350px]">
+ {hasCompletion && (
+ <div className="flex max-h-[400px]">
+ <ScrollArea>
+ <div className="prose p-2 px-4 prose-sm">
+ <Markdown>{completion}</Markdown>
+ </div>
+ </ScrollArea>
+ </div>
+ )}
+
+ {isLoading && (
+ <div className="flex h-12 w-full items-center px-4 text-sm font-medium text-muted-foreground text-purple-500">
+ <Magic className="mr-2 h-4 w-4 shrink-0 " />
+ AI is thinking
+ <div className="ml-2 mt-1">
+ <CrazySpinner />
+ </div>
+ </div>
+ )}
+ {!isLoading && (
+ <>
+ <div className="relative">
+ <CommandInput
+ value={inputValue}
+ onValueChange={setInputValue}
+ autoFocus
+ placeholder={
+ hasCompletion
+ ? "Tell AI what to do next"
+ : "Ask AI to edit or generate..."
+ }
+ onFocus={() => addAIHighlight(editor)}
+ />
+ <Button
+ size="icon"
+ className="absolute right-2 top-1/2 h-6 w-6 -translate-y-1/2 rounded-full bg-purple-500 hover:bg-purple-900"
+ onClick={() => {
+ if (completion)
+ return complete(completion, {
+ body: { option: "zap", command: inputValue },
+ }).then(() => setInputValue(""));
+
+ const slice = editor.state.selection.content();
+ const text = editor.storage.markdown.serializer.serialize(
+ slice.content,
+ );
+
+ complete(text, {
+ body: { option: "zap", command: inputValue },
+ }).then(() => setInputValue(""));
+ }}
+ >
+ <ArrowUp className="h-4 w-4" />
+ </Button>
+ </div>
+ {hasCompletion ? (
+ <AICompletionCommands
+ onDiscard={() => {
+ editor.chain().unsetHighlight().focus().run();
+ onOpenChange(false);
+ }}
+ completion={completion}
+ />
+ ) : (
+ <AISelectorCommands
+ onSelect={(value, option) =>
+ complete(value, { body: { option } })
+ }
+ />
+ )}
+ </>
+ )}
+ </Command>
+ );
+}
diff --git a/apps/web/components/editor/generative/generative-menu-switch.tsx b/apps/web/components/editor/generative/generative-menu-switch.tsx
new file mode 100644
index 00000000..61d8d9df
--- /dev/null
+++ b/apps/web/components/editor/generative/generative-menu-switch.tsx
@@ -0,0 +1,75 @@
+import { EditorBubble, useEditor } from "novel";
+import { removeAIHighlight } from "novel/extensions";
+import {} from "novel/plugins";
+import React, { Fragment, type ReactNode, useEffect } from "react";
+import { Button } from "../ui/button";
+import Magic from "../ui/icons/magic";
+import { AISelector } from "./ai-selector";
+
+interface GenerativeMenuSwitchProps {
+ children: ReactNode;
+ open: boolean;
+ onOpenChange: (open: boolean) => void;
+}
+const GenerativeMenuSwitch = ({
+ children,
+ open,
+ onOpenChange,
+}: GenerativeMenuSwitchProps) => {
+ const { editor } = useEditor();
+
+ useEffect(() => {
+ if (!open) removeAIHighlight(editor);
+ }, [open]);
+ return (
+ <EditorBubble
+ tippyOptions={{
+ placement: open ? "bottom-start" : "top",
+ onHidden: () => {
+ onOpenChange(false);
+ editor.chain().unsetHighlight().run();
+ },
+ }}
+ className="flex w-fit max-w-[90vw] overflow-hidden rounded-md bg-[#1F2428] shadow-xl"
+ >
+ {open && <AISelector open={open} onOpenChange={onOpenChange} />}
+ {!open && (
+ <Fragment>
+ <Button
+ className="gap-1 rounded-none text-purple-500"
+ variant="ghost"
+ onClick={() => onOpenChange(true)}
+ size="sm"
+ >
+ <Magic className="h-5 w-5" />
+ Ask AI
+ </Button>
+ {children}
+ </Fragment>
+ )}
+ </EditorBubble>
+ );
+};
+
+function AILessBubbleMenu({ children }: { children: React.ReactNode }) {
+ const { editor } = useEditor();
+ if (!editor) {
+ return null;
+ }
+
+ return (
+ <EditorBubble
+ tippyOptions={{
+ placement: "top",
+ onHidden: () => {
+ editor.chain().unsetHighlight().run();
+ },
+ }}
+ className="flex w-fit max-w-[90vw] overflow-hidden rounded-md bg-[#1F2428] shadow-xl"
+ >
+ {children}
+ </EditorBubble>
+ );
+}
+
+export default AILessBubbleMenu;
diff --git a/apps/web/components/editor/image-upload.ts b/apps/web/components/editor/image-upload.ts
new file mode 100644
index 00000000..80653c5a
--- /dev/null
+++ b/apps/web/components/editor/image-upload.ts
@@ -0,0 +1,62 @@
+import { createImageUpload } from "novel/plugins";
+import { toast } from "sonner";
+
+const onUpload = (file: File) => {
+ const promise = fetch("/api/upload", {
+ method: "POST",
+ headers: {
+ "content-type": file?.type || "application/octet-stream",
+ "x-vercel-filename": file?.name || "image.png",
+ },
+ body: file,
+ });
+
+ return new Promise((resolve, reject) => {
+ toast.promise(
+ promise.then(async (res) => {
+ // Successfully uploaded image
+ if (res.status === 200) {
+ const { url } = (await res.json()) as { url: string };
+ // preload the image
+ const image = new Image();
+ image.src = url;
+ image.onload = () => {
+ resolve(url);
+ };
+ // No blob store configured
+ } else if (res.status === 401) {
+ resolve(file);
+ throw new Error(
+ "`BLOB_READ_WRITE_TOKEN` environment variable not found, reading image locally instead.",
+ );
+ // Unknown error
+ } else {
+ throw new Error("Error uploading image. Please try again.");
+ }
+ }),
+ {
+ loading: "Uploading image...",
+ success: "Image uploaded successfully.",
+ error: (e) => {
+ reject(e);
+ return e.message;
+ },
+ },
+ );
+ });
+};
+
+export const uploadFn = createImageUpload({
+ onUpload,
+ validateFn: (file) => {
+ if (!file.type.includes("image/")) {
+ toast.error("File type not supported.");
+ return false;
+ }
+ if (file.size / 1024 / 1024 > 20) {
+ toast.error("File size too big (max 20MB).");
+ return false;
+ }
+ return true;
+ },
+});
diff --git a/apps/web/components/editor/prosemirror.css b/apps/web/components/editor/prosemirror.css
new file mode 100644
index 00000000..347367fa
--- /dev/null
+++ b/apps/web/components/editor/prosemirror.css
@@ -0,0 +1,212 @@
+.ProseMirror {
+ @apply p-12 px-8 sm:px-12;
+}
+
+.ProseMirror .is-editor-empty:first-child::before {
+ content: attr(data-placeholder);
+ float: left;
+ color: hsl(var(--muted-foreground));
+ pointer-events: none;
+ height: 0;
+}
+.ProseMirror .is-empty::before {
+ content: attr(data-placeholder);
+ float: left;
+ color: hsl(var(--muted-foreground));
+ pointer-events: none;
+ height: 0;
+}
+
+/* Custom image styles */
+
+.ProseMirror img {
+ transition: filter 0.1s ease-in-out;
+
+ &:hover {
+ cursor: pointer;
+ filter: brightness(90%);
+ }
+
+ &.ProseMirror-selectednode {
+ outline: 3px solid #5abbf7;
+ filter: brightness(90%);
+ }
+}
+
+.img-placeholder {
+ position: relative;
+
+ &:before {
+ content: "";
+ box-sizing: border-box;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 36px;
+ height: 36px;
+ border-radius: 50%;
+ border: 3px solid var(--novel-stone-200);
+ border-top-color: var(--novel-stone-800);
+ animation: spinning 0.6s linear infinite;
+ }
+}
+
+@keyframes spinning {
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+/* Custom TODO list checkboxes – shoutout to this awesome tutorial: https://moderncss.dev/pure-css-custom-checkbox-style/ */
+
+ul[data-type="taskList"] li > label {
+ margin-right: 0.2rem;
+ user-select: none;
+}
+
+@media screen and (max-width: 768px) {
+ ul[data-type="taskList"] li > label {
+ margin-right: 0.5rem;
+ }
+}
+
+ul[data-type="taskList"] li > label input[type="checkbox"] {
+ -webkit-appearance: none;
+ appearance: none;
+ background-color: hsl(var(--background));
+ margin: 0;
+ cursor: pointer;
+ width: 1.2em;
+ height: 1.2em;
+ position: relative;
+ top: 5px;
+ border: 2px solid hsl(var(--border));
+ margin-right: 0.3rem;
+ display: grid;
+ place-content: center;
+
+ &:hover {
+ background-color: hsl(var(--accent));
+ }
+
+ &:active {
+ background-color: hsl(var(--accent));
+ }
+
+ &::before {
+ content: "";
+ width: 0.65em;
+ height: 0.65em;
+ transform: scale(0);
+ transition: 120ms transform ease-in-out;
+ box-shadow: inset 1em 1em;
+ transform-origin: center;
+ clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
+ }
+
+ &:checked::before {
+ transform: scale(1);
+ }
+}
+
+ul[data-type="taskList"] li[data-checked="true"] > div > p {
+ color: var(--muted-foreground);
+ text-decoration: line-through;
+ text-decoration-thickness: 2px;
+}
+
+/* Overwrite tippy-box original max-width */
+
+.tippy-box {
+ max-width: 400px !important;
+}
+
+.ProseMirror:not(.dragging) .ProseMirror-selectednode {
+ outline: none !important;
+ background-color: var(--novel-highlight-blue);
+ transition: background-color 0.2s;
+ box-shadow: none;
+}
+
+.drag-handle {
+ position: fixed;
+ opacity: 1;
+ transition: opacity ease-in 0.2s;
+ border-radius: 0.25rem;
+
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' style='fill: rgba(0, 0, 0, 0.5)'%3E%3Cpath d='M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z'%3E%3C/path%3E%3C/svg%3E");
+ background-size: calc(0.5em + 0.375rem) calc(0.5em + 0.375rem);
+ background-repeat: no-repeat;
+ background-position: center;
+ width: 1.2rem;
+ height: 1.5rem;
+ z-index: 50;
+ cursor: grab;
+
+ &:hover {
+ background-color: var(--novel-stone-100);
+ transition: background-color 0.2s;
+ }
+
+ &:active {
+ background-color: var(--novel-stone-200);
+ transition: background-color 0.2s;
+ cursor: grabbing;
+ }
+
+ &.hide {
+ opacity: 0;
+ pointer-events: none;
+ }
+
+ @media screen and (max-width: 600px) {
+ display: none;
+ pointer-events: none;
+ }
+}
+
+.dark .drag-handle {
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' style='fill: rgba(255, 255, 255, 0.5)'%3E%3Cpath d='M3,2 C2.44771525,2 2,1.55228475 2,1 C2,0.44771525 2.44771525,0 3,0 C3.55228475,0 4,0.44771525 4,1 C4,1.55228475 3.55228475,2 3,2 Z M3,6 C2.44771525,6 2,5.55228475 2,5 C2,4.44771525 2.44771525,4 3,4 C3.55228475,4 4,4.44771525 4,5 C4,5.55228475 3.55228475,6 3,6 Z M3,10 C2.44771525,10 2,9.55228475 2,9 C2,8.44771525 2.44771525,8 3,8 C3.55228475,8 4,8.44771525 4,9 C4,9.55228475 3.55228475,10 3,10 Z M7,2 C6.44771525,2 6,1.55228475 6,1 C6,0.44771525 6.44771525,0 7,0 C7.55228475,0 8,0.44771525 8,1 C8,1.55228475 7.55228475,2 7,2 Z M7,6 C6.44771525,6 6,5.55228475 6,5 C6,4.44771525 6.44771525,4 7,4 C7.55228475,4 8,4.44771525 8,5 C8,5.55228475 7.55228475,6 7,6 Z M7,10 C6.44771525,10 6,9.55228475 6,9 C6,8.44771525 6.44771525,8 7,8 C7.55228475,8 8,8.44771525 8,9 C8,9.55228475 7.55228475,10 7,10 Z'%3E%3C/path%3E%3C/svg%3E");
+}
+
+/* Custom Youtube Video CSS */
+iframe {
+ border: 8px solid #ffd00027;
+ border-radius: 4px;
+ min-width: 200px;
+ min-height: 200px;
+ display: block;
+ outline: 0px solid transparent;
+}
+
+div[data-youtube-video] > iframe {
+ cursor: move;
+ aspect-ratio: 16 / 9;
+ width: 100%;
+}
+
+.ProseMirror-selectednode iframe {
+ transition: outline 0.15s;
+ outline: 6px solid #fbbf24;
+}
+
+@media only screen and (max-width: 480px) {
+ div[data-youtube-video] > iframe {
+ max-height: 50px;
+ }
+}
+
+@media only screen and (max-width: 720px) {
+ div[data-youtube-video] > iframe {
+ max-height: 100px;
+ }
+}
+
+/* CSS for bold coloring and highlighting issue*/
+span[style] > strong {
+ color: inherit;
+}
+
+mark[style] > strong {
+ color: inherit;
+}
diff --git a/apps/web/components/editor/selectors/align-selector.tsx b/apps/web/components/editor/selectors/align-selector.tsx
new file mode 100644
index 00000000..3002fbd2
--- /dev/null
+++ b/apps/web/components/editor/selectors/align-selector.tsx
@@ -0,0 +1,87 @@
+import { Check, ChevronDown, LucideIcon } from "lucide-react";
+import { EditorBubbleItem, useEditor } from "novel";
+
+import { Button } from "../ui/button";
+import { PopoverContent, PopoverTrigger } from "../ui/popover";
+import { Popover } from "@radix-ui/react-popover";
+
+export type SelectorItem = {
+ name: string;
+ command: (editor: ReturnType<typeof useEditor>["editor"]) => void;
+ isActive: (editor: ReturnType<typeof useEditor>["editor"]) => boolean;
+};
+
+const items: SelectorItem[] = [
+ {
+ name: "left",
+ command: (editor) => editor.chain().focus().setTextAlign("left").run(),
+ isActive: (editor) => editor.isActive({ textAlign: "left" }),
+ },
+ {
+ name: "center",
+ command: (editor) => editor.chain().focus().setTextAlign("center").run(),
+ isActive: (editor) => editor.isActive({ textAlign: "center" }),
+ },
+ {
+ name: "right",
+ command: (editor) => editor.chain().focus().setTextAlign("right").run(),
+ isActive: (editor) => editor.isActive({ textAlign: "right" }),
+ },
+ {
+ name: "justify",
+ command: (editor) => editor.chain().focus().setTextAlign("justify").run(),
+ isActive: (editor) => editor.isActive({ textAlign: "justify" }),
+ },
+];
+
+interface AlignSelectorProps {
+ open: boolean;
+ onOpenChange: (open: boolean) => void;
+}
+
+export const AlignSelector = ({ open, onOpenChange }: AlignSelectorProps) => {
+ const { editor } = useEditor();
+ if (!editor) return null;
+ const activeItem = items.filter((item) => item.isActive(editor)).pop() ?? {
+ name: "Multiple",
+ };
+
+ return (
+ <Popover modal={true} open={open} onOpenChange={onOpenChange}>
+ <PopoverTrigger
+ asChild
+ className="gap-2 rounded-none border-none hover:bg-[#21303D] group focus:ring-0"
+ >
+ <Button size="sm" variant="ghost" className="gap-2">
+ <span className="whitespace-nowrap text-sm text-gray-400 group-hover:text-[#369DFD]">
+ {activeItem.name}
+ </span>
+ <ChevronDown className="h-4 w-4 text-gray-400 group-hover:text-[#369DFD]" />
+ </Button>
+ </PopoverTrigger>
+ <PopoverContent
+ sideOffset={5}
+ align="start"
+ className="w-48 p-1 bg-[#1F2428] border-0"
+ >
+ {items.map((item) => (
+ <EditorBubbleItem
+ key={item.name}
+ onSelect={(editor) => {
+ item.command(editor);
+ onOpenChange(false);
+ }}
+ className="flex border-0 group cursor-pointer items-center justify-between rounded-sm px-2 py-1 text-sm hover:bg-[#21303D]"
+ >
+ <div className="flex items-center space-x-2 text-white group-hover:text-[#369DFD]">
+ <span>{item.name}</span>
+ </div>
+ {activeItem.name === item.name && (
+ <Check className="h-4 w-4 text-white" />
+ )}
+ </EditorBubbleItem>
+ ))}
+ </PopoverContent>
+ </Popover>
+ );
+};
diff --git a/apps/web/components/editor/selectors/link-selector.tsx b/apps/web/components/editor/selectors/link-selector.tsx
new file mode 100644
index 00000000..7a573dc4
--- /dev/null
+++ b/apps/web/components/editor/selectors/link-selector.tsx
@@ -0,0 +1,120 @@
+import { Button } from "../ui/button";
+import { PopoverContent } from "../ui/popover";
+import { cn } from "@repo/ui/lib/utils";
+import { Popover, PopoverTrigger } from "@radix-ui/react-popover";
+import { Check, Trash } from "lucide-react";
+import { useEditor } from "novel";
+import { useEffect, useRef } from "react";
+
+export function isValidUrl(url: string) {
+ try {
+ new URL(url);
+ return true;
+ } catch (_e) {
+ return false;
+ }
+}
+export function getUrlFromString(str: string) {
+ if (isValidUrl(str)) return str;
+ try {
+ if (str.includes(".") && !str.includes(" ")) {
+ return new URL(`https://${str}`).toString();
+ }
+ } catch (_e) {
+ return null;
+ }
+}
+interface LinkSelectorProps {
+ open: boolean;
+ onOpenChange: (open: boolean) => void;
+}
+
+export const LinkSelector = ({ open, onOpenChange }: LinkSelectorProps) => {
+ const inputRef = useRef<HTMLInputElement>(null);
+ const { editor } = useEditor();
+
+ // Autofocus on input by default
+ useEffect(() => {
+ inputRef.current?.focus();
+ });
+ if (!editor) return null;
+
+ return (
+ <Popover modal={true} open={open} onOpenChange={onOpenChange}>
+ <PopoverTrigger asChild>
+ <Button
+ size="sm"
+ variant="ghost"
+ className="gap-2 group rounded-none border-none hover:bg-[#21303D]"
+ >
+ <p
+ className={cn(
+ "underline text-gray-400 group-hover:text-[#369DFD] underline-offset-4",
+ {
+ "text-white": editor.isActive("link"),
+ },
+ )}
+ >
+ ↗
+ </p>
+ <p
+ className={cn(
+ "underline text-gray-400 group-hover:text-[#369DFD] underline-offset-4",
+ {
+ "text-white": editor.isActive("link"),
+ },
+ )}
+ >
+ Link
+ </p>
+ </Button>
+ </PopoverTrigger>
+ <PopoverContent
+ align="start"
+ className="w-60 p-0 bg-[#1F2428] border-0 shadow-md"
+ sideOffset={10}
+ >
+ <form
+ onSubmit={(e) => {
+ const target = e.currentTarget as HTMLFormElement;
+ e.preventDefault();
+ const input = target[0] as HTMLInputElement;
+ const url = getUrlFromString(input.value);
+ if (url) {
+ editor.chain().focus().setLink({ href: url }).run();
+ onOpenChange(false);
+ }
+ }}
+ className="flex p-1 "
+ >
+ <input
+ ref={inputRef}
+ type="text"
+ placeholder="Paste a link"
+ className="flex-1 bg-background p-1 text-sm outline-none text-white px-2 py-1"
+ defaultValue={editor.getAttributes("link").href || ""}
+ />
+ {editor.getAttributes("link").href ? (
+ <Button
+ size="icon"
+ variant="outline"
+ type="button"
+ className="flex h-8 border-0 items-center rounded-sm p-1 text-red-600 hover:text-red-600 hover:bg-red-950"
+ onClick={() => {
+ editor.chain().focus().unsetLink().run();
+ inputRef.current.value = "";
+ onOpenChange(false);
+ }}
+ >
+ <Trash className="h-4 w-4" />
+ </Button>
+ ) : (
+ <Button size="icon" className="h-8 px-2">
+ <Check className="h-4 w-4" />
+ </Button>
+ )}
+ </form>
+ </PopoverContent>
+ </Popover>
+ );
+};
diff --git a/apps/web/components/editor/selectors/node-selector.tsx b/apps/web/components/editor/selectors/node-selector.tsx
new file mode 100644
index 00000000..46c6eb01
--- /dev/null
+++ b/apps/web/components/editor/selectors/node-selector.tsx
@@ -0,0 +1,148 @@
+import {
+ Check,
+ CheckSquare,
+ ChevronDown,
+ Code,
+ Heading1,
+ Heading2,
+ Heading3,
+ ListOrdered,
+ type LucideIcon,
+ TextIcon,
+ TextQuote,
+} from "lucide-react";
+import { EditorBubbleItem, useEditor } from "novel";
+
+import { Button } from "../ui/button";
+import { PopoverContent, PopoverTrigger } from "../ui/popover";
+import { Popover } from "@radix-ui/react-popover";
+
+export type SelectorItem = {
+ name: string;
+ icon: LucideIcon;
+ command: (editor: ReturnType<typeof useEditor>["editor"]) => void;
+ isActive: (editor: ReturnType<typeof useEditor>["editor"]) => boolean;
+};
+
+const items: SelectorItem[] = [
+ {
+ name: "Text",
+ icon: TextIcon,
+ command: (editor) => editor.chain().focus().clearNodes().run(),
+ // I feel like there has to be a more efficient way to do this – feel free to PR if you know how!
+ isActive: (editor) =>
+ editor.isActive("paragraph") &&
+ !editor.isActive("bulletList") &&
+ !editor.isActive("orderedList"),
+ },
+ {
+ name: "Heading 1",
+ icon: Heading1,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleHeading({ level: 1 }).run(),
+ isActive: (editor) => editor.isActive("heading", { level: 1 }),
+ },
+ {
+ name: "Heading 2",
+ icon: Heading2,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleHeading({ level: 2 }).run(),
+ isActive: (editor) => editor.isActive("heading", { level: 2 }),
+ },
+ {
+ name: "Heading 3",
+ icon: Heading3,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleHeading({ level: 3 }).run(),
+ isActive: (editor) => editor.isActive("heading", { level: 3 }),
+ },
+ {
+ name: "To-do List",
+ icon: CheckSquare,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleTaskList().run(),
+ isActive: (editor) => editor.isActive("taskItem"),
+ },
+ {
+ name: "Bullet List",
+ icon: ListOrdered,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleBulletList().run(),
+ isActive: (editor) => editor.isActive("bulletList"),
+ },
+ {
+ name: "Numbered List",
+ icon: ListOrdered,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleOrderedList().run(),
+ isActive: (editor) => editor.isActive("orderedList"),
+ },
+ {
+ name: "Quote",
+ icon: TextQuote,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleBlockquote().run(),
+ isActive: (editor) => editor.isActive("blockquote"),
+ },
+ {
+ name: "Code",
+ icon: Code,
+ command: (editor) =>
+ editor.chain().focus().clearNodes().toggleCodeBlock().run(),
+ isActive: (editor) => editor.isActive("codeBlock"),
+ },
+];
+interface NodeSelectorProps {
+ open: boolean;
+ onOpenChange: (open: boolean) => void;
+}
+
+export const NodeSelector = ({ open, onOpenChange }: NodeSelectorProps) => {
+ const { editor } = useEditor();
+ if (!editor) return null;
+ const activeItem = items.filter((item) => item.isActive(editor)).pop() ?? {
+ name: "Multiple",
+ };
+
+ return (
+ <Popover modal={true} open={open} onOpenChange={onOpenChange}>
+ <PopoverTrigger
+ asChild
+ className="gap-2 rounded-none border-none hover:bg-[#21303D] group focus:ring-0"
+ >
+ <Button size="sm" variant="ghost" className="gap-2">
+ <span className="whitespace-nowrap text-sm text-gray-400 group-hover:text-[#369DFD]">
+ {activeItem.name}
+ </span>
+ <ChevronDown className="h-4 w-4 text-gray-400 group-hover:text-[#369DFD]" />
+ </Button>
+ </PopoverTrigger>
+ <PopoverContent
+ sideOffset={5}
+ align="start"
+ className="w-48 p-1 bg-[#1F2428] border-0"
+ >
+ {items.map((item) => (
+ <EditorBubbleItem
+ key={item.name}
+ onSelect={(editor) => {
+ item.command(editor);
+ onOpenChange(false);
+ }}
+ className="flex border-0 group cursor-pointer items-center justify-between rounded-sm px-2 py-1 text-sm hover:bg-[#21303D]"
+ >
+ <div className="flex items-center space-x-2 text-white group-hover:text-[#369DFD]">
+ <div className="rounded-sm p-1">
+ <item.icon className="h-3 w-3 " />
+ </div>
+ <span>{item.name}</span>
+ </div>
+ {activeItem.name === item.name && (
+ <Check className="h-4 w-4 text-white" />
+ )}
+ </EditorBubbleItem>
+ ))}
+ </PopoverContent>
+ </Popover>
+ );
+};
diff --git a/apps/web/components/editor/selectors/text-buttons.tsx b/apps/web/components/editor/selectors/text-buttons.tsx
new file mode 100644
index 00000000..d2c2c881
--- /dev/null
+++ b/apps/web/components/editor/selectors/text-buttons.tsx
@@ -0,0 +1,75 @@
+import { Button } from "../ui/button";
+import { cn } from "@repo/ui/lib/utils";
+import {
+ BoldIcon,
+ CodeIcon,
+ ItalicIcon,
+ StrikethroughIcon,
+ UnderlineIcon,
+} from "lucide-react";
+import { EditorBubbleItem, useEditor } from "novel";
+import type { SelectorItem } from "./node-selector";
+
+export const TextButtons = () => {
+ const { editor } = useEditor();
+ if (!editor) return null;
+ const items: SelectorItem[] = [
+ {
+ name: "bold",
+ isActive: (editor) => editor.isActive("bold"),
+ command: (editor) => editor.chain().focus().toggleBold().run(),
+ icon: BoldIcon,
+ },
+ {
+ name: "italic",
+ isActive: (editor) => editor.isActive("italic"),
+ command: (editor) => editor.chain().focus().toggleItalic().run(),
+ icon: ItalicIcon,
+ },
+ {
+ name: "underline",
+ isActive: (editor) => editor.isActive("underline"),
+ command: (editor) => editor.chain().focus().toggleUnderline().run(),
+ icon: UnderlineIcon,
+ },
+ {
+ name: "strike",
+ isActive: (editor) => editor.isActive("strike"),
+ command: (editor) => editor.chain().focus().toggleStrike().run(),
+ icon: StrikethroughIcon,
+ },
+ {
+ name: "code",
+ isActive: (editor) => editor.isActive("code"),
+ command: (editor) => editor.chain().focus().toggleCode().run(),
+ icon: CodeIcon,
+ },
+ ];
+ return (
+ <div className="flex">
+ {items.map((item) => (
+ <EditorBubbleItem
+ key={item.name}
+ onSelect={(editor) => {
+ item.command(editor);
+ }}
+ >
+ <Button
+ size="sm"
+ className="rounded-none group hover:bg-[#21303D]"
+ variant="ghost"
+ >
+ <item.icon
+ className={cn(
+ "h-4 w-4 text-gray-400 group-hover:text-[#369DFD]",
+ {
+ "text-white group-hover:text-white": item.isActive(editor),
+ },
+ )}
+ />
+ </Button>
+ </EditorBubbleItem>
+ ))}
+ </div>
+ );
+};
diff --git a/apps/web/components/editor/slash-command.tsx b/apps/web/components/editor/slash-command.tsx
new file mode 100644
index 00000000..8ec32475
--- /dev/null
+++ b/apps/web/components/editor/slash-command.tsx
@@ -0,0 +1,209 @@
+import {
+ CheckSquare,
+ Code,
+ Heading1,
+ Heading2,
+ Heading3,
+ ImageIcon,
+ List,
+ ListOrdered,
+ MessageSquarePlus,
+ Text,
+ TextQuote,
+ Twitter,
+ Youtube,
+} from "lucide-react";
+import { createSuggestionItems } from "novel/extensions";
+import { Command, renderItems } from "novel/extensions";
+import { uploadFn } from "./image-upload";
+
+export const suggestionItems = createSuggestionItems([
+ {
+ title: "Text",
+ description: "Just start typing with plain text.",
+ searchTerms: ["p", "paragraph"],
+ icon: <Text size={18} />,
+ command: ({ editor, range }) => {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .toggleNode("paragraph", "paragraph")
+ .run();
+ },
+ },
+ {
+ title: "To-do List",
+ description: "Track tasks with a to-do list.",
+ searchTerms: ["todo", "task", "list", "check", "checkbox"],
+ icon: <CheckSquare size={18} />,
+ command: ({ editor, range }) => {
+ editor.chain().focus().deleteRange(range).toggleTaskList().run();
+ },
+ },
+ {
+ title: "Heading 1",
+ description: "Big section heading.",
+ searchTerms: ["title", "big", "large"],
+ icon: <Heading1 size={18} />,
+ command: ({ editor, range }) => {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .setNode("heading", { level: 1 })
+ .run();
+ },
+ },
+ {
+ title: "Heading 2",
+ description: "Medium section heading.",
+ searchTerms: ["subtitle", "medium"],
+ icon: <Heading2 size={18} />,
+ command: ({ editor, range }) => {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .setNode("heading", { level: 2 })
+ .run();
+ },
+ },
+ {
+ title: "Heading 3",
+ description: "Small section heading.",
+ searchTerms: ["subtitle", "small"],
+ icon: <Heading3 size={18} />,
+ command: ({ editor, range }) => {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .setNode("heading", { level: 3 })
+ .run();
+ },
+ },
+ {
+ title: "Bullet List",
+ description: "Create a simple bullet list.",
+ searchTerms: ["unordered", "point"],
+ icon: <List size={18} />,
+ command: ({ editor, range }) => {
+ editor.chain().focus().deleteRange(range).toggleBulletList().run();
+ },
+ },
+ {
+ title: "Numbered List",
+ description: "Create a list with numbering.",
+ searchTerms: ["ordered"],
+ icon: <ListOrdered size={18} />,
+ command: ({ editor, range }) => {
+ editor.chain().focus().deleteRange(range).toggleOrderedList().run();
+ },
+ },
+ {
+ title: "Quote",
+ description: "Capture a quote.",
+ searchTerms: ["blockquote"],
+ icon: <TextQuote size={18} />,
+ command: ({ editor, range }) =>
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .toggleNode("paragraph", "paragraph")
+ .toggleBlockquote()
+ .run(),
+ },
+ {
+ title: "Code",
+ description: "Capture a code snippet.",
+ searchTerms: ["codeblock"],
+ icon: <Code size={18} />,
+ command: ({ editor, range }) =>
+ editor.chain().focus().deleteRange(range).toggleCodeBlock().run(),
+ },
+ // {
+ // title: "Image",
+ // description: "Upload an image from your computer.",
+ // searchTerms: ["photo", "picture", "media"],
+ // icon: <ImageIcon size={18} />,
+ // command: ({ editor, range }) => {
+ // editor.chain().focus().deleteRange(range).run();
+ // // upload image
+ // const input = document.createElement("input");
+ // input.type = "file";
+ // input.accept = "image/*";
+ // input.onchange = async () => {
+ // if (input.files?.length) {
+ // const file = input.files[0];
+ // const pos = editor.view.state.selection.from;
+ // uploadFn(file, editor.view, pos);
+ // }
+ // };
+ // input.click();
+ // },
+ // },
+ {
+ title: "Youtube",
+ description: "Embed a Youtube video.",
+ searchTerms: ["video", "youtube", "embed"],
+ icon: <Youtube size={18} />,
+ command: ({ editor, range }) => {
+ const videoLink = prompt("Please enter Youtube Video Link");
+ //From https://regexr.com/3dj5t
+ const ytregex = new RegExp(
+ /^((?:https?:)?\/\/)?((?:www|m)\.)?((?:youtube\.com|youtu.be))(\/(?:[\w\-]+\?v=|embed\/|v\/)?)([\w\-]+)(\S+)?$/,
+ );
+
+ if (ytregex.test(videoLink)) {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .setYoutubeVideo({
+ src: videoLink,
+ })
+ .run();
+ } else {
+ if (videoLink !== null) {
+ alert("Please enter a correct Youtube Video Link");
+ }
+ }
+ },
+ },
+ {
+ title: "Twitter",
+ description: "Embed a Tweet.",
+ searchTerms: ["twitter", "embed"],
+ icon: <Twitter size={18} />,
+ command: ({ editor, range }) => {
+ const tweetLink = prompt("Please enter Twitter Link");
+ const tweetRegex = new RegExp(
+ /^https?:\/\/(www\.)?x\.com\/([a-zA-Z0-9_]{1,15})(\/status\/(\d+))?(\/\S*)?$/,
+ );
+
+ if (tweetRegex.test(tweetLink)) {
+ editor
+ .chain()
+ .focus()
+ .deleteRange(range)
+ .setTweet({
+ src: tweetLink,
+ })
+ .run();
+ } else {
+ if (tweetLink !== null) {
+ alert("Please enter a correct Twitter Link");
+ }
+ }
+ },
+ },
+]);
+
+export const slashCommand = Command.configure({
+ suggestion: {
+ items: () => suggestionItems,
+ render: renderItems,
+ },
+});
diff --git a/apps/web/components/editor/toc.tsx b/apps/web/components/editor/toc.tsx
new file mode 100644
index 00000000..4f5a3abb
--- /dev/null
+++ b/apps/web/components/editor/toc.tsx
@@ -0,0 +1,88 @@
+import { useEditor } from "novel";
+import { motion } from "framer-motion";
+
+type tContent = {
+ id: string;
+ textContent: string;
+ level: number;
+ isActive: boolean;
+ itemIndex: number;
+ isScrolledOver: boolean;
+ pos: number;
+};
+
+export const ToCItem = ({
+ item,
+ onItemClick,
+}: {
+ item: tContent;
+ onItemClick: (pos: number) => void;
+}) => {
+ return (
+ <div
+ className={`text-sm ${
+ item.level === 2 ? "pl-2" : item.level === 3 ? "pl-4" : "pl-0"
+ }`}
+ >
+ <div
+ onClick={() => onItemClick(item.pos)}
+ className={`cursor-pointer text-base font-medium py-1 px-2 w-full hover:bg-[#2b3238] transition-colors rounded-sm ${item.isActive && "text-blue-500"}`}
+ >
+ {item.textContent}
+ </div>
+ </div>
+ );
+};
+
+export const ToC = ({ items }: { items: tContent[] }) => {
+ if (items.length < 2) {
+ return;
+ }
+
+ return (
+ <div className="fixed right-0 top-1/4 -translate-y-1/2 mr-12">
+ <div className="items-end space-y-3 py-2 max-h-[60vh] overflow-hidden">
+ {items.map((item, i) => (
+ <ToCItemStick key={item.id} item={item} />
+ ))}
+ </div>
+ <motion.div
+ initial={{ x: 15, opacity: 0 }}
+ whileHover={{ x: 5, opacity: 1 }}
+ transition={{ ease: "easeOut", duration: 0.15 }}
+ className="absolute top-0 right-0 space-y-3 min-w-72 max-w-72"
+ >
+ <Container items={items} />
+ </motion.div>
+ </div>
+ );
+};
+
+function Container({ items }: { items: tContent[] }) {
+ const { editor } = useEditor();
+
+ const onItemClick = (pos: number) => {
+ console.log(pos);
+ if (editor) {
+ editor.commands.focus(pos ? pos : 1, { scrollIntoView: true });
+ }
+ };
+
+ return (
+ <div className="bg-[#1F2428] rounded-xl overflow-auto max-h-[60vh] px-4 py-6">
+ {items.map((item, i) => (
+ <ToCItem onItemClick={onItemClick} key={item.id} item={item} />
+ ))}
+ </div>
+ );
+}
+
+export function ToCItemStick({ item }: { item: tContent }) {
+ return (
+ <div
+ className={`h-[0.125rem] bg-gray-500 rounded-xl ml-auto ${
+ item.level === 1 ? "w-6" : item.level === 2 ? "w-4" : "w-3"
+ }`}
+ ></div>
+ );
+}
diff --git a/apps/web/components/editor/ui/button.tsx b/apps/web/components/editor/ui/button.tsx
new file mode 100644
index 00000000..f43814cb
--- /dev/null
+++ b/apps/web/components/editor/ui/button.tsx
@@ -0,0 +1,56 @@
+import * as React from "react";
+import { Slot } from "@radix-ui/react-slot";
+import { cva, type VariantProps } from "class-variance-authority";
+
+import { cn } from "@repo/ui/lib/utils";
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
+ {
+ variants: {
+ variant: {
+ default: "bg-primary text-primary-foreground hover:bg-primary/90",
+ destructive:
+ "bg-destructive text-destructive-foreground hover:bg-destructive/90",
+ outline:
+ "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
+ secondary:
+ "bg-secondary text-secondary-foreground hover:bg-secondary/80",
+ ghost: "hover:bg-accent hover:text-accent-foreground",
+ link: "text-primary underline-offset-4 hover:underline",
+ },
+ size: {
+ default: "h-10 px-4 py-2",
+ sm: "h-9 rounded-md px-3",
+ lg: "h-11 rounded-md px-8",
+ icon: "h-10 w-10",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ },
+);
+
+export interface ButtonProps
+ extends React.ButtonHTMLAttributes<HTMLButtonElement>,
+ VariantProps<typeof buttonVariants> {
+ asChild?: boolean;
+}
+
+const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
+ const Comp = asChild ? Slot : "button";
+ return (
+ <Comp
+ className={cn(buttonVariants({ variant, size, className }))}
+ ref={ref}
+ {...props}
+ />
+ );
+ },
+);
+Button.displayName = "Button";
+
+export { Button, buttonVariants };
diff --git a/apps/web/components/editor/ui/command.tsx b/apps/web/components/editor/ui/command.tsx
new file mode 100644
index 00000000..bb739a4a
--- /dev/null
+++ b/apps/web/components/editor/ui/command.tsx
@@ -0,0 +1,155 @@
+"use client";
+
+import * as React from "react";
+import type { DialogProps } from "@radix-ui/react-dialog";
+import { Command as CommandPrimitive } from "cmdk";
+
+import { cn } from "@repo/ui/lib/utils";
+import { Dialog, DialogContent } from "./dialog";
+import Magic from "./icons/magic";
+
+const Command = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive>
+>(({ className, ...props }, ref) => (
+ <CommandPrimitive
+ ref={ref}
+ className={cn(
+ "flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",
+ className,
+ )}
+ {...props}
+ />
+));
+Command.displayName = CommandPrimitive.displayName;
+
+interface CommandDialogProps extends DialogProps {}
+
+const CommandDialog = ({ children, ...props }: CommandDialogProps) => {
+ return (
+ <Dialog {...props}>
+ <DialogContent className="overflow-hidden p-0 shadow-lg">
+ <Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5">
+ {children}
+ </Command>
+ </DialogContent>
+ </Dialog>
+ );
+};
+
+const CommandInput = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.Input>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input>
+>(({ className, ...props }, ref) => (
+ <div className="flex items-center border-b px-4" cmdk-input-wrapper="">
+ <Magic className="mr-2 h-4 w-4 shrink-0 text-purple-500 " />
+ <CommandPrimitive.Input
+ ref={ref}
+ className={cn(
+ "flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
+ className,
+ )}
+ {...props}
+ />
+ </div>
+));
+
+CommandInput.displayName = CommandPrimitive.Input.displayName;
+
+const CommandList = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.List>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.List>
+>(({ className, ...props }, ref) => (
+ <CommandPrimitive.List
+ ref={ref}
+ className={cn("max-h-[300px] overflow-y-auto overflow-x-hidden", className)}
+ {...props}
+ />
+));
+
+CommandList.displayName = CommandPrimitive.List.displayName;
+
+const CommandEmpty = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.Empty>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.Empty>
+>((props, ref) => (
+ <CommandPrimitive.Empty
+ ref={ref}
+ className="py-6 text-center text-sm"
+ {...props}
+ />
+));
+
+CommandEmpty.displayName = CommandPrimitive.Empty.displayName;
+
+const CommandGroup = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.Group>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.Group>
+>(({ className, ...props }, ref) => (
+ <CommandPrimitive.Group
+ ref={ref}
+ className={cn(
+ "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
+ className,
+ )}
+ {...props}
+ />
+));
+
+CommandGroup.displayName = CommandPrimitive.Group.displayName;
+
+const CommandSeparator = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.Separator>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.Separator>
+>(({ className, ...props }, ref) => (
+ <CommandPrimitive.Separator
+ ref={ref}
+ className={cn("-mx-1 h-px bg-border", className)}
+ {...props}
+ />
+));
+CommandSeparator.displayName = CommandPrimitive.Separator.displayName;
+
+const CommandItem = React.forwardRef<
+ React.ElementRef<typeof CommandPrimitive.Item>,
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive.Item>
+>(({ className, ...props }, ref) => (
+ <CommandPrimitive.Item
+ ref={ref}
+ className={cn(
+ "relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none aria-selected:bg-accent aria-selected:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
+ className,
+ )}
+ {...props}
+ />
+));
+
+CommandItem.displayName = CommandPrimitive.Item.displayName;
+
+const CommandShortcut = ({
+ className,
+ ...props
+}: React.HTMLAttributes<HTMLSpanElement>) => {
+ return (
+ <span
+ className={cn(
+ "ml-auto text-xs tracking-widest text-muted-foreground",
+ className,
+ )}
+ {...props}
+ />
+ );
+};
+CommandShortcut.displayName = "CommandShortcut";
+
+export {
+ Command,
+ CommandDialog,
+ CommandInput,
+ CommandList,
+ CommandEmpty,
+ CommandGroup,
+ CommandItem,
+ CommandShortcut,
+ CommandSeparator,
+};
diff --git a/apps/web/components/editor/ui/dialog.tsx b/apps/web/components/editor/ui/dialog.tsx
new file mode 100644
index 00000000..20e88c88
--- /dev/null
+++ b/apps/web/components/editor/ui/dialog.tsx
@@ -0,0 +1,122 @@
+"use client";
+
+import * as React from "react";
+import * as DialogPrimitive from "@radix-ui/react-dialog";
+import { X } from "lucide-react";
+
+import { cn } from "@repo/ui/lib/utils";
+
+const Dialog = DialogPrimitive.Root;
+
+const DialogTrigger = DialogPrimitive.Trigger;
+
+const DialogPortal = DialogPrimitive.Portal;
+
+const DialogClose = DialogPrimitive.Close;
+
+const DialogOverlay = React.forwardRef<
+ React.ElementRef<typeof DialogPrimitive.Overlay>,
+ React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
+>(({ className, ...props }, ref) => (
+ <DialogPrimitive.Overlay
+ ref={ref}
+ className={cn(
+ "fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
+ className,
+ )}
+ {...props}
+ />
+));
+DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
+
+const DialogContent = React.forwardRef<
+ React.ElementRef<typeof DialogPrimitive.Content>,
+ React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
+>(({ className, children, ...props }, ref) => (
+ <DialogPortal>
+ <DialogOverlay />
+ <DialogPrimitive.Content
+ ref={ref}
+ className={cn(
+ "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
+ className,
+ )}
+ {...props}
+ >
+ {children}
+ <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
+ <X className="h-4 w-4" />
+ <span className="sr-only">Close</span>
+ </DialogPrimitive.Close>
+ </DialogPrimitive.Content>
+ </DialogPortal>
+));
+DialogContent.displayName = DialogPrimitive.Content.displayName;
+
+const DialogHeader = ({
+ className,
+ ...props
+}: React.HTMLAttributes<HTMLDivElement>) => (
+ <div
+ className={cn(
+ "flex flex-col space-y-1.5 text-center sm:text-left",
+ className,
+ )}
+ {...props}
+ />
+);
+DialogHeader.displayName = "DialogHeader";
+
+const DialogFooter = ({
+ className,
+ ...props
+}: React.HTMLAttributes<HTMLDivElement>) => (
+ <div
+ className={cn(
+ "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
+ className,
+ )}
+ {...props}
+ />
+);
+DialogFooter.displayName = "DialogFooter";
+
+const DialogTitle = React.forwardRef<
+ React.ElementRef<typeof DialogPrimitive.Title>,
+ React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
+>(({ className, ...props }, ref) => (
+ <DialogPrimitive.Title
+ ref={ref}
+ className={cn(
+ "text-lg font-semibold leading-none tracking-tight",
+ className,
+ )}
+ {...props}
+ />
+));
+DialogTitle.displayName = DialogPrimitive.Title.displayName;
+
+const DialogDescription = React.forwardRef<
+ React.ElementRef<typeof DialogPrimitive.Description>,
+ React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
+>(({ className, ...props }, ref) => (
+ <DialogPrimitive.Description
+ ref={ref}
+ className={cn("text-sm text-muted-foreground", className)}
+ {...props}
+ />
+));
+DialogDescription.displayName = DialogPrimitive.Description.displayName;
+
+export {
+ Dialog,
+ DialogPortal,
+ DialogOverlay,
+ DialogClose,
+ DialogTrigger,
+ DialogContent,
+ DialogHeader,
+ DialogFooter,
+ DialogTitle,
+ DialogDescription,
+};
diff --git a/apps/web/components/editor/ui/icons/crazy-spinner.tsx b/apps/web/components/editor/ui/icons/crazy-spinner.tsx
new file mode 100644
index 00000000..638540ae
--- /dev/null
+++ b/apps/web/components/editor/ui/icons/crazy-spinner.tsx
@@ -0,0 +1,11 @@
+const CrazySpinner = () => {
+ return (
+ <div className="flex items-center justify-center gap-0.5">
+ <div className="h-1.5 w-1.5 animate-bounce rounded-full bg-purple-500 [animation-delay:-0.3s]" />
+ <div className="h-1.5 w-1.5 animate-bounce rounded-full bg-purple-500 [animation-delay:-0.15s]" />
+ <div className="h-1.5 w-1.5 animate-bounce rounded-full bg-purple-500" />
+ </div>
+ );
+};
+
+export default CrazySpinner;
diff --git a/apps/web/components/editor/ui/icons/loading-circle.tsx b/apps/web/components/editor/ui/icons/loading-circle.tsx
new file mode 100644
index 00000000..94533ce5
--- /dev/null
+++ b/apps/web/components/editor/ui/icons/loading-circle.tsx
@@ -0,0 +1,20 @@
+export default function LoadingCircle({ dimensions }: { dimensions?: string }) {
+ return (
+ <svg
+ aria-hidden="true"
+ className={`${dimensions || "h-4 w-4"} animate-spin fill-stone-600 text-stone-200`}
+ viewBox="0 0 100 101"
+ fill="none"
+ xmlns="http://www.w3.org/2000/svg"
+ >
+ <path
+ d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
+ fill="currentColor"
+ />
+ <path
+ d="M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z"
+ fill="currentFill"
+ />
+ </svg>
+ );
+}
diff --git a/apps/web/components/editor/ui/icons/magic.tsx b/apps/web/components/editor/ui/icons/magic.tsx
new file mode 100644
index 00000000..c477a761
--- /dev/null
+++ b/apps/web/components/editor/ui/icons/magic.tsx
@@ -0,0 +1,32 @@
+export default function Magic({ className }: { className: string }) {
+ return (
+ <svg
+ width="469"
+ height="469"
+ viewBox="0 0 469 469"
+ fill="none"
+ xmlns="http://www.w3.org/2000/svg"
+ shapeRendering="geometricPrecision"
+ stroke="currentColor"
+ strokeLinecap="round"
+ strokeLinejoin="round"
+ strokeWidth="1.5"
+ className={className}
+ >
+ <title>Magic AI icon</title>
+
+ <path
+ d="M237.092 62.3004L266.754 71.4198C267.156 71.5285 267.51 71.765 267.765 72.0934C268.02 72.4218 268.161 72.8243 268.166 73.2399C268.172 73.6555 268.042 74.0616 267.796 74.3967C267.55 74.7318 267.201 74.9777 266.803 75.097L237.141 84.3145C236.84 84.4058 236.566 84.5699 236.344 84.7922C236.121 85.0146 235.957 85.2883 235.866 85.5893L226.747 115.252C226.638 115.653 226.401 116.008 226.073 116.263C225.745 116.517 225.342 116.658 224.926 116.664C224.511 116.669 224.105 116.539 223.77 116.293C223.435 116.047 223.189 115.699 223.069 115.301L213.852 85.6383C213.761 85.3374 213.597 85.0636 213.374 84.8412C213.152 84.6189 212.878 84.4548 212.577 84.3635L182.914 75.2441C182.513 75.1354 182.158 74.8989 181.904 74.5705C181.649 74.2421 181.508 73.8396 181.503 73.424C181.497 73.0084 181.627 72.6023 181.873 72.2672C182.119 71.9321 182.467 71.6863 182.865 71.5669L212.528 62.3494C212.829 62.2582 213.103 62.0941 213.325 61.8717C213.547 61.6494 213.712 61.3756 213.803 61.0747L222.922 31.4121C223.031 31.0109 223.267 30.656 223.596 30.4013C223.924 30.1465 224.327 30.0057 224.742 30.0002C225.158 29.9946 225.564 30.1247 225.899 30.3706C226.234 30.6165 226.48 30.9649 226.599 31.363L235.817 61.0257C235.908 61.3266 236.072 61.6003 236.295 61.8227C236.517 62.0451 236.791 62.2091 237.092 62.3004Z"
+ fill="currentColor"
+ />
+ <path
+ d="M155.948 155.848L202.771 168.939C203.449 169.131 204.045 169.539 204.47 170.101C204.895 170.663 205.125 171.348 205.125 172.052C205.125 172.757 204.895 173.442 204.47 174.004C204.045 174.566 203.449 174.974 202.771 175.166L155.899 188.06C155.361 188.209 154.87 188.496 154.475 188.891C154.079 189.286 153.793 189.777 153.644 190.316L140.553 237.138C140.361 237.816 139.953 238.413 139.391 238.838C138.829 239.262 138.144 239.492 137.44 239.492C136.735 239.492 136.05 239.262 135.488 238.838C134.927 238.413 134.519 237.816 134.327 237.138L121.432 190.267C121.283 189.728 120.997 189.237 120.601 188.842C120.206 188.446 119.715 188.16 119.177 188.011L72.3537 174.92C71.676 174.728 71.0795 174.32 70.6547 173.759C70.2299 173.197 70 172.512 70 171.807C70 171.103 70.2299 170.418 70.6547 169.856C71.0795 169.294 71.676 168.886 72.3537 168.694L119.226 155.799C119.764 155.65 120.255 155.364 120.65 154.969C121.046 154.573 121.332 154.082 121.481 153.544L134.572 106.721C134.764 106.043 135.172 105.447 135.734 105.022C136.295 104.597 136.981 104.367 137.685 104.367C138.389 104.367 139.075 104.597 139.637 105.022C140.198 105.447 140.606 106.043 140.798 106.721L153.693 153.593C153.842 154.131 154.128 154.622 154.524 155.018C154.919 155.413 155.41 155.699 155.948 155.848Z"
+ fill="currentColor"
+ />
+ <path
+ d="M386.827 289.992C404.33 292.149 403.84 305.828 386.876 307.299C346.623 310.829 298.869 316.271 282.199 360.005C274.844 379.192 269.942 403.2 267.49 432.029C267.427 432.846 267.211 433.626 266.856 434.319C266.501 435.012 266.015 435.602 265.431 436.05C254.988 444.041 251.212 434.186 250.183 425.606C239.2 332.353 214.588 316.909 124.668 306.122C123.892 306.031 123.151 305.767 122.504 305.35C121.857 304.933 121.322 304.375 120.942 303.72C116.399 295.679 119.324 291.038 129.718 289.796C224.688 278.47 236.062 262.83 250.183 169.331C252.177 156.355 257.259 154.083 265.431 162.516C266.51 163.593 267.202 165.099 267.392 166.782C279.257 258.564 293.328 278.617 386.827 289.992Z"
+ fill="currentColor"
+ />
+ </svg>
+ );
+}
diff --git a/apps/web/components/editor/ui/menu.tsx b/apps/web/components/editor/ui/menu.tsx
new file mode 100644
index 00000000..05cb021b
--- /dev/null
+++ b/apps/web/components/editor/ui/menu.tsx
@@ -0,0 +1,93 @@
+"use client";
+
+import { Check, Menu as MenuIcon, Monitor, Moon, SunDim } from "lucide-react";
+import { useTheme } from "next-themes";
+import { Button } from "./button";
+import { Popover, PopoverContent, PopoverTrigger } from "./popover";
+
+// TODO implement multiple fonts editor
+// const fonts = [
+// {
+// font: "Default",
+// icon: <FontDefault className="h-4 w-4" />,
+// },
+// {
+// font: "Serif",
+// icon: <FontSerif className="h-4 w-4" />,
+// },
+// {
+// font: "Mono",
+// icon: <FontMono className="h-4 w-4" />,
+// },
+// ];
+const appearances = [
+ {
+ theme: "System",
+ icon: <Monitor className="h-4 w-4" />,
+ },
+ {
+ theme: "Light",
+ icon: <SunDim className="h-4 w-4" />,
+ },
+ {
+ theme: "Dark",
+ icon: <Moon className="h-4 w-4" />,
+ },
+];
+export default function Menu() {
+ // const { font: currentFont, setFont } = useContext(AppContext);
+ const { theme: currentTheme, setTheme } = useTheme();
+
+ return (
+ <Popover>
+ <PopoverTrigger asChild>
+ <Button variant="ghost" size="icon">
+ <MenuIcon width={16} />
+ </Button>
+ </PopoverTrigger>
+ <PopoverContent className="w-52 p-2" align="end">
+ {/* <div className="p-2">
+ <p className="p-2 text-xs font-medium text-stone-500">Font</p>
+ {fonts.map(({ font, icon }) => (
+ <button
+ key={font}
+ className="flex w-full items-center justify-between rounded px-2 py-1 text-sm text-stone-600 hover:bg-stone-100"
+ onClick={() => {
+ setFont(font);
+ }}
+ >
+ <div className="flex items-center space-x-2">
+ <div className="rounded-sm border border-stone-200 p-1">
+ {icon}
+ </div>
+ <span>{font}</span>
+ </div>
+ {currentFont === font && <Check className="h-4 w-4" />}
+ </button>
+ ))}
+ </div> */}
+ <p className="p-2 text-xs font-medium text-muted-foreground">
+ Appearance
+ </p>
+ {appearances.map(({ theme, icon }) => (
+ <Button
+ variant="ghost"
+ key={theme}
+ className="flex w-full items-center justify-between rounded px-2 py-1.5 text-sm"
+ onClick={() => {
+ setTheme(theme.toLowerCase());
+ }}
+ >
+ <div className="flex items-center space-x-2">
+ <div className="rounded-sm border p-1">{icon}</div>
+ <span>{theme}</span>
+ </div>
+ {currentTheme === theme.toLowerCase() && (
+ <Check className="h-4 w-4" />
+ )}
+ </Button>
+ ))}
+ </PopoverContent>
+ </Popover>
+ );
+}
diff --git a/apps/web/components/editor/ui/popover.tsx b/apps/web/components/editor/ui/popover.tsx
new file mode 100644
index 00000000..c2d13643
--- /dev/null
+++ b/apps/web/components/editor/ui/popover.tsx
@@ -0,0 +1,31 @@
+"use client";
+
+import * as React from "react";
+import * as PopoverPrimitive from "@radix-ui/react-popover";
+
+import { cn } from "@repo/ui/lib/utils";
+
+const Popover = PopoverPrimitive.Root;
+
+const PopoverTrigger = PopoverPrimitive.Trigger;
+
+const PopoverContent = React.forwardRef<
+ React.ElementRef<typeof PopoverPrimitive.Content>,
+ React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
+>(({ className, align = "center", sideOffset = 4, ...props }, ref) => (
+ <PopoverPrimitive.Portal>
+ <PopoverPrimitive.Content
+ ref={ref}
+ align={align}
+ sideOffset={sideOffset}
+ className={cn(
+ "z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
+ className,
+ )}
+ {...props}
+ />
+ </PopoverPrimitive.Portal>
+));
+PopoverContent.displayName = PopoverPrimitive.Content.displayName;
+
+export { Popover, PopoverTrigger, PopoverContent };
diff --git a/apps/web/components/editor/ui/scroll-area.tsx b/apps/web/components/editor/ui/scroll-area.tsx
new file mode 100644
index 00000000..f5f9fcdf
--- /dev/null
+++ b/apps/web/components/editor/ui/scroll-area.tsx
@@ -0,0 +1,48 @@
+"use client";
+
+import * as React from "react";
+import * as ScrollAreaPrimitive from "@radix-ui/react-scroll-area";
+
+import { cn } from "@repo/ui/lib/utils";
+
+const ScrollArea = React.forwardRef<
+ React.ElementRef<typeof ScrollAreaPrimitive.Root>,
+ React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root>
+>(({ className, children, ...props }, ref) => (
+ <ScrollAreaPrimitive.Root
+ ref={ref}
+ className={cn("relative overflow-hidden", className)}
+ {...props}
+ >
+ <ScrollAreaPrimitive.Viewport className="h-full w-full rounded-[inherit]">
+ {children}
+ </ScrollAreaPrimitive.Viewport>
+ <ScrollBar />
+ <ScrollAreaPrimitive.Corner />
+ </ScrollAreaPrimitive.Root>
+));
+ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
+
+const ScrollBar = React.forwardRef<
+ React.ElementRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>,
+ React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>
+>(({ className, orientation = "vertical", ...props }, ref) => (
+ <ScrollAreaPrimitive.ScrollAreaScrollbar
+ ref={ref}
+ orientation={orientation}
+ className={cn(
+ "flex touch-none select-none transition-colors",
+ orientation === "vertical" &&
+ "h-full w-2.5 border-l border-l-transparent p-[1px]",
+ orientation === "horizontal" &&
+ "h-2.5 flex-col border-t border-t-transparent p-[1px]",
+ className,
+ )}
+ {...props}
+ >
+ <ScrollAreaPrimitive.ScrollAreaThumb className="relative flex-1 rounded-full bg-border" />
+ </ScrollAreaPrimitive.ScrollAreaScrollbar>
+));
+ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
+
+export { ScrollArea, ScrollBar };
diff --git a/apps/web/components/editor/ui/separator.tsx b/apps/web/components/editor/ui/separator.tsx
new file mode 100644
index 00000000..9731d2f3
--- /dev/null
+++ b/apps/web/components/editor/ui/separator.tsx
@@ -0,0 +1,31 @@
+"use client";
+
+import * as React from "react";
+import * as SeparatorPrimitive from "@radix-ui/react-separator";
+
+import { cn } from "@repo/ui/lib/utils";
+
+const Separator = React.forwardRef<
+ React.ElementRef<typeof SeparatorPrimitive.Root>,
+ React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>
+>(
+ (
+ { className, orientation = "horizontal", decorative = true, ...props },
+ ref,
+ ) => (
+ <SeparatorPrimitive.Root
+ ref={ref}
+ decorative={decorative}
+ orientation={orientation}
+ className={cn(
+ "shrink-0 bg-border",
+ orientation === "horizontal" ? "h-[1px] w-full" : " w-[1px]",
+ className,
+ )}
+ {...props}
+ />
+ ),
+);
+Separator.displayName = SeparatorPrimitive.Root.displayName;
+
+export { Separator };
diff --git a/apps/web/migrations/meta/0001_snapshot.json b/apps/web/migrations/meta/0001_snapshot.json
new file mode 100644
index 00000000..cc157c33
--- /dev/null
+++ b/apps/web/migrations/meta/0001_snapshot.json
@@ -0,0 +1,923 @@
+{
+ "version": "6",
+ "dialect": "sqlite",
+ "id": "30bdc8fa-70a7-44b7-a06b-59b950a62c11",
+ "prevId": "3fbdb153-2764-4b09-ac22-05c3a131ec35",
+ "tables": {
+ "account": {
+ "name": "account",
+ "columns": {
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "type": {
+ "name": "type",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "provider": {
+ "name": "provider",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "providerAccountId": {
+ "name": "providerAccountId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "refresh_token": {
+ "name": "refresh_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "access_token": {
+ "name": "access_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "expires_at": {
+ "name": "expires_at",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "token_type": {
+ "name": "token_type",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "scope": {
+ "name": "scope",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "id_token": {
+ "name": "id_token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "session_state": {
+ "name": "session_state",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "account_userId_user_id_fk": {
+ "name": "account_userId_user_id_fk",
+ "tableFrom": "account",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "account_provider_providerAccountId_pk": {
+ "columns": ["provider", "providerAccountId"],
+ "name": "account_provider_providerAccountId_pk"
+ }
+ },
+ "uniqueConstraints": {}
+ },
+ "authenticator": {
+ "name": "authenticator",
+ "columns": {
+ "credentialID": {
+ "name": "credentialID",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "providerAccountId": {
+ "name": "providerAccountId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "credentialPublicKey": {
+ "name": "credentialPublicKey",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "counter": {
+ "name": "counter",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "credentialDeviceType": {
+ "name": "credentialDeviceType",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "credentialBackedUp": {
+ "name": "credentialBackedUp",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "transports": {
+ "name": "transports",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ }
+ },
+ "indexes": {
+ "authenticator_credentialID_unique": {
+ "name": "authenticator_credentialID_unique",
+ "columns": ["credentialID"],
+ "isUnique": true
+ }
+ },
+ "foreignKeys": {
+ "authenticator_userId_user_id_fk": {
+ "name": "authenticator_userId_user_id_fk",
+ "tableFrom": "authenticator",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "authenticator_userId_credentialID_pk": {
+ "columns": ["credentialID", "userId"],
+ "name": "authenticator_userId_credentialID_pk"
+ }
+ },
+ "uniqueConstraints": {}
+ },
+ "canvas": {
+ "name": "canvas",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "title": {
+ "name": "title",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'Untitled'"
+ },
+ "description": {
+ "name": "description",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'Untitled'"
+ },
+ "url": {
+ "name": "url",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "''"
+ },
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {
+ "canvas_user_userId": {
+ "name": "canvas_user_userId",
+ "columns": ["userId"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "canvas_userId_user_id_fk": {
+ "name": "canvas_userId_user_id_fk",
+ "tableFrom": "canvas",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "chatHistory": {
+ "name": "chatHistory",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "integer",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": true
+ },
+ "threadId": {
+ "name": "threadId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "question": {
+ "name": "question",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "answerParts": {
+ "name": "answerParts",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "answerSources": {
+ "name": "answerSources",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "answerJustification": {
+ "name": "answerJustification",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "createdAt": {
+ "name": "createdAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'\"2024-08-27T18:12:22.062Z\"'"
+ }
+ },
+ "indexes": {
+ "chatHistory_thread_idx": {
+ "name": "chatHistory_thread_idx",
+ "columns": ["threadId"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "chatHistory_threadId_chatThread_id_fk": {
+ "name": "chatHistory_threadId_chatThread_id_fk",
+ "tableFrom": "chatHistory",
+ "tableTo": "chatThread",
+ "columnsFrom": ["threadId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "chatThread": {
+ "name": "chatThread",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "firstMessage": {
+ "name": "firstMessage",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {
+ "chatThread_user_idx": {
+ "name": "chatThread_user_idx",
+ "columns": ["userId"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "chatThread_userId_user_id_fk": {
+ "name": "chatThread_userId_user_id_fk",
+ "tableFrom": "chatThread",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "contentToSpace": {
+ "name": "contentToSpace",
+ "columns": {
+ "contentId": {
+ "name": "contentId",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "spaceId": {
+ "name": "spaceId",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "contentToSpace_contentId_storedContent_id_fk": {
+ "name": "contentToSpace_contentId_storedContent_id_fk",
+ "tableFrom": "contentToSpace",
+ "tableTo": "storedContent",
+ "columnsFrom": ["contentId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ },
+ "contentToSpace_spaceId_space_id_fk": {
+ "name": "contentToSpace_spaceId_space_id_fk",
+ "tableFrom": "contentToSpace",
+ "tableTo": "space",
+ "columnsFrom": ["spaceId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "contentToSpace_contentId_spaceId_pk": {
+ "columns": ["contentId", "spaceId"],
+ "name": "contentToSpace_contentId_spaceId_pk"
+ }
+ },
+ "uniqueConstraints": {}
+ },
+ "jobs": {
+ "name": "jobs",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "integer",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": true
+ },
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "url": {
+ "name": "url",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "status": {
+ "name": "status",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "attempts": {
+ "name": "attempts",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": 0
+ },
+ "lastAttemptAt": {
+ "name": "lastAttemptAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "error": {
+ "name": "error",
+ "type": "blob",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "createdAt": {
+ "name": "createdAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'\"2024-08-27T18:12:22.062Z\"'"
+ },
+ "updatedAt": {
+ "name": "updatedAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'\"2024-08-27T18:12:22.062Z\"'"
+ }
+ },
+ "indexes": {
+ "jobs_userId_idx": {
+ "name": "jobs_userId_idx",
+ "columns": ["userId"],
+ "isUnique": false
+ },
+ "jobs_status_idx": {
+ "name": "jobs_status_idx",
+ "columns": ["status"],
+ "isUnique": false
+ },
+ "jobs_createdAt_idx": {
+ "name": "jobs_createdAt_idx",
+ "columns": ["createdAt"],
+ "isUnique": false
+ },
+ "jobs_url_idx": {
+ "name": "jobs_url_idx",
+ "columns": ["url"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "jobs_userId_user_id_fk": {
+ "name": "jobs_userId_user_id_fk",
+ "tableFrom": "jobs",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "session": {
+ "name": "session",
+ "columns": {
+ "sessionToken": {
+ "name": "sessionToken",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "userId": {
+ "name": "userId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "expires": {
+ "name": "expires",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "session_userId_user_id_fk": {
+ "name": "session_userId_user_id_fk",
+ "tableFrom": "session",
+ "tableTo": "user",
+ "columnsFrom": ["userId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "space": {
+ "name": "space",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "integer",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": true
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": "'none'"
+ },
+ "user": {
+ "name": "user",
+ "type": "text(255)",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "createdAt": {
+ "name": "createdAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "numItems": {
+ "name": "numItems",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false,
+ "default": 0
+ }
+ },
+ "indexes": {
+ "space_name_unique": {
+ "name": "space_name_unique",
+ "columns": ["name"],
+ "isUnique": true
+ },
+ "spaces_name_idx": {
+ "name": "spaces_name_idx",
+ "columns": ["name"],
+ "isUnique": false
+ },
+ "spaces_user_idx": {
+ "name": "spaces_user_idx",
+ "columns": ["user"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "space_user_user_id_fk": {
+ "name": "space_user_user_id_fk",
+ "tableFrom": "space",
+ "tableTo": "user",
+ "columnsFrom": ["user"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "spacesAccess": {
+ "name": "spacesAccess",
+ "columns": {
+ "spaceId": {
+ "name": "spaceId",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "userEmail": {
+ "name": "userEmail",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {
+ "spacesAccess_spaceId_space_id_fk": {
+ "name": "spacesAccess_spaceId_space_id_fk",
+ "tableFrom": "spacesAccess",
+ "tableTo": "space",
+ "columnsFrom": ["spaceId"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {
+ "spacesAccess_spaceId_userEmail_pk": {
+ "columns": ["spaceId", "userEmail"],
+ "name": "spacesAccess_spaceId_userEmail_pk"
+ }
+ },
+ "uniqueConstraints": {}
+ },
+ "storedContent": {
+ "name": "storedContent",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "integer",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": true
+ },
+ "content": {
+ "name": "content",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "title": {
+ "name": "title",
+ "type": "text(255)",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "description": {
+ "name": "description",
+ "type": "text(255)",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "url": {
+ "name": "url",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "savedAt": {
+ "name": "savedAt",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "baseUrl": {
+ "name": "baseUrl",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "ogImage": {
+ "name": "ogImage",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "type": {
+ "name": "type",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false,
+ "default": "'page'"
+ },
+ "image": {
+ "name": "image",
+ "type": "text(255)",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "user": {
+ "name": "user",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "noteId": {
+ "name": "noteId",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ }
+ },
+ "indexes": {
+ "storedContent_url_idx": {
+ "name": "storedContent_url_idx",
+ "columns": ["url"],
+ "isUnique": false
+ },
+ "storedContent_savedAt_idx": {
+ "name": "storedContent_savedAt_idx",
+ "columns": ["savedAt"],
+ "isUnique": false
+ },
+ "storedContent_title_idx": {
+ "name": "storedContent_title_idx",
+ "columns": ["title"],
+ "isUnique": false
+ },
+ "storedContent_user_idx": {
+ "name": "storedContent_user_idx",
+ "columns": ["user"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {
+ "storedContent_user_user_id_fk": {
+ "name": "storedContent_user_user_id_fk",
+ "tableFrom": "storedContent",
+ "tableTo": "user",
+ "columnsFrom": ["user"],
+ "columnsTo": ["id"],
+ "onDelete": "cascade",
+ "onUpdate": "no action"
+ }
+ },
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "user": {
+ "name": "user",
+ "columns": {
+ "id": {
+ "name": "id",
+ "type": "text",
+ "primaryKey": true,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "name": {
+ "name": "name",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "email": {
+ "name": "email",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "emailVerified": {
+ "name": "emailVerified",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "image": {
+ "name": "image",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "telegramId": {
+ "name": "telegramId",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false
+ },
+ "hasOnboarded": {
+ "name": "hasOnboarded",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": false,
+ "autoincrement": false,
+ "default": false
+ }
+ },
+ "indexes": {
+ "users_email_idx": {
+ "name": "users_email_idx",
+ "columns": ["email"],
+ "isUnique": false
+ },
+ "users_telegram_idx": {
+ "name": "users_telegram_idx",
+ "columns": ["telegramId"],
+ "isUnique": false
+ },
+ "users_id_idx": {
+ "name": "users_id_idx",
+ "columns": ["id"],
+ "isUnique": false
+ }
+ },
+ "foreignKeys": {},
+ "compositePrimaryKeys": {},
+ "uniqueConstraints": {}
+ },
+ "verificationToken": {
+ "name": "verificationToken",
+ "columns": {
+ "identifier": {
+ "name": "identifier",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "token": {
+ "name": "token",
+ "type": "text",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ },
+ "expires": {
+ "name": "expires",
+ "type": "integer",
+ "primaryKey": false,
+ "notNull": true,
+ "autoincrement": false
+ }
+ },
+ "indexes": {},
+ "foreignKeys": {},
+ "compositePrimaryKeys": {
+ "verificationToken_identifier_token_pk": {
+ "columns": ["identifier", "token"],
+ "name": "verificationToken_identifier_token_pk"
+ }
+ },
+ "uniqueConstraints": {}
+ }
+ },
+ "enums": {},
+ "_meta": {
+ "schemas": {},
+ "tables": {},
+ "columns": {}
+ }
+}
diff --git a/apps/web/migrations/meta/_journal.json b/apps/web/migrations/meta/_journal.json
index 59ab4ea6..03637d1d 100644
--- a/apps/web/migrations/meta/_journal.json
+++ b/apps/web/migrations/meta/_journal.json
@@ -8,6 +8,13 @@
"when": 1722411353835,
"tag": "0000_fixed_pandemic",
"breakpoints": true
+ },
+ {
+ "idx": 1,
+ "version": "6",
+ "when": 1724782342070,
+ "tag": "0001_huge_puma",
+ "breakpoints": true
}
]
}
diff --git a/apps/web/next-env.d.ts b/apps/web/next-env.d.ts
index 40c3d680..4f11a03d 100644
--- a/apps/web/next-env.d.ts
+++ b/apps/web/next-env.d.ts
@@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
+// see https://nextjs.org/docs/basic-features/typescript for more information.
diff --git a/apps/web/package.json b/apps/web/package.json
index 109d7907..71445ce5 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -17,40 +17,48 @@
"update-prod-db": "wrangler d1 execute prod-d1-supermemory --remote"
},
"dependencies": {
- "@radix-ui/react-dialog": "^1.0.5",
- "@radix-ui/react-popover": "^1.0.7",
+ "@radix-ui/react-dialog": "^1.1.1",
+ "@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
- "@sentry/nextjs": "^8",
- "ai": "^3.3.0",
+ "@sentry/nextjs": "^8.26.0",
+ "@tiptap-pro/extension-emoji": "^2.10.11",
+ "@tiptap-pro/extension-table-of-contents": "^2.10.11",
+ "@tiptap/extension-text-align": "^2.6.4",
+ "@tiptap/extension-typography": "^2.6.4",
+ "@tiptap/pm": "^2.6.4",
+ "@tiptap/react": "^2.6.4",
+ "ai": "^3.3.7",
+ "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"drizzle-orm": "0.30.0",
"lowlight": "^3.1.0",
- "million": "^3.1.6",
- "next": "^14.1.1",
+ "million": "^3.1.11",
+ "next": "^14.2.5",
"next-pwa": "^5.6.0",
- "novel": "^0.4.2",
- "nuqs": "^1.17.4",
- "posthog-js": "^1.154.5",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-resizable-panels": "^2.0.19",
- "use-debounce": "^10.0.1"
+ "novel": "^0.4.3",
+ "nuqs": "^1.17.8",
+ "posthog-js": "^1.155.4",
+ "react": "^18.3.1",
+ "react-dom": "^18.3.1",
+ "react-resizable-panels": "^2.1.0",
+ "tippy.js": "^6.3.7",
+ "use-debounce": "^10.0.2"
},
"devDependencies": {
- "@cloudflare/next-on-pages": "1",
- "@next/eslint-plugin-next": "^14.1.1",
- "@repo/eslint-config": "*",
- "@repo/shared-types": "*",
- "@repo/tailwind-config": "*",
- "@repo/typescript-config": "*",
- "@types/eslint": "^8.56.5",
- "@types/node": "^20.11.24",
- "@types/react": "^18.2.61",
- "@types/react-dom": "^18.2.19",
+ "@cloudflare/next-on-pages": "^1.13.2",
+ "@next/eslint-plugin-next": "^14.2.5",
+ "@repo/eslint-config": "^0.0.0",
+ "@repo/shared-types": "^0.0.1",
+ "@repo/tailwind-config": "^0.0.0",
+ "@repo/typescript-config": "^0.0.0",
+ "@types/eslint": "^8.56.11",
+ "@types/node": "^20.14.15",
+ "@types/react": "^18.3.3",
+ "@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
- "postcss": "^8.4.38",
- "typescript": "^5.3.3",
- "wrangler": "^3.66.0"
+ "postcss": "^8.4.41",
+ "typescript": "^5.5.4",
+ "wrangler": "^3.71.0"
}
}
diff --git a/apps/web/wrangler.toml b/apps/web/wrangler.toml
index 6062c8bf..a6232450 100644
--- a/apps/web/wrangler.toml
+++ b/apps/web/wrangler.toml
@@ -26,8 +26,8 @@ bucket_name = "dev-r2-anycontext"
[[d1_databases]]
binding = "DATABASE"
-database_name = "prod-d1-supermemory"
-database_id = "f527a727-c472-41d4-8eaf-3d7ba0f2f395"
+database_name = "dev-d1-anycontext"
+database_id = "fc562605-157a-4f60-b439-2a24ffed5b4c"
[[env.production.d1_databases]]
binding = "DATABASE"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 89a09bc0..66904e94 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,31 +19,31 @@ importers:
version: 0.0.14([email protected])
'@auth/drizzle-adapter':
specifier: ^1.1.0
- version: 1.4.1
+ version: 1.4.2
'@aws-sdk/client-s3':
specifier: ^3.577.0
- version: 3.620.0
+ version: 3.637.0
'@aws-sdk/s3-request-presigner':
specifier: ^3.577.0
- version: 3.620.0
+ version: 3.637.0
'@babel/plugin-transform-runtime':
specifier: ^7.24.7
- version: 7.24.7(@babel/[email protected])
+ version: 7.25.4(@babel/[email protected])
'@cloudflare/puppeteer':
specifier: ^0.0.11
version: 0.0.11
'@headlessui/react':
specifier: ^2.0.4
'@heroicons/react':
specifier: ^2.1.4
version: 2.1.5([email protected])
'@hono/swagger-ui':
specifier: ^0.2.2
- version: 0.2.2([email protected])
+ version: 0.2.2([email protected])
'@hookform/resolvers':
specifier: ^3.4.2
- version: 3.9.0([email protected])
+ version: 3.9.0([email protected])
'@iarna/toml':
specifier: ^2.2.5
version: 2.2.5
@@ -58,52 +58,52 @@ importers:
version: 0.5.0
'@radix-ui/react-accordion':
specifier: ^1.1.2
'@radix-ui/react-alert-dialog':
specifier: ^1.1.1
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.1
'@radix-ui/react-icons':
specifier: ^1.3.0
version: 1.3.0([email protected])
'@radix-ui/react-label':
specifier: ^2.0.2
'@radix-ui/react-popover':
specifier: ^1.1.1
'@radix-ui/react-progress':
specifier: ^1.0.3
'@radix-ui/react-scroll-area':
specifier: ^1.0.5
'@radix-ui/react-select':
specifier: ^2.0.0
'@radix-ui/react-separator':
specifier: ^1.0.3
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.1.0(@types/[email protected])([email protected])
+ version: 1.1.0(@types/[email protected])([email protected])
'@radix-ui/react-switch':
specifier: ^1.1.0
'@radix-ui/react-tabs':
specifier: ^1.0.4
'@radix-ui/react-toast':
specifier: ^1.1.5
'@radix-ui/react-tooltip':
specifier: ^1.1.2
'@tldraw/assets':
specifier: ^2.2.0
- version: 2.4.1
+ version: 2.4.5
'@types/jsonwebtoken':
specifier: ^9.0.6
version: 9.0.6
@@ -115,16 +115,16 @@ importers:
version: 1.4.8
ai:
specifier: ^3.1.14
aws4fetch:
specifier: ^1.0.18
version: 1.0.19
cheerio:
specifier: ^1.0.0-rc.12
- version: 1.0.0-rc.12
+ version: 1.0.0
compromise:
specifier: ^14.13.0
- version: 14.13.0
+ version: 14.14.0
crypto-browserify:
specifier: ^3.12.0
version: 3.12.0
@@ -133,22 +133,22 @@ importers:
version: 0.21.2
drizzle-orm:
specifier: 0.30.0
- version: 0.30.0(@opentelemetry/[email protected])(@types/[email protected])([email protected])
+ version: 0.30.0(@opentelemetry/[email protected])(@types/[email protected])([email protected])
eslint-config-turbo:
specifier: ^2.0.6
- version: 2.0.9([email protected])
+ version: 2.1.0([email protected])
framer-motion:
specifier: ^11.2.6
geist:
specifier: ^1.3.0
- version: 1.3.1([email protected])
+ version: 1.3.1([email protected])
google-auth-library:
specifier: ^9.11.0
- version: 9.11.0
+ version: 9.14.0
grammy:
specifier: ^1.25.1
- version: 1.27.0
+ version: 1.29.0
http:
specifier: ^0.0.1-security
version: 0.0.1-security
@@ -169,10 +169,10 @@ importers:
version: 3.1.11([email protected])
next-app-theme:
specifier: ^0.1.10
- version: 0.1.10([email protected])
+ version: 0.1.11([email protected])
next-auth:
specifier: ^5.0.0-beta.18
- version: 5.0.0-beta.19([email protected])([email protected])
+ version: 5.0.0-beta.20([email protected])([email protected])
next-themes:
specifier: ^0.3.0
@@ -184,13 +184,13 @@ importers:
version: 14.2.3([email protected])
react-hook-form:
specifier: ^7.51.5
- version: 7.52.1([email protected])
+ version: 7.53.0([email protected])
react-layout-masonry:
specifier: ^1.1.0
version: 1.1.0([email protected])
react-markdown:
specifier: ^9.0.1
- version: 9.0.1(@types/[email protected])([email protected])
+ version: 9.0.1(@types/[email protected])([email protected])
react-responsive-masonry:
specifier: ^2.2.1
version: 2.3.0
@@ -208,7 +208,7 @@ importers:
version: 7.0.0
rehype-katex:
specifier: ^7.0.0
- version: 7.0.0
+ version: 7.0.1
remark-gfm:
specifier: ^4.0.0
version: 4.0.0
@@ -220,19 +220,19 @@ importers:
tailwind-scrollbar:
specifier: ^3.1.0
- version: 3.1.0([email protected])
+ version: 3.1.0([email protected])
tldraw:
specifier: ^2.1.4
turndown:
specifier: ^7.2.0
version: 7.2.0
uploadthing:
specifier: ^6.10.4
vaul:
specifier: ^0.9.1
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -260,7 +260,7 @@ importers:
version: link:packages/ui
lint-staged:
specifier: ^15.2.5
- version: 15.2.7
+ version: 15.2.9
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -269,10 +269,10 @@ importers:
version: 7.8.1
tailwindcss:
specifier: ^3.4.3
- version: 3.4.7
+ version: 3.4.10
turbo:
specifier: ^2.0.3
- version: 2.0.3
+ version: 2.1.0
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -281,53 +281,53 @@ importers:
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20240502.0
- version: 4.20240725.0
+ version: 4.20240821.1
typescript:
specifier: ^5.0.4
version: 5.5.4
wrangler:
specifier: ^3.53.1
- version: 3.67.1(@cloudflare/[email protected])
+ version: 3.72.3(@cloudflare/[email protected])
apps/cf-ai-backend:
dependencies:
'@hono/zod-validator':
specifier: ^0.2.1
hono:
specifier: ^4.5.1
- version: 4.5.2
+ version: 4.5.9
honox:
specifier: ^0.1.23
- version: 0.1.23([email protected])
+ version: 0.1.24([email protected])
vite:
specifier: ^5.3.5
- version: 5.3.5
+ version: 5.4.2
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20240614.0
- version: 4.20240725.0
+ version: 4.20240821.1
apps/extension:
dependencies:
'@radix-ui/react-dialog':
specifier: ^1.0.5
'@radix-ui/react-label':
specifier: ^2.1.0
'@radix-ui/react-popover':
specifier: ^1.1.1
'@radix-ui/react-select':
specifier: ^2.1.1
'@radix-ui/react-toast':
specifier: ^1.2.1
'@radix-ui/react-tooltip':
specifier: ^1.1.2
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -336,7 +336,7 @@ importers:
version: 2.1.1
cmdk:
specifier: ^1.0.0
lucide-react:
specifier: ^0.400.0
version: 0.400.0([email protected])
@@ -345,29 +345,29 @@ importers:
version: 2.0.0
tailwind-merge:
specifier: ^2.3.0
- version: 2.4.0
+ version: 2.5.2
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7([email protected])
+ version: 1.0.7([email protected])
zustand:
specifier: ^4.5.4
- version: 4.5.4(@types/[email protected])([email protected])
+ version: 4.5.5(@types/[email protected])([email protected])
devDependencies:
'@extension-create/develop':
specifier: ^1.8.0
'@types/react':
specifier: ^18.0.9
- version: 18.3.3
+ version: 18.3.4
'@types/react-dom':
specifier: ^18.0.5
version: 18.3.0
'@webpack-cli/generators':
specifier: ^3.0.7
extension:
specifier: latest
react:
specifier: ^18.1.0
version: 18.3.1
@@ -376,116 +376,140 @@ importers:
version: 18.3.1([email protected])
tailwindcss:
specifier: ^3.4.1
- version: 3.4.7
+ version: 3.4.10
typescript:
specifier: 5.3.3
version: 5.3.3
webpack-cli:
specifier: ^5.1.4
- version: 5.1.4(@webpack-cli/[email protected])([email protected])
+ version: 5.1.4(@webpack-cli/[email protected])([email protected])
apps/web:
dependencies:
'@radix-ui/react-dialog':
- specifier: ^1.0.5
+ specifier: ^1.1.1
'@radix-ui/react-popover':
- specifier: ^1.0.7
+ specifier: ^1.1.1
'@radix-ui/react-slot':
specifier: ^1.1.0
- version: 1.1.0(@types/[email protected])([email protected])
+ version: 1.1.0(@types/[email protected])([email protected])
'@sentry/nextjs':
- specifier: ^8
- version: 8.20.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])([email protected])([email protected])([email protected])
+ specifier: ^8.26.0
+ version: 8.27.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])([email protected])([email protected])([email protected])
+ '@tiptap-pro/extension-emoji':
+ specifier: ^2.10.11
+ version: 2.11.1(@tiptap/[email protected])(@tiptap/[email protected])(@tiptap/[email protected])([email protected])
+ '@tiptap-pro/extension-table-of-contents':
+ specifier: ^2.10.11
+ version: 2.11.1(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-text-align':
+ specifier: ^2.6.4
+ version: 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-typography':
+ specifier: ^2.6.4
+ version: 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm':
+ specifier: ^2.6.4
+ version: 2.6.6
+ '@tiptap/react':
+ specifier: ^2.6.4
ai:
- specifier: ^3.3.0
+ specifier: ^3.3.7
+ class-variance-authority:
+ specifier: ^0.7.0
+ version: 0.7.0
clsx:
specifier: ^2.1.1
version: 2.1.1
cmdk:
specifier: ^1.0.0
drizzle-orm:
specifier: 0.30.0
- version: 0.30.0(@opentelemetry/[email protected])(@types/[email protected])([email protected])
+ version: 0.30.0(@opentelemetry/[email protected])(@types/[email protected])([email protected])
lowlight:
specifier: ^3.1.0
version: 3.1.0
million:
- specifier: ^3.1.6
+ specifier: ^3.1.11
version: 3.1.11([email protected])
next:
- specifier: ^14.1.1
+ specifier: ^14.2.5
next-pwa:
specifier: ^5.6.0
novel:
- specifier: ^0.4.2
+ specifier: ^0.4.3
nuqs:
- specifier: ^1.17.4
- version: 1.17.6([email protected])
+ specifier: ^1.17.8
+ version: 1.17.8([email protected])
posthog-js:
- specifier: ^1.154.5
- version: 1.154.5
+ specifier: ^1.155.4
+ version: 1.158.1
react:
- specifier: ^18.2.0
+ specifier: ^18.3.1
version: 18.3.1
react-dom:
- specifier: ^18.2.0
+ specifier: ^18.3.1
version: 18.3.1([email protected])
react-resizable-panels:
- specifier: ^2.0.19
+ specifier: ^2.1.0
+ tippy.js:
+ specifier: ^6.3.7
+ version: 6.3.7
use-debounce:
- specifier: ^10.0.1
- version: 10.0.1([email protected])
+ specifier: ^10.0.2
+ version: 10.0.3([email protected])
devDependencies:
'@cloudflare/next-on-pages':
- specifier: '1'
+ specifier: ^1.13.2
'@next/eslint-plugin-next':
- specifier: ^14.1.1
- version: 14.2.5
+ specifier: ^14.2.5
+ version: 14.2.7
'@repo/eslint-config':
- specifier: '*'
+ specifier: ^0.0.0
version: link:../../packages/eslint-config
'@repo/shared-types':
- specifier: '*'
+ specifier: ^0.0.1
version: link:../../packages/shared-types
'@repo/tailwind-config':
- specifier: '*'
+ specifier: ^0.0.0
version: link:../../packages/tailwind-config
'@repo/typescript-config':
- specifier: '*'
+ specifier: ^0.0.0
version: link:../../packages/typescript-config
'@types/eslint':
- specifier: ^8.56.5
- version: 8.56.11
+ specifier: ^8.56.11
+ version: 8.56.12
'@types/node':
- specifier: ^20.11.24
- version: 20.14.12
+ specifier: ^20.14.15
+ version: 20.16.1
'@types/react':
- specifier: ^18.2.61
- version: 18.3.3
+ specifier: ^18.3.3
+ version: 18.3.4
'@types/react-dom':
- specifier: ^18.2.19
+ specifier: ^18.3.0
version: 18.3.0
eslint:
specifier: ^8.57.0
version: 8.57.0
postcss:
- specifier: ^8.4.38
- version: 8.4.40
+ specifier: ^8.4.41
+ version: 8.4.41
typescript:
- specifier: ^5.3.3
+ specifier: ^5.5.4
version: 5.5.4
wrangler:
- specifier: ^3.66.0
- version: 3.67.1(@cloudflare/[email protected])
+ specifier: ^3.71.0
+ version: 3.72.3(@cloudflare/[email protected])
packages/db: {}
@@ -502,7 +526,7 @@ importers:
eslint-config-next:
specifier: ^14.2.5
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0([email protected])
@@ -511,7 +535,7 @@ importers:
version: 1.13.4([email protected])
eslint-plugin-next-on-pages:
specifier: ^1.11.3
- version: 1.12.1([email protected])
+ version: 1.13.2([email protected])
eslint-plugin-only-warn:
specifier: ^1.1.0
version: 1.1.0
@@ -525,7 +549,7 @@ importers:
dependencies:
'@tailwindcss/typography':
specifier: ^0.5.13
- version: 0.5.13([email protected])
+ version: 0.5.14([email protected])
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -537,13 +561,13 @@ importers:
version: 0.378.0([email protected])
tailwind-merge:
specifier: ^2.3.0
- version: 2.4.0
+ version: 2.5.2
tailwind-scrollbar:
specifier: ^3.1.0
- version: 3.1.0([email protected])
+ version: 3.1.0([email protected])
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7([email protected])
+ version: 1.0.7([email protected])
packages/typescript-config: {}
@@ -551,7 +575,7 @@ importers:
dependencies:
'@radix-ui/react-dialog':
specifier: ^1.0.5
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -560,10 +584,10 @@ importers:
version: 2.1.1
cmdk:
specifier: ^1.0.0
tailwind-merge:
specifier: ^2.3.0
- version: 2.4.0
+ version: 2.5.2
devDependencies:
'@repo/eslint-config':
specifier: '*'
@@ -576,16 +600,16 @@ importers:
version: link:../typescript-config
'@turbo/gen':
specifier: ^1.12.4
- version: 1.13.4(@types/[email protected])([email protected])
+ version: 1.13.4(@types/[email protected])([email protected])
'@types/eslint':
specifier: ^8.56.5
- version: 8.56.11
+ version: 8.56.12
'@types/node':
specifier: ^20.11.24
- version: 20.14.12
+ version: 20.16.1
'@types/react':
specifier: ^18.2.61
- version: 18.3.3
+ version: 18.3.4
'@types/react-dom':
specifier: ^18.2.19
version: 18.3.0
@@ -659,24 +683,8 @@ packages:
zod: 3.23.8
dev: false
- resolution: {integrity: sha512-XfOawxk95X3S43arn2iQIFyWGMi0DTxsf9ETc6t7bh91RPWOOPYN1tsmS5MTKD33OGJeaDQ/gnVRzXUCRBrckQ==}
- engines: {node: '>=18'}
- peerDependencies:
- zod: ^3.0.0
- peerDependenciesMeta:
- zod:
- optional: true
- dependencies:
- '@ai-sdk/provider': 0.0.14
- eventsource-parser: 1.1.2
- nanoid: 3.3.6
- secure-json-parse: 2.7.0
- zod: 3.23.8
- dev: false
-
- resolution: {integrity: sha512-xIDpinTnuInH16wBgKAVdN6pmrpjlJF+5f+f/8ahYMQlYzpe4Vj1qw8OL+rUGdCePcRSrFmjk8G/wdX5+J8dIw==}
+ resolution: {integrity: sha512-2VyeTH5DQ6AxqvwdyytKIeiZyYTyJffpufWjE67zM2sXMIHgYl7fivo8m5wVl6Cbf1dFPSGKq//C9s+lz+NHrQ==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
@@ -684,22 +692,15 @@ packages:
zod:
optional: true
dependencies:
- '@ai-sdk/provider': 0.0.15
+ '@ai-sdk/provider': 0.0.22
eventsource-parser: 1.1.2
nanoid: 3.3.6
secure-json-parse: 2.7.0
zod: 3.23.8
dev: false
- /@ai-sdk/[email protected]:
- resolution: {integrity: sha512-gaQ5Y033nro9iX1YUjEDFDRhmMcEiCk56LJdIUbX5ozEiCNCfpiBpEqrjSp/Gp5RzBS2W0BVxfG7UGW6Ezcrzg==}
- engines: {node: '>=18'}
- dependencies:
- json-schema: 0.4.0
- dev: false
-
- /@ai-sdk/[email protected]:
- resolution: {integrity: sha512-phX/YdwKd8q8/uZ7MsUytcHuN5KvT+wgM+y78eu6E+VyFE3GRwelctBFnaaA96uRL6xnKNmb0e7e+2fDOYuBoA==}
+ /@ai-sdk/[email protected]:
+ resolution: {integrity: sha512-smZ1/2jL/JSKnbhC6ama/PxI2D/psj+YAe0c0qpd5ComQCNFltg72VFf0rpUSFMmFuj1pCCNoBOCrvyl8HTZHQ==}
engines: {node: '>=18'}
dependencies:
json-schema: 0.4.0
@@ -712,27 +713,8 @@ packages:
json-schema: 0.4.0
dev: false
- resolution: {integrity: sha512-VnHYRzwhiM4bZdL9DXwJltN8Qnz1MkFdRTa1y7KdmHSJ18ebCNWmPO5XJhnZiQdEXHYmrzZ3WiVt2X6pxK07FA==}
- engines: {node: '>=18'}
- peerDependencies:
- react: ^18 || ^19
- zod: ^3.0.0
- peerDependenciesMeta:
- react:
- optional: true
- zod:
- optional: true
- dependencies:
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- '@ai-sdk/ui-utils': 0.0.20([email protected])
- react: 18.3.1
- swr: 2.2.5([email protected])
- zod: 3.23.8
- dev: false
-
- resolution: {integrity: sha512-TH8uubORsHBNfZQvHnvivOgKR/xWnMl0SZiGEj+MYgDGu6xpPW+gHlwYXZM8Fey6V/lvqhe1rNfV7D7E6xJn8A==}
+ resolution: {integrity: sha512-4Gm+AoINDXQ4lzIZFKOWOcKgjgiAFdyhmBxnyuaqzTJCoRWNUSea62xhjqRE0u8wagfPgxWUAyS8BAsY0EqOyg==}
engines: {node: '>=18'}
peerDependencies:
react: ^18 || ^19
@@ -743,15 +725,15 @@ packages:
zod:
optional: true
dependencies:
- '@ai-sdk/provider-utils': 1.0.7([email protected])
- '@ai-sdk/ui-utils': 0.0.26([email protected])
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ '@ai-sdk/ui-utils': 0.0.39([email protected])
react: 18.3.1
swr: 2.2.5([email protected])
zod: 3.23.8
dev: false
- resolution: {integrity: sha512-GMojG2PsqwnOGfx7C1MyQPzPBIlC44qn3ykjp9OVnN2Fu47mcFp3QM6gwWoHwNqi7FQDjRy+s/p+8EqYIQcAwg==}
+ resolution: {integrity: sha512-tr1rXRg0bLls7ZEQCWfd0Tv7irFlKQRjBSKSCstwrGtTeDA7zwUP4tIiUaCyzM3lwyE6Qgl17SrAoxSD+xP+zQ==}
engines: {node: '>=18'}
peerDependencies:
solid-js: ^1.7.7
@@ -759,29 +741,14 @@ packages:
solid-js:
optional: true
dependencies:
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- '@ai-sdk/ui-utils': 0.0.20([email protected])
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ '@ai-sdk/ui-utils': 0.0.39([email protected])
transitivePeerDependencies:
- zod
dev: false
- resolution: {integrity: sha512-usf7yZPdx5HcTdLrs4rI2cfAqz4V0H61uTJ6SrFmbjObUF8wCGZVMNvUB3zXxrIrlVeHJKEueGd1QNPSG06qBA==}
- engines: {node: '>=18'}
- peerDependencies:
- solid-js: ^1.7.7
- peerDependenciesMeta:
- solid-js:
- optional: true
- dependencies:
- '@ai-sdk/provider-utils': 1.0.7([email protected])
- '@ai-sdk/ui-utils': 0.0.26([email protected])
- transitivePeerDependencies:
- - zod
- dev: false
-
- resolution: {integrity: sha512-ZjzzvfYLE01VTO0rOZf6z9sTGhJhe6IYZMxQiM3P+zemufRYe57NDcLYEb6h+2qhvU6Z+k/Q+Nh/spAt0JzGUg==}
+ resolution: {integrity: sha512-soSiEX1BUiwRSdoc+7mAoCeuM3Vs/ebdb1gNL7ta9Zma7GTHq802Wi7KfWfypoAqpgi0QUapzCRMvgrl4oW4AQ==}
engines: {node: '>=18'}
peerDependencies:
svelte: ^3.0.0 || ^4.0.0
@@ -789,33 +756,16 @@ packages:
svelte:
optional: true
dependencies:
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- '@ai-sdk/ui-utils': 0.0.20([email protected])
- sswr: 2.1.0([email protected])
- svelte: 4.2.18
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ '@ai-sdk/ui-utils': 0.0.39([email protected])
+ sswr: 2.1.0([email protected])
+ svelte: 4.2.19
transitivePeerDependencies:
- zod
dev: false
- resolution: {integrity: sha512-hXPc+g0NgxEHGtGCa3OSC8I4mGw41Bi2jYmkzHpoUiHciUv29LPB08r0s2e139nMUDIDf8iYg4faxxdrTcKs7g==}
- engines: {node: '>=18'}
- peerDependencies:
- svelte: ^3.0.0 || ^4.0.0
- peerDependenciesMeta:
- svelte:
- optional: true
- dependencies:
- '@ai-sdk/provider-utils': 1.0.7([email protected])
- '@ai-sdk/ui-utils': 0.0.26([email protected])
- sswr: 2.1.0([email protected])
- svelte: 4.2.18
- transitivePeerDependencies:
- - zod
- dev: false
-
- resolution: {integrity: sha512-6MRWigzXfuxUcAYEFMLP6cLbALJkg12Iz1Sl+wuPMpB6aw7di2ePiTuNakFUYjgP7TNsW4UxzpypBqqJ1KNB0A==}
+ resolution: {integrity: sha512-yxlJBFEiWR7rf/oS7MFX9O5Hr7VYV0ipMBrvds66N3+m52/nCbBB5C/eBefzeR+hoGc/r5xGo7Yd1cncGYHHTw==}
engines: {node: '>=18'}
peerDependencies:
zod: ^3.0.0
@@ -823,45 +773,16 @@ packages:
zod:
optional: true
dependencies:
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- secure-json-parse: 2.7.0
- zod: 3.23.8
- dev: false
-
- resolution: {integrity: sha512-d+16/dcKJM4m4KFgaz8AtJFvJhUNEdqGVFczY6jtFyyBqXz42pQtAASRATtgOatdSuOeEzOSkTzBAr49/qN3Wg==}
- engines: {node: '>=18'}
- peerDependencies:
- zod: ^3.0.0
- peerDependenciesMeta:
- zod:
- optional: true
- dependencies:
- '@ai-sdk/provider': 0.0.15
- '@ai-sdk/provider-utils': 1.0.7([email protected])
+ '@ai-sdk/provider': 0.0.22
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ json-schema: 0.4.0
secure-json-parse: 2.7.0
zod: 3.23.8
+ zod-to-json-schema: 3.23.2([email protected])
dev: false
- resolution: {integrity: sha512-0S+2dVSui6LFgaWoFx+3h5R7GIP9MxdJo63tFuLvgyKr2jmpo5S5kGcWl95vNdzKDqaesAXfOnky+tn5A2d49A==}
- engines: {node: '>=18'}
- peerDependencies:
- vue: ^3.3.4
- peerDependenciesMeta:
- vue:
- optional: true
- dependencies:
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- '@ai-sdk/ui-utils': 0.0.20([email protected])
- swrv: 1.0.4([email protected])
- vue: 3.4.34([email protected])
- transitivePeerDependencies:
- - zod
- dev: false
-
- resolution: {integrity: sha512-FC0/5CpMkYS0RTlTs5E6xw0nM0kNvFWkB2FqxkWvx0R7AKJBjZlXXTtq8aEAXlOg/ce+XSTAG/aTswmjWy6C4A==}
+ resolution: {integrity: sha512-IsDCoy7u4V081dKT1i6b/Cxh2G0aftetbif+qNQGh5QeU9TtGs9KDW+onPkXeqlDQcpMN0Q5zaNGaZ7YBK50Gw==}
engines: {node: '>=18'}
peerDependencies:
vue: ^3.3.4
@@ -869,10 +790,10 @@ packages:
vue:
optional: true
dependencies:
- '@ai-sdk/provider-utils': 1.0.7([email protected])
- '@ai-sdk/ui-utils': 0.0.26([email protected])
- swrv: 1.0.4([email protected])
- vue: 3.4.34([email protected])
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ '@ai-sdk/ui-utils': 0.0.39([email protected])
+ swrv: 1.0.4([email protected])
+ vue: 3.4.38([email protected])
transitivePeerDependencies:
- zod
dev: false
@@ -905,8 +826,8 @@ packages:
leven: 3.1.0
dev: false
- resolution: {integrity: sha512-3+ssTScBd+1fd0/fscAyQN1tSygXzuhysuVVzB942ggU4mdfiTbv36P0ccVnExKWYJKvu3E2r3/zxXCCAmTOrg==}
+ resolution: {integrity: sha512-KywHKRgLiF3l7PLyL73fjLSIBe1YNcA6sMeew4yMP6cfCWGXZrkkXd32AjRi1hlJ9nvovUBGZHvbn+LijO6ZeQ==}
peerDependencies:
'@simplewebauthn/browser': ^9.0.1
'@simplewebauthn/server': ^9.0.2
@@ -922,39 +843,16 @@ packages:
'@panva/hkdf': 1.2.1
'@types/cookie': 0.6.0
cookie: 0.6.0
- jose: 5.6.3
- oauth4webapi: 2.11.1
+ jose: 5.8.0
+ oauth4webapi: 2.12.0
preact: 10.11.3
preact-render-to-string: 5.2.3([email protected])
dev: false
- resolution: {integrity: sha512-tuYU2VIbI8rFbkSwP710LmybB2FXJsPN7j3sjRVfN9SXVQBK2ej6LdewQaofpBGp4Mk+cC2UeiGNH0or4tgaeA==}
- peerDependencies:
- '@simplewebauthn/browser': ^9.0.1
- '@simplewebauthn/server': ^9.0.2
- nodemailer: ^6.8.0
- peerDependenciesMeta:
- '@simplewebauthn/browser':
- optional: true
- '@simplewebauthn/server':
- optional: true
- nodemailer:
- optional: true
+ resolution: {integrity: sha512-rqukaT9CeWB8VOt6g2bQ6uYMHVOQIYCBkzddZXWshi8aqwLABatpRWAc+pehpcMDn0RSW/uvKMs7tkON+Bho9Q==}
dependencies:
- '@panva/hkdf': 1.2.1
- '@types/cookie': 0.6.0
- cookie: 0.6.0
- jose: 5.6.3
- oauth4webapi: 2.11.1
- preact: 10.11.3
- preact-render-to-string: 5.2.3([email protected])
- dev: false
-
- resolution: {integrity: sha512-pUC8D0jfANDvThH1CrcUXmjZyF98ccVMY3iEZUQzUTr0U1csuppvRoz5JccOLzjv3tu+Nb9Qd6SvrmmsnuYgSw==}
- dependencies:
- '@auth/core': 0.34.1
+ '@auth/core': 0.34.2
transitivePeerDependencies:
- '@simplewebauthn/browser'
- '@simplewebauthn/server'
@@ -967,7 +865,7 @@ packages:
dependencies:
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.609.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
@@ -975,7 +873,7 @@ packages:
dependencies:
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.609.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
@@ -986,7 +884,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@aws-sdk/util-locate-window': 3.568.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
@@ -998,7 +896,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@aws-sdk/util-locate-window': 3.568.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
@@ -1007,13 +905,13 @@ packages:
dependencies:
'@aws-crypto/util': 5.2.0
'@aws-sdk/types': 3.609.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-crypto/[email protected]:
@@ -1021,20 +919,20 @@ packages:
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-kf3Lqvuq/ciUn4myQjd1a9nhVg95+FEWkIq7pdkgxFoKow8HKj3nuiwI7zYBRTfk0RKXRkJca3GE+3RXpeZSiA==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-y6UC94fsMvhKbf0dzfnjVP1HePeGjplfcYfilZU1COIJLyTkMcUv4XcT4I407CGIrvgEafONHkiC09ygqUauNA==}
engines: {node: '>=16.0.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/client-sso-oidc': 3.620.0(@aws-sdk/[email protected])
- '@aws-sdk/client-sts': 3.620.0
- '@aws-sdk/core': 3.620.0
- '@aws-sdk/credential-provider-node': 3.620.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
+ '@aws-sdk/client-sso-oidc': 3.637.0(@aws-sdk/[email protected])
+ '@aws-sdk/client-sts': 3.637.0
+ '@aws-sdk/core': 3.635.0
+ '@aws-sdk/credential-provider-node': 3.637.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
'@aws-sdk/middleware-bucket-endpoint': 3.620.0
'@aws-sdk/middleware-expect-continue': 3.620.0
'@aws-sdk/middleware-flexible-checksums': 3.620.0
@@ -1042,22 +940,21 @@ packages:
'@aws-sdk/middleware-location-constraint': 3.609.0
'@aws-sdk/middleware-logger': 3.609.0
'@aws-sdk/middleware-recursion-detection': 3.620.0
- '@aws-sdk/middleware-sdk-s3': 3.620.0
- '@aws-sdk/middleware-signing': 3.620.0
+ '@aws-sdk/middleware-sdk-s3': 3.635.0
'@aws-sdk/middleware-ssec': 3.609.0
- '@aws-sdk/middleware-user-agent': 3.620.0
+ '@aws-sdk/middleware-user-agent': 3.637.0
'@aws-sdk/region-config-resolver': 3.614.0
- '@aws-sdk/signature-v4-multi-region': 3.620.0
+ '@aws-sdk/signature-v4-multi-region': 3.635.0
'@aws-sdk/types': 3.609.0
- '@aws-sdk/util-endpoints': 3.614.0
+ '@aws-sdk/util-endpoints': 3.637.0
'@aws-sdk/util-user-agent-browser': 3.609.0
'@aws-sdk/util-user-agent-node': 3.614.0
'@aws-sdk/xml-builder': 3.609.0
'@smithy/config-resolver': 3.0.5
- '@smithy/core': 2.3.1
- '@smithy/eventstream-serde-browser': 3.0.5
+ '@smithy/core': 2.4.0
+ '@smithy/eventstream-serde-browser': 3.0.6
'@smithy/eventstream-serde-config-resolver': 3.0.3
- '@smithy/eventstream-serde-node': 3.0.4
+ '@smithy/eventstream-serde-node': 3.0.5
'@smithy/fetch-http-handler': 3.2.4
'@smithy/hash-blob-browser': 3.1.2
'@smithy/hash-node': 3.0.3
@@ -1066,199 +963,203 @@ packages:
'@smithy/md5-js': 3.0.3
'@smithy/middleware-content-length': 3.0.5
'@smithy/middleware-endpoint': 3.1.0
- '@smithy/middleware-retry': 3.0.13
+ '@smithy/middleware-retry': 3.0.15
'@smithy/middleware-serde': 3.0.3
'@smithy/middleware-stack': 3.0.3
'@smithy/node-config-provider': 3.1.4
'@smithy/node-http-handler': 3.1.4
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.13
- '@smithy/util-defaults-mode-node': 3.0.13
+ '@smithy/util-defaults-mode-browser': 3.0.15
+ '@smithy/util-defaults-mode-node': 3.0.15
'@smithy/util-endpoints': 2.0.5
+ '@smithy/util-middleware': 3.0.3
'@smithy/util-retry': 3.0.3
'@smithy/util-stream': 3.1.3
'@smithy/util-utf8': 3.0.0
'@smithy/util-waiter': 3.1.2
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/[email protected](@aws-sdk/[email protected]):
- resolution: {integrity: sha512-CWL8aJa6rrNaQXNsLhblGZzbFBrRz4BXAsFBbyqAZEmryr9q/IC7z/ww3nq8CD2UsW+bn89U/XcoP5r1KWUHuQ==}
+ /@aws-sdk/[email protected](@aws-sdk/[email protected]):
+ resolution: {integrity: sha512-27bHALN6Qb6m6KZmPvRieJ/QRlj1lyac/GT2Rn5kJpre8Mpp+yxrtvp3h9PjNBty4lCeFEENfY4dGNSozBuBcw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.620.0
+ '@aws-sdk/client-sts': ^3.637.0
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sts': 3.620.0
- '@aws-sdk/core': 3.620.0
- '@aws-sdk/credential-provider-node': 3.620.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
+ '@aws-sdk/client-sts': 3.637.0
+ '@aws-sdk/core': 3.635.0
+ '@aws-sdk/credential-provider-node': 3.637.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
'@aws-sdk/middleware-host-header': 3.620.0
'@aws-sdk/middleware-logger': 3.609.0
'@aws-sdk/middleware-recursion-detection': 3.620.0
- '@aws-sdk/middleware-user-agent': 3.620.0
+ '@aws-sdk/middleware-user-agent': 3.637.0
'@aws-sdk/region-config-resolver': 3.614.0
'@aws-sdk/types': 3.609.0
- '@aws-sdk/util-endpoints': 3.614.0
+ '@aws-sdk/util-endpoints': 3.637.0
'@aws-sdk/util-user-agent-browser': 3.609.0
'@aws-sdk/util-user-agent-node': 3.614.0
'@smithy/config-resolver': 3.0.5
- '@smithy/core': 2.3.1
+ '@smithy/core': 2.4.0
'@smithy/fetch-http-handler': 3.2.4
'@smithy/hash-node': 3.0.3
'@smithy/invalid-dependency': 3.0.3
'@smithy/middleware-content-length': 3.0.5
'@smithy/middleware-endpoint': 3.1.0
- '@smithy/middleware-retry': 3.0.13
+ '@smithy/middleware-retry': 3.0.15
'@smithy/middleware-serde': 3.0.3
'@smithy/middleware-stack': 3.0.3
'@smithy/node-config-provider': 3.1.4
'@smithy/node-http-handler': 3.1.4
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.13
- '@smithy/util-defaults-mode-node': 3.0.13
+ '@smithy/util-defaults-mode-browser': 3.0.15
+ '@smithy/util-defaults-mode-node': 3.0.15
'@smithy/util-endpoints': 2.0.5
'@smithy/util-middleware': 3.0.3
'@smithy/util-retry': 3.0.3
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-J1CvF7u39XwtCK9rPlkW2AA631EPqkb4PjOOj9aZ9LjQmkJ0DkL+9tEqU2XIWcjDd2Z3hS3LBuS8uN7upIkEnQ==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-+KjLvgX5yJYROWo3TQuwBJlHCY0zz9PsLuEolmXQn0BVK1L/m9GteZHtd+rEdAoDGBpE0Xqjy1oz5+SmtsaRUw==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.620.0
+ '@aws-sdk/core': 3.635.0
'@aws-sdk/middleware-host-header': 3.620.0
'@aws-sdk/middleware-logger': 3.609.0
'@aws-sdk/middleware-recursion-detection': 3.620.0
- '@aws-sdk/middleware-user-agent': 3.620.0
+ '@aws-sdk/middleware-user-agent': 3.637.0
'@aws-sdk/region-config-resolver': 3.614.0
'@aws-sdk/types': 3.609.0
- '@aws-sdk/util-endpoints': 3.614.0
+ '@aws-sdk/util-endpoints': 3.637.0
'@aws-sdk/util-user-agent-browser': 3.609.0
'@aws-sdk/util-user-agent-node': 3.614.0
'@smithy/config-resolver': 3.0.5
- '@smithy/core': 2.3.1
+ '@smithy/core': 2.4.0
'@smithy/fetch-http-handler': 3.2.4
'@smithy/hash-node': 3.0.3
'@smithy/invalid-dependency': 3.0.3
'@smithy/middleware-content-length': 3.0.5
'@smithy/middleware-endpoint': 3.1.0
- '@smithy/middleware-retry': 3.0.13
+ '@smithy/middleware-retry': 3.0.15
'@smithy/middleware-serde': 3.0.3
'@smithy/middleware-stack': 3.0.3
'@smithy/node-config-provider': 3.1.4
'@smithy/node-http-handler': 3.1.4
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.13
- '@smithy/util-defaults-mode-node': 3.0.13
+ '@smithy/util-defaults-mode-browser': 3.0.15
+ '@smithy/util-defaults-mode-node': 3.0.15
'@smithy/util-endpoints': 2.0.5
'@smithy/util-middleware': 3.0.3
'@smithy/util-retry': 3.0.3
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-pG4SqDHZV/ZbpoVoVtpxo6ZZoqVDbVItC3QUO73UJ3Gemxznd/Ck7kAsyb6/dJkV/Aqm3gt2O5UL7vzQLNHSjw==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-xUi7x4qDubtA8QREtlblPuAcn91GS/09YVEY/RwU7xCY0aqGuFwgszAANlha4OUIqva8oVj2WO4gJuG+iaSnhw==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.620.0(@aws-sdk/[email protected])
- '@aws-sdk/core': 3.620.0
- '@aws-sdk/credential-provider-node': 3.620.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
+ '@aws-sdk/client-sso-oidc': 3.637.0(@aws-sdk/[email protected])
+ '@aws-sdk/core': 3.635.0
+ '@aws-sdk/credential-provider-node': 3.637.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
'@aws-sdk/middleware-host-header': 3.620.0
'@aws-sdk/middleware-logger': 3.609.0
'@aws-sdk/middleware-recursion-detection': 3.620.0
- '@aws-sdk/middleware-user-agent': 3.620.0
+ '@aws-sdk/middleware-user-agent': 3.637.0
'@aws-sdk/region-config-resolver': 3.614.0
'@aws-sdk/types': 3.609.0
- '@aws-sdk/util-endpoints': 3.614.0
+ '@aws-sdk/util-endpoints': 3.637.0
'@aws-sdk/util-user-agent-browser': 3.609.0
'@aws-sdk/util-user-agent-node': 3.614.0
'@smithy/config-resolver': 3.0.5
- '@smithy/core': 2.3.1
+ '@smithy/core': 2.4.0
'@smithy/fetch-http-handler': 3.2.4
'@smithy/hash-node': 3.0.3
'@smithy/invalid-dependency': 3.0.3
'@smithy/middleware-content-length': 3.0.5
'@smithy/middleware-endpoint': 3.1.0
- '@smithy/middleware-retry': 3.0.13
+ '@smithy/middleware-retry': 3.0.15
'@smithy/middleware-serde': 3.0.3
'@smithy/middleware-stack': 3.0.3
'@smithy/node-config-provider': 3.1.4
'@smithy/node-http-handler': 3.1.4
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.13
- '@smithy/util-defaults-mode-node': 3.0.13
+ '@smithy/util-defaults-mode-browser': 3.0.15
+ '@smithy/util-defaults-mode-node': 3.0.15
'@smithy/util-endpoints': 2.0.5
'@smithy/util-middleware': 3.0.3
'@smithy/util-retry': 3.0.3
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- aws-crt
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-5D9tMahxIDDFLULS9/ULa0HuIu7CZSshfj6wmDSmigXzkWyUvHoVIrme2z6eM3Icat/MO3d4WEy3445Vk385gQ==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-i1x/E/sgA+liUE1XJ7rj1dhyXpAKO1UKFUcTTHXok2ARjWTvszHnSXMOsB77aPbmn0fUp1JTx2kHUAZ1LVt5Bg==}
engines: {node: '>=16.0.0'}
dependencies:
- '@smithy/core': 2.3.1
+ '@smithy/core': 2.4.0
+ '@smithy/node-config-provider': 3.1.4
+ '@smithy/property-provider': 3.1.3
'@smithy/protocol-http': 4.1.0
'@smithy/signature-v4': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
+ '@smithy/util-middleware': 3.0.3
+ fast-xml-parser: 4.4.1
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-v69ZCWcec2iuV9vLVJMa6fAb5xwkzN4jYIT8yjo2c4Ia/j976Q+TPf35Pnz5My48Xr94EFcaBazrWedF+kwfuQ==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/property-provider': 3.1.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-BI2BdrSKDmB/2ouB/NJR0PT0x/+5fmoF6XOE78hFBb4F5w/yynGgcJY936dF+oREfpME6ehjB2b0okGg78Scpw==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-iJyRgEjOCQlBMXqtwPLIKYc7Bsc6nqjrZybdMDenPDa+kmLg7xh8LxHsu9088e+2/wtLicE34FsJJIfzu3L82g==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-sdk/types': 3.609.0
@@ -1266,95 +1167,95 @@ packages:
'@smithy/node-http-handler': 3.1.4
'@smithy/property-provider': 3.1.3
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/util-stream': 3.1.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- resolution: {integrity: sha512-P9fYi6dzZIl8ITC7qAPf5DX9omI3LfA91g3KH+0OUmS3ctP7tN+gNo3HmqlzoqnwPe0pXn1FumYAe1qFl6Yjjg==}
+ resolution: {integrity: sha512-h+PFCWfZ0Q3Dx84SppET/TFpcQHmxFW8/oV9ArEvMilw4EBN+IlxgbL0CnHwjHW64szcmrM0mbebjEfHf4FXmw==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.620.0
+ '@aws-sdk/client-sts': ^3.637.0
dependencies:
- '@aws-sdk/client-sts': 3.620.0
- '@aws-sdk/credential-provider-env': 3.609.0
- '@aws-sdk/credential-provider-http': 3.620.0
- '@aws-sdk/credential-provider-process': 3.614.0
- '@aws-sdk/credential-provider-sso': 3.620.0(@aws-sdk/[email protected])
- '@aws-sdk/credential-provider-web-identity': 3.609.0(@aws-sdk/[email protected])
+ '@aws-sdk/client-sts': 3.637.0
+ '@aws-sdk/credential-provider-env': 3.620.1
+ '@aws-sdk/credential-provider-http': 3.635.0
+ '@aws-sdk/credential-provider-process': 3.620.1
+ '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/[email protected])
+ '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/[email protected])
'@aws-sdk/types': 3.609.0
'@smithy/credential-provider-imds': 3.2.0
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
dev: false
- resolution: {integrity: sha512-or8ahy4ysURcWgKX00367DMDTTyMynDEl+FQh4wce66fMyePhFVuoPcRgXzWsi8KYmL95sPCfJFNqBMyFNcgvQ==}
+ resolution: {integrity: sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==}
engines: {node: '>=16.0.0'}
dependencies:
- '@aws-sdk/credential-provider-env': 3.609.0
- '@aws-sdk/credential-provider-http': 3.620.0
- '@aws-sdk/credential-provider-ini': 3.620.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
- '@aws-sdk/credential-provider-process': 3.614.0
- '@aws-sdk/credential-provider-sso': 3.620.0(@aws-sdk/[email protected])
- '@aws-sdk/credential-provider-web-identity': 3.609.0(@aws-sdk/[email protected])
+ '@aws-sdk/credential-provider-env': 3.620.1
+ '@aws-sdk/credential-provider-http': 3.635.0
+ '@aws-sdk/credential-provider-ini': 3.637.0(@aws-sdk/[email protected])(@aws-sdk/[email protected])
+ '@aws-sdk/credential-provider-process': 3.620.1
+ '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/[email protected])
+ '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/[email protected])
'@aws-sdk/types': 3.609.0
'@smithy/credential-provider-imds': 3.2.0
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- '@aws-sdk/client-sts'
- aws-crt
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected](@aws-sdk/[email protected]):
- resolution: {integrity: sha512-xtIj2hmq3jcKwvGmqhoYapbWeQfFyoQgKBtwD6nx0M6oS5lbFH4rzHhj0gBwatZDjMa35cWtcYVUJCv2/9mWvA==}
+ /@aws-sdk/[email protected](@aws-sdk/[email protected]):
+ resolution: {integrity: sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==}
engines: {node: '>=16.0.0'}
dependencies:
- '@aws-sdk/client-sso': 3.620.0
- '@aws-sdk/token-providers': 3.614.0(@aws-sdk/[email protected])
+ '@aws-sdk/client-sso': 3.637.0
+ '@aws-sdk/token-providers': 3.614.0(@aws-sdk/[email protected])
'@aws-sdk/types': 3.609.0
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
dev: false
- /@aws-sdk/[email protected](@aws-sdk/[email protected]):
- resolution: {integrity: sha512-U+PG8NhlYYF45zbr1km3ROtBMYqyyj/oK8NRp++UHHeuavgrP+4wJ4wQnlEaKvJBjevfo3+dlIBcaeQ7NYejWg==}
+ /@aws-sdk/[email protected](@aws-sdk/[email protected]):
+ resolution: {integrity: sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.609.0
+ '@aws-sdk/client-sts': ^3.621.0
dependencies:
- '@aws-sdk/client-sts': 3.620.0
+ '@aws-sdk/client-sts': 3.637.0
'@aws-sdk/types': 3.609.0
'@smithy/property-provider': 3.1.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1367,7 +1268,7 @@ packages:
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
'@smithy/util-config-provider': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1377,7 +1278,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1391,7 +1292,7 @@ packages:
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1401,7 +1302,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1410,7 +1311,7 @@ packages:
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1419,7 +1320,7 @@ packages:
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1429,37 +1330,27 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-AAZ6NLVOx/bP97PYj/afCMeySzxOHocgJG3ZXh6f8MnJcGpZgx8NyRm0vtiYUTFrS2JtU4xV05Dl3j4afV3s4A==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-RLdYJPEV4JL/7NBoFUs7VlP90X++5FlJdxHz0DzCjmiD3qCviKy+Cym3qg1gBgHwucs5XisuClxDrGokhAdTQw==}
engines: {node: '>=16.0.0'}
dependencies:
+ '@aws-sdk/core': 3.635.0
'@aws-sdk/types': 3.609.0
'@aws-sdk/util-arn-parser': 3.568.0
+ '@smithy/core': 2.4.0
'@smithy/node-config-provider': 3.1.4
'@smithy/protocol-http': 4.1.0
'@smithy/signature-v4': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.3
'@smithy/util-stream': 3.1.3
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-gxI7rubiaanUXaLfJ4NybERa9MGPNg2Ycl/OqANsozrBnR3Pw8vqy3EuVImQOyn2pJ2IFvl8ZPoSMHf4pX56FQ==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.609.0
- '@smithy/property-provider': 3.1.3
- '@smithy/protocol-http': 4.1.0
- '@smithy/signature-v4': 4.1.0
- '@smithy/types': 3.3.0
- '@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1468,18 +1359,18 @@ packages:
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-bvS6etn+KsuL32ubY5D3xNof1qkenpbJXf/ugGXbg0n98DvDFQ/F+SMLxHgbnER5dsKYchNnhmtI6/FC3HFu/A==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-EYo0NE9/da/OY8STDsK2LvM4kNa79DBsf4YVtaG4P5pZ615IeFsD8xOHZeuJmUrSMlVQ8ywPRX7WMucUybsKug==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-sdk/types': 3.609.0
- '@aws-sdk/util-endpoints': 3.614.0
+ '@aws-sdk/util-endpoints': 3.637.0
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1491,47 +1382,47 @@ packages:
'@smithy/types': 3.3.0
'@smithy/util-config-provider': 3.0.0
'@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-mGSy6YqP5nErZduPjFu69atUM6PJJaL2uLbZCO/WmEXGB/bqhDH3wYEybsZABOqzT88boMF91npoqBNgqTeDGA==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-URRiEDZEICyfAXmXcXREQCsvZrapITAymvg46p1Xjnuv7PTnUB0SF18B2omPL0E5d/X+T3O9NKdtot+BqJbIWw==}
engines: {node: '>=16.0.0'}
dependencies:
- '@aws-sdk/signature-v4-multi-region': 3.620.0
+ '@aws-sdk/signature-v4-multi-region': 3.635.0
'@aws-sdk/types': 3.609.0
'@aws-sdk/util-format-url': 3.609.0
'@smithy/middleware-endpoint': 3.1.0
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-yu1pTCqIbkSdaOvmyfW9vV9jWe3pDApkQPZLg4VEN5dXDWRtgQ/amv88myyCEoG14irUN1tsbvytcKzGyEXnhA==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-J6QY4/invOkpogCHjSaDON1hF03viPpOnsrzVuCvJMmclS/iG62R4EY0wq1alYll0YmSdmKlpJwHMWwGtqK63Q==}
engines: {node: '>=16.0.0'}
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.620.0
+ '@aws-sdk/middleware-sdk-s3': 3.635.0
'@aws-sdk/types': 3.609.0
'@smithy/protocol-http': 4.1.0
'@smithy/signature-v4': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected](@aws-sdk/[email protected]):
+ /@aws-sdk/[email protected](@aws-sdk/[email protected]):
resolution: {integrity: sha512-okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': ^3.614.0
dependencies:
- '@aws-sdk/client-sso-oidc': 3.620.0(@aws-sdk/[email protected])
+ '@aws-sdk/client-sso-oidc': 3.637.0(@aws-sdk/[email protected])
'@aws-sdk/types': 3.609.0
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1539,24 +1430,24 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@aws-sdk/[email protected]:
- resolution: {integrity: sha512-wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==}
+ /@aws-sdk/[email protected]:
+ resolution: {integrity: sha512-pAqOKUHeVWHEXXDIp/qoMk/6jyxIb6GGjnK1/f8dKHtKIEs4tKsnnL563gceEvdad53OPXIt86uoevCcCzmBnw==}
engines: {node: '>=16.0.0'}
dependencies:
'@aws-sdk/types': 3.609.0
'@smithy/types': 3.3.0
'@smithy/util-endpoints': 2.0.5
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1566,14 +1457,14 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/querystring-builder': 3.0.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1582,7 +1473,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/types': 3.3.0
bowser: 2.11.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1597,7 +1488,7 @@ packages:
'@aws-sdk/types': 3.609.0
'@smithy/node-config-provider': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@aws-sdk/[email protected]:
@@ -1605,7 +1496,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@axiomhq/[email protected]:
@@ -1623,8 +1514,8 @@ packages:
'@babel/highlight': 7.24.7
picocolors: 1.0.1
- resolution: {integrity: sha512-P4fwKI2mjEb3ZU5cnMJzvRsRKGBUcs8jvxIoRmr6ufAY9Xk2Bz7JubRTTivkw55c7WQJfTECeqYVa+HZ0FzREg==}
+ resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
@@ -1633,14 +1524,14 @@ packages:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/generator': 7.25.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helpers': 7.25.0
- '@babel/parser': 7.25.0
+ '@babel/parser': 7.25.4
'@babel/template': 7.25.0
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.24.6
convert-source-map: 2.0.0
debug: 4.3.6
gensync: 1.0.0-beta.2
@@ -1650,20 +1541,20 @@ packages:
- supports-color
dev: false
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/generator': 7.25.5
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helpers': 7.25.0
- '@babel/parser': 7.25.0
+ '@babel/parser': 7.25.4
'@babel/template': 7.25.0
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
convert-source-map: 2.0.0
debug: 4.3.6
gensync: 1.0.0-beta.2
@@ -1672,25 +1563,25 @@ packages:
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-mlcTKuQAjczDRwWLIxv+Q925jaMUO8Jl5dxmWJSSGVYfZ4rKMp8daQvVC3rM1G2v8V+/fO0yIVTSLS+2zcB8rg==}
+ resolution: {integrity: sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.57.0
eslint-visitor-keys: 2.1.0
semver: 6.3.1
dev: true
- resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
+ resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -1699,62 +1590,62 @@ packages:
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.25.0
+ '@babel/compat-data': 7.25.4
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- resolution: {integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==}
+ resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
+ '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-q0T+dknZS+L5LDazIP+02gEZITG5unzvb6yIjcmj5i0eFrs5ToBV2m2JGH4EsE/gtP8ygEGLGApBgRIZkTm7zg==}
+ resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
debug: 4.3.6
lodash.debounce: 4.0.8
@@ -1766,7 +1657,7 @@ packages:
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
dev: true
@@ -1774,22 +1665,22 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
dev: true
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
dev: true
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1797,13 +1688,13 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==}
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1812,22 +1703,22 @@ packages:
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
dev: false
- resolution: {integrity: sha512-bIkOa2ZJYn7FHnepzr5iX9Kmz8FjIz4UKzJ9zhX3dnYuVW0xul9RuR3skBfoLu+FPTQw90EHW9rJsSZhyLQ3fQ==}
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1835,35 +1726,35 @@ packages:
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1871,8 +1762,8 @@ packages:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1880,8 +1771,8 @@ packages:
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1889,7 +1780,7 @@ packages:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
dev: true
@@ -1909,8 +1800,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.25.0
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
@@ -1919,7 +1810,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
@@ -1935,1013 +1826,1013 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.24.5
dev: true
- resolution: {integrity: sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==}
+ resolution: {integrity: sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
- resolution: {integrity: sha512-dG0aApncVQwAUJa8tP1VHTnmU67BeIQvKafd3raEx315H54FfkZSz3B/TT+33ZQAjatGJA79gZqTtqL5QZUKXw==}
+ resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/[email protected]):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/[email protected]):
resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/[email protected])
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/[email protected]):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/[email protected]):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
dev: true
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
dev: true
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
dev: true
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==}
+ resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/[email protected])
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/[email protected])
- '@babel/traverse': 7.25.0
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/[email protected])
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/[email protected])
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/[email protected])
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/[email protected])
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
+ resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/[email protected])
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/[email protected])
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==}
+ resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
- '@babel/traverse': 7.25.0
+ '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
+ '@babel/traverse': 7.25.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/template': 7.25.0
resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/[email protected])
resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-CQmfSnK14eYu82fu6GlCwRciHB7mp7oLN+DeyGDDwUr9cMwuSVviJKPXw/YcRYZdB1TdlLJWHHwXwnwD1WnCmQ==}
+ resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/[email protected])
- resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
+ resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/[email protected])
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/[email protected])
resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.0
+ '@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/[email protected])
resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/[email protected])
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/[email protected])
resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
- '@babel/plugin-transform-parameters': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/[email protected])
resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
+ '@babel/helper-replace-supers': 7.25.0(@babel/[email protected])
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/[email protected])
resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/[email protected])
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
+ resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/[email protected])
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/[email protected])
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
dev: true
resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
- resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
+ resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/[email protected])
- '@babel/types': 7.25.0
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/[email protected])
+ '@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
dev: true
resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
dev: true
resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/[email protected])
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/[email protected])
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/[email protected])
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/[email protected])
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/[email protected])
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/[email protected])
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: false
resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-LZicxFzHIw+Sa3pzgMgSz6gdpsdkfiMObHUzhSIrwKF0+/rP/nuR49u79pSS+zIFJ1FeGeqQD2Dq4QGFbOVvSw==}
+ resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
+ resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.25.0(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/[email protected])
'@babel/helper-plugin-utils': 7.24.8
- resolution: {integrity: sha512-vYAA8PrCOeZfG4D87hmw1KJ1BPubghXP1e2MacRFwECGNKL76dkA38JEwYllbvQCpf/kLxsTtir0b8MtxKoVCw==}
+ resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.25.0
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.0(@babel/[email protected])
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/[email protected])
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/[email protected])
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/[email protected])
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/[email protected])
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/[email protected])
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/[email protected])
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/[email protected])
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/[email protected])
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/[email protected])
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/[email protected])
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/[email protected])
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/[email protected])
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/[email protected])
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/[email protected])
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/[email protected])
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/[email protected])
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/[email protected])
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-classes': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/[email protected])
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-for-of': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-function-name': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-literals': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/[email protected])
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/[email protected])
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-new-target': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-object-super': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/[email protected])
- '@babel/plugin-transform-parameters': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-spread': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/[email protected])
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/[email protected])
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/[email protected])
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/[email protected])
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/[email protected])
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/[email protected])
- core-js-compat: 3.37.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/[email protected])
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/[email protected])
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/[email protected])
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/[email protected])
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/[email protected])
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/[email protected])
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/[email protected])
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/[email protected])
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/[email protected])
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/[email protected])
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/[email protected])
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/[email protected])
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/[email protected])
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/[email protected])
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/[email protected])
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/[email protected])
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/[email protected])
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/[email protected])
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/[email protected])
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-classes': 7.25.4(@babel/[email protected])
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/[email protected])
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/[email protected])
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-literals': 7.25.2(@babel/[email protected])
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/[email protected])
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/[email protected])
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-spread': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/[email protected])
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/[email protected])
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/[email protected])
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/[email protected])
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/[email protected])
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
esutils: 2.0.3
resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-react-display-name': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/[email protected])
+ '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/[email protected])
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/[email protected])
- '@babel/plugin-transform-typescript': 7.25.0(@babel/[email protected])
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/[email protected])
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/[email protected])
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/[email protected])
transitivePeerDependencies:
- supports-color
dev: true
@@ -2953,12 +2844,12 @@ packages:
resolution: {integrity: sha512-BOehWE7MgQ8W8Qn0CQnMtg2tHPHPulcS/5AVpFvs2KCK1ET+0WqZqPvnpRpFN81gYoFopdIEJX9Sgjw3ZBccPg==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.37.1
+ core-js-pure: 3.38.1
regenerator-runtime: 0.14.1
dev: true
- resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
+ resolution: {integrity: sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
@@ -2968,36 +2859,36 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/parser': 7.25.4
+ '@babel/types': 7.25.4
resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
+ '@babel/generator': 7.25.5
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
debug: 4.3.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- resolution: {integrity: sha512-ubALThHQy4GCf6mbb+5ZRNmLLCI7bJ3f8Q6LHBSRlSKSWj5a7dSUzJBLv3VuIhFrFPgjF4IzPF567YG/HSCdZA==}
+ resolution: {integrity: sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.0
+ '@babel/generator': 7.25.5
+ '@babel/parser': 7.25.4
'@babel/template': 7.25.0
- '@babel/types': 7.25.0
+ '@babel/types': 7.25.4
debug: 4.3.6
globals: 11.12.0
transitivePeerDependencies:
@@ -3021,8 +2912,8 @@ packages:
to-fast-properties: 2.0.0
dev: false
- resolution: {integrity: sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==}
+ resolution: {integrity: sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.24.8
@@ -3062,8 +2953,8 @@ packages:
mime: 3.0.0
dev: true
- resolution: {integrity: sha512-Kx19dKNwe0FgBuBA3h8hnEfJqFLQR7tK787pN7huv6191g7185VWc5n1eSYJdCBvPEoS3D2Lk6ogjSMOgFQhBA==}
+ resolution: {integrity: sha512-lIri+zuxj6SKqIlewOoC9g9dD5+GbUMAXRrkhApmWGekE0PFlEAR7tHHDkbMXix4ctp7K4lPBY/wWUd8oh+VtQ==}
hasBin: true
peerDependencies:
'@cloudflare/workers-types': ^4.20240208.0
@@ -3081,12 +2972,12 @@ packages:
cookie: 0.5.0
esbuild: 0.15.18
js-yaml: 4.1.0
- miniflare: 3.20240718.1
+ miniflare: 3.20240821.0
package-manager-manager: 0.2.0
pcre-to-regexp: 1.1.0
semver: 7.6.3
- vercel: 35.2.1
- wrangler: 3.67.1(@cloudflare/[email protected])
+ vercel: 37.1.2
+ wrangler: 3.72.3(@cloudflare/[email protected])
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -3107,48 +2998,53 @@ packages:
- supports-color
dev: false
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-BsPZcSCgoGnufog2GIgdPuiKicYTNyO/Dp++HbpLRH+yQdX3x4aWx83M+a0suTl1xv76dO4g9aw7SIB6OSgIyQ==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-CDBpfZKrSy4YrIdqS84z67r3Tzal2pOhjCsIb63IuCnvVes59/ft1qhczBzk9EffeOE2iTCrA4YBT7Sbn7USew==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-nlr4gaOO5gcJerILJQph3+2rnas/nx/lYsuaot1ntHu4LAPBoQo1q/Pucj2cSIav4UiMzTbDmoDwPlls4Kteog==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-Q+9RedvNbPcEt/dKni1oN94OxbvuNAeJkgHmrLFTGF8zu21wzOhVkQeRNxcYxrMa9mfStc457NAg13OVCj2kHQ==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-LJ/k3y47pBcjax0ee4K+6ZRrSsqWlfU4lbU8Dn6u5tSC9yzwI4YFNXDrKWInB0vd7RT3w4Yqq1S6ZEbfRrqVUg==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-j6z3KsPtawrscoLuP985LbqFrmsJL6q1mvSXOXTqXGODAHIzGBipHARdOjms3UQqovzvqB2lQaQsZtLBwCZxtA==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-zBEZvy88EcAMGRGfuVtS00Yl7lJdUM9sH7i651OoL+q0Plv9kphlCC0REQPwzxrEYT1qibSYtWcD9IxQGgx2/g==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-I9bHgZOxJQW0CV5gTdilyxzTG7ILzbTirehQWgfPx9X77E/7eIbR9sboOMgyeC69W4he0SKtpx0sYZuTJu4ERw==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-YpCRvvT47XanFum7C3SedOZKK6BfVhqmwdAAVAQFyc4gsCdegZo0JkUkdloC/jwuWlbCACOG2HTADHOqyeolzQ==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-keC97QPArs6LWbPejQM7/Y8Jy8QqyaZow4/ZdsGo+QjlOLiZRDpAenfZx3CBUoWwEeFwQTl2FLO+8hV1SWFFYw==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@cloudflare/[email protected]:
- resolution: {integrity: sha512-L6T/Bg50zm9IIACQVQ0CdVcQL+2nLkRXdPz6BsXF3SlzgjyWR5ndVctAbfr/HLV7aKYxWnnEZsIORsTWb+FssA==}
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-XAFOldVQsbxQ7mjbqX2q1dNIgcLbKSytk41pwuZTn9e0p7OeTpFTosJef8uwosL6CcOAHqcW1f1HJxyjwmtGxw==}
+ engines: {node: '>=16.7.0'}
+ dev: true
+
+ /@cloudflare/[email protected]:
+ resolution: {integrity: sha512-icAkbnAqgVl6ef9lgLTom8na+kj2RBw2ViPAQ586hbdj0xZcnrjK7P46Eu08OU9D/lNDgN2sKU/sxhe2iK/gIg==}
dev: true
@@ -3211,11 +3107,25 @@ packages:
'@csstools/css-tokenizer': 2.4.1
dev: true
+ /@csstools/[email protected](@csstools/[email protected]):
+ resolution: {integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.1
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.1
+ dev: true
+
/@csstools/[email protected]:
resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==}
engines: {node: ^14 || ^16 || >=18}
dev: true
+ /@csstools/[email protected]:
+ resolution: {integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==}
+ engines: {node: '>=18'}
+ dev: true
+
/@csstools/[email protected](@csstools/[email protected])(@csstools/[email protected]):
resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==}
engines: {node: ^14 || ^16 || >=18}
@@ -3227,22 +3137,33 @@ packages:
'@csstools/css-tokenizer': 2.4.1
dev: true
+ /@csstools/[email protected](@csstools/[email protected])(@csstools/[email protected]):
+ resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.1
+ '@csstools/css-tokenizer': ^3.0.1
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.1(@csstools/[email protected])
+ '@csstools/css-tokenizer': 3.0.1
+ dev: true
+
/@csstools/[email protected]:
resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
dev: true
resolution: {integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.1.1([email protected])
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-specificity': 3.1.1([email protected])
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-d1OHEXyYGe21G3q88LezWWx31ImEDdmINNDy0LyLNN9ChgN2bPxoubUPiHf9KmwypBMaHmNcMuA/WZOKdZk/Lg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3251,12 +3172,12 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-mLvQlMX+keRYr16AuvuV8WYKUwF+D0DiCqlBdvhQ0KYEtcQl9/is9Ssg7RcIys8x0jIn2h1zstS4izckdZj9wg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3265,12 +3186,12 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-SkHdj7EMM/57GVvSxSELpUg7zb5eAndBeuvGwFzYtU06/QXJ/h9fuK7wO5suteJzGhm3GDF/EWPCdWV2h1IGHQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3278,12 +3199,12 @@ packages:
dependencies:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-x1Avr15mMeuX7Z5RJUl7DmjhUtg+Amn5DZRD0fQ2TlTFTcJS8U1oxXQ9e5mA62S2RJgUU6db20CRoJyDvae2EQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3292,21 +3213,21 @@ packages:
'@csstools/css-calc': 1.2.4(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-E0xz2sjm4AMCkXLCFvI/lyl4XO6aN1NCSMMVEOngFDJ+k2rDwfr6NDjWljk1li42jiLNChVX+YFnmfGCigZKXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-KrHGsUPXRYxboXmJ9wiU/RzDM7y/5uIefLWKFSc36Pok7fxiPyvkSHO51kh+RLZS1W5hbqw9qaa6+tKpTSxa5g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3315,10 +3236,10 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-ZFl2JBHano6R20KB5ZrB8KdPM2pVK0u+/3cGQ2T8VubJq982I2LSOvQ4/VtxkAXjkPkk1rXt4AD1ni7UjTZ1Og==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3327,12 +3248,12 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-3ifnLltR5C7zrJ+g18caxkvSRnu9jBBXCYgnBznRjxm6gQJGnnCO9H6toHfywNdNr/qkiVf2dymERPQLDnjLRQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3341,44 +3262,44 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-YoaNHH2wNZD+c+rHV02l4xQuDpfR8MaL7hD45iJyr+USwvr0LOheeytJ6rq8FN6hXBmEeoJBeXXgGmM8fkhH4g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-0aj591yGlq5Qac+plaWCbn5cpjs5Sh0daovYUKJUOMjIp70prGH/XPLp7QjxtbFXz3CTvb0H9a35dpEuIuUi3Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.1.1([email protected])
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-specificity': 3.1.1([email protected])
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-x0UtpCyVnERsplUeoaY6nEtp1HxTf4lJjoK/ULEm40DraqFfUdUSt76yoOyX5rGY6eeOUOkurHyYlFHVKv/pew==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3386,60 +3307,60 @@ packages:
dependencies:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-ElITMOGcjQtvouxjd90WmJRIw1J7KMP+M+O87HaVtlgOOlDt1uEPeTeii8qKGe2AiedEp0XOGIo9lidbiU2Ogg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/css-tokenizer': 2.4.1
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-KYQCal2i7XPNtHAUxCECdrC7tuxIWQCW+s8eMYs5r5PaAiVTeKwlrkRS096PFgojdNCmHeG0Cb7njtuNswNf+w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3449,10 +3370,10 @@ packages:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
'@csstools/media-query-list-parser': 2.1.13(@csstools/[email protected])(@csstools/[email protected])
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-YD6jrib20GRGQcnOu49VJjoAnQ/4249liuz7vTpy/JfgqQ1Dlc5eD4HPUMNLOw9CWey9E6Etxwf/xc/ZF8fECA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3461,31 +3382,31 @@ packages:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
'@csstools/media-query-list-parser': 2.1.13(@csstools/[email protected])(@csstools/[email protected])
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-ySUmPyawiHSmBW/VI44+IObcKH0v88LqFe0d09Sb3w4B1qjkaROc6d5IA3ll9kjD46IIX/dbO5bwFN/swyoyZA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-e3JxXmxjU3jpU7TzZrsNqSX4OHByRC3XjItV3Ieo/JEQmLg5rdOL4lkv/1vp27gXemzfNt44F42k/pn0FpE21Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3494,22 +3415,22 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-W2oV01phnILaRGYPmGFlL2MT/OgYjQDrL9sFlbdikMFi6oQkFki9B86XqEWR7HCsTZFVq7dbzr/o71B75TKkGg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-MxUMSNvio1WwuS6WRLlQuv6nNPXwIWUFzBBAvL/tBdWfiKjiJnAa6eSSN5gtaacSqUkQ/Ce5Z1OzLRfeaWhADA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3518,22 +3439,22 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-MZwo0D0TYrQhT5FQzMqfy/nGZ28D1iFtpN7Su1ck5BPHS95+/Y5O9S4kEvo76f2YOsqwYcT8ZGehSI1TnzuX2g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3542,21 +3463,21 @@ packages:
'@csstools/css-calc': 1.2.4(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-+cptcsM5r45jntU6VjotnkC9GteFR7BQBfZ5oW7inLCxj7AfLGAzMbZ60hKTP13AULVZBdxky0P8um0IBfLHVA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/color-helpers': 4.2.1
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-G9G8moTc2wiad61nY5HfvxLiM/myX0aYK4s1x8MQlPH29WDPxHQM7ghGgvv2qf2xH+rrXhztOmjGHJj4jsEqXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -3565,43 +3486,52 @@ packages:
'@csstools/css-calc': 1.2.4(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss-selector-parser: ^6.0.13
dependencies:
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss-selector-parser: ^6.0.13
dependencies:
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
+ dev: true
+
+ resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss-selector-parser: ^6.1.0
+ dependencies:
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-tAgvZQe/t2mlvpNosA4+CkMiZ2azISW5WPAcdSalZlEjQvUfghHxfQcrCiK/7/CrfAWVxyM88kGFYO82heIGDg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
/@daybrush/[email protected]:
@@ -3658,11 +3588,11 @@ packages:
effect: ^3.4.5
dependencies:
effect: 3.4.5
- fast-check: 3.20.0
+ fast-check: 3.22.0
dev: false
- resolution: {integrity: sha512-XvksSENe8wPeFlEVouvrOhKdx8HMniJ3by7sro2uPF3M6QqWwjzVcmvwoPtdjiX8O1lfRoLhQMp1a7NGlVTdIA==}
+ resolution: {integrity: sha512-cvAPSlUILhBBOakn2krdPnOGv5hAZq92f1YHxYcfu0p7uarix2C6Ia3AVizpS1SGRZGiEkIS5E+IVTLg1I2Iog==}
dev: false
@@ -4722,7 +4652,7 @@ packages:
debug: 4.3.6
espree: 9.6.1
globals: 13.24.0
- ignore: 5.3.1
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -4734,30 +4664,21 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@extension-create/[email protected]:
- resolution: {integrity: sha512-hde5zdgnbVpnFV/63GKYDRHEL2x/8z02eo6gnh6+3bK9+0L2o/VoeYYFnVj+dpD9fTGlilYQZGCilEvr2J7DSQ==}
- engines: {node: '>=18'}
- dependencies:
- '@colors/colors': 1.6.0
- cross-spawn: 7.0.3
- prefers-yarn: 1.0.1
- dev: true
-
resolution: {integrity: sha512-MUFz1XQZNMaWynEdLVBxqUZxjbWtAr7ltFiQmbBekF1QYokQxK6rhq1VrdXsrrZ5avfNwE/ybaYy5u0XDtwVCg==}
engines: {node: '>=18'}
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@colors/colors': 1.6.0
'@pmmmwh/react-refresh-webpack-plugin': 0.5.15([email protected])([email protected])([email protected])
'@types/adm-zip': 0.5.5
'@types/chrome': 0.0.268
'@types/webextension-polyfill': 0.10.7
- '@vue/compiler-sfc': 3.4.34
- adm-zip: 0.5.14
- axios: 1.7.2
- babel-loader: 9.1.3(@babel/[email protected])([email protected])
- babel-preset-modern-browser-extension: 0.7.0(@babel/[email protected])
+ '@vue/compiler-sfc': 3.4.38
+ adm-zip: 0.5.15
+ axios: 1.7.5
+ babel-loader: 9.1.3(@babel/[email protected])([email protected])
+ babel-preset-modern-browser-extension: 0.7.0(@babel/[email protected])
case-sensitive-paths-webpack-plugin: 2.4.0
chokidar: 3.6.0
css-loader: 6.11.0([email protected])
@@ -4765,29 +4686,29 @@ packages:
dotenv-webpack: 8.1.0([email protected])
fork-ts-checker-webpack-plugin: 9.0.2([email protected])([email protected])
glob: 10.4.5
- go-git-it: 1.2.4
- ignore: 5.3.1
+ go-git-it: 1.2.6
+ ignore: 5.3.2
less: 4.2.0
less-loader: 12.2.0([email protected])([email protected])
- mini-css-extract-plugin: 2.9.0([email protected])
- postcss: 8.4.40
- postcss-flexbugs-fixes: 5.0.2([email protected])
- postcss-normalize: 10.0.1([email protected])([email protected])
- postcss-preset-env: 9.6.0([email protected])
- postcss-scss: 4.0.9([email protected])
+ mini-css-extract-plugin: 2.9.1([email protected])
+ postcss: 8.4.41
+ postcss-flexbugs-fixes: 5.0.2([email protected])
+ postcss-normalize: 10.0.1([email protected])([email protected])
+ postcss-preset-env: 9.6.0([email protected])
+ postcss-scss: 4.0.9([email protected])
react-refresh: 0.14.2
sass: 1.77.8
sass-loader: 14.2.1([email protected])([email protected])
slugify: 1.6.6
style-loader: 3.3.4([email protected])
- stylelint: 16.7.0([email protected])
- stylelint-config-standard-scss: 13.1.0([email protected])([email protected])
- stylelint-webpack-plugin: 5.0.1([email protected])([email protected])
+ stylelint: 16.8.2([email protected])
+ stylelint-config-standard-scss: 13.1.0([email protected])([email protected])
+ stylelint-webpack-plugin: 5.0.1([email protected])([email protected])
webextension-polyfill: 0.10.0
webpack-browser-extension-common-errors: 1.1.2([email protected])
webpack-browser-extension-html: 1.1.1([email protected])
webpack-browser-extension-icons: 1.0.4([email protected])
@@ -4830,17 +4751,17 @@ packages:
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- /@floating-ui/[email protected]:
- resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==}
+ /@floating-ui/[email protected]:
+ resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==}
dependencies:
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/utils': 0.2.7
dev: false
- /@floating-ui/[email protected]:
- resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==}
+ /@floating-ui/[email protected]:
+ resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==}
dependencies:
- '@floating-ui/core': 1.6.5
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/core': 1.6.7
+ '@floating-ui/utils': 0.2.7
dev: false
@@ -4849,47 +4770,47 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.6.8
+ '@floating-ui/dom': 1.6.10
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
- resolution: {integrity: sha512-RixKJJG92fcIsVoqrFr4Onpzh7hlOx4U7NV4aLhMLmtvjZ5oTB/WzXaANYUZATKqXvvW7t9sCxtzejip26N5Ag==}
+ resolution: {integrity: sha512-9u3i62fV0CFF3nIegiWiRDwOs7OW/KhSUJDNx2MkQM3LbE5zQOY01sL3nelcVBXvX7Ovvo3A49I8ql+20Wg/Hw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/react-dom': 2.1.1([email protected])([email protected])
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/utils': 0.2.7
react: 18.3.1
react-dom: 18.3.1([email protected])
tabbable: 6.2.0
dev: false
- /@floating-ui/[email protected]:
- resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==}
+ /@floating-ui/[email protected]:
+ resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==}
dev: false
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
dev: true
- /@grammyjs/[email protected]:
- resolution: {integrity: sha512-LBIH8VnSEoeOHJxfvNFQ8QEsRip7D6GhY7y0evMl9W5FQ8p3q3bcYrtO2awxo1rSpi9RcoCKX1icQ60kXkp7+w==}
+ /@grammyjs/[email protected]:
+ resolution: {integrity: sha512-Oyq6fBuVPyX6iWvxT/0SxJvNisC9GHUEkhZ60qJBHRmwNX4hIcOfhrNEahicn3K9SYyreGPVw3d9wlLRds83cw==}
dev: false
- resolution: {integrity: sha512-Kb3hgk9gRNRcTZktBrKdHhF3xFhYkca1Rk6e1/im2ENf83dgN54orMW0uSKTXFnUpZOUFZ+wcY05LlipwgZIFQ==}
+ resolution: {integrity: sha512-Nt+NlnQbVvMHVZ/QsST6DNyfG8VWqjOYY3eZpp0PrRKpmZw+pzhwQ1F6wtNaW4jnudeC2a5MJC70vbGVcETNIg==}
engines: {node: '>=10'}
peerDependencies:
react: ^18
react-dom: ^18
dependencies:
- '@floating-ui/react': 0.26.20([email protected])([email protected])
- '@react-aria/focus': 3.18.1([email protected])
- '@react-aria/interactions': 3.22.1([email protected])
- '@tanstack/react-virtual': 3.8.3([email protected])([email protected])
+ '@floating-ui/react': 0.26.23([email protected])([email protected])
+ '@react-aria/focus': 3.18.2([email protected])
+ '@react-aria/interactions': 3.22.2([email protected])
+ '@tanstack/react-virtual': 3.10.5([email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
@@ -4902,28 +4823,41 @@ packages:
react: 18.3.1
dev: false
- resolution: {integrity: sha512-e6oHjNiErRxsZRZBmc2KucuvY3btlO/XPncIpP2X75bRdTilF9GLjm3NHvKKunpJbbJJj31/FoPTksTf8djAVw==}
+ resolution: {integrity: sha512-xjzhqhSWUE/OhN0g3KCNVzNsQMlFUAL+/8GgPUr3TKcU7cvgZVBGswFofJ8WwGEHTqobzze1lDpGJl9ZNckDhA==}
+ engines: {node: '>=18.14.1'}
+ peerDependencies:
+ hono: ^4
+ dependencies:
+ hono: 4.3.2
+ dev: false
+
+ resolution: {integrity: sha512-xjzhqhSWUE/OhN0g3KCNVzNsQMlFUAL+/8GgPUr3TKcU7cvgZVBGswFofJ8WwGEHTqobzze1lDpGJl9ZNckDhA==}
engines: {node: '>=18.14.1'}
+ peerDependencies:
+ hono: ^4
+ dependencies:
+ hono: 4.5.9
dev: false
resolution: {integrity: sha512-Bco6XdKkTP7yIVWXpquLQayvjwzDmsmsESjF7VcrU/ZPTYafGvvpHf7Z6PHTWyp+JpdYORZXlyZ75T3At2KfAA==}
peerDependencies:
hono: '*'
dependencies:
- hono: 4.5.2
+ hono: 4.5.9
dev: false
- resolution: {integrity: sha512-aq09IUi/+Ut/EXR8t1lCjsV/OEnSQoO4F6RmV7Ufvy3x0tE2TIYLs6YL0kZ7+gLIbmVg6V2MppHGQaLMNs7G8Q==}
+ resolution: {integrity: sha512-rhd+hxIIG6wSS73WQxXF7/CiOHBlxdynrRUihSwEszpysB0HWOMN2Q7QprnPHsZSNmGohoTXZxwo7iM4hukGzw==}
engines: {node: '>=18.14.1'}
peerDependencies:
hono: '*'
dependencies:
- '@hono/node-server': 1.12.0
- hono: 4.5.2
- miniflare: 3.20240718.1
+ '@hono/node-server': 1.12.2([email protected])
+ hono: 4.5.9
+ miniflare: 3.20240821.0
minimatch: 9.0.5
transitivePeerDependencies:
- bufferutil
@@ -4931,22 +4865,22 @@ packages:
- utf-8-validate
dev: false
resolution: {integrity: sha512-dSDxaPV70Py8wuIU2QNpoVEIOSzSXZ/6/B/h4xA7eOMz7+AarKTSGV8E6QwrdcCbBLkpqfJ4Q2TmBO0eP1tCBQ==}
peerDependencies:
hono: '>=3.9.0'
zod: ^3.19.1
dependencies:
- hono: 4.5.2
+ hono: 4.5.9
zod: 3.23.8
dev: false
resolution: {integrity: sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==}
peerDependencies:
react-hook-form: ^7.0.0
dependencies:
- react-hook-form: 7.52.1([email protected])
+ react-hook-form: 7.53.0([email protected])
dev: false
/@humanwhocodes/[email protected]:
@@ -5001,8 +4935,8 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.14.12
- '@types/yargs': 17.0.32
+ '@types/node': 20.16.1
+ '@types/yargs': 17.0.33
chalk: 4.1.2
dev: true
@@ -5043,35 +4977,35 @@ packages:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
- resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ resolution: {integrity: sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
dependencies:
- '@jsonjoy.com/base64': 1.1.2([email protected])
- '@jsonjoy.com/util': 1.3.0([email protected])
+ '@jsonjoy.com/base64': 1.1.2([email protected])
+ '@jsonjoy.com/util': 1.3.0([email protected])
hyperdyperid: 1.2.0
- thingies: 1.21.0([email protected])
- tslib: 2.6.3
+ thingies: 1.21.0([email protected])
+ tslib: 2.7.0
dev: true
resolution: {integrity: sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
/@langchain/[email protected]:
@@ -5079,29 +5013,28 @@ packages:
engines: {node: '>=18'}
dependencies:
'@cloudflare/ai': 1.2.2
- '@langchain/core': 0.2.18
+ '@langchain/core': 0.2.30
uuid: 9.0.1
transitivePeerDependencies:
- langchain
- openai
dev: false
- /@langchain/[email protected]:
- resolution: {integrity: sha512-ru542BwNcsnDfjTeDbIkFIchwa54ctHZR+kVrC8U9NPS9/36iM8p8ruprOV7Zccj/oxtLE5UpEhV+9MZhVcFlA==}
+ /@langchain/[email protected]:
+ resolution: {integrity: sha512-jeLmLTxnEq9zSq0J/fMlBCMT5Ix8tbZriqNYTm3oS7CPM2uHBcRQhV3fpsh4G8FnE7Pxa4sWfrFzc2jykhlk7A==}
engines: {node: '>=18'}
dependencies:
ansi-styles: 5.2.0
camelcase: 6.3.0
decamelize: 1.2.0
- js-tiktoken: 1.0.12
- langsmith: 0.1.39(@langchain/[email protected])
- ml-distance: 4.0.1
+ js-tiktoken: 1.0.14
+ langsmith: 0.1.48(@langchain/[email protected])
mustache: 4.2.0
p-queue: 6.6.2
p-retry: 4.6.2
uuid: 10.0.0
zod: 3.23.8
- zod-to-json-schema: 3.23.1([email protected])
+ zod-to-json-schema: 3.23.2([email protected])
transitivePeerDependencies:
- langchain
- openai
@@ -5129,8 +5062,8 @@ packages:
- supports-color
dev: true
- resolution: {integrity: sha512-qhHVgb2dxaFNT00Z1upHaDCstUEjjrgtIkrk4tr+YnDSGbTIKncbdydIpSed+RCXz0f6nb4UDD4eKEWokNom6g==}
+ resolution: {integrity: sha512-FNYbYIA8WEff/+A8iMGstZhArpgy5ZxZ9uQRsBQ+qXsiKTYn3WjxpCmJRw3CFUOqFlQSZDkC3v1y3BijRnE1Pg==}
dev: true
/@microsoft/[email protected]:
@@ -5152,8 +5085,8 @@ packages:
dependencies:
'@antfu/ni': 0.21.12
'@axiomhq/js': 1.0.0-rc.3
- '@babel/core': 7.24.9
- '@babel/types': 7.25.0
+ '@babel/core': 7.24.6
+ '@babel/types': 7.24.6
'@clack/prompts': 0.7.0
cli-high: 0.4.2
diff: 5.2.0
@@ -5170,7 +5103,7 @@ packages:
'@axiomhq/js': 1.0.0-rc.3
'@babel/core': 7.24.6
'@babel/types': 7.24.6
- '@hono/node-server': 1.12.0
+ '@hono/node-server': 1.12.2([email protected])
'@million/install': 0.0.18
'@rollup/pluginutils': 5.1.0([email protected])
'@rrweb/types': 2.0.0-alpha.16
@@ -5190,7 +5123,7 @@ packages:
semver: 7.6.3
socket.io-client: 4.7.5
tmp: 0.2.3
- unplugin: 1.12.0
+ unplugin: 1.12.2
update-notifier-cjs: 5.1.6
transitivePeerDependencies:
- bufferutil
@@ -5209,18 +5142,18 @@ packages:
engines: {node: '>=14.0.0'}
dev: false
- resolution: {integrity: sha512-/zZGkrTOsraVfYjGP8uM0p6r0BDT6xWpkjdVbcz66PJVSpwXX3yNiRycxAuDfBKGWBrZBXRuK/YVlkNgxHGwmA==}
+ resolution: {integrity: sha512-OTx9y6I3xE/eih+qtthppwLytmpJVPM5PPoJxChFsbjIEFXIayG0h/xLzefHGJviAa3Q5+Fd+9uYojKkHDKxoQ==}
dev: false
- resolution: {integrity: sha512-LY3btOpPh+OTIpviNojDpUdIbHW9j0JBYBjsIp8IxtDFfYFyORvw3yNq6N231FVqQA7n7lwaf7xHbVJlA1ED7g==}
+ resolution: {integrity: sha512-+7xh142AdhZGjY9/L0iFo7mqRBMJHe+q+uOL+hto1Lfo9DeWCGcR6no4StlFbVSVcA6fQLKEX6y6qhMsSKbgNQ==}
dependencies:
glob: 10.3.10
dev: true
- resolution: {integrity: sha512-/9zVxJ+K9lrzSGli1///ujyRfon/ZneeZ+v4ptpiPoOU+GKZnm8Wj8ELWU1Pm7GHltYRBklmXMTUqM/DqQ99FQ==}
+ resolution: {integrity: sha512-UhZGcOyI9LE/tZL3h9rs/2wMZaaJKwnpAyegUVDGZqwsla6hMfeSj9ssBWQS9yA4UXun3pPhrFLVnw5KXZs3vw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -5228,8 +5161,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-vXHOPCwfDe9qLDuq7U1OYM2wUY+KQ4Ex6ozwsKxp26BlJ6XXbHleOUldenM67JRyBfVjv371oneEvYd3H2gNSA==}
+ resolution: {integrity: sha512-ys2cUgZYRc+CbyDeLAaAdZgS7N1Kpyy+wo0b/gAj+SeOeaj0Lw/q+G1hp+DuDiDAVyxLBCJXEY/AkhDmtihUTA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -5237,8 +5170,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-vlhB8wI+lj8q1ExFW8lbWutA4M2ZazQNvMWuEDqZcuJJc78iUnLdPPunBPX8rC4IgT6lIx/adB+Cwrl99MzNaA==}
+ resolution: {integrity: sha512-2xoWtE13sUJ3qrC1lwE/HjbDPm+kBQYFkkiVECJWctRASAHQ+NwjMzgrfqqMYHfMxFb5Wws3w9PqzZJqKFdWcQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -5246,8 +5179,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-NpDB9NUR2t0hXzJJwQSGu1IAOYybsfeB+LxpGsXrRIb7QOrYmidJz3shzY8cM6+rO4Aojuef0N/PEaX18pi9OA==}
+ resolution: {integrity: sha512-+zJ1gJdl35BSAGpkCbfyiY6iRTaPrt3KTl4SF/B1NyELkqqnrNX6cp4IjjjxKpd64/7enI0kf6b9O1Uf3cL0pw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -5255,8 +5188,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-8XFikMSxWleYNryWIjiCX+gU201YS+erTUidKdyOVYi5qUQo/gRxv/3N1oZFCgqpesN6FPeqGM72Zve+nReVXQ==}
+ resolution: {integrity: sha512-m6EBqrskeMUzykBrv0fDX/28lWIBGhMzOYaStp0ihkjzIYJiKUOzVYD1gULHc8XDf5EMSqoH/0/TRAgXqpQwmw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -5264,8 +5197,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-6QLwi7RaYiQDcRDSU/os40r5o06b5ue7Jsk5JgdRBGGp8l37RZEh9JsLSM8QF0YDsgcosSeHjglgqi25+m04IQ==}
+ resolution: {integrity: sha512-gUu0viOMvMlzFRz1r1eQ7Ql4OE+hPOmA7smfZAhn8vC4+0swMZaZxa9CSIozTYavi+bJNDZ3tgiSdMjmMzRJlQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -5273,8 +5206,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-1GpG2VhbspO+aYoMOQPQiqc/tG3LzmsdBH0LhnDS3JrtDx2QmzXe0B6mSZZiN3Bq7IOMXxv1nlsjzoS1+9mzZw==}
+ resolution: {integrity: sha512-PGbONHIVIuzWlYmLvuFKcj+8jXnLbx4WrlESYlVnEzDsa3+Q2hI1YHoXaSmbq0k4ZwZ7J6sWNV4UZfx1OeOlbQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -5282,8 +5215,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-Igh9ZlxwvCDsu6438FXlQTHlRno4gFpJzqPjSIBZooD22tKeI4fE/YMRoHVJHmrQ2P5YL1DoZ0qaOKkbeFWeMg==}
+ resolution: {integrity: sha512-BiSY5umlx9ed5RQDoHcdbuKTUkuFORDqzYKPHlLeS+STUWQKWziVOn3Ic41LuTBvqE0TRJPKpio9GSIblNR+0w==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -5291,8 +5224,8 @@ packages:
dev: false
optional: true
- resolution: {integrity: sha512-tEQ7oinq1/CjSG9uSTerca3v4AZ+dFa+4Yu6ihaG8Ud8ddqLQgFGcnwYls13H5X5CPDPZJdYxyeMui6muOLd4g==}
+ resolution: {integrity: sha512-pxsI23gKWRt/SPHFkDEsP+w+Nd7gK37Hpv0ngc5HpWy2e7cKx9zR/+Q2ptAUqICNTecAaGWvmhway7pj/JLEWA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -5324,6 +5257,11 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
+ /@nolyfill/[email protected]:
+ resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
+ engines: {node: '>=12.4.0'}
+ dev: true
+
resolution: {integrity: sha512-yMRgZVDpwWjplorzt9SFSaakWx6QIK248Nw4ZFgkrAy/GvJaFRaSZzE6nD7JBK5r8g/+PTxFq5Wj/sfciE7x+A==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16}
@@ -5683,14 +5621,14 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
'@types/connect': 3.4.36
transitivePeerDependencies:
- supports-color
dev: false
- /@opentelemetry/[email protected](@opentelemetry/[email protected]):
- resolution: {integrity: sha512-/B7fbMdaf3SYe5f1P973tkqd6s7XZirjpfkoJ63E7nltU30qmlgm9tY5XwZOzAFI0rHS9tbrFI2HFPAvQUFe/A==}
+ /@opentelemetry/[email protected](@opentelemetry/[email protected]):
+ resolution: {integrity: sha512-uRx0V3LPGzjn2bxAnV8eUsDT82vT7NTwI0ezEuPMBOTOsnPpGhWdhcdNdhH80sM4TrWrOfXm9HGEdfWE3TRIww==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -5698,7 +5636,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5712,7 +5650,20 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@opentelemetry/[email protected](@opentelemetry/[email protected]):
+ resolution: {integrity: sha512-pVc8P5AgliC1DphyyBUgsxXlm2XaPH4BpYvt7rAZDMIqUpRk8gs19SioABtKqqxvFzg5jPtgJfJsdxq0Y+maLw==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
+ '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
transitivePeerDependencies:
- supports-color
dev: false
@@ -5738,7 +5689,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5767,7 +5718,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
'@opentelemetry/redis-common': 0.36.2
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5781,7 +5732,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5795,7 +5746,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
'@opentelemetry/sdk-metrics': 1.25.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5809,7 +5760,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5822,7 +5773,7 @@ packages:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
'@opentelemetry/sql-common': 0.40.1(@opentelemetry/[email protected])
transitivePeerDependencies:
- supports-color
@@ -5836,7 +5787,7 @@ packages:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
'@types/mysql': 2.15.22
transitivePeerDependencies:
- supports-color
@@ -5850,7 +5801,7 @@ packages:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5863,7 +5814,7 @@ packages:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
'@opentelemetry/sql-common': 0.40.1(@opentelemetry/[email protected])
'@types/pg': 8.6.1
'@types/pg-pool': 2.0.4
@@ -5880,7 +5831,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
'@opentelemetry/redis-common': 0.36.2
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -5912,7 +5863,7 @@ packages:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.52.1
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.10.0
+ import-in-the-middle: 1.11.0
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -5965,6 +5916,11 @@ packages:
engines: {node: '>=14'}
dev: false
+ /@opentelemetry/[email protected]:
+ resolution: {integrity: sha512-U9PJlOswJPSgQVPI+XEuNLElyFWkb0hAiMg+DExD9V0St03X2lPHGMdxMY/LrVmoukuIpXJ12oyrOtEZ4uXFkw==}
+ engines: {node: '>=14'}
+ dev: false
+
/@opentelemetry/[email protected](@opentelemetry/[email protected]):
resolution: {integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==}
engines: {node: '>=14'}
@@ -6017,14 +5973,14 @@ packages:
optional: true
dependencies:
ansi-html: 0.0.9
- core-js-pure: 3.37.1
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
html-entities: 2.5.2
loader-utils: 2.0.4
react-refresh: 0.14.2
schema-utils: 4.2.0
source-map: 0.7.4
webpack-dev-server: 5.0.4([email protected])([email protected])
dev: true
@@ -6040,8 +5996,8 @@ packages:
graceful-fs: 4.2.10
dev: false
- resolution: {integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==}
+ resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
dependencies:
'@pnpm/config.env-replace': 1.1.0
@@ -6053,8 +6009,45 @@ packages:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
dev: false
- /@prisma/[email protected]:
- resolution: {integrity: sha512-c1Sle4ji8aasMcYfBBHFM56We4ljfenVtRmS8aY06BllS7SoU6SmJBwG7vil+GHiR0Yrh+t9iBwt4AY0Jr4KNQ==}
+ /@prefresh/[email protected]:
+ resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==}
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==}
+ requiresBuild: true
+ peerDependencies:
+ preact: ^10.0.0
+ dependencies:
+ preact: 10.23.2
+ dev: true
+ optional: true
+
+ /@prefresh/[email protected]:
+ resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-BAzEqkNZSm1B82l8oXp+b69ffCQopjca8yeooczmCBSU6ZGhxWf+G2fmRt02CkcMpnDiHuDNDdsBJqEBKRJzOQ==}
+ requiresBuild: true
+ peerDependencies:
+ '@prefresh/babel-plugin': ^0.5.0
+ preact: ^10.4.0
+ webpack: ^4.0.0 || ^5.0.0
+ dependencies:
+ '@prefresh/babel-plugin': 0.5.1
+ '@prefresh/core': 1.5.2([email protected])
+ '@prefresh/utils': 1.2.0
+ preact: 10.23.2
+ dev: true
+ optional: true
+
+ /@prisma/[email protected]:
+ resolution: {integrity: sha512-r074avGkpPXItk+josQPhufZEmGhUCb16PQx4ITPS40vWTpTPET4VsgCBZB2alIN6SS7pRFod2vz2M2HHEEylQ==}
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
@@ -6066,7 +6059,7 @@ packages:
/@radix-ui/[email protected]:
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
dev: false
/@radix-ui/[email protected]:
@@ -6076,20 +6069,20 @@ packages:
/@radix-ui/[email protected]:
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
dev: false
/@radix-ui/[email protected]:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
dev: false
/@radix-ui/[email protected]:
resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
dev: false
resolution: {integrity: sha512-HJOzSX8dQqtsp/3jVxCU3CXEONF7/2jlGAB28oX8TTw1Dz8JYbEI1UcL8355PuLBE41/IRRMvCw7VkiK/jcUOQ==}
peerDependencies:
'@types/react': '*'
@@ -6103,20 +6096,20 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collapsible': 1.1.0(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collapsible': 1.1.0(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-wmCoJwj7byuVuiLKqDLlX7ClSUU0vd9sdCeM+2Ls+uf13+cpSJoMgwysHq1SGVVkJj5Xn0XWi1NoRCdkMpr6Mw==}
peerDependencies:
'@types/react': '*'
@@ -6130,17 +6123,17 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -6153,14 +6146,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
peerDependencies:
'@types/react': '*'
@@ -6173,14 +6166,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-zQY7Epa8sTL0mq4ajSJpjgn2YmCgyrG7RsQgLp3C0LQVkG7+Tf6Pv1CeNWZLyqMjhdPkBa5Lx7wYBeSu7uCSTA==}
peerDependencies:
'@types/react': '*'
@@ -6194,19 +6187,19 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -6219,17 +6212,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
peerDependencies:
'@types/react': '*'
@@ -6242,11 +6235,11 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -6257,11 +6250,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -6270,12 +6263,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
peerDependencies:
'@types/react': '*'
@@ -6284,11 +6277,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-wvMKKIeb3eOrkJ96s722vcidZ+2ZNfcYZWBPRHIB1VWrF+fiF851Io6LX0kmK5wTDQFKdulCCKJk2c3SBaQHvA==}
peerDependencies:
'@types/react': '*'
@@ -6302,12 +6295,12 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
@@ -6317,11 +6310,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -6330,12 +6323,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
peerDependencies:
'@types/react': '*'
@@ -6344,17 +6337,17 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/primitive': 1.0.0
'@radix-ui/react-compose-refs': 1.0.0([email protected])
'@radix-ui/react-context': 1.0.0([email protected])
@@ -6370,12 +6363,12 @@ packages:
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.4(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.4(@types/[email protected])([email protected])
transitivePeerDependencies:
- '@types/react'
dev: false
resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
'@types/react': '*'
@@ -6388,28 +6381,28 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.0.4(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-portal': 1.0.4(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.0.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.0.4(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-portal': 1.0.4(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.0.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.5(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.5(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
peerDependencies:
'@types/react': '*'
@@ -6423,26 +6416,26 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -6451,12 +6444,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
@@ -6465,7 +6458,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -6475,7 +6468,7 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/primitive': 1.0.0
'@radix-ui/react-compose-refs': 1.0.0([email protected])
'@radix-ui/react-primitive': 1.0.0([email protected])([email protected])
@@ -6485,7 +6478,7 @@ packages:
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -6498,18 +6491,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -6522,19 +6515,19 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
peerDependencies:
'@types/react': '*'
@@ -6548,17 +6541,17 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==}
peerDependencies:
'@types/react': '*'
@@ -6572,13 +6565,13 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
@@ -6588,11 +6581,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -6601,12 +6594,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==}
peerDependencies:
'@types/react': '*'
@@ -6615,7 +6608,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -6625,7 +6618,7 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-compose-refs': 1.0.0([email protected])
'@radix-ui/react-primitive': 1.0.0([email protected])([email protected])
'@radix-ui/react-use-callback-ref': 1.0.0([email protected])
@@ -6633,7 +6626,7 @@ packages:
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -6646,16 +6639,16 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -6668,17 +6661,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
peerDependencies:
'@types/react': '*'
@@ -6691,10 +6684,10 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -6713,12 +6706,12 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-use-layout-effect': 1.0.0([email protected])
react: 18.3.1
dev: false
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -6727,13 +6720,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
@@ -6742,12 +6735,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==}
peerDependencies:
'@types/react': '*'
@@ -6760,14 +6753,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==}
peerDependencies:
'@types/react': '*'
@@ -6781,29 +6774,29 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-roving-focus': 1.1.0(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-roving-focus': 1.1.0(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-3y1A3isulwnWhvTTwmIreiB8CF4L+qRjZnK1wYLO7pplddzXKby/GnZ2M7OZY3qgnl6p9AodUIHRYGXNah8Y7g==}
peerDependencies:
'@types/react': '*'
@@ -6817,27 +6810,27 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -6850,23 +6843,23 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@floating-ui/react-dom': 2.1.1([email protected])([email protected])
- '@radix-ui/react-arrow': 1.0.3(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-rect': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-size': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-arrow': 1.0.3(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-rect': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-size': 1.0.1(@types/[email protected])([email protected])
'@radix-ui/rect': 1.0.1
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==}
peerDependencies:
'@types/react': '*'
@@ -6880,16 +6873,16 @@ packages:
optional: true
dependencies:
'@floating-ui/react-dom': 2.1.1([email protected])([email protected])
- '@radix-ui/react-arrow': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-rect': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-arrow': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-rect': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
'@radix-ui/rect': 1.1.0
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -6901,13 +6894,13 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-primitive': 1.0.0([email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -6920,14 +6913,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -6940,15 +6933,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
peerDependencies:
'@types/react': '*'
@@ -6961,9 +6954,9 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -6975,14 +6968,14 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-compose-refs': 1.0.0([email protected])
'@radix-ui/react-use-layout-effect': 1.0.0([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -6995,16 +6988,16 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==}
peerDependencies:
'@types/react': '*'
@@ -7017,9 +7010,9 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -7031,13 +7024,13 @@ packages:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-slot': 1.0.0([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -7050,15 +7043,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
peerDependencies:
'@types/react': '*'
@@ -7071,14 +7064,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-aSzvnYpP725CROcxAOEBVZZSIQVQdHgBr2QQFKySsaD14u8dNT0batuXI+AAGDdAHfXH8rbnHmjYFqVJ21KkRg==}
peerDependencies:
'@types/react': '*'
@@ -7091,14 +7084,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==}
peerDependencies:
'@types/react': '*'
@@ -7112,20 +7105,20 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-9ArIZ9HWhsrfqS765h+GZuLoxaRHD/j0ZWOWilsCvYTpYJp8XwCqNG7Dt9Nu/TItKOdgLGkOPCodQvDc+UMwYg==}
peerDependencies:
'@types/react': '*'
@@ -7140,19 +7133,19 @@ packages:
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -7165,34 +7158,34 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.0.3(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-popper': 1.1.2(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.0.3(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-use-previous': 1.0.1(@types/[email protected])([email protected])
- '@radix-ui/react-visually-hidden': 1.0.3(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.0.3(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.0.3(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-popper': 1.1.2(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.0.3(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.0.2(@types/[email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-use-previous': 1.0.1(@types/[email protected])([email protected])
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.5(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.5(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-8iRDfyLtzxlprOo9IicnzvpsO1wNCkuwzzCM+Z5Rb5tNOpCdMvcc2AkzX0Fz+Tz9v6NJ5B/7EEgyZveo4FBRfQ==}
peerDependencies:
'@types/react': '*'
@@ -7207,32 +7200,32 @@ packages:
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-focus-guards': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-focus-scope': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
+ react-remove-scroll: 2.5.7(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==}
peerDependencies:
'@types/react': '*'
@@ -7245,13 +7238,13 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-dAHCDA4/ySXROEPaRtaMV5WHL8+JB/DbtyTbJjYkY0RXmKMO2Ln8DFZhywG5/mVQ4WqHDBc8smc14yPXPqZHYA==}
peerDependencies:
'@types/react': '*'
@@ -7266,16 +7259,16 @@ packages:
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
@@ -7285,12 +7278,12 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-compose-refs': 1.0.0([email protected])
react: 18.3.1
dev: false
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -7299,13 +7292,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
peerDependencies:
'@types/react': '*'
@@ -7314,12 +7307,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-OBzy5WAj641k0AOSpKQtreDMe+isX0MQJ1IVyF03ucdF3DunOnROVrjWs8zsXUxC3zfZ6JL9HFVCUlMghz9dJw==}
peerDependencies:
'@types/react': '*'
@@ -7333,18 +7326,18 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-previous': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==}
peerDependencies:
'@types/react': '*'
@@ -7358,19 +7351,19 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-roving-focus': 1.1.0(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-direction': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-roving-focus': 1.1.0(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-5trl7piMXcZiCq7MW6r8YYmu0bK5qDpTWz+FdEPdKyft2UixkspheYbjbrLXVN5NGKHFbOP7lm8eD0biiSqZqg==}
peerDependencies:
'@types/react': '*'
@@ -7384,24 +7377,24 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-collection': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-9XRsLwe6Yb9B/tlnYCPVUd/TFS4J7HuOZW345DCeC6vKIxQGMZdx21RK4VoZauPD5frgkXTYVS5y90L+3YBn4w==}
peerDependencies:
'@types/react': '*'
@@ -7415,18 +7408,18 @@ packages:
optional: true
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
- '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-portal': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-presence': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -7437,11 +7430,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -7450,12 +7443,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
'@types/react': '*'
@@ -7464,7 +7457,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -7473,12 +7466,12 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-use-callback-ref': 1.0.0([email protected])
react: 18.3.1
dev: false
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -7487,13 +7480,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
'@types/react': '*'
@@ -7502,8 +7495,8 @@ packages:
'@types/react':
optional: true
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -7512,12 +7505,12 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/react-use-callback-ref': 1.0.0([email protected])
react: 18.3.1
dev: false
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -7526,13 +7519,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
'@types/react': '*'
@@ -7541,8 +7534,8 @@ packages:
'@types/react':
optional: true
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -7551,11 +7544,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -7564,12 +7557,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
'@types/react': '*'
@@ -7578,11 +7571,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -7591,12 +7584,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
'@types/react': '*'
@@ -7605,11 +7598,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -7618,13 +7611,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
'@radix-ui/rect': 1.0.1
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
peerDependencies:
'@types/react': '*'
@@ -7634,11 +7627,11 @@ packages:
optional: true
dependencies:
'@radix-ui/rect': 1.1.0
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -7647,13 +7640,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
'@types/react': '*'
@@ -7662,12 +7655,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -7680,14 +7673,14 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@babel/runtime': 7.25.4
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
peerDependencies:
'@types/react': '*'
@@ -7700,8 +7693,8 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@types/react': 18.3.3
+ '@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@types/react': 18.3.4
'@types/react-dom': 18.3.0
react: 18.3.1
react-dom: 18.3.1([email protected])
@@ -7710,33 +7703,33 @@ packages:
/@radix-ui/[email protected]:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
dev: false
/@radix-ui/[email protected]:
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
dev: false
- resolution: {integrity: sha512-N0Cy61WCIv+57mbqC7hiZAsB+3rF5n4JKabxUmg/2RTJL6lq7hJ5N4gx75ymKxkN8GnVDwt4pKZah48Wopa5jw==}
+ resolution: {integrity: sha512-Jc/IY+StjA3uqN73o6txKQ527RFU7gnG5crEl5Xy3V+gbYp2O5L3ezAo/E0Ipi2cyMbG6T5Iit1IDs7hcGu8aw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
dependencies:
- '@react-aria/interactions': 3.22.1([email protected])
- '@react-aria/utils': 3.25.1([email protected])
+ '@react-aria/interactions': 3.22.2([email protected])
+ '@react-aria/utils': 3.25.2([email protected])
'@react-types/shared': 3.24.1([email protected])
'@swc/helpers': 0.5.12
clsx: 2.1.1
react: 18.3.1
dev: false
- resolution: {integrity: sha512-5TLzQaDAQQ5C70yG8GInbO4wIylKY67RfTIIwQPGR/4n5OIjbUD8BOj3NuSsuZ/frUPaBXo1VEBBmSO23fxkjw==}
+ resolution: {integrity: sha512-xE/77fRVSlqHp2sfkrMeNLrqf2amF/RyuAS6T5oDJemRSgYM3UoxTbWjucPhfnoW7r32pFPHHgz4lbdX8xqD/g==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
dependencies:
'@react-aria/ssr': 3.9.5([email protected])
- '@react-aria/utils': 3.25.1([email protected])
+ '@react-aria/utils': 3.25.2([email protected])
'@react-types/shared': 3.24.1([email protected])
'@swc/helpers': 0.5.12
react: 18.3.1
@@ -7752,21 +7745,21 @@ packages:
react: 18.3.1
dev: false
- resolution: {integrity: sha512-5Uj864e7T5+yj78ZfLnfHqmypLiqW2mN+nsdslog2z5ssunTqjolVeM15ootXskjISlZ7MojLpq97kIC4nlnAw==}
+ resolution: {integrity: sha512-GdIvG8GBJJZygB4L2QJP1Gabyn2mjFsha73I2wSe+o4DYeGWoJiMZRM06PyTIxLH4S7Sn7eVDtsSBfkc2VY/NA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
dependencies:
'@react-aria/ssr': 3.9.5([email protected])
- '@react-stately/utils': 3.10.2([email protected])
+ '@react-stately/utils': 3.10.3([email protected])
'@react-types/shared': 3.24.1([email protected])
'@swc/helpers': 0.5.12
clsx: 2.1.1
react: 18.3.1
dev: false
- resolution: {integrity: sha512-fh6OTQtbeQC0ywp6LJuuKs6tKIgFvt/DlIZEcIpGho6/oZG229UnIk6TUekwxnDbumuYyan6D9EgUtEMmT8UIg==}
+ resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
dependencies:
@@ -7786,7 +7779,7 @@ packages:
resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==}
dev: false
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -7797,7 +7790,7 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@rollup/pluginutils': 3.1.0([email protected])
rollup: 2.79.1
@@ -7819,7 +7812,7 @@ packages:
estree-walker: 2.0.2
glob: 10.4.5
is-reference: 1.2.1
- magic-string: 0.30.10
+ magic-string: 0.30.11
rollup: 3.29.4
dev: false
@@ -7898,128 +7891,128 @@ packages:
rollup: 3.29.4
dev: false
- /@rollup/[email protected]:
- resolution: {integrity: sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==}
cpu: [arm]
os: [android]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==}
cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: false
optional: true
- /@rollup/[email protected]:
- resolution: {integrity: sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==}
+ /@rollup/[email protected]:
+ resolution: {integrity: sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==}
cpu: [x64]
os: [win32]
requiresBuild: true
@@ -8029,7 +8022,7 @@ packages:
resolution: {integrity: sha512-E6cACNVsm+NUhn7dzocQoKyXI7BHrHRRm5Ab23yrAzEQ2caWocCEYJhqDlc4KRVJBkQfXZfyWm8+2d0uggFuZg==}
dependencies:
- rrweb-snapshot: 2.0.0-alpha.16
+ rrweb-snapshot: 2.0.0-alpha.17
dev: false
/@rushstack/[email protected]:
@@ -8055,42 +8048,42 @@ packages:
'@daybrush/utils': 1.13.0
dev: false
- /@sentry-internal/[email protected]:
- resolution: {integrity: sha512-GGYNiELnT4ByidHyS4/M8UF8Oxagm5R13QyTncQGq8nZcQhcFZ9mdxLnf1/R4+j44Fph2Cgzafe8jGP/AMA9zw==}
+ /@sentry-internal/[email protected]:
+ resolution: {integrity: sha512-YTIwQ1GM1NTRXgN4DvpFSQ2x4pjlqQ0FQAyHW5x2ZYv4z7VmqG4Xkid1P/srQUipECk6nxkebfD4WR19nLsvnQ==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
- /@sentry-internal/[email protected]:
- resolution: {integrity: sha512-mFvAoVpVShkDB2AgEr/dE96NSTPKI/lGMBznZMg7ZEcwZhLfH7HvLYCadIskRfzqFTLOUpbm9ciIO4SyR/4bDA==}
+ /@sentry-internal/[email protected]:
+ resolution: {integrity: sha512-b71PQc9aK1X9b/SO1DiJlrnAEx4n0MzPZQ/tKd9oRWDyGit6pJWZfQns9r2rvc96kJPMOTxFAa/upXRCkA723A==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
- /@sentry-internal/[email protected]:
- resolution: {integrity: sha512-LXV/pMH9KMw6CtImenMsiBkYIFIc97pDJ/rC7mVImKIROQ45fxGp/JBXM4Id0GENyA2+SySMWVQCAAapSfHZTw==}
+ /@sentry-internal/[email protected]:
+ resolution: {integrity: sha512-uuEfiWbjwugB9M4KxXxovHYiKRqg/R6U4EF8xM/Ub4laUuEcWsfRp7lQ3MxL3qYojbca8ncIFic2bIoKMPeejA==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry-internal/replay': 8.20.0
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry-internal/replay': 8.27.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
- /@sentry-internal/[email protected]:
- resolution: {integrity: sha512-sCiI7SOAHq5XsxkixtoMofeSyKd/hVgDV+4145f6nN9m7nLzig4PBQwh2SgK2piJ2mfaXfqcdzA1pShPYldaJA==}
+ /@sentry-internal/[email protected]:
+ resolution: {integrity: sha512-Ofucncaon98dvlxte2L//hwuG9yILSxNrTz/PmO0k+HzB9q+oBic4667QF+azWR2qv4oKSWpc+vEovP3hVqveA==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry-internal/browser-utils': 8.20.0
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry-internal/browser-utils': 8.27.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
@@ -8098,26 +8091,26 @@ packages:
engines: {node: '>= 14'}
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-JDZbCreY44/fHYN28QzsAwEHXa2rc1hzM6GE4RSlXCdAhNfrjVxyYDxhw/50pVEHZg1WXxf7ZmERjocV5VJHsw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-eL1eaHwoYUGkp4mpeYesH6WtCrm+0u9jYCW5Lm0MAeTmpx22BZKEmj0OljuUJXGnJwFbvPDlRjyz6QG11m8kZA==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry-internal/browser-utils': 8.20.0
- '@sentry-internal/feedback': 8.20.0
- '@sentry-internal/replay': 8.20.0
- '@sentry-internal/replay-canvas': 8.20.0
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry-internal/browser-utils': 8.27.0
+ '@sentry-internal/feedback': 8.27.0
+ '@sentry-internal/replay': 8.27.0
+ '@sentry-internal/replay-canvas': 8.27.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
resolution: {integrity: sha512-6ipbmGzHekxeRCbp7eoefr6bdd/lW4cNA9eNnrmd9+PicubweGaZZbH2NjhFHsaxzgOezwipDHjrTaap2kTHgw==}
engines: {node: '>= 14'}
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@sentry/babel-plugin-component-annotate': 2.20.1
- '@sentry/cli': 2.33.0
+ '@sentry/cli': 2.33.1
dotenv: 16.4.5
find-up: 5.0.0
glob: 9.3.5
@@ -8128,16 +8121,16 @@ packages:
- supports-color
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-LQFvD7uCOQ2P/vYru7IBKqJDHwJ9Rr2vqqkdjbxe2YCQS/N3NPXvi3eVM9hDJ284oyV/BMZ5lrmVTuIicf/hhw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-+4/VIx/E1L2hChj5nGf5MHyEPHUNHJ/HoG5RY+B+vyEutGily1c1+DM2bum7RbD0xs6wKLIyup5F02guzSzG8A==}
engines: {node: '>=10'}
os: [darwin]
requiresBuild: true
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-mR2ZhqpU8RBVGLF5Ji19iOmVznk1B7Bzg5VhA8bVPuKsQmFN/3SyqE87IPMhwKoAsSRXyctwmbAkKs4240fxGA==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-DbGV56PRKOLsAZJX27Jt2uZ11QfQEMmWB4cIvxkKcFVE+LJP4MVA+MGGRUL6p+Bs1R9ZUuGbpKGtj0JiG6CoXw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux, freebsd]
@@ -8145,8 +8138,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-gY1bFE7wjDJc7WiNq1AS0WrILqLLJUw6Ou4pFQS45KjaH3/XJ1eohHhGJNy/UBHJ/Gq32b/BA9vsnWTXClZJ7g==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-zbxEvQju+tgNvzTOt635le4kS/Fbm2XC2RtYbCTs034Vb8xjrAxLnK0z1bQnStUV8BkeBHtsNVrG+NSQDym2wg==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux, freebsd]
@@ -8154,8 +8147,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-XPIy0XpqgAposHtWsy58qsX85QnZ8q0ktBuT4skrsCrLMzfhoQg4Ua+YbUr3RvE814Rt8Hzowx2ar2Rl3pyCyw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-g2LS4oPXkPWOfKWukKzYp4FnXVRRSwBxhuQ9eSw2peeb58ZIObr4YKGOA/8HJRGkooBJIKGaAR2mH2Pk1TKaiA==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [linux, freebsd]
@@ -8163,8 +8156,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-qe1DdCUv4tmqS03s8RtCkEX9vCW2G+NgOxX6jZ5jN/sKDwjUlquljqo7JHUGSupkoXmymnNPm5By3rNr6VyNHg==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-IV3dcYV/ZcvO+VGu9U6kuxSdbsV2kzxaBwWUQxtzxJ+cOa7J8Hn1t0koKGtU53JVZNBa06qJWIcqgl4/pCuKIg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux, freebsd]
@@ -8172,8 +8165,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-VEXWtJ69C3b+kuSmXQJRwdQ0ypPGH88hpqyQuosbAOIqh/sv4g9B/u1ETHZc+whLdFDpPcTLVMbLDbXTGug0Yg==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-F7cJySvkpzIu7fnLKNHYwBzZYYwlhoDbAUnaFX0UZCN+5DNp/5LwTp37a5TWOsmCaHMZT4i9IO4SIsnNw16/zQ==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [win32]
@@ -8181,8 +8174,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-GIUKysZ1xbSklY9h1aVaLMSYLsnMSd+JuwQLR+0wKw2wJC4O5kNCPFSGikhiOZM/kvh3GO1WnXNyazFp8nLAzw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-8VyRoJqtb2uQ8/bFRKNuACYZt7r+Xx0k2wXRGTyH05lCjAiVIXn7DiS2BxHFty7M1QEWUCMNsb/UC/x/Cu2wuA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -8190,8 +8183,8 @@ packages:
dev: false
optional: true
- /@sentry/[email protected]:
- resolution: {integrity: sha512-9MOzQy1UunVBhPOfEuO0JH2ofWAMmZVavTTR/Bo2CkJwI1qjyVF0UKLTXE3l4ujiJnFufOoBsVyKmYWXFerbCw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-dUlZ4EFh98VFRPJ+f6OW3JEYQ7VvqGNMa0AMcmvk07ePNeK/GicAWmSQE4ZfJTTl80ul6HZw1kY01fGQOQlVRA==}
engines: {node: '>= 10'}
hasBin: true
requiresBuild: true
@@ -8202,28 +8195,28 @@ packages:
proxy-from-env: 1.1.0
which: 2.0.2
optionalDependencies:
- '@sentry/cli-darwin': 2.33.0
- '@sentry/cli-linux-arm': 2.33.0
- '@sentry/cli-linux-arm64': 2.33.0
- '@sentry/cli-linux-i686': 2.33.0
- '@sentry/cli-linux-x64': 2.33.0
- '@sentry/cli-win32-i686': 2.33.0
- '@sentry/cli-win32-x64': 2.33.0
+ '@sentry/cli-darwin': 2.33.1
+ '@sentry/cli-linux-arm': 2.33.1
+ '@sentry/cli-linux-arm64': 2.33.1
+ '@sentry/cli-linux-i686': 2.33.1
+ '@sentry/cli-linux-x64': 2.33.1
+ '@sentry/cli-win32-i686': 2.33.1
+ '@sentry/cli-win32-x64': 2.33.1
transitivePeerDependencies:
- encoding
- supports-color
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-R81snuw+67VT4aCxr6ShST/s0Y6FlwN2YczhDwaGyzumn5rlvA6A4JtQDeExduNoDDyv4T3LrmW8wlYZn3CJJw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-4frlXluHT3Du+Omw91K04jpvbfMtydvg4Bxj2+gt/DT19Swhm/fbEpzdUjgbAd3Jinj/n0qk/jFRXjr9JZKFjg==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
- resolution: {integrity: sha512-ZMi50qeklxibnNehlghNvlmzz1NIvYUGglDMy/m/N67SfXiq5PXyVziJAoCKQXR7nrvoQx0Mx17Z9ZFIwgjSJQ==}
+ resolution: {integrity: sha512-fJgyBZj+arrNDtmxyKlWBm9ApxyzU3ydZPviSK3ub9gJemk0YqW/IKjF3PojtqLvtBnT81heDb/cysBadb+WpA==}
engines: {node: '>=14.18'}
peerDependencies:
next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0
@@ -8233,22 +8226,22 @@ packages:
optional: true
dependencies:
'@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
'@rollup/plugin-commonjs': 26.0.1([email protected])
- '@sentry/core': 8.20.0
- '@sentry/node': 8.20.0
- '@sentry/opentelemetry': 8.20.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
- '@sentry/react': 8.20.0([email protected])
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
- '@sentry/vercel-edge': 8.20.0
- '@sentry/webpack-plugin': 2.20.1([email protected])
+ '@sentry/core': 8.27.0
+ '@sentry/node': 8.27.0
+ '@sentry/opentelemetry': 8.27.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
+ '@sentry/react': 8.27.0([email protected])
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
+ '@sentry/vercel-edge': 8.27.0
+ '@sentry/webpack-plugin': 2.20.1([email protected])
chalk: 3.0.0
resolve: 1.22.8
rollup: 3.29.4
stacktrace-parser: 0.1.10
- webpack: 5.93.0([email protected])
+ webpack: 5.94.0([email protected])
transitivePeerDependencies:
- '@opentelemetry/api'
- '@opentelemetry/core'
@@ -8259,8 +8252,8 @@ packages:
- supports-color
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-i4ywT2m0Gw65U3uwI4NwiNcyqp9YF6/RsusfH1pg4YkiL/RYp7FS0MPVgMggfvoue9S3KjCgRVlzTLwFATyPXQ==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-nE2VPSHOW/tzH/lB6CoBtYkmXqXncUuWMC56RLRiPyHEXDktZx8oFp364/3m117iKOjO0XHP57Kl5cdb90IM7g==}
engines: {node: '>=14.18'}
dependencies:
'@opentelemetry/api': 1.9.0
@@ -8268,8 +8261,9 @@ packages:
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation-connect': 0.38.0(@opentelemetry/[email protected])
- '@opentelemetry/instrumentation-express': 0.41.0(@opentelemetry/[email protected])
+ '@opentelemetry/instrumentation-express': 0.41.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation-fastify': 0.38.0(@opentelemetry/[email protected])
+ '@opentelemetry/instrumentation-fs': 0.14.0(@opentelemetry/[email protected])
'@opentelemetry/instrumentation-graphql': 0.42.0(@opentelemetry/[email protected])
'@opentelemetry/instrumentation-hapi': 0.40.0(@opentelemetry/[email protected])
'@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/[email protected])
@@ -8284,21 +8278,21 @@ packages:
'@opentelemetry/instrumentation-redis-4': 0.41.0(@opentelemetry/[email protected])
'@opentelemetry/resources': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
- '@prisma/instrumentation': 5.17.0
- '@sentry/core': 8.20.0
- '@sentry/opentelemetry': 8.20.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
- import-in-the-middle: 1.10.0
+ '@opentelemetry/semantic-conventions': 1.26.0
+ '@prisma/instrumentation': 5.18.0
+ '@sentry/core': 8.27.0
+ '@sentry/opentelemetry': 8.27.0(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
+ import-in-the-middle: 1.11.0
optionalDependencies:
opentelemetry-instrumentation-fetch-node: 1.2.3(@opentelemetry/[email protected])
transitivePeerDependencies:
- supports-color
dev: false
- /@sentry/[email protected](@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected]):
- resolution: {integrity: sha512-NFcLK6+t9wUc4HlGKeuDn6W4KjZxZfZmWlrK2/tgC5KzG1cnVeOnWUrJzGHTa+YDDdIijpjiFUcpXGPkX3rmIg==}
+ /@sentry/[email protected](@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected])(@opentelemetry/[email protected]):
+ resolution: {integrity: sha512-FRz7ApnyZYDFmi2CWUhKBux2N/0WswRLHwHDZ31FYCajujw7vQKucgdsxDW2RIRPWDwcMxHY1kvt6EzM1hIsxQ==}
engines: {node: '>=14.18'}
peerDependencies:
'@opentelemetry/api': ^1.9.0
@@ -8311,48 +8305,48 @@ packages:
'@opentelemetry/core': 1.25.1(@opentelemetry/[email protected])
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/[email protected])
'@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@opentelemetry/semantic-conventions': 1.26.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
- resolution: {integrity: sha512-vqA0o9ysdfA24/ADhsJwsmCNdUWRu2ycmVN1Sr76v+ZggyOCFzE7XD13kbqk1G3jPb8nptNu/6Zwpcy5pP4mtw==}
+ resolution: {integrity: sha512-8pD+J9UVnSGmPnm5dHJup5OVsHTN/pL4Ozi01yyrpivLkQiMZNac3OXsc0C7zXnztfLQx0kmTyCOzbRROfbpnA==}
engines: {node: '>=14.18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
dependencies:
- '@sentry/browser': 8.20.0
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry/browser': 8.27.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-6IP278KojOpiAA7vrd1hjhUyn26cl0n0nGsShzic5ztCVs92sTeVRnh7MTB9irDVtAbOEyt/YH6go3h+Jia1pA==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-B6lrP46+m2x0lfqWc9F4VcUbN893mVGnPEd7KIMRk95mPzkFJ3sNxggTQF5/ZfNO7lDQYQb22uysB5sj/BqFiw==}
engines: {node: '>=14.18'}
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-+1I5H8dojURiEUGPliDwheQk8dhjp8uV1sMccR/W/zjFrt4wZyPs+Ttp/V7gzm9LDJoNek9tmELert/jQqWTgg==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-gyJM3SyLQe0A3mkQVVNdKYvk3ZoikkYgyA/D+5StFNLKdyUgEbJgXOGXrQSSYPF7BSX6Sc5b0KHCglPII0KuKw==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry/types': 8.20.0
+ '@sentry/types': 8.27.0
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-4UiK72M9mf3++YapeIdwUcF0d1uzWfgYm8fx3YgEz6bQUdrts3Jg4e+dbvpv57uUAiTnNN3JKZmkT1ep9ZonKw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-ZBi8JHLQ1lUzw/nKMvGq1rFZTFkC3nhN4CeRLfFdTN3w3+76yejOnvSZZ6+Fl01kfdl6ThRnFdBvfNuXzjC9cQ==}
engines: {node: '>=14.18'}
dependencies:
- '@sentry/core': 8.20.0
- '@sentry/types': 8.20.0
- '@sentry/utils': 8.20.0
+ '@sentry/core': 8.27.0
+ '@sentry/types': 8.27.0
+ '@sentry/utils': 8.27.0
dev: false
resolution: {integrity: sha512-U6LzoE09Ndt0OCWROoRaZqqIHGxyMRdKpBhbqoBqyyfVwXN/zGW3I/cWZ1e8rreiKFj+2+c7+X0kOS+NGMTUrg==}
engines: {node: '>= 14'}
peerDependencies:
@@ -8361,7 +8355,7 @@ packages:
'@sentry/bundler-plugin-core': 2.20.1
unplugin: 1.0.1
uuid: 9.0.1
- webpack: 5.93.0([email protected])
+ webpack: 5.94.0([email protected])
transitivePeerDependencies:
- encoding
- supports-color
@@ -8413,20 +8407,20 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==}
dependencies:
'@smithy/util-base64': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8437,21 +8431,23 @@ packages:
'@smithy/types': 3.3.0
'@smithy/util-config-provider': 3.0.0
'@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-BC7VMXx/1BCmRPCVzzn4HGWAtsrb7/0758EtwOGFJQrlSwJBEjCcDLNZLFoL/68JexYa2s+KmgL/UfmXdG6v1w==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-cHXq+FneIF/KJbt4q4pjN186+Jf4ZB0ZOqEaZMBhT79srEyGDDBV31NqBRBjazz8ppQ1bJbDJMY9ba5wKFV36w==}
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/middleware-endpoint': 3.1.0
- '@smithy/middleware-retry': 3.0.13
+ '@smithy/middleware-retry': 3.0.15
'@smithy/middleware-serde': 3.0.3
'@smithy/protocol-http': 4.1.0
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
+ '@smithy/util-body-length-browser': 3.0.0
'@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.7.0
dev: false
@@ -8462,7 +8458,7 @@ packages:
'@smithy/property-provider': 3.1.3
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8471,16 +8467,16 @@ packages:
'@aws-crypto/crc32': 5.2.0
'@smithy/types': 3.3.0
'@smithy/util-hex-encoding': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-2hM54UWQUOrki4BtsUI1WzmD13/SeaqT/AB3EUJKbcver/WgKNaiJ5y5F5XXuVe6UekffVzuUDrBZVAA3AWRpQ==}
engines: {node: '>=16.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.4
+ '@smithy/eventstream-serde-universal': 3.0.5
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8488,25 +8484,25 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-+upXvnHNyZP095s11jF5dhGw/Ihzqwl5G+/KtMnoQOpdfC3B5HYCcDVG9EmgkhJMXJlM64PyN5gjJl0uXFQehQ==}
engines: {node: '>=16.0.0'}
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.4
+ '@smithy/eventstream-serde-universal': 3.0.5
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-5u/nXbyoh1s4QxrvNre9V6vfyoLWuiVvvd5TlZjGThIikc3G+uNiG9uOTCWweSRjv1asdDIWK7nOmN7le4RYHQ==}
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/eventstream-codec': 3.1.2
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8516,7 +8512,7 @@ packages:
'@smithy/querystring-builder': 3.0.3
'@smithy/types': 3.3.0
'@smithy/util-base64': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8525,7 +8521,7 @@ packages:
'@smithy/chunked-blob-reader': 3.0.0
'@smithy/chunked-blob-reader-native': 3.0.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8535,7 +8531,7 @@ packages:
'@smithy/types': 3.3.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8544,28 +8540,28 @@ packages:
dependencies:
'@smithy/types': 3.3.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw==}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8573,7 +8569,7 @@ packages:
dependencies:
'@smithy/types': 3.3.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8582,7 +8578,7 @@ packages:
dependencies:
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8595,21 +8591,21 @@ packages:
'@smithy/types': 3.3.0
'@smithy/url-parser': 3.0.3
'@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-zvCLfaRYCaUmjbF2yxShGZdolSHft7NNCTA28HVN9hKcEbOH+g5irr1X9s+in8EpambclGnevZY4A3lYpvDCFw==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-iTMedvNt1ApdvkaoE8aSDuwaoc+BhvHqttbA/FO4Ty+y/S5hW6Ci/CTScG7vam4RYJWZxdTElc3MEfHRVH6cgQ==}
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/node-config-provider': 3.1.4
'@smithy/protocol-http': 4.1.0
'@smithy/service-error-classification': 3.0.3
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
'@smithy/util-middleware': 3.0.3
'@smithy/util-retry': 3.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
uuid: 9.0.1
dev: false
@@ -8618,7 +8614,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8626,7 +8622,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8636,7 +8632,7 @@ packages:
'@smithy/property-provider': 3.1.3
'@smithy/shared-ini-file-loader': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8647,7 +8643,7 @@ packages:
'@smithy/protocol-http': 4.1.0
'@smithy/querystring-builder': 3.0.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8655,7 +8651,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8663,7 +8659,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8672,7 +8668,7 @@ packages:
dependencies:
'@smithy/types': 3.3.0
'@smithy/util-uri-escape': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8680,7 +8676,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8695,7 +8691,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8709,11 +8705,11 @@ packages:
'@smithy/util-middleware': 3.0.3
'@smithy/util-uri-escape': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-l0BpyYkciNyMaS+PnFFz4aO5sBcXvGLoJd7mX9xrMBIm2nIQBVvYgp2ZpPDMzwjKCavsXu06iuCm0F6ZJZc6yQ==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-pDbtxs8WOhJLJSeaF/eAbPgXg4VVYFlRcL/zoNYA5WbG3wBL06CHtBSg53ppkttDpAJ/hdiede+xApip1CwSLw==}
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/middleware-endpoint': 3.1.0
@@ -8721,14 +8717,14 @@ packages:
'@smithy/protocol-http': 4.1.0
'@smithy/types': 3.3.0
'@smithy/util-stream': 3.1.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8736,7 +8732,7 @@ packages:
dependencies:
'@smithy/querystring-parser': 3.0.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8745,20 +8741,20 @@ packages:
dependencies:
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8766,7 +8762,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
'@smithy/is-array-buffer': 2.2.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8774,38 +8770,38 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/is-array-buffer': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-ZIRSUsnnMRStOP6OKtW+gCSiVFkwnfQF2xtf32QKAbHR6ACjhbAybDvry+3L5qQYdh3H6+7yD/AiUE45n8mTTw==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-FZ4Psa3vjp8kOXcd3HJOiDPBCWtiilLl57r0cnNtq/Ga9RSDrM5ERL6xt+tO43+2af6Pn5Yp92x2n5vPuduNfg==}
engines: {node: '>= 10.0.0'}
dependencies:
'@smithy/property-provider': 3.1.3
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
bowser: 2.11.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- /@smithy/[email protected]:
- resolution: {integrity: sha512-voUa8TFJGfD+U12tlNNLCDlXibt9vRdNzRX45Onk/WxZe7TS+hTOZouEZRa7oARGicdgeXvt1A0W45qLGYdy+g==}
+ /@smithy/[email protected]:
+ resolution: {integrity: sha512-KSyAAx2q6d0t6f/S4XB2+3+6aQacm3aLMhs9aLMqn18uYGUepbdssfogW5JQZpc6lXNBnp0tEnR5e9CEKmEd7A==}
engines: {node: '>= 10.0.0'}
dependencies:
'@smithy/config-resolver': 3.0.5
'@smithy/credential-provider-imds': 3.2.0
'@smithy/node-config-provider': 3.1.4
'@smithy/property-provider': 3.1.3
- '@smithy/smithy-client': 3.1.11
+ '@smithy/smithy-client': 3.2.0
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8814,14 +8810,14 @@ packages:
dependencies:
'@smithy/node-config-provider': 3.1.4
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8829,7 +8825,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8838,7 +8834,7 @@ packages:
dependencies:
'@smithy/service-error-classification': 3.0.3
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8852,14 +8848,14 @@ packages:
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-hex-encoding': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==}
engines: {node: '>=16.0.0'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8867,7 +8863,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
'@smithy/util-buffer-from': 2.2.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8875,7 +8871,7 @@ packages:
engines: {node: '>=16.0.0'}
dependencies:
'@smithy/util-buffer-from': 3.0.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -8884,7 +8880,7 @@ packages:
dependencies:
'@smithy/abort-controller': 3.1.1
'@smithy/types': 3.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
/@socket.io/[email protected]:
@@ -8900,25 +8896,145 @@ packages:
string.prototype.matchall: 4.0.11
dev: false
+ resolution: {integrity: sha512-MwLc5U+VGPMZm8MjlFBjEB2wyT1EK0NNJ3tn+ps9fmxdFP+PL8EpMiY1O1F2t1ydy2OzBtZz81sycjM9RieFBg==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-IkukOQUw7/14VkHp446OkYGCZEHqZg9pTmTdBawlUyz2JwZMSn2VodCl7aFSdGCsU4Cwni8zKA8CCgkCCAELhw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-ATnb6jJaBeXCqrTUawWdoOy7eP9SCI7UMcfXlYIMxX4otKKspLPAEuGA5RaNxlCcj9ObyO0J3YGbtZ6hhD2pjg==}
+ engines: {node: '>=10'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-poHtH7zL7lEp9K2inY90lGHJABWxURAOgWNeZqrcR5+jwIe7q5KBisysH09Zf/JNF9+6iNns+U0xgWTNJzBuGA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-qnNI1WmcOV7Wz1ZDyK6WrOlzLvJ01rnni8ec950mMHWkLRMP53QvCvhF3S+7gFplWBwWJTOOPPUqJp/PlSxWyQ==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-x9SCqCLzwtlqtD5At3I1a7Gco+EuXnzrJGoucmkpeQohshHuwa+cskqsXO6u1Dz0jXJEuHbBZB9va1wYYfjgFg==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-qtj8iOpMMgKjzxTv+islmEY0JBsbd93nka0gzcTTmGZxKtL5jSUsYQvkxwNPZr5M9NU1fgaR3n1vE6lFmtY0IQ==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-ltX/Ol9+Qu4SXmISCeuwVgAjSa8nzHTymknpozzVMgjXUoZMoz6lcynfKL1nCh5XLgqh0XNHUKLti5YFF8LrrA==}
+ engines: {node: '>=10'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-RgTcFP3wgyxnQbTCJrlgBJmgpeTXo8t807GU9GxApAXfpLZJ3swJ2GgFUmIJVdLWyffSHF5BEkF3FmF6mtH5AQ==}
+ engines: {node: '>=10'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-XbZ0wAgzR757+DhQcnv60Y/bK9yuWPhDNRQVFFQVRsowvK3+c6EblyfUSytIidpXgyYFzlprq/9A9ZlO/wvDWw==}
+ engines: {node: '>=10'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-qL9v5N5S38ijmqiQRvCFUUx2vmxWT/JJ2rswElnyaHkOHuVoAFhBB90Ywj4RKjh3R0zOjhEcemENTyF3q3G6WQ==}
+ engines: {node: '>=10'}
+ requiresBuild: true
+ peerDependencies:
+ '@swc/helpers': '*'
+ peerDependenciesMeta:
+ '@swc/helpers':
+ optional: true
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.12
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.7.18
+ '@swc/core-darwin-x64': 1.7.18
+ '@swc/core-linux-arm-gnueabihf': 1.7.18
+ '@swc/core-linux-arm64-gnu': 1.7.18
+ '@swc/core-linux-arm64-musl': 1.7.18
+ '@swc/core-linux-x64-gnu': 1.7.18
+ '@swc/core-linux-x64-musl': 1.7.18
+ '@swc/core-win32-arm64-msvc': 1.7.18
+ '@swc/core-win32-ia32-msvc': 1.7.18
+ '@swc/core-win32-x64-msvc': 1.7.18
+ dev: true
+
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- dev: false
resolution: {integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- resolution: {integrity: sha512-ADGcJ8dX21dVVHIwTRgzrcunY6YY9uSlAHHGVKvkA+vLc5qLwEszvKts40lx7z0qc4clpjclwLeK5rVCV2P/uw==}
+ resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
+ dependencies:
+ '@swc/counter': 0.1.3
+ dev: true
+
+ resolution: {integrity: sha512-ZvOCjUbsJBjL9CxQBn+VEnFpouzuKhxh2dH8xMIWHILL+HfOYtlAkWcyoon8LlzE53d2Yo6YO6pahKKNW3q1YQ==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
dependencies:
@@ -8926,321 +9042,369 @@ packages:
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.10
dev: false
- resolution: {integrity: sha512-9ICwbDUUzN99CJIGc373i8NLoj6zFTKI2Hlcmo0+lCSAhPQ5mxq4dGOMKmLYoEFyHcGQ64Bd6ZVbnPpM6lNK5w==}
+ resolution: {integrity: sha512-PP6QeixGyNli7edy6CmjYX9CaJiqkWzaVx5NmSnBMjjD4WOwXDjX+5JM0sNXpUjJ2gIRFl8Sno/KlZ6X1dbRfg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@tanstack/virtual-core': 3.8.3
+ '@tanstack/virtual-core': 3.10.5
react: 18.3.1
react-dom: 18.3.1([email protected])
dev: false
- /@tanstack/[email protected]:
- resolution: {integrity: sha512-vd2A2TnM5lbnWZnHi9B+L2gPtkSeOtJOAw358JqokIH1+v2J7vUAzFVPwB/wrye12RFOurffXu33plm4uQ+JBQ==}
+ /@tanstack/[email protected]:
+ resolution: {integrity: sha512-WlJp8CipNzBz8Q4g159uMfswYHZ8p1+xJwLBdnbBTcSSu0zVoY6i27Suw5J0Y88YBnJ9jHR8jJMH/qSuZWWfNw==}
dev: false
- resolution: {integrity: sha512-8fBW+yBRSc2rEDOs6P+53kF0EAmSv17M4ruQBABo18Nt5qIyr/Uo4p+/E4NkV30bKgKI1zyq1dPeznDplSseqQ==}
+ resolution: {integrity: sha512-ujlpwqI0BmZkITokpnDcXzeq44Y6MKd4qfr6E3yshn4FB70M+bhyxstxKjYWXnZu4cMS/CfuRCQpv5NxbRm7NQ==}
peerDependencies:
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ '@tiptap/suggestion': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
+ '@tiptap/suggestion': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ emoji-regex: 10.4.0
+ emojibase-data: 7.0.1([email protected])
+ is-emoji-supported: 0.0.5
+ transitivePeerDependencies:
+ - emojibase
+ dev: false
+
+ /@tiptap-pro/[email protected](@tiptap/[email protected])(@tiptap/[email protected]):
+ resolution: {integrity: sha512-2bVwGJShRb4F0IOeHQgGnlzw1nHb/t1cd3GQ2eTsFsLPVFN+4Y5/xcsHeE/gM7Ed2zLSM4vQMRutxyT9q0Kc2w==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
+ uuid: 10.0.0
+ dev: false
+
+ resolution: {integrity: sha512-VO5qTsjt6rwworkuo0s5AqYMfDA0ZwiTiH6FHKFSu2G/6sS7HKcc/LjPq+5Legzps4QYdBDl3W28wGsGuS1GdQ==}
+ peerDependencies:
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/pm': 2.5.7
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-cSnk5ViQgG6SgKnvJ5qaW47jl5qTN0oADXdcfyaY5XrbCPBGCVq1yRZlUtPU/J0YocZpjNLRRSMPVQ3wya5vtQ==}
+ resolution: {integrity: sha512-hAdsNlMfzzxld154hJqPqtWqO5i4/7HoDfuxmyqBxdMJ+e2UMaIGBGwoLRXG0V9UoRwJusjqlpyD7pIorxNlgA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-1uQjlMVsSo5rIM2ebwmn9LeROBBG6a/EHmCry+H9oKY678sBll5HMRD09o63Q4d4Sg2TB8Dx0VgLOIttVrHWXg==}
+ resolution: {integrity: sha512-CD6gBhdQtCoqYSmx8oAV8gvKtVOGZSyyvuNYo7by9eZ56DqLYnd7kbUj0RH7o9Ymf/iJTOUJ6XcvrsWwo4lubg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-gkuBuVGm5YPDRUG5Bscj6IYjDbzM7iJ2aXBGCM1rzuIiwT04twY51dKMIeseXa49uk/AQs/mqt3kGQjgSdSFAw==}
+ resolution: {integrity: sha512-IkfmlZq67aaegym5sBddBc/xXWCArxn5WJEl1oxKEayjQhybKSaqI7tk0lOx/x7fa5Ml1WlGpCFh+KKXbQTG0g==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
tippy.js: 6.3.7
dev: false
- resolution: {integrity: sha512-tPhmgFJR8jJ/rJuoHLu1XjnC1A1NjmewggArWnqgKj8gNkZDEgZSgCt8YbEVwz+9tlEGvI2T9D7PLmRVpWr8nw==}
+ resolution: {integrity: sha512-WEKxbVSYuvmX2wkHWP8HXk5nzA7stYwtdaubwWH/R17kGI3IGScJuMQ9sEN82uzJU8bfgL9yCbH2bY8Fj/Q4Ow==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-Gdy8RULDS3oYIjt7fr4IZhKey/AsSdKddxSYt9khTJLMwboMAdQ2y9CPD6yK4lKmoKjmxuzPFQJgdxKDUVB7hw==}
+ resolution: {integrity: sha512-DRef/33yEpAMiIzWoWkN5G+jzneZopeCZA3X4Zu51ZbIuT/nsx9mmm81PVs1JGb9pCHzgJRGAFCCxd+9IHILeg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-/pk/gM1CgUeCzFzbKBGG33uVsbRxi4d7g9/saI/0PUY3XN9nze8G0WHTH706pjRevMH0KZjgGLbSabxMIx5oAg==}
+ resolution: {integrity: sha512-GXzuQGKxxOmozzvwBEKdEnX1fv9R8qt9Q4Q+j3Itc+um7nYNKHDT1xNIk1BQUeu8Mr6fQVFgCu3FDybsRp9Ncw==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/extension-code-block': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/extension-code-block': ^2.6.6
+ '@tiptap/pm': ^2.6.6
+ highlight.js: ^11
+ lowlight: ^2 || ^3
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-code-block': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-code-block': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
+ highlight.js: 11.10.0
+ lowlight: 3.1.0
dev: false
- resolution: {integrity: sha512-Nm1Lx+4CxE3q817WcQXR2Vp1ntG4Let7TRpuuI9YUGBmq/7OSm1N+Y7wdRrUcUV9fHCHQFPWQvEv1uW0kFavng==}
+ resolution: {integrity: sha512-1YLp/zHMHSkE2xzht8nPR6T4sQJJ3ket798czxWuQEbetFv/l0U/mpiPpYSLObj6oTAoqYZ0kWXZj5eQSpPB8Q==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-SMIEamu2y6ROy4mWef+2U5ySwNMYkL25ekFk5O/5ZiB3h3mzt5TMCvsKqJeNy2FcLG0cYXTPK6gHBVT+8bpT9A==}
+ resolution: {integrity: sha512-JrEFKsZiLvfvOFhOnnrpA0TzCuJjDeysfbMeuKUZNV4+DhYOL28d39H1++rEtJAX0LcbBU60oC5/PrlU9SpvRQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-Cpk7C+KFPrDegwIk7u25nvPvdNv5HYYZfqxzx57u5dv1dpDxUw5XteZpRSm5NO268auvnatm1LvI3Eq2A6Rp2w==}
+ resolution: {integrity: sha512-aq2XnbWMak1yJxH2EoVKpCjFONRkZcX9D72LvvgOgtDQ62wG3/axZ75bT1B/NNfqlEp7U78Fpqib7jq/uCLYTg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/extension-text-style': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/extension-text-style': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-text-style': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-text-style': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-tcK6aleya6pmC/ForF/y2PiwPhN5hK8JSm07pcWV9FmP2Qemx26GWS+1u1EzPDeTTbRBvk+9txHGcq9NYZem0Q==}
+ resolution: {integrity: sha512-6qlH5VWzLHHRVeeciRC6C4ZHpMsAGPNG16EF53z0GeMSaaFD/zU3B239QlmqXmLsAl8bpf8Bn93N0t2ABUvScw==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-cXKMZMa6gt/ArLH02FO0qMkLvgacdobRIg2VRNMSA1a5c1S27KukVwYHoWoo40wgBctB/ctl4S0UyH6GFNgL1A==}
+ resolution: {integrity: sha512-O6CeKriA9uyHsg7Ui4z5ZjEWXQxrIL+1zDekffW0wenGC3G4LUsCzAiFS4LSrR9a3u7tnwqGApW10rdkmCGF4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-tQjNNx0gPb7GxMiozcQ4R1Tl1znmlx/ZkbCF9rqxTzPTD4fnCliqBQAWjtHl98+D8+yEJBcB2DimtP7ztkv2mg==}
+ resolution: {integrity: sha512-lPkESOfAUxgmXRiNqUU23WSyja5FUfSWjsW4hqe+BKNjsUt1OuFMEtYJtNc+MCGhhtPfFvM3Jg6g9jd6g5XsLQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
tippy.js: 6.3.7
dev: false
- resolution: {integrity: sha512-vpVeQM2KRbfPmZjiEK+Kh7GvuiZSiECezG5Y3pWb0ZG4ExSCgkmEokWXD3jGpAIprlpbbAP92/D+2inBD4e5Kg==}
+ resolution: {integrity: sha512-O2lQ2t0X0Vsbn3yLWxFFHrXY6C2N9Y6ZF/M7LWzpcDTUZeWuhoNkFE/1yOM0h6ZX1DO2A9hNIrKpi5Ny8yx+QA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-Ki1JV2cz74wo4am8vIY6KWnfiFoE68RVQDIL0/29fNz1oZI46R4VV2Q5IvoVhetXcx7Qe9nTJVqy1vRS//Kcvg==}
+ resolution: {integrity: sha512-bsUuyYBrMDEiudx1dOQSr9MzKv13m0xHWrOK+DYxuIDYJb5g+c9un5cK7Js+et/HEYYSPOoH/iTW6h+4I5YeUg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-UDUxtaslL1YZyKwoE/GzxDsOoQDoqwqhSWwYNTGJrbNA58fFR2h9UeeotMVaDveQlUwegGjqtBbTQ5aOXjzeFw==}
+ resolution: {integrity: sha512-bgx9vptVFi5yFkIw1OI53J7+xJ71Or3SOe/Q8eSpZv53DlaKpL/TzKw8Z54t1PrI2rJ6H9vrLtkvixJvBZH1Ug==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-VCH38/PqnmUcvnHX8Ws9LA4HcKcwsaAKZFgxfEVh/3k/pY4+3igxOQfxN2Dw/ooN0XUtMIMs4LqhldwVb8CVYg==}
+ resolution: {integrity: sha512-Z02AYWm1AJAfhmfT4fGCI3YitijF4uNu+eiuq7OxhCiVf9IYaq8xlH2YMxa09QvMUo70ovklxk97+vQUUHeqfQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-rsCE+pIM2sdcok4uJdq/Z4XK9P4e+2vmzxPadIgOIuXM3z0kYbOVhIpwgyrS5Z9aTE3/TQq5c8/tHP97qwepug==}
+ resolution: {integrity: sha512-tPTzAmPGqMX5Bd5H8lzRpmsaMvB9DvI5Dy2za/VQuFtxgXmDiFVgHRkRXIuluSkPTuANu84XBOQ0cBijqY8x4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-pUM+7/Kd2oJ7/QcA0ArbKw6NpN8n0RjdFFudclhdfIe557r0plmEvXSXTD0ZoOIcKgKLHD+pUFB4MgDLPIE9dg==}
+ resolution: {integrity: sha512-cFEfv7euDpuLSe8exY8buwxkreKBAZY9Hn3EetKhPcLQo+ut5Y24chZTxFyf9b+Y0wz3UhOhLTZSz7fTobLqBA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-oBXjMbDpXw+O0OK1sMZKKDm6FPeM5MZadfinIprVaAvrQrgvLF2vAW8hJH0OZUX0t8O2idhOf3n1eZb0MtKYyQ==}
+ resolution: {integrity: sha512-dwJKvoqsr72B4tcTH8hXhfBJzUMs/jXUEE9MnfzYnSXf+CYALLjF8r/IkGYbxce62GP/bMDoj8BgpF8saeHtqA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-8tLH4LNWrl8eK741u3Nkrz0ZBqntsU3lvyXKKct1FdfKhLGK6TR0tlFOY86vwvyPzfR3PYBbR319Ye3gzU6w5Q==}
+ resolution: {integrity: sha512-t7ZPsXqa8nJZZ/6D0rQyZ/KsvzLaSihC6hBTjUQ77CeDGV9PhDWjIcBW4OrvwraJDBd12ETBeQ2CkULJOgH+lQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-rxvcdV8H/TiRhR2SZfLHp7hUp5hwBAhkc6PsXEWj8lekG4/5lXGwPSPxLtHMBRtOyeJpXTv9DY6nsCGZuz9x6A==}
+ resolution: {integrity: sha512-NJSR5Yf/dI3do0+Mr6e6nkbxRQcqbL7NOPxo5Xw8VaKs2Oe8PX+c7hyqN3GZgn6uEbZdbVi1xjAniUokouwpFg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
linkifyjs: 4.1.3
dev: false
- resolution: {integrity: sha512-XRngOvLy0Jnz9KORPucQ0qRR3esjzasM9v8oUaShkuzc5s1QzQGsGshDr4TP0ORZ4FehAkKr+i0CAT3LKOaf0g==}
+ resolution: {integrity: sha512-k+oEzZu2cgVKqPqOP1HzASOKLpTEV9m7mRVPAbuaaX8mSyvIgD6f+JUx9PvgYv//D918wk98LMoRBFX53tDJ4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-hRaQ4ln/0j/99aviK9DJyjB/TDaTlpOWUvZM4N6gZOrnF5DEYEixnVBYmjfD4QsdWwoyuNmcs7GTUEFghuk0dA==}
+ resolution: {integrity: sha512-AJwyfLXIi7iUGnK5twJbwdVVpQyh7fU6OK75h1AwDztzsOcoPcxtffDlZvUOd4ZtwuyhkzYqVkeI0f+abTWZTw==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-7zmDE43jv+GMTLuWrztA6oAnYLdUki5fUjYFn0h5FPRHQTuDoxsCD+hX0N/sGQVlc8zl1yn7EYbPNn9rHi7ECw==}
+ resolution: {integrity: sha512-fD/onCr16UQWx+/xEmuFC2MccZZ7J5u4YaENh8LMnAnBXf78iwU7CAcmuc9rfAEO3qiLoYGXgLKiHlh2ZfD4wA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
resolution: {integrity: sha512-Z42jo0termRAf0S0L8oxrts94IWX5waU4isS2CUw8xCUigYyCFslkhQXkWATO1qRbjNFLKN2C9qvCgGf4UeBrw==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-8axRRnahDK4ELYy4E1SIh2uj59Wz6fD4r5PM8QgQAnXRGgGDKZMA7Re47oDX3e5t5xa0OrE1WmC0ZqcpvupnZA==}
+ resolution: {integrity: sha512-Ze8KhGk+wzSJSJRl5fbhTI6AvPu2LmcHYeO3pMEH8u4gV5WTXfmKJVStEIAzkoqvwEQVWzXvy8nDgsFQHiojPg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-6vWqs5Y1i99+KIELNSLdHI5Jz9h/Ni/gbEV6mZCRXh1ugnPDcls/k0Pnh9OWTmWUJ3VP/ir4lTSWKLG+LotD/w==}
+ resolution: {integrity: sha512-fvzy8/TN5sm3A2HSokJzHj5ZvcOAsRdqPS6fPOpmf5dQZ+EIAJrlfyxqb9B6055pNXBbuXcMEXdeU44zCU0YRg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-V881ZHHk0TN6K4vB0uVZ72X88HrYtJbbutlnwC2zUDS5/OafKOty3PxDr/jH7b7n8eL9AmvdlcjrcNaF7/G4FQ==}
+ resolution: {integrity: sha512-0N4xCCJZu0PcKoCRDywQngNNW6qlB26hyVJGDGgW53p/2zk5gdlzAA6/NxElO3iSAXKFm0QOWAg/x8E+ggDu4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-jkBNeNbZlPckO1N2i6mOatd54rhl15VuJoH0mMQezbkC7bq65p7GDuW7Px//EmZvgvNlMp0Fe50NurUoA5X28w==}
+ resolution: {integrity: sha512-WdyxULEEHfI3hRDHAFOUoeP84h9myabadfjtZrub7/zO2PKKPAZLBN2vWat5PowH8E8GYX8vqKr9vaX+slfh5g==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-vukhh2K/MsaIIs/UzIAwp44IVxTHPJcAhSsDnmJd4iPlkpjLt1eph77dfxv5awq78bj6mGvnCM0/0F6fW1C6/w==}
+ resolution: {integrity: sha512-8fO8m0/QI+rFKgZLP28GG2Nz0zhYsYd76O2Y+HsDTmMypJl/cdiNcVOWWffAwXAfMN43BNX7b1VI1XwGAMgYlg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-MOGW2ZiKvgUTIg929pNV9yuaLAmmShvNyz+b4B3je/9Ub1Fum7V7Rsqfe+840/OZYx0wprpP3YponPQ8ftQuDg==}
+ resolution: {integrity: sha512-e84uILnRzNzcwK1DVQNpXVmBG1Cq3BJipTOIDl1LHifOok7MBjhI/X+/NR0bd3N2t6gmDTWi63+4GuJ5EeDmsg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- resolution: {integrity: sha512-RPAO1QhpeGb39oEj6yHU+R+ftxmvbGZ4zicq74Wn/Pa9utz4d9raQ6jPjfs3QcbVfL8r9TKWUARSpO71MjTEsg==}
+ resolution: {integrity: sha512-0niSddtPOY7CjKGmxOBQ34VqLGxTeOfN+zICL5CLmS8B815qb1G1csXhUyHJ1wT7q8xMCAhXnGCt8b8ilmj/sg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
dev: false
- /@tiptap/[email protected]:
- resolution: {integrity: sha512-4Eb4vA4e4vesBAUmZgx+n3xjgJ58uRKKtnhFDJ3Gg+dfpXvtF8FcEwSIjHJsTlNJ8mSrzX/I7S157qPc5wZXVw==}
+ resolution: {integrity: sha512-3A4HqsDM/AFb2VaeWACpGexjgI257kz0yU4jNV8uyydDR2KhqeinuEnoSoOmx9T3pL006TWfPg4vaQYPO3qvrQ==}
+ peerDependencies:
+ '@tiptap/core': ^2.6.6
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ dev: false
+
+ resolution: {integrity: sha512-p25UnWrUYjKS7lr6bEYfmdSka67Xxylh02fdoejzuDS412oOyh1Pr0MPlRH6AT+jdolEZ7vHNF/YZ9HYjCqgJg==}
+ peerDependencies:
+ '@tiptap/core': ^2.6.6
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ dev: false
+
+ /@tiptap/[email protected]:
+ resolution: {integrity: sha512-56FGLPn3fwwUlIbLs+BO21bYfyqP9fKyZQbQyY0zWwA/AG2kOwoXaRn7FOVbjP6CylyWpFJnpRRmgn694QKHEg==}
dependencies:
prosemirror-changeset: 2.2.1
prosemirror-collab: 1.3.1
@@ -9252,92 +9416,91 @@ packages:
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.13.0
prosemirror-menu: 1.2.4
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-schema-basic: 1.2.3
prosemirror-schema-list: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-tables: 1.4.0
- prosemirror-trailing-node: 2.0.9([email protected])([email protected])([email protected])
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-tables: 1.5.0
+ prosemirror-trailing-node: 2.0.9([email protected])([email protected])([email protected])
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.1
dev: false
- resolution: {integrity: sha512-QRMbo6eDtYHBwZ7ATFgKFWLlRZ/Q7NJrBS/Z6FW2lFhr1eM8UhOG6HMEMt/kibMJDJVi1FpXEavgaT75oe2BJg==}
+ resolution: {integrity: sha512-AUmdb/J1O/vCO2b8LL68ctcZr9a3931BwX4fUUZ1kCrCA5lTj2xz0rjeAtpxEdzLnR+Z7q96vB7vf7bPYOUAew==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-bubble-menu': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-floating-menu': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-bubble-menu': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-floating-menu': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
'@types/use-sync-external-store': 0.0.6
react: 18.3.1
react-dom: 18.3.1([email protected])
use-sync-external-store: 1.2.2([email protected])
dev: false
- resolution: {integrity: sha512-enurhiMkDkC5J57WdFYUhJzWpw8fCkpJAQkYKZDfRrGXVPn0wiCwXnFtTcsjxZlygabpZA8dQOuCwKF+YS7gxQ==}
- dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-blockquote': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-bold': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-bullet-list': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-code': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-code-block': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-document': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-dropcursor': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-gapcursor': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-hard-break': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-heading': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-history': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-horizontal-rule': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-italic': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-list-item': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-ordered-list': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-paragraph': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-strike': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-text': 2.5.7(@tiptap/[email protected])
- transitivePeerDependencies:
- - '@tiptap/pm'
+ /@tiptap/[email protected]:
+ resolution: {integrity: sha512-zb9xIg3WjG9AsJoyWrfqx5SL9WH7/HTdkB79jFpWtOF/Kaigo7fHFmhs2FsXtJMJlcdMTO2xeRuCYHt5ozXlhg==}
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-blockquote': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-bold': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-bullet-list': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-code': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-code-block': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-document': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-dropcursor': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-gapcursor': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-hard-break': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-heading': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-history': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-horizontal-rule': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-italic': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-list-item': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-ordered-list': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-paragraph': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-strike': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-text': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- resolution: {integrity: sha512-js1I1rH8ycDkS9QTJM88W6yihYW9KD28eJcLn6Agh1W2yPo/iJZYAXLdl6oaae/jrT16W6OZRGDaBrNk/7lN3Q==}
+ resolution: {integrity: sha512-jogG0QgGit9UtTznVnhQfNImZfQM89NR0is20yRQzC0HmD8B8f3jmGrotG63Why2oKbeoe3CpM5/5eDE/paqCA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
dev: false
- /@tldraw/[email protected]:
- resolution: {integrity: sha512-hQ1GqEl0c6Z7u8VhPtIxFR4NpAosLkHFIwmNiJ9/rB5Fw3ulriy4VnPq8+461P9tJGU+rW9BU3ue66yA38XQ8g==}
+ /@tldraw/[email protected]:
+ resolution: {integrity: sha512-qvemezW1IJSDjYTEIfZeAmNf7tlFVtw7+3ghVqLBMWp6MGy8y92G7REs0O1OyXxamFwIAFqKLzMtZ+fViugL8w==}
dependencies:
- '@tldraw/utils': 2.4.1
+ '@tldraw/utils': 2.4.5
dev: false
- resolution: {integrity: sha512-3/ti+qJWkak4jlP/jmHTd/2PK8amYLyPyb6GuCCtjMhKsCHOlEHc3BIdzdx3ldIE3cAAx7qYHS328RcWituB0Q==}
+ resolution: {integrity: sha512-0egIFsj73k1eX/1t8iBF+JyHPXh4pahDPCYt/r9VjSrlVGNuGtYgB/d2pM4PkkZ5igntX8aoj0dzNzy/EgMMqA==}
peerDependencies:
react: ^18
react-dom: ^18
dependencies:
- '@tldraw/state': 2.4.1
- '@tldraw/state-react': 2.4.1([email protected])
- '@tldraw/store': 2.4.1([email protected])
- '@tldraw/tlschema': 2.4.1([email protected])
- '@tldraw/utils': 2.4.1
- '@tldraw/validate': 2.4.1
+ '@tldraw/state': 2.4.5
+ '@tldraw/state-react': 2.4.5([email protected])
+ '@tldraw/store': 2.4.5([email protected])
+ '@tldraw/tlschema': 2.4.5([email protected])
+ '@tldraw/utils': 2.4.5
+ '@tldraw/validate': 2.4.5
'@types/core-js': 2.5.8
'@use-gesture/react': 10.3.1([email protected])
classnames: 2.5.1
- core-js: 3.37.1
+ core-js: 3.38.1
eventemitter3: 4.0.7
idb: 7.1.1
is-plain-object: 5.0.0
@@ -9346,55 +9509,55 @@ packages:
react-dom: 18.3.1([email protected])
dev: false
- resolution: {integrity: sha512-K9PL2N/9e9cbbgx9H+yq1EOehNUpjXOItapEDewMF4UJT0r6EjRXTdfdUoL6O+EYabfQuDGTR67pLbfbTDfEbw==}
+ resolution: {integrity: sha512-dpEXCPUqWCKrDhVtXUfmDL/MdhaYdqmBzSmFDg02LRmTb+zHikmtLEI0WTbmmNRV54Q5TVlc/yYeQ9hdh/zphQ==}
peerDependencies:
react: ^18
dependencies:
- '@tldraw/state': 2.4.1
+ '@tldraw/state': 2.4.5
react: 18.3.1
dev: false
- /@tldraw/[email protected]:
- resolution: {integrity: sha512-yaNkHr3yCf+F3txpYD+50UaPvM7fQIFX+Q9XMWwKjEjDnNOEjynOxn7Ehct9hgv8FyCVLihNVVNSItn90/Zctg==}
+ /@tldraw/[email protected]:
+ resolution: {integrity: sha512-OmJU/y/eDeJVHytdsr+ANWJ3YobDdjJ0v/G8t6ea6aE4YbtmR2QNpLUQzUk1e1sAT/upeGXtGGc0Bb3XUeetEA==}
dev: false
- resolution: {integrity: sha512-dSpeUZN94JOzvevAX5bRnZpiDI/Klv+dzJkzGDp2T++tDN4O+HjQ5HfaTfsy02XgduOLK4REQKL+9lXn2NWxCg==}
+ resolution: {integrity: sha512-/V6CRb3cJW1+UWHd77gehjWoKmxjZEzDrey13iqMDvxtetm+t0cLTSon0bKeUhIxi7C45t2PUTessPXD7QI1zg==}
peerDependencies:
react: ^18
dependencies:
- '@tldraw/state': 2.4.1
- '@tldraw/utils': 2.4.1
+ '@tldraw/state': 2.4.5
+ '@tldraw/utils': 2.4.5
lodash.isequal: 4.5.0
nanoid: 4.0.2
react: 18.3.1
dev: false
- resolution: {integrity: sha512-zMs+3MUBqf8rlN1Ras0Ck6lB2xq8sHvU5NZrY18wsB3iK9e6SBLcy9WT+JNA433BuvTFbONo2sbIa4GPcXNkhg==}
+ resolution: {integrity: sha512-r1V5bFkov/b4Q/EZQqAtjjruP95ebxFCGwWLBF3QitT6Bi0lSB8++OYrZV8eQRrmILE7TLvejw/mLJtJhUJiYA==}
peerDependencies:
react: ^18
dependencies:
- '@tldraw/state': 2.4.1
- '@tldraw/store': 2.4.1([email protected])
- '@tldraw/utils': 2.4.1
- '@tldraw/validate': 2.4.1
+ '@tldraw/state': 2.4.5
+ '@tldraw/store': 2.4.5([email protected])
+ '@tldraw/utils': 2.4.5
+ '@tldraw/validate': 2.4.5
nanoid: 4.0.2
react: 18.3.1
dev: false
- /@tldraw/[email protected]:
- resolution: {integrity: sha512-FtHnoy/Aj8Q9hyX5ud+uE9W0vxpo+Yrzr/GT+weQHSCzjt7gkQQvKbHizu8ykksCuS/wuzehGWM4LGrDtbGdzg==}
+ /@tldraw/[email protected]:
+ resolution: {integrity: sha512-JMYFz0Dp+j/n1z6Pg/IgqqAutEMWqMHBbsWmU9UGZC9vqWMg7BJx71XtvBrDMIZmOSg9I3a/WkyU8Tftz6dKMw==}
dependencies:
lodash.throttle: 4.1.1
lodash.uniq: 4.5.0
dev: false
- /@tldraw/[email protected]:
- resolution: {integrity: sha512-PaWM6L5jvxeglqz/BLte7+Nhne9db1dFRnJS9Ts+ka7EvhqPvble9jWOk/HhSHhB25QeqBeo0Re5MCBtib3H1w==}
+ /@tldraw/[email protected]:
+ resolution: {integrity: sha512-MMVCRPaxGkTnBCXsb/gfls0grUeqMGm4rNEUUMq5U1KnQh9ZPS5zEustOSseRSuF1ppFqEgQLuYSmJyUOyTKcg==}
dependencies:
- '@tldraw/utils': 2.4.1
+ '@tldraw/utils': 2.4.5
dev: false
/@tootallnate/[email protected]:
@@ -9453,7 +9616,7 @@ packages:
minimatch: 9.0.5
dev: true
resolution: {integrity: sha512-PK38N1fHhDUyjLi0mUjv0RbX0xXGwDLQeRSGsIlLcVpP1B5fwodSIwIYXc9vJok26Yne94BX5AGjueYsUT3uUw==}
hasBin: true
dependencies:
@@ -9465,7 +9628,7 @@ packages:
minimatch: 9.0.5
node-plop: 0.26.3
proxy-agent: 6.4.0
- ts-node: 10.9.2(@types/[email protected])([email protected])
+ ts-node: 10.9.2(@types/[email protected])([email protected])
update-check: 1.5.4
validate-npm-package-name: 5.0.1
transitivePeerDependencies:
@@ -9497,20 +9660,20 @@ packages:
resolution: {integrity: sha512-YCGstVMjc4LTY5uK9/obvxBya93axZOVOyf2GSUulADzmLhYE45u2nAssCs/fWBs1Ifq5Vat75JTPwd5XZoPJw==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9524,19 +9687,19 @@ packages:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
'@types/express-serve-static-core': 4.19.5
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: false
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9564,14 +9727,16 @@ packages:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.56.11
+ '@types/eslint': 8.56.12
'@types/estree': 1.0.5
+ dev: true
- resolution: {integrity: sha512-sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==}
+ resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
+ dev: true
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
@@ -9592,7 +9757,7 @@ packages:
resolution: {integrity: sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
'@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -9617,11 +9782,15 @@ packages:
resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==}
dev: true
+ resolution: {integrity: sha512-lBrpf08xhiZBigrtdQfUaqX1UauwZ+skbFiL8u2Tdra/rklkKadYmIzTwkNZSWtuZ7OKpFqbE2HHfDoFqvZf6w==}
+ dev: true
+
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==}
@@ -9630,23 +9799,23 @@ packages:
resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
dev: false
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
dev: false
resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
dev: true
- resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9682,7 +9851,7 @@ packages:
resolution: {integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: false
@@ -9703,13 +9872,13 @@ packages:
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
dev: false
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
dev: false
@@ -9734,13 +9903,13 @@ packages:
resolution: {integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: false
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9755,10 +9924,10 @@ packages:
resolution: {integrity: sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==}
dev: false
- resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==}
+ resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==}
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.19.8
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -9773,7 +9942,7 @@ packages:
resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
pg-protocol: 1.6.1
pg-types: 2.2.0
dev: false
@@ -9792,16 +9961,16 @@ packages:
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
resolution: {integrity: sha512-aOFUtv3QwNMmy0BgpQpvivQ/+vivMTB6ARrzf9eTSXsLzXpVnfEtjpHpSknYDnr8KaQmlgeauAj8E7wo/qMOTg==}
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
dev: false
- resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+ resolution: {integrity: sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==}
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -9813,7 +9982,7 @@ packages:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: false
@@ -9832,7 +10001,7 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9845,7 +10014,7 @@ packages:
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
'@types/send': 0.17.4
dev: true
@@ -9856,13 +10025,13 @@ packages:
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
@@ -9873,45 +10042,45 @@ packages:
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
dev: false
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
dev: false
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
dev: false
resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
dev: false
- resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+ resolution: {integrity: sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==}
dev: false
resolution: {integrity: sha512-Sr2fYMBUVGYq8kj3UthXFAu5UN6ZW+rYr4NACjZQJvHvj+c8lYv0CahmZ2P/r7iUkN44gGUBwqxZkrKXYPb7cw==}
dependencies:
'@types/expect': 1.20.4
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-10ql7A0qzBmFB+F+qAke/nP1PIonS0TXZAOMVOxEUsm+lGSW6uwVcISFNa0I4Oyj0884TZVWGGMIWeXOVSNFHw==}
dev: true
- resolution: {integrity: sha512-4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w==}
+ resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
dev: true
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
dev: true
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
dependencies:
'@types/yargs-parser': 21.0.3
dev: true
@@ -9936,7 +10105,7 @@ packages:
debug: 4.3.6
eslint: 8.57.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
ts-api-utils: 1.3.0([email protected])
@@ -10173,8 +10342,8 @@ packages:
react: 18.3.1
dev: false
- /@vercel/[email protected]:
- resolution: {integrity: sha512-lJNcA1XKMbQg6npC8grQBEVg11w8BSBr8bXUSZokYmvtNXheL/5cKGAD01Uba9x1P/ae9lJ9zDorpoSq4AWSfw==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-xscYxdzQ2IAMNbXlldbTZv1+YtD/Yq/EXgruqFBTZ/ofh+GIMCig1YrJh2CS6R2B2ja77szUiel//T8lRrDN1g==}
dev: true
@@ -10216,11 +10385,11 @@ packages:
web-vitals: 0.2.4
dev: true
- /@vercel/[email protected]:
- resolution: {integrity: sha512-rvShSeoiUvw1JoQ5r9EJBwELmA6lZDH2agG9KCBgKowd8YQZIm7r3DddvWPJ8s2x7P4kv0eCbr5e89Z2wsiygw==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-YiwLj+lK/AYFAKkdgoTUIVgqYRiS+R/JxLAAm48jy14H8gNr5wmzCu86vedIWb8u6JYQG5mAkTAFP0abkxZnRA==}
dependencies:
'@sinclair/typebox': 0.25.24
- '@vercel/build-utils': 8.3.5
+ '@vercel/build-utils': 8.3.7
'@vercel/routing-utils': 3.1.0
esbuild: 0.14.47
etag: 1.8.1
@@ -10238,8 +10407,8 @@ packages:
ts-morph: 12.0.0
dev: true
- /@vercel/[email protected]:
- resolution: {integrity: sha512-qUHp79xX07qYtz7DGSogyWgEMrf+eu/IGV/92YnVA1xzDBogIFc8XFvMlN8QwDrsWWsR+I2eMSiGD+P8znlsaA==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-3VRPicjGJxPCRwO9oScn9cpCkzRWcZRZRsmvgDPgWihvOhpKYfPQpkE73l6o+ypC4ONsuy/IBC3STov28vqOAQ==}
dependencies:
'@vercel/nft': 0.27.3
transitivePeerDependencies:
@@ -10261,7 +10430,7 @@ packages:
estree-walker: 2.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
node-gyp-build: 4.8.1
resolve-from: 5.0.0
transitivePeerDependencies:
@@ -10269,14 +10438,14 @@ packages:
- supports-color
dev: true
- /@vercel/[email protected]:
- resolution: {integrity: sha512-/eWXgkkjBm1Es6oRmltw5m0SLT8tnOdlSKYpQhPfpJlWVzLb8h3cWhTS+cSsnn3gZ0c6w4XSjiZBbGKQJevxoQ==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-q3HLv+yIU3sOFS82GltdjFiBXt8cRcPmDKD3lI0z4cDLb2FSJeGE4yYqK7FxZmO8E5Hqzrm2uUoy5Mw3XERTmw==}
dependencies:
'@edge-runtime/node-utils': 2.3.0
'@edge-runtime/primitives': 4.1.0
'@edge-runtime/vm': 3.2.0
'@types/node': 16.18.11
- '@vercel/build-utils': 8.3.5
+ '@vercel/build-utils': 8.3.7
'@vercel/error-utils': 2.0.2
'@vercel/nft': 0.27.3
'@vercel/static-config': 3.0.0
@@ -10316,8 +10485,8 @@ packages:
- supports-color
dev: true
- /@vercel/[email protected]:
- resolution: {integrity: sha512-3mM8XNWEo5HmPv/FT2pseGk6MIHcRcLgNHwVQxWe+CSgEXt4QcNQYtwF6v9pb4HDTt09Y1rRkSED5HXvMO38/A==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-LOFad9G+CZuq2TNvbT5A03+c437YPy6/J1hHBGMWS6rQ/PWHQSJdEUga9RwTavWoWpCCnrVpMM115EgMKk8JBA==}
dependencies:
'@vercel/error-utils': 2.0.2
'@vercel/nft': 0.27.3
@@ -10340,11 +10509,11 @@ packages:
resolution: {integrity: sha512-UZYwlSEEfVnfzTmgkD+kxex9/gkZGt7unOWNyWFN7V/ZnZSsGBUgv6hXLnwejdRi3EztgRQEBd1kUKlXdIeC0Q==}
dev: true
- /@vercel/[email protected]:
- resolution: {integrity: sha512-i7fp4wCUgNvZIv06qlQFtFhZJ5WZcwOyg7KmWWhLBsyx/U+LBzUKP80lWAedqB6xmZ7zvNnruGUArzJvI+DnjA==}
+ /@vercel/[email protected]:
+ resolution: {integrity: sha512-YZPhcDOA7o4S48kzXJ5knYAcbYi8s7DIQl6/B/s0sGar+fWb65obtH6SyIdZt1uwLBKttOdi6zv3j0cLbU0nDw==}
dependencies:
'@vercel/gatsby-plugin-vercel-analytics': 1.0.11
- '@vercel/gatsby-plugin-vercel-builder': 2.0.39
+ '@vercel/gatsby-plugin-vercel-builder': 2.0.41
'@vercel/static-config': 3.0.0
ts-morph: 12.0.0
dev: true
@@ -10375,99 +10544,100 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.24.9
- '@babel/eslint-parser': 7.25.0(@babel/[email protected])([email protected])
+ '@babel/core': 7.25.2
+ '@babel/eslint-parser': 7.25.1(@babel/[email protected])([email protected])
'@rushstack/eslint-patch': 1.10.4
'@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/[email protected])([email protected])([email protected])
'@typescript-eslint/parser': 6.21.0([email protected])([email protected])
eslint: 8.57.0
eslint-config-prettier: 9.1.0([email protected])
eslint-import-resolver-alias: 1.1.2([email protected])
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
eslint-plugin-eslint-comments: 3.2.0([email protected])
- eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
+ eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
eslint-plugin-jest: 27.9.0(@typescript-eslint/[email protected])([email protected])([email protected])
eslint-plugin-jsx-a11y: 6.9.0([email protected])
eslint-plugin-playwright: 0.16.0([email protected])([email protected])
eslint-plugin-react: 7.35.0([email protected])
eslint-plugin-react-hooks: 4.6.2([email protected])
- eslint-plugin-testing-library: 6.2.2([email protected])([email protected])
+ eslint-plugin-testing-library: 6.3.0([email protected])([email protected])
eslint-plugin-tsdoc: 0.2.17
eslint-plugin-unicorn: 48.0.1([email protected])
prettier: 3.3.3
- prettier-plugin-packagejson: 2.5.1([email protected])
+ prettier-plugin-packagejson: 2.5.2([email protected])
typescript: 5.5.4
transitivePeerDependencies:
- eslint-import-resolver-node
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- jest
- supports-color
dev: true
- resolution: {integrity: sha512-Z0izUf32+wAnQewjHu+pQf1yw00EGOmevl1kE+ljjjMe7oEfpQ+BI3/JNK7yMB4IrUsqLDmPecUrpj3mCP+yJQ==}
+ resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==}
dependencies:
- '@babel/parser': 7.25.0
- '@vue/shared': 3.4.34
+ '@babel/parser': 7.25.4
+ '@vue/shared': 3.4.38
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- resolution: {integrity: sha512-3PUOTS1h5cskdOJMExCu2TInXuM0j60DRPpSCJDqOCupCfUZCJoyQmKtRmA8EgDNZ5kcEE7vketamRZfrEuVDw==}
+ resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==}
dependencies:
- '@vue/compiler-core': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-core': 3.4.38
+ '@vue/shared': 3.4.38
- resolution: {integrity: sha512-x6lm0UrM03jjDXTPZgD9Ad8bIVD1ifWNit2EaWQIZB5CULr46+FbLQ5RpK7AXtDHGjx9rmvC7QRCTjsiGkAwRw==}
+ resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==}
dependencies:
- '@babel/parser': 7.25.0
- '@vue/compiler-core': 3.4.34
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
+ '@babel/parser': 7.25.4
+ '@vue/compiler-core': 3.4.38
+ '@vue/compiler-dom': 3.4.38
+ '@vue/compiler-ssr': 3.4.38
+ '@vue/shared': 3.4.38
estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.40
+ magic-string: 0.30.11
+ postcss: 8.4.41
source-map-js: 1.2.0
- resolution: {integrity: sha512-8TDBcLaTrFm5rnF+Qm4BlliaopJgqJ28Nsrc80qazynm5aJO+Emu7y0RWw34L8dNnTRdcVBpWzJxhGYzsoVu4g==}
+ resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==}
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.4.38
+ '@vue/shared': 3.4.38
- resolution: {integrity: sha512-ua+Lo+wBRlBEX9TtgPOShE2JwIO7p6BTZ7t1KZVPoaBRfqbC7N3c8Mpzicx173fXxx5VXeU6ykiHo7WgLzJQDA==}
+ resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==}
dependencies:
- '@vue/shared': 3.4.34
+ '@vue/shared': 3.4.38
- resolution: {integrity: sha512-PXhkiRPwcPGJ1BnyBZFI96GfInCVskd0HPNIAZn7i3YOmLbtbTZpB7/kDTwC1W7IqdGPkTVC63IS7J2nZs4Ebg==}
+ resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==}
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/reactivity': 3.4.38
+ '@vue/shared': 3.4.38
- resolution: {integrity: sha512-dXqIe+RqFAK2Euak4UsvbIupalrhc67OuQKpD7HJ3W2fv8jlqvI7szfBCsAEcE8o/wyNpkloxB6J8viuF/E3gw==}
+ resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==}
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/runtime-core': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/reactivity': 3.4.38
+ '@vue/runtime-core': 3.4.38
+ '@vue/shared': 3.4.38
csstype: 3.1.3
- resolution: {integrity: sha512-GeyEUfMVRZMD/mZcNONEqg7MiU10QQ1DB3O/Qr6+8uXpbwdlmVgQ5Qs1/ZUAFX1X2UUtqMoGrDRbxdWfOJFT7Q==}
+ resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==}
peerDependencies:
- vue: 3.4.34
+ vue: 3.4.38
dependencies:
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
- vue: 3.4.34([email protected])
+ '@vue/compiler-ssr': 3.4.38
+ '@vue/shared': 3.4.38
+ vue: 3.4.38([email protected])
- resolution: {integrity: sha512-x5LmiRLpRsd9KTjAB8MPKf0CDPMcuItjP0gbNqFCIgL1I8iYp4zglhj9w9FPCdIbHG2M91RVeIbArFfFTz9I3A==}
+ resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==}
/@webassemblyjs/[email protected]:
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
@@ -10560,18 +10730,18 @@ packages:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
dev: true
resolution: {integrity: sha512-H4dlEX8CzO5EHBYYZQop9x4w6lG9FenSF/1spLRlvRAULDgTs0VfmwOuwp03tTLml9jpMsouuVw6vEN8KpwE/w==}
engines: {node: '>=14.15.0'}
peerDependencies:
@@ -10583,8 +10753,8 @@ packages:
optional: true
dependencies:
prettier: 3.3.3
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
yeoman-environment: 3.19.3
yeoman-generator: 5.10.0([email protected])
transitivePeerDependencies:
@@ -10594,18 +10764,18 @@ packages:
- supports-color
dev: true
resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
dev: true
resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==}
engines: {node: '>=14.15.0'}
peerDependencies:
@@ -10616,8 +10786,8 @@ packages:
webpack-dev-server:
optional: true
dependencies:
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
dev: true
@@ -10683,8 +10853,18 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- resolution: {integrity: sha512-DnyqqifT4Jrcvb8USYjp6FHtBpEIz1mnXu6pTRHZ0RL69LbQYiO+0lDFg5+OKA7U29oWSs3a/i8fhn8ZcceIWg==}
+ resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==}
+ engines: {node: '>=8.9'}
+ requiresBuild: true
+ dependencies:
+ loader-utils: 2.0.4
+ regex-parser: 2.3.0
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-jYPWSeOA8EFoZnucrKCNihqBjoEGQSU4HKgHYQgKNEQ0pQF9a/DYuo/+fAxY76k4qe75LUlLWpAM1QWcBMTOKw==}
engines: {node: '>=12.0'}
dev: true
@@ -10719,51 +10899,8 @@ packages:
indent-string: 4.0.0
dev: true
- resolution: {integrity: sha512-waqKYZOE1zJwKEHx69R4v/xNG0a1o0He8TDgX29hUu36Zk0yrBJoVSlXbC9KoFuxW4eRpt+gZv1kqd1nVc1CGg==}
- engines: {node: '>=18'}
- peerDependencies:
- openai: ^4.42.0
- react: ^18 || ^19
- sswr: ^2.1.0
- svelte: ^3.0.0 || ^4.0.0
- zod: ^3.0.0
- peerDependenciesMeta:
- openai:
- optional: true
- react:
- optional: true
- sswr:
- optional: true
- svelte:
- optional: true
- zod:
- optional: true
- dependencies:
- '@ai-sdk/provider': 0.0.14
- '@ai-sdk/provider-utils': 1.0.5([email protected])
- '@ai-sdk/react': 0.0.30([email protected])([email protected])
- '@ai-sdk/solid': 0.0.23([email protected])
- '@ai-sdk/svelte': 0.0.24([email protected])([email protected])
- '@ai-sdk/ui-utils': 0.0.20([email protected])
- '@ai-sdk/vue': 0.0.24([email protected])([email protected])
- '@opentelemetry/api': 1.9.0
- eventsource-parser: 1.1.2
- json-schema: 0.4.0
- jsondiffpatch: 0.6.0
- nanoid: 3.3.6
- react: 18.3.1
- secure-json-parse: 2.7.0
- svelte: 4.2.18
- zod: 3.23.8
- zod-to-json-schema: 3.22.5([email protected])
- transitivePeerDependencies:
- - solid-js
- - vue
- dev: false
-
- resolution: {integrity: sha512-oQF9L75J8kyfYKFNOCFrzmJOeZyj2kWED3x2hl+ZnR93TD1mhtA5XBvukTXK8UjthutRPinSBZaFH2GFn3qAWQ==}
+ resolution: {integrity: sha512-Q3K3cubOYqLVK/5P6oWu5kjjPgAo4Lr+zzLZCCG0HX9b8QemgQCPmZGRNgLNf3a2y6m4NwpjJjAPYHPlb3ytwQ==}
engines: {node: '>=18'}
peerDependencies:
openai: ^4.42.0
@@ -10783,13 +10920,13 @@ packages:
zod:
optional: true
dependencies:
- '@ai-sdk/provider': 0.0.15
- '@ai-sdk/provider-utils': 1.0.7([email protected])
- '@ai-sdk/react': 0.0.38([email protected])([email protected])
- '@ai-sdk/solid': 0.0.29([email protected])
- '@ai-sdk/svelte': 0.0.31([email protected])([email protected])
- '@ai-sdk/ui-utils': 0.0.26([email protected])
- '@ai-sdk/vue': 0.0.30([email protected])([email protected])
+ '@ai-sdk/provider': 0.0.22
+ '@ai-sdk/provider-utils': 1.0.17([email protected])
+ '@ai-sdk/react': 0.0.52([email protected])([email protected])
+ '@ai-sdk/solid': 0.0.42([email protected])
+ '@ai-sdk/svelte': 0.0.44([email protected])([email protected])
+ '@ai-sdk/ui-utils': 0.0.39([email protected])
+ '@ai-sdk/vue': 0.0.44([email protected])([email protected])
'@opentelemetry/api': 1.9.0
eventsource-parser: 1.1.2
json-schema: 0.4.0
@@ -10797,9 +10934,9 @@ packages:
nanoid: 3.3.6
react: 18.3.1
secure-json-parse: 2.7.0
- svelte: 4.2.18
+ svelte: 4.2.19
zod: 3.23.8
- zod-to-json-schema: 3.22.5([email protected])
+ zod-to-json-schema: 3.23.2([email protected])
transitivePeerDependencies:
- solid-js
- vue
@@ -10974,7 +11111,7 @@ packages:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -11136,14 +11273,14 @@ packages:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
@@ -11151,6 +11288,11 @@ packages:
engines: {node: '>=8'}
dev: true
+ resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==}
+ hasBin: true
+ dev: true
+
resolution: {integrity: sha512-CcEtRh/oc9Jc4uWeUwdpG/+Mb2YUHKmdaTf0gUr7Wa+bfp4xx70HOb3RuSTJMvqKNB1TkdTfjLdrcz2X4rkkZA==}
dev: true
@@ -11169,8 +11311,8 @@ packages:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
dev: true
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -11179,25 +11321,26 @@ packages:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
+ dev: false
resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==}
engines: {node: '>=4'}
dev: false
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001643
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001653
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.1
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
@@ -11211,13 +11354,13 @@ packages:
resolution: {integrity: sha512-N+F8pZ9hVjckkHODDyalITRNxBJxAGX5ShkVoAgHwqERXsW8Iu5ziFx3SCjGlxx/YStWBTZx4HI/GCMvTBu5kQ==}
dev: false
- resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==}
+ resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
engines: {node: '>=4'}
dev: true
- resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==}
+ resolution: {integrity: sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==}
dependencies:
follow-redirects: 1.15.6
form-data: 4.0.0
@@ -11237,64 +11380,64 @@ packages:
engines: {node: '>= 0.4'}
dev: false
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.93.0([email protected])
+ webpack: 5.94.0([email protected])
dev: false
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
find-cache-dir: 4.0.0
schema-utils: 4.2.0
dev: true
resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.25.0
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
- core-js-compat: 3.37.1
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/[email protected])
transitivePeerDependencies:
- supports-color
@@ -11312,15 +11455,15 @@ packages:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: true
resolution: {integrity: sha512-J/6LNXDuaUUR5/2X/G6lWUK21GgQ8FUmi0tLhPsL6E0vmorkT+whMsAhdpFt0cgE7PcXZIsMOyd1x+erholGZw==}
engines: {node: '>=18'}
dependencies:
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/[email protected])
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
- '@babel/preset-env': 7.25.0(@babel/[email protected])
- '@babel/preset-react': 7.24.7(@babel/[email protected])
- '@babel/preset-typescript': 7.24.7(@babel/[email protected])
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/[email protected])
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/[email protected])
+ '@babel/preset-env': 7.25.4(@babel/[email protected])
+ '@babel/preset-react': 7.24.7(@babel/[email protected])
+ '@babel/preset-typescript': 7.24.7(@babel/[email protected])
babel-plugin-react-require: 4.0.3
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -11383,10 +11526,6 @@ packages:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
- resolution: {integrity: sha512-nbE1WxOTTrUWIfsfZ4aHGYu5DOuNkbxGokjV6Z2kxfJK3uaAb8zNK1muzOeipoLHZjInT4Br88BHpzevc681xA==}
- dev: false
-
resolution: {integrity: sha512-DRxnVbOi/1OgA5pA9EDiRT8gvVYeqfuN7TmPfLyt6cyho3KbHCi3EtDQf39TTmGDrR5dZ9CspdXhPkL/j/WGbg==}
engines: {node: '>=0.8'}
@@ -11540,7 +11679,7 @@ packages:
browserify-rsa: 4.1.0
create-hash: 1.2.0
create-hmac: 1.1.7
- elliptic: 6.5.6
+ elliptic: 6.5.7
hash-base: 3.0.4
inherits: 2.0.4
parse-asn1: 5.1.7
@@ -11548,15 +11687,15 @@ packages:
safe-buffer: 5.2.1
dev: false
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001643
- electron-to-chromium: 1.5.2
+ caniuse-lite: 1.0.30001653
+ electron-to-chromium: 1.5.13
node-releases: 2.0.18
- update-browserslist-db: 1.1.0([email protected])
+ update-browserslist-db: 1.1.0([email protected])
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
@@ -11724,8 +11863,8 @@ packages:
engines: {node: '>=10'}
dev: false
- resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==}
+ resolution: {integrity: sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==}
resolution: {integrity: sha512-x2iVHOrZ5x9V0Hwx6kBz+Yxf/VCAII+jrD6WLjJbytJLozHq/oDJjEva432Os0eHxWMFR0vYlLJwTr6QxyxQqw==}
@@ -11735,7 +11874,7 @@ packages:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
dependencies:
debug: 4.3.6
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -11828,17 +11967,21 @@ packages:
domutils: 3.1.0
dev: false
- resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
- engines: {node: '>= 6'}
+ resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
+ engines: {node: '>=18.17'}
dependencies:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
domutils: 3.1.0
- htmlparser2: 8.0.2
+ encoding-sniffer: 0.2.0
+ htmlparser2: 9.1.0
parse5: 7.1.2
parse5-htmlparser2-tree-adapter: 7.0.0
+ parse5-parser-stream: 7.1.2
+ undici: 6.19.8
+ whatwg-mimetype: 4.0.0
dev: false
@@ -11921,8 +12064,8 @@ packages:
resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==}
dev: true
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ resolution: {integrity: sha512-N1NGmowPlGBLsOZLPvm48StN04V4YvQRL0i6b7ctrVY3epjP/ct7hFLOItz6pDIvRjwpfPxi52a2UWV2ziir8g==}
dev: false
@@ -11947,14 +12090,14 @@ packages:
engines: {node: '>=6'}
dev: true
resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==}
engines: {node: '>=10.0.0'}
peerDependencies:
webpack: '>=4.0.0 <6.0.0'
dependencies:
del: 4.1.1
- webpack: 5.93.0([email protected])
+ webpack: 5.94.0([email protected])
dev: false
@@ -12088,27 +12231,27 @@ packages:
mkdirp-infer-owner: 2.0.0
dev: true
resolution: {integrity: sha512-U6//9lQ6JvT47+6OF6Gi8BvkxYQ8SCRRSKIJkthIMsFsLZRG0cKvTtuTaefyIKMQb8rvvXy0wGdpTNq/jPtm+g==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@radix-ui/react-dialog': 1.0.0(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-dialog': 1.0.0(@types/[email protected])([email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
transitivePeerDependencies:
- '@types/react'
dev: false
resolution: {integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@radix-ui/react-dialog': 1.0.5(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-dialog': 1.0.5(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-primitive': 1.0.3(@types/[email protected])(@types/[email protected])([email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
transitivePeerDependencies:
@@ -12261,8 +12404,8 @@ packages:
- supports-color
dev: true
- resolution: {integrity: sha512-NqGgcBTRF7Zs3kBWJjKWoYdYTu0tZRcR4yKIA6Ve3KxpD9tgkbDHiVnFrkNYMt26jScrfKPGfVVkGaW++gq4VQ==}
+ resolution: {integrity: sha512-0plNVaC0bGWZY3TeijP1xndyaAmjqBY1SSfsc/7ruVLTIfRCSHFLSd/uuK7ZTcaT/4y2u0lVn0et4tmmC98mRg==}
engines: {node: '>=12.0.0'}
dependencies:
efrt: 2.7.0
@@ -12349,6 +12492,12 @@ packages:
engines: {node: '>=8'}
dev: true
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -12370,18 +12519,18 @@ packages:
is-what: 3.14.1
dev: true
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
- resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
+ resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
requiresBuild: true
dev: true
- resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==}
+ resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==}
requiresBuild: true
dev: false
@@ -12424,7 +12573,7 @@ packages:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
dependencies:
bn.js: 4.12.0
- elliptic: 6.5.6
+ elliptic: 6.5.7
dev: false
@@ -12485,14 +12634,14 @@ packages:
engines: {node: '>=8'}
dev: false
resolution: {integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
@@ -12500,15 +12649,15 @@ packages:
engines: {node: '>=12 || >=16'}
dev: true
resolution: {integrity: sha512-ZTv6RlvJJZKp32jPYnAJVhowDCrRrHUTAxsYSuUPBEDJjzws6neMnzkRblxtgmv1RgcV5dhH2gn7E3wA9Wt6lw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.1.1([email protected])
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-specificity': 3.1.1([email protected])
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
dev: true
@@ -12524,24 +12673,24 @@ packages:
webpack:
optional: true
dependencies:
- icss-utils: 5.1.0([email protected])
- postcss: 8.4.40
- postcss-modules-extract-imports: 3.1.0([email protected])
- postcss-modules-local-by-default: 4.0.5([email protected])
- postcss-modules-scope: 3.2.0([email protected])
- postcss-modules-values: 4.0.0([email protected])
+ icss-utils: 5.1.0([email protected])
+ postcss: 8.4.41
+ postcss-modules-extract-imports: 3.1.0([email protected])
+ postcss-modules-local-by-default: 4.0.5([email protected])
+ postcss-modules-scope: 3.2.0([email protected])
+ postcss-modules-values: 4.0.0([email protected])
postcss-value-parser: 4.2.0
semver: 7.6.3
dev: true
resolution: {integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
@@ -12655,6 +12804,12 @@ packages:
resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==}
dev: true
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
dev: false
@@ -12690,7 +12845,7 @@ packages:
supports-color:
optional: true
dependencies:
- ms: 2.1.3
+ ms: 2.1.1
dev: true
@@ -12917,6 +13072,13 @@ packages:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: true
+ resolution: {integrity: sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==}
+ engines: {node: '>=12'}
+ dependencies:
+ execa: 5.1.1
+ dev: true
+
resolution: {integrity: sha512-NTqfYfwNsW7AQltKSEaWR66hGkTeD52Kz3eRQ+nfkA9ZFZt3iifRCWh+yZ/m6t3H42JFwVFTrml/D64R2PAIOA==}
engines: {node: '>=18'}
@@ -12943,15 +13105,15 @@ packages:
node-source-walk: 7.0.0
dev: false
resolution: {integrity: sha512-pSXA6dyqmBPBuERpoOKKTUUjQCZwZPLRbd1VdsTbt6W+m/+6ROl4BbE87yQBUtLoK7yX8pvXHdKyM/xNIW9F7A==}
engines: {node: ^14.0.0 || >=16.0.0}
peerDependencies:
postcss: ^8.4.38
dependencies:
is-url: 1.2.4
- postcss: 8.4.40
- postcss-values-parser: 6.0.2([email protected])
+ postcss: 8.4.41
+ postcss-values-parser: 6.0.2([email protected])
dev: false
@@ -12995,7 +13157,7 @@ packages:
peerDependencies:
typescript: ^5.4.4
dependencies:
- '@vue/compiler-sfc': 3.4.34
+ '@vue/compiler-sfc': 3.4.38
detective-es6: 5.0.0
detective-sass: 6.0.0
detective-scss: 5.0.0
@@ -13135,7 +13297,7 @@ packages:
webpack: ^4 || ^5
dependencies:
dotenv-defaults: 2.0.2
dev: true
@@ -13176,7 +13338,7 @@ packages:
- supports-color
dev: false
resolution: {integrity: sha512-SupNouCdvosjzQpLinqnyIu7bBfsUKiaWXfUZ0IyDtwK8rWa2zQ4AOWCda86VJVxgb8xZ1l8vKvlLHyTBalB/g==}
peerDependencies:
'@aws-sdk/client-rds-data': '>=3'
@@ -13248,7 +13410,7 @@ packages:
optional: true
dependencies:
'@opentelemetry/api': 1.9.0
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
@@ -13306,11 +13468,11 @@ packages:
dependencies:
jake: 10.9.2
- resolution: {integrity: sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==}
+ resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==}
- resolution: {integrity: sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==}
+ resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==}
dependencies:
bn.js: 4.12.0
brorand: 1.1.0
@@ -13325,9 +13487,8 @@ packages:
resolution: {integrity: sha512-QdXO3nXOzZB4pAjM0n6ZE+R9/+kPpECA/XSELIcc54NeYVnBqIk+4DFiBgK+8QbV3mdvTG6nedl7dTYgO+5wDw==}
dev: false
- resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
- dev: true
+ resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -13335,6 +13496,18 @@ packages:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+ resolution: {integrity: sha512-BLZpOdwyFpZ7lzBWyDtnxmKVm/SJMYgAfp1if3o6n1TVUMSXAf0nikONXl90LZuJ/m3XWPBkkubgCet2BsCGGQ==}
+ peerDependencies:
+ emojibase: '*'
+ dependencies:
+ emojibase: 15.3.1
+ dev: false
+
+ resolution: {integrity: sha512-GNsjHnG2J3Ktg684Fs/vZR/6XpOSkZPMAv85EHrr6br2RN2cJNwdS4am/3YSK3y+/gOv2kmoK3GGdahXdMxg2g==}
+ dev: false
+
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
@@ -13344,6 +13517,13 @@ packages:
engines: {node: '>= 0.8'}
dev: true
+ resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
+ dependencies:
+ iconv-lite: 0.6.3
+ whatwg-encoding: 3.1.1
+ dev: false
+
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
requiresBuild: true
@@ -14227,8 +14407,8 @@ packages:
optionalDependencies:
source-map: 0.6.1
- resolution: {integrity: sha512-zogs9zlOiZ7ka+wgUnmcM0KBEDjo4Jis7kxN1jvC0N4wynQ2MIx/KBkg4mVF63J5EK4W0QMCn7xO3vNisjaAoA==}
+ resolution: {integrity: sha512-ppmy+QdQ7qkuCHGDlPjWaoSbJvjGpWSBD4zEW8f1eWlxYXYpZK7QzBOer1EcHKT3uKhlY1JjUus9g7Kvv712rw==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -14236,19 +14416,20 @@ packages:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 14.2.5
+ '@next/eslint-plugin-next': 14.2.7
'@rushstack/eslint-patch': 1.10.4
'@typescript-eslint/parser': 6.21.0([email protected])([email protected])
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
- eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
+ eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
eslint-plugin-jsx-a11y: 6.9.0([email protected])
eslint-plugin-react: 7.35.0([email protected])
eslint-plugin-react-hooks: 4.6.2([email protected])
typescript: 5.5.4
transitivePeerDependencies:
- eslint-import-resolver-webpack
+ - eslint-plugin-import-x
- supports-color
dev: true
@@ -14270,13 +14451,13 @@ packages:
eslint-plugin-turbo: 1.13.4([email protected])
dev: true
- resolution: {integrity: sha512-FoIMElI8md/dR5DxjB5Om52KJfi7Qf7RInXeE+PGU6lN388rumppwyqEJsZ7vnR5GhGa9cLPt0vNZwEK9iXtKg==}
+ resolution: {integrity: sha512-3SeE2OCWnkA/84adGJXABm++966LNGxRdXtXKBcplJdIe4PmERkov1z6Kzp2PrPKT13wGu/bwoLV5h1rm7v9ug==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
eslint: 8.57.0
- eslint-plugin-turbo: 2.0.9([email protected])
+ eslint-plugin-turbo: 2.1.0([email protected])
dev: false
@@ -14285,34 +14466,41 @@ packages:
peerDependencies:
eslint-plugin-import: '>=1.4.0'
dependencies:
- eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
+ eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
dev: true
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
dependencies:
debug: 3.2.7
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
dev: true
- resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
dependencies:
+ '@nolyfill/is-core-module': 1.0.39
debug: 4.3.6
enhanced-resolve: 5.17.1
eslint: 8.57.0
- eslint-module-utils: 2.8.1(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
- eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
+ eslint-module-utils: 2.8.2(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
+ eslint-plugin-import: 2.29.1(@typescript-eslint/[email protected])([email protected])([email protected])
fast-glob: 3.3.2
get-tsconfig: 4.7.6
- is-core-module: 2.15.0
+ is-bun-module: 1.1.0
is-glob: 4.0.3
transitivePeerDependencies:
- '@typescript-eslint/parser'
@@ -14321,8 +14509,8 @@ packages:
- supports-color
dev: true
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ resolution: {integrity: sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -14346,7 +14534,7 @@ packages:
debug: 3.2.7
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
transitivePeerDependencies:
- supports-color
dev: true
@@ -14359,10 +14547,10 @@ packages:
dependencies:
escape-string-regexp: 1.0.5
eslint: 8.57.0
- ignore: 5.3.1
+ ignore: 5.3.2
dev: true
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@@ -14381,9 +14569,9 @@ packages:
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
+ eslint-module-utils: 2.8.2(@typescript-eslint/[email protected])([email protected])([email protected])([email protected])
hasown: 2.0.2
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -14428,7 +14616,7 @@ packages:
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.9.1
+ axe-core: 4.10.0
axobject-query: 3.1.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
@@ -14443,8 +14631,8 @@ packages:
string.prototype.includes: 2.0.0
dev: true
- resolution: {integrity: sha512-Sz6SOfTUyKgr4zSX2uT9pcjfslKfZ1WJojTluk9AtcxX6c3m7UUg0lUEXlvcWThsLONwuwvUD9ZHyCExNxkRGw==}
+ resolution: {integrity: sha512-9rbzlUrI3gZcu6n4FandFAS5SZc2SxjKKsaDa3aq4ekke9hDlRZ+NNpTEbKet+2NuDp1Fm0dXqJTFPQLcuyPOA==}
peerDependencies:
eslint: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
@@ -14507,8 +14695,8 @@ packages:
string.prototype.repeat: 1.0.0
dev: true
- resolution: {integrity: sha512-1E94YOTUDnOjSLyvOwmbVDzQi/WkKm3WVrMXu6SmBr6DN95xTGZmI6HJ/eOkSXh/DlheRsxaPsJvZByDBhWLVQ==}
+ resolution: {integrity: sha512-GYcEErTt6EGwE0bPDY+4aehfEBpB2gDBFKohir8jlATSUvzStEyzCx8QWB/14xeKc/AwyXkzScSzMHnFojkWrA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
eslint: ^7.5.0 || ^8.0.0
@@ -14536,8 +14724,8 @@ packages:
eslint: 8.57.0
dev: true
- resolution: {integrity: sha512-q4s4mg6JcXzz5zK4LC3c6FcWehGAWjGj7kIM76ZvG0KiR9Ks0znzjnAKW0NoiDP4s/gt3r4YPOpI357qWt167Q==}
+ resolution: {integrity: sha512-+CWVY29y7Qa+gvrKSzP+TOYrHAlNLCh/97K5VtDdnpH54h/JFmnd3U0aSG6WANe0HgAK8NHQfeWFDdRzfDqbKA==}
peerDependencies:
eslint: '>6.6.0'
dependencies:
@@ -14622,7 +14810,7 @@ packages:
glob-parent: 6.0.2
globals: 13.24.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -14852,29 +15040,137 @@ packages:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: false
- resolution: {integrity: sha512-ZvdnVRzzRUnPAwUFhDi3+WZ+uQn2IBE2yw2eIWB1QWFpIbuVslG2XnfYYPG6ZE7ft48zilYDm739T3fAn3F38Q==}
+ resolution: {integrity: sha512-NmYgwmbPSuprucRmwe3kSJRVDcdmnYZWKtd6wqFsmJO7TXYSVFR7SJxov6TpFOjqf4Mam3Q0pdggZFmjDuPV/Q==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@colors/colors': 1.6.0
+ cross-spawn: 7.0.3
+ detect-package-manager: 3.0.2
+ go-git-it: 2.0.3
+ dev: true
+
+ resolution: {integrity: sha512-qoqReCBTRsv8mLnlu2Ffd8Efg/P7s5221mUiqYDB3XcVlnSWW4HP0gg/KSWTD+3IZqtl1PdIUq5gDK6FtCtDzA==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@colors/colors': 1.6.0
+ '@swc/core': 1.7.18
+ '@types/firefox-webext-browser': 120.0.4
+ acorn: 8.12.1
+ acorn-walk: 8.3.3
+ adm-zip: 0.5.15
+ ajv: 8.17.1
+ astring: 1.9.0
+ axios: 1.7.5
+ browser-extension-manifest-fields: 1.0.6
+ case-sensitive-paths-webpack-plugin: 2.4.0
+ chokidar: 3.6.0
+ chrome-location: 1.2.1
+ content-security-policy-parser: 0.6.0
+ css-loader: 6.11.0([email protected])
+ csv-loader: 3.0.5
+ detect-package-manager: 3.0.2
+ dotenv-webpack: 8.1.0([email protected])
+ edge-location: 1.0.0
+ firefox-profile: 4.7.0
+ fx-runner: 1.4.0
+ go-git-it: 2.0.3
+ ignore: 5.3.2
+ loader-utils: 3.3.1
+ micromatch: 4.0.8
+ mini-css-extract-plugin: 2.9.1([email protected])
+ parse5: 7.1.2
+ parse5-utils: 2.0.0
+ postcss: 8.4.41
+ progress: 2.0.3
+ schema-utils: 4.2.0
+ slugify: 1.6.6
+ style-loader: 3.3.4([email protected])
+ swc-loader: 0.2.6(@swc/[email protected])([email protected])
+ tiny-glob: 0.2.9
+ webextension-polyfill: 0.12.0
+ webpack-dev-server: 5.0.4([email protected])([email protected])
+ webpack-merge: 6.0.1
+ webpack-target-webextension: 1.1.2([email protected])
+ optionalDependencies:
+ '@babel/core': 7.25.2
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15([email protected])([email protected])([email protected])
+ '@prefresh/webpack': 4.0.1(@prefresh/[email protected])([email protected])([email protected])
+ '@vue/compiler-sfc': 3.4.38
+ babel-loader: 9.1.3(@babel/[email protected])([email protected])
+ babel-preset-modern-browser-extension: 0.7.0(@babel/[email protected])
+ less: 4.2.0
+ less-loader: 12.2.0([email protected])([email protected])
+ postcss-flexbugs-fixes: 5.0.2([email protected])
+ postcss-normalize: 10.0.1([email protected])([email protected])
+ postcss-preset-env: 9.6.0([email protected])
+ postcss-scss: 4.0.9([email protected])
+ react-refresh: 0.14.2
+ react-refresh-typescript: 2.0.9([email protected])([email protected])
+ resolve-url-loader: 5.0.0
+ sass: 1.77.8
+ sass-loader: 16.0.1([email protected])([email protected])
+ stylelint: 16.8.2([email protected])
+ stylelint-config-standard-scss: 13.1.0([email protected])([email protected])
+ stylelint-webpack-plugin: 5.0.1([email protected])([email protected])
+ tailwindcss: 3.4.10
+ vue-style-loader: 4.1.3
+ vue-template-compiler: 2.7.16
+ transitivePeerDependencies:
+ - '@prefresh/babel-plugin'
+ - '@rspack/core'
+ - '@swc/helpers'
+ - '@types/webpack'
+ - browserslist
+ - bufferutil
+ - debug
+ - esbuild
+ - node-sass
+ - preact
+ - sass-embedded
+ - sockjs-client
+ - supports-color
+ - ts-node
+ - type-fest
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue
+ - webpack-cli
+ - webpack-hot-middleware
+ - webpack-plugin-serve
+ dev: true
+
+ resolution: {integrity: sha512-xUx5AEPwL1YeK2rLLx50gWYxZ11XjF452NZ3w2jiVhUXn1Bga9Bz6Yu3enswIFV0MwNRxczEmzgfb7kV3RaipA==}
engines: {node: '>=18'}
hasBin: true
dependencies:
'@colors/colors': 1.6.0
- '@extension-create/create': 1.8.0
commander: 11.1.0
+ extension-create: 2.0.0-alpha.6
semver: 7.6.3
update-check: 1.5.4
transitivePeerDependencies:
+ - '@prefresh/babel-plugin'
- '@rspack/core'
- - '@swc/core'
+ - '@swc/helpers'
- '@types/webpack'
- browserslist
- bufferutil
- debug
- esbuild
- node-sass
+ - preact
- sass-embedded
- sockjs-client
- supports-color
+ - ts-node
- type-fest
- typescript
- uglify-js
@@ -14894,8 +15190,8 @@ packages:
tmp: 0.0.33
dev: true
- resolution: {integrity: sha512-pZIjqLpOZgdSLecec4GKC3Zq5702MZ34upMKxojnNVSWA0K64V3pXOBT1Wdsrc3AphLtzRBbsi8bRWF4TUGmUg==}
+ resolution: {integrity: sha512-8HKz3qXqnHYp/VCNn2qfjHdAdcI8zcSqOyX64GOMukp7SL2bfzfeDKjSd+UyECtejccaZv3LcvZTm9YDD22iCQ==}
engines: {node: '>=8.0.0'}
dependencies:
pure-rand: 6.1.0
@@ -14912,7 +15208,7 @@ packages:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -14923,8 +15219,8 @@ packages:
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
- resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==}
+ resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
dependencies:
strnum: 1.0.5
@@ -14994,7 +15290,7 @@ packages:
resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==}
engines: {node: '>= 12'}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -15069,7 +15365,7 @@ packages:
resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.8
pkg-dir: 4.2.0
dev: true
@@ -15080,15 +15376,16 @@ packages:
which: 1.3.1
dev: true
- resolution: {integrity: sha512-I9rAm1w8U3CdhgO4EzTJsCvgcbvynZn9lOySkZf78wUdUIQH2w9QOKf3pAX+THt2XMSSR3kJSuM8P7bYux9j8g==}
+ resolution: {integrity: sha512-aGApEu5bfCNbA4PGUZiRJAIU6jKmghV2UVdklXAofnNtiDjqYw0czLS46W7IfFqVKgKhFB8Ao2YoNGHY4BoIMQ==}
+ engines: {node: '>=18'}
hasBin: true
dependencies:
- adm-zip: 0.5.14
- fs-extra: 9.0.1
- ini: 2.0.0
+ adm-zip: 0.5.15
+ fs-extra: 11.2.0
+ ini: 4.1.3
minimist: 1.2.8
- xml2js: 0.5.0
+ xml2js: 0.6.2
dev: true
@@ -15137,8 +15434,8 @@ packages:
dependencies:
is-callable: 1.2.7
- resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
dependencies:
cross-spawn: 7.0.3
@@ -15164,7 +15461,7 @@ packages:
semver: 7.6.3
tapable: 2.2.1
typescript: 5.3.3
dev: true
@@ -15185,8 +15482,8 @@ packages:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
dev: true
- resolution: {integrity: sha512-+luuQdx4AsamyMcvzW7jUAJYIKvQs1KE7oHvKkW3eNzmo0S+3PSDWjBuQkuIP9WyneGnKGMLUSuHs8OP7jKpQg==}
+ resolution: {integrity: sha512-9VmqGe9OIjfMoCcs+ZsKXlv6JaG5QagKX2F1uSbkG3Z33wgjnz60Kw+CngC1M49rDYau+Y9aL+8jGagAwrbVyw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0
@@ -15201,7 +15498,7 @@ packages:
dependencies:
react: 18.3.1
react-dom: 18.3.1([email protected])
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -15249,14 +15546,15 @@ packages:
universalify: 0.1.2
dev: true
- resolution: {integrity: sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==}
+ resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 1.0.0
+ universalify: 2.0.1
+ dev: false
resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==}
@@ -15359,15 +15657,15 @@ packages:
wide-align: 1.1.5
dev: true
- resolution: {integrity: sha512-DSrkyMTfAnAm4ks9Go20QGOcXEyW/NmZhvTYBU2rb4afBB393WIMQPWPEDMl/k8xqiNN9HYq2zao3oWXsdl2Tg==}
+ resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==}
engines: {node: '>=14'}
dependencies:
extend: 3.0.2
https-proxy-agent: 7.0.5
is-stream: 2.0.1
node-fetch: 2.7.0
- uuid: 10.0.0
+ uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -15377,19 +15675,19 @@ packages:
resolution: {integrity: sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==}
engines: {node: '>=14'}
dependencies:
- gaxios: 6.7.0
+ gaxios: 6.7.1
json-bigint: 1.0.0
transitivePeerDependencies:
- encoding
- supports-color
dev: false
resolution: {integrity: sha512-Q4gC1pBVPN+D579pBaz0TRRnGA4p9UK6elDY/xizXdFk/g4EKR5g0I+4p/Kj6gM0SajDBZ/0FvDV9ey9ud7BWw==}
peerDependencies:
next: '>=13.2.0'
dependencies:
dev: false
@@ -15531,7 +15829,7 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
- foreground-child: 3.2.1
+ foreground-child: 3.3.0
jackspeak: 2.3.6
minimatch: 9.0.5
minipass: 7.1.2
@@ -15542,7 +15840,7 @@ packages:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
dependencies:
- foreground-child: 3.2.1
+ foreground-child: 3.3.0
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
@@ -15621,6 +15919,10 @@ packages:
define-properties: 1.2.1
gopd: 1.0.1
+ resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
+ dev: true
+
resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
engines: {node: '>=8'}
@@ -15630,7 +15932,7 @@ packages:
dir-glob: 3.0.1
fast-glob: 3.3.2
glob: 7.2.3
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
dev: true
@@ -15642,7 +15944,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -15652,7 +15954,7 @@ packages:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
dev: true
@@ -15672,8 +15974,12 @@ packages:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
dev: true
- resolution: {integrity: sha512-+i27+zbokJARlSh464b3r25ZabBCOLkTJNdRmn9jdydiXah08u5iQqzUjxnkHpTvQADI/gGVmFykomhJH+udbw==}
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+ dev: true
+
+ resolution: {integrity: sha512-rZd1F6HafPhQ+ynoOaIOTlsQhSxQEuZ/TSEXuW+T8z5urWc9cVmgvFl2r0T//alz14O8gzPfyevZS6878P1Krg==}
engines: {node: '>=16'}
hasBin: true
dependencies:
@@ -15682,6 +15988,15 @@ packages:
shelljs: 0.8.5
dev: true
+ resolution: {integrity: sha512-62KVaQoNkZ63e8xHxLGs5WxeuF4Ciytzjb4nXkJe/iG0ux2d4NmHGqu1kEl08PkHj/XehW9TMozrtNDfdrErbg==}
+ engines: {node: '>=16'}
+ hasBin: true
+ dependencies:
+ '@colors/colors': 1.6.0
+ progress: 2.0.3
+ dev: true
+
resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==}
engines: {node: '>=0.6.0'}
@@ -15690,13 +16005,13 @@ packages:
minimist: 1.2.8
dev: false
- resolution: {integrity: sha512-epX3ww/mNnhl6tL45EQ/oixsY8JLEgUFoT4A5E/5iAR4esld9Kqv6IJGk7EmGuOgDvaarwF95hU2+v7Irql9lw==}
+ resolution: {integrity: sha512-Y/eq+RWVs55Io/anIsm24sDS8X79Tq948zVLGaa7+KlJYYqaGwp1YI37w48nzrNi12RgnzMrQD4NzdmCowT90g==}
engines: {node: '>=14'}
dependencies:
base64-js: 1.5.1
ecdsa-sig-formatter: 1.0.11
- gaxios: 6.7.0
+ gaxios: 6.7.1
gcp-metadata: 6.1.0
gtoken: 7.1.0
jws: 4.0.0
@@ -15734,11 +16049,11 @@ packages:
tinygradient: 1.1.5
dev: true
- resolution: {integrity: sha512-gonaKzEEJ+yjpqb/eGuIi2hsCRd+Oeu9fU4AzpvnrMf9U5ju/oRQ+Vnhx3sOtvO+kvwpeRJ4pv577I5SoMcQ0Q==}
+ resolution: {integrity: sha512-lj/6K6TGmVAdOpHj0PVFK7N37EGe76bpkbgvN+yqCqXYBIwuQosTe7qLhCls7/4pbDxf2+UVSqSXcOILgGGKWQ==}
engines: {node: ^12.20.0 || >=14.13.1}
dependencies:
- '@grammyjs/types': 3.11.0
+ '@grammyjs/types': 3.13.0
abort-controller: 3.0.0
debug: 4.3.6
node-fetch: 2.7.0
@@ -15759,7 +16074,7 @@ packages:
resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==}
engines: {node: '>=14.0.0'}
dependencies:
- gaxios: 6.7.0
+ gaxios: 6.7.1
jws: 4.0.0
transitivePeerDependencies:
- encoding
@@ -15780,7 +16095,7 @@ packages:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.19.0
+ uglify-js: 3.19.2
dev: true
@@ -15846,6 +16161,12 @@ packages:
safe-buffer: 5.2.1
dev: false
+ resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==}
+ requiresBuild: true
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
dev: true
@@ -15876,18 +16197,18 @@ packages:
dependencies:
'@types/hast': 3.0.4
hast-util-from-dom: 5.0.0
- hast-util-from-html: 2.0.1
+ hast-util-from-html: 2.0.2
unist-util-remove-position: 5.0.0
dev: false
- resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==}
+ resolution: {integrity: sha512-HwOHwxdt2zC5KQ/CNoybBntRook2zJvfZE/u5/Ap7aLPe22bDqen7KwGkOqOyzL5zIqKwiYX/OTtE0FWgr6XXA==}
dependencies:
'@types/hast': 3.0.4
devlop: 1.1.0
hast-util-from-parse5: 8.0.1
parse5: 7.1.2
- vfile: 6.0.2
+ vfile: 6.0.3
vfile-message: 4.0.2
dev: false
@@ -15895,11 +16216,11 @@ packages:
resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==}
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
devlop: 1.1.0
hastscript: 8.0.0
property-information: 6.5.0
- vfile: 6.0.2
+ vfile: 6.0.3
vfile-location: 5.0.3
web-namespaces: 2.0.1
dev: false
@@ -15921,13 +16242,13 @@ packages:
dependencies:
'@types/estree': 1.0.5
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@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.0
- mdast-util-mdx-jsx: 3.1.2
+ mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
property-information: 6.5.0
space-separated-tokens: 2.0.2
@@ -15942,7 +16263,7 @@ packages:
resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
dependencies:
'@types/hast': 3.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
hast-util-is-element: 3.0.0
unist-util-find-after: 5.0.0
dev: false
@@ -15967,6 +16288,13 @@ packages:
space-separated-tokens: 2.0.2
dev: false
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+ requiresBuild: true
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==}
dependencies:
@@ -15988,6 +16316,11 @@ packages:
hermes-estree: 0.21.1
dev: false
+ resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==}
+ engines: {node: '>=12.0.0'}
+ dev: false
+
resolution: {integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==}
engines: {node: '>=12.0.0'}
@@ -16012,27 +16345,27 @@ packages:
engines: {node: '>=16.0.0'}
dev: false
- resolution: {integrity: sha512-93P8XEALrHAUGRZoqXs8MDL3w9mDgRpbW9Sy5x4LS7srg78bKUw7EGynxze+Ft1e/rLGmDAbxeSTMu6dHUSRDw==}
+ resolution: {integrity: sha512-zz8ktqMDRrZETjxBrv8C5PQRFbrTRCLNVAjD1SNQyOzv4VjmX68Uxw83xQ6oxdAB60HiWnGEatiKA8V3SZLDkQ==}
engines: {node: '>=16.0.0'}
dev: false
- resolution: {integrity: sha512-Qb68f/Cb2FJQ/2foceCRFw/yNOzbDYHmKxV682+q0DqurkssdFKylGZBZd6zWIzBzQqk8Ol02BCOIusdy8u1dg==}
+ resolution: {integrity: sha512-bPy23zwjrBjMfUAqbWMT8la0JtwATaEKDQ9Nr28JmkelRQsgk++MaVqBsZrghVaMxFkrCpF7a8FTnxCDWC7ZlA==}
engines: {node: '>=18.14.1'}
peerDependencies:
hono: '>=4.*'
dependencies:
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.0
- '@babel/traverse': 7.25.0
- '@babel/types': 7.25.0
- '@hono/vite-dev-server': 0.12.2([email protected])
- hono: 4.5.2
+ '@babel/generator': 7.25.5
+ '@babel/parser': 7.25.4
+ '@babel/traverse': 7.25.4
+ '@babel/types': 7.25.4
+ '@hono/vite-dev-server': 0.14.0([email protected])
+ hono: 4.5.9
jsonc-parser: 3.3.1
precinct: 12.1.2
optionalDependencies:
- '@rollup/rollup-linux-x64-gnu': 4.20.0
+ '@rollup/rollup-linux-x64-gnu': 4.21.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -16083,8 +16416,8 @@ packages:
resolution: {integrity: sha512-/sXbVCWayk6GDVg3ctOX6nxaVj7So40FcFAnWlWGNAB1LpYKcV5Cd10APjPjW80O7zYW2MsjBV4zZ7IZO5fVow==}
dev: false
- resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
@@ -16186,11 +16519,11 @@ packages:
optional: true
dependencies:
'@types/express': 4.17.21
- '@types/http-proxy': 1.17.14
+ '@types/http-proxy': 1.17.15
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
transitivePeerDependencies:
- debug
dev: true
@@ -16268,19 +16601,16 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- requiresBuild: true
dependencies:
safer-buffer: 2.1.2
- dev: true
- optional: true
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
@@ -16305,8 +16635,8 @@ packages:
minimatch: 9.0.5
dev: true
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
@@ -16328,12 +16658,12 @@ packages:
parent-module: 1.0.1
resolve-from: 4.0.0
- resolution: {integrity: sha512-Z1jumVdF2GwnnYfM0a/y2ts7mZbwFMgt5rRuVmLgobgahC6iKgN5MBuXjzfTIOUpq5LSU10vJIPpVKe0X89fIw==}
+ resolution: {integrity: sha512-5DimNQGoe0pLUHbR9qK84iWaWjjbsxiqXnw6Qz64+azRgleqv9k2kTt5fw7QsOpmaGYtuxxursnPPsnTKEx10Q==}
dependencies:
acorn: 8.12.1
acorn-import-attributes: 1.9.5([email protected])
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.0
module-details-from-path: 1.0.3
dev: false
@@ -16343,7 +16673,7 @@ packages:
dependencies:
acorn: 8.12.1
acorn-import-assertions: 1.9.0([email protected])
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.0
module-details-from-path: 1.0.3
dev: false
optional: true
@@ -16399,6 +16729,12 @@ packages:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
+ dev: false
+
+ resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dev: true
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
@@ -16508,10 +16844,6 @@ packages:
is-decimal: 2.0.1
dev: false
- resolution: {integrity: sha512-UtilS7hLRu++wb/WBAw9bNuP1Eg04Ivn1vERJck8zJthEvXCBEBpGR/33u/xLKWEQf95803oalHrVDptcAvFdQ==}
- dev: false
-
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
@@ -16567,6 +16899,12 @@ packages:
builtin-modules: 3.3.0
dev: true
+ resolution: {integrity: sha512-4mTAVPlrXpaN3jtF0lsnPCMGnq4+qZjVIKq0HCpfcqf8OC1SM5oATCIAPM5V5FN05qp2NNnFndphmdZS9CV3hA==}
+ dependencies:
+ semver: 7.6.3
+ dev: true
+
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
@@ -16578,8 +16916,8 @@ packages:
ci-info: 2.0.0
dev: false
- resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==}
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
dependencies:
hasown: 2.0.2
@@ -16606,6 +16944,10 @@ packages:
hasBin: true
dev: true
+ resolution: {integrity: sha512-WOlXUhDDHxYqcSmFZis+xWhhqXiK2SU0iYiqmth5Ip0FHLZQAt9rKL5ahnilE8/86WH8tZ3bmNNNC+bTzamqlw==}
+ dev: false
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
@@ -16980,7 +17322,7 @@ packages:
engines: {node: '>=10'}
hasBin: true
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -16990,7 +17332,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17001,7 +17343,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
merge-stream: 2.0.0
supports-color: 7.2.0
dev: false
@@ -17010,7 +17352,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17018,7 +17360,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17032,12 +17374,12 @@ packages:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: true
- resolution: {integrity: sha512-1Jh//hEEwMhNYPDDLwXHa2ePWgWiFNNUadVmguAAw2IJ6sj9mNxV5tGXJNqlMkJAybF6Lgw1mISDxTePP/187g==}
+ resolution: {integrity: sha512-E7CqYpL/t7MMnfGnK/eg416OsFCVUrU/Y3Vwe7QjKhu/BkS1Ms455+2xsqZQVN57/U2MHMBvEb5SrmAZWAIntA==}
dev: false
- resolution: {integrity: sha512-t4Q7FIqQB3N/1art4OcqdlEtPmQ2h4DNIzTFhvt06WE0kCpQ1QoG+1A1IGTaQBi2KdDRsnywj+ojmHHKgw6PDA==}
+ resolution: {integrity: sha512-IqMWKoXuEzWSShjd9UhalNsRGbdju5G2FrqNLQJT+Ih6p41VNYe2sav5hnwQx4HJr25jq9wRqvGSWGviGG6Gjw==}
engines: {node: '>=12.20.0'}
peerDependencies:
'@types/react': '>=17.0.0'
@@ -17048,12 +17390,12 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
dev: false
- resolution: {integrity: sha512-L7wURW1fH9Qaext0VzaUDpFGVQgjkdE3Dgsy9/+yXyGEpBKnylTd0mU0bfbNkKDlXRb6TEsZkwuflu1B8uQbJQ==}
+ resolution: {integrity: sha512-Pk3l3WOgM9joguZY2k52+jH82RtABRgB5RdGFZNUGbOKGMVlNmafcPA3b0ITcCZPu1L9UclP1tne6aw7ZI4Myg==}
dependencies:
base64-js: 1.5.1
dev: false
@@ -17296,8 +17638,8 @@ packages:
resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==}
dev: true
- resolution: {integrity: sha512-K2/qbc96JhrZbSL74RbZ0DBOpTB9Mxicu8RQrZ88Xsp1bH2O3+y5EdcvC0g/1YzQWQhcQ4peknCA24c3VTNiNA==}
+ resolution: {integrity: sha512-lh98dZeShVPG1VzENpbjFWiburyYpChsO7nehGwxuqQ5/E1BBFKpsDCxLTcgXYpgWFPJxRvMqq7bLeq/txjakw==}
peerDependencies:
'@langchain/core': '*'
langchain: '*'
@@ -17310,12 +17652,13 @@ packages:
openai:
optional: true
dependencies:
- '@langchain/core': 0.2.18
- '@types/uuid': 9.0.8
+ '@langchain/core': 0.2.30
+ '@types/uuid': 10.0.0
commander: 10.0.1
p-queue: 6.6.2
p-retry: 4.6.2
- uuid: 9.0.1
+ semver: 7.6.3
+ uuid: 10.0.0
dev: false
@@ -17329,8 +17672,8 @@ packages:
language-subtag-registry: 0.3.23
dev: true
- resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==}
+ resolution: {integrity: sha512-elBx2l/tp9z99X5H/qev8uyDywVh0VXAwEbjk8kJhnc5grOFkGh7aW6q55me9xnYbss261XtnUrysZ+XvGbhQA==}
dependencies:
picocolors: 1.0.1
shell-quote: 1.8.1
@@ -17350,7 +17693,7 @@ packages:
optional: true
dependencies:
less: 4.2.0
dev: true
@@ -17360,7 +17703,7 @@ packages:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -17404,8 +17747,8 @@ packages:
resolution: {integrity: sha512-auMesunaJ8yfkHvK4gfg1K0SaKX/6Wn9g2Aac/NwX+l5VdmFZzo/hdPGxEOETj+ryRa4/fiOPjeeKURSAJx1sg==}
dev: false
- resolution: {integrity: sha512-+FdVbbCZ+yoh7E/RosSdqKJyUM2OEjTciH0TFNkawKgvFp1zbGlEC39RADg+xKBG1R4mhoH2j85myBQZ5wR+lw==}
+ resolution: {integrity: sha512-BZAt8Lk3sEnxw7tfxM7jeZlPRuT4M68O0/CwZhhaw6eeWu0Lz5eERE3m386InivXB64fp/mDID452h48tvKlRQ==}
engines: {node: '>=18.12.0'}
hasBin: true
dependencies:
@@ -17414,17 +17757,17 @@ packages:
debug: 4.3.6
execa: 8.0.1
lilconfig: 3.1.2
- listr2: 8.2.3
- micromatch: 4.0.7
+ listr2: 8.2.4
+ micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.4.5
+ yaml: 2.5.0
transitivePeerDependencies:
- supports-color
dev: true
- resolution: {integrity: sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==}
+ resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==}
engines: {node: '>=18.0.0'}
dependencies:
cli-truncate: 4.0.0
@@ -17449,6 +17792,17 @@ packages:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
+ engines: {node: '>=4.0.0'}
+ requiresBuild: true
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 1.0.2
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -17664,8 +18018,8 @@ packages:
dependencies:
sourcemap-codec: 1.4.8
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -17805,7 +18159,7 @@ packages:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit: 4.1.2
dev: false
@@ -17822,7 +18176,7 @@ packages:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -17841,7 +18195,7 @@ packages:
resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
dependencies:
'@types/mdast': 4.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
@@ -17856,8 +18210,8 @@ packages:
- supports-color
dev: false
- resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==}
+ resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
dependencies:
'@types/mdast': 4.0.4
ccount: 2.0.1
@@ -17915,7 +18269,7 @@ packages:
resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==}
dependencies:
mdast-util-from-markdown: 2.0.1
- mdast-util-gfm-autolink-literal: 2.0.0
+ mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
@@ -17952,20 +18306,19 @@ packages:
- supports-color
dev: false
- resolution: {integrity: sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==}
+ resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
dependencies:
'@types/estree-jsx': 1.0.5
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
ccount: 2.0.1
devlop: 1.1.0
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
- unist-util-remove-position: 5.0.0
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
transitivePeerDependencies:
@@ -18016,14 +18369,14 @@ packages:
trim-lines: 3.0.1
unist-util-position: 5.0.0
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
dev: false
resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
dependencies:
'@types/mdast': 4.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
@@ -18095,14 +18448,14 @@ packages:
fs-monkey: 1.0.6
dev: true
- resolution: {integrity: sha512-+6kz90/YQoZuHvg3rn1CGPMZfEMaU5xe7xIavZMNiom2RNesiI8S37p9O9n+PlIUnUgretjLdM6HnqpZYl3X2g==}
+ resolution: {integrity: sha512-LZcMTBAgqUUKNXZagcZxvXXfgF1bHX7Y7nQ0QyEiNbRJgE29GhgPd8Yna1VQcLlPiHt/5RFJMWYN9Uv/VPNvjQ==}
engines: {node: '>= 4.0.0'}
dependencies:
- '@jsonjoy.com/json-pack': 1.0.4([email protected])
- '@jsonjoy.com/util': 1.3.0([email protected])
- tree-dump: 1.0.2([email protected])
- tslib: 2.6.3
+ '@jsonjoy.com/json-pack': 1.1.0([email protected])
+ '@jsonjoy.com/util': 1.3.0([email protected])
+ tree-dump: 1.0.2([email protected])
+ tslib: 2.7.0
dev: true
@@ -18584,8 +18937,8 @@ packages:
- supports-color
dev: false
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.3
@@ -18603,12 +18956,12 @@ packages:
resolution: {integrity: sha512-6Vh1s0da0PzSqbbp9Zd8yMTIkOWnvBU4vNJCMHTZPXaY3fZ5h+N7s5croS/RBgjJIHz3WQZnvyNBQz7gQ6cqJg==}
hasBin: true
dependencies:
- '@babel/core': 7.24.9
- '@babel/types': 7.25.0
+ '@babel/core': 7.25.2
+ '@babel/types': 7.25.4
'@rollup/pluginutils': 5.1.0([email protected])
kleur: 4.1.5
- undici: 6.19.4
- unplugin: 1.12.0
+ undici: 6.19.8
+ unplugin: 1.12.2
transitivePeerDependencies:
- rollup
- supports-color
@@ -18661,19 +19014,19 @@ packages:
engines: {node: '>=4'}
dev: true
- resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
+ resolution: {integrity: sha512-+Vyi+GCCOHnrJ2VPS+6aPoXN2k2jgUzDRhTFLjjTBn23qyXJXkjUWQgTL+mXpF5/A8ixLdCc6kWsoeOjKGejKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
dev: true
- resolution: {integrity: sha512-mn3MjGnpgYvarCRTfz4TQyVyY8yW0zz7f8LOAPVai78IGC/lcVcyskZcuIr7Zovb2i+IERmmsJAiEPeZHIIKbA==}
+ resolution: {integrity: sha512-4BhLGpssQxM/O6TZmJ10GkT3wBJK6emFkZ3V87/HyvQmVt8zMxEBvyw5uv6kdtp+7F54Nw6IKFJjPUL8rFVQrQ==}
engines: {node: '>=16.13'}
hasBin: true
dependencies:
@@ -18685,7 +19038,7 @@ packages:
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.4
- workerd: 1.20240718.0
+ workerd: 1.20240821.1
ws: 8.18.0
youch: 3.3.3
zod: 3.23.8
@@ -18789,8 +19142,8 @@ packages:
minipass: 3.3.6
dev: true
- resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
+ resolution: {integrity: sha512-myxeeTm57lYs8pH2nxPzmEEg8DGIgW+9mv6D4JZD2pa81I/OBjeU7PtICXV6c9eRGTA5JMDsuIPUZRCyBMYNhg==}
dependencies:
jsonparse: 1.3.1
minipass: 3.3.6
@@ -18878,37 +19231,6 @@ packages:
hasBin: true
dev: true
- resolution: {integrity: sha512-MIdf7Zc8HznwIisyiJGRH9tRigg3Yf4FldW8DxKxpCCv/g5CafTw0RRu51nojVEOXuCQC7DRVVu5c7XXO/5joQ==}
- dependencies:
- ml-array-sum: 1.1.6
- dev: false
-
- resolution: {integrity: sha512-29mAh2GwH7ZmiRnup4UyibQZB9+ZLyMShvt4cH4eTK+cL2oEMIZFnSyB3SS8MlsTh6q/w/yh48KmqLxmovN4Dw==}
- dependencies:
- is-any-array: 2.0.1
- dev: false
-
- resolution: {integrity: sha512-yC9/2o8QF0A3m/0IXqCTXCzz2pNEzvmcE/9HFKOZGnTjatvBbsn4lWYJkxENkA4Ug2fnYl7PXQxnPi21sgMy/Q==}
- dev: false
-
- resolution: {integrity: sha512-feZ5ziXs01zhyFUUUeZV5hwc0f5JW0Sh0ckU1koZe/wdVkJdGxcP06KNQuF0WBTj8FttQUzcvQcpcrOp/XrlEw==}
- dependencies:
- ml-array-mean: 1.1.6
- ml-distance-euclidean: 2.0.0
- ml-tree-similarity: 1.0.0
- dev: false
-
- resolution: {integrity: sha512-XJUyYqjSuUQkNQHMscr6tcjldsOoAekxADTplt40QKfwW6nd++1wHWV9AArl0Zvw/TIHgNaZZNvr8QGvE8wLRg==}
- dependencies:
- binary-search: 1.3.6
- num-sort: 2.1.0
- dev: false
-
resolution: {integrity: sha512-sEGP5nKEXU7fGSZUML/coJbrO+yQtxcppDAYWRE9ovWsTbFoUHB2qDUx564WUzDaBHXsD46JBbIK5WVTwCyu3w==}
engines: {node: '>=18'}
@@ -19032,20 +19354,20 @@ packages:
engines: {node: '>= 0.4.0'}
dev: true
- resolution: {integrity: sha512-2ZPkOTvEG7DSLweY+va3QHfDYQaKNYnpS+QDc7t1svjD5HUz0LdoPbSExpxA0uvH+KjTpjm525Uf03AcUhIwcQ==}
+ resolution: {integrity: sha512-vFRxAuuv3Yv960doxgAq0BnGdM8BoKIVeASX7i7qkpUl5YaQ1o2GOQQA8YSQwoNcptNkHWk5uT5lxfoU6sxjAQ==}
peerDependencies:
react: '>=16'
dependencies:
react: 18.3.1
dev: false
- resolution: {integrity: sha512-YHu1igcAxZPh8ZB7GIM93dqgY6gcAzq66FOhQFheAdOx1raxNcApt05nNyNCSB6NegSiyJ4XOPsaNow4pfDmsg==}
+ resolution: {integrity: sha512-+48SjV9k9AtUU3JbEIa4PXNjKIewfFjVGL7Xs2RKkuQ5QqegDNIQiIG8sLk6/qo7RTScQYIGKgeQ5IuQRtrTQg==}
peerDependencies:
'@simplewebauthn/browser': ^9.0.1
'@simplewebauthn/server': ^9.0.2
- next: ^14 || ^15.0.0-0
+ next: ^14.0.0-0 || ^15.0.0-0
nodemailer: ^6.6.5
react: ^18.2.0 || ^19.0.0-0
peerDependenciesMeta:
@@ -19056,22 +19378,22 @@ packages:
nodemailer:
optional: true
dependencies:
- '@auth/core': 0.32.0
+ '@auth/core': 0.34.2
react: 18.3.1
dev: false
resolution: {integrity: sha512-XV8g8C6B7UmViXU8askMEYhWwQ4qc/XqJGnexbLV68hzKaGHZDMtHsm2TNxFcbR7+ypVuth/wwpiIlMwpRJJ5A==}
peerDependencies:
next: '>=9.0.0'
dependencies:
- babel-loader: 8.3.0(@babel/[email protected])([email protected])
- clean-webpack-plugin: 4.0.0([email protected])
+ babel-loader: 8.3.0(@babel/[email protected])([email protected])
+ clean-webpack-plugin: 4.0.0([email protected])
globby: 11.1.0
- terser-webpack-plugin: 5.3.10([email protected])([email protected])
- workbox-webpack-plugin: 6.6.0([email protected])
+ terser-webpack-plugin: 5.3.10([email protected])([email protected])
+ workbox-webpack-plugin: 6.6.0([email protected])
workbox-window: 6.6.0
transitivePeerDependencies:
- '@babel/core'
@@ -19097,8 +19419,8 @@ packages:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
dev: false
- resolution: {integrity: sha512-0f8aRfBVL+mpzfBjYfQuLWh2WyAwtJXCRfkPF4UJ5qd2YwrHczsrSzXU4tRMV0OAxR8ZJZWPFn6uhSC56UTsLA==}
+ resolution: {integrity: sha512-4Qy2aK0LwH4eQiSvQWyKuC7JXE13bIopEQesWE0c/P3uuNRnZCQanI0vsrMLmUQJLAto+A+/8+sve2hd+BQuOQ==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -19115,26 +19437,26 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 14.2.5
+ '@next/env': 14.2.7
'@opentelemetry/api': 1.9.0
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001643
+ caniuse-lite: 1.0.30001653
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1([email protected])
- styled-jsx: 5.1.1(@babel/[email protected])([email protected])
+ styled-jsx: 5.1.1(@babel/[email protected])([email protected])
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.5
- '@next/swc-darwin-x64': 14.2.5
- '@next/swc-linux-arm64-gnu': 14.2.5
- '@next/swc-linux-arm64-musl': 14.2.5
- '@next/swc-linux-x64-gnu': 14.2.5
- '@next/swc-linux-x64-musl': 14.2.5
- '@next/swc-win32-arm64-msvc': 14.2.5
- '@next/swc-win32-ia32-msvc': 14.2.5
- '@next/swc-win32-x64-msvc': 14.2.5
+ '@next/swc-darwin-arm64': 14.2.7
+ '@next/swc-darwin-x64': 14.2.7
+ '@next/swc-linux-arm64-gnu': 14.2.7
+ '@next/swc-linux-arm64-musl': 14.2.7
+ '@next/swc-linux-x64-gnu': 14.2.7
+ '@next/swc-linux-x64-musl': 14.2.7
+ '@next/swc-win32-arm64-msvc': 14.2.7
+ '@next/swc-win32-ia32-msvc': 14.2.7
+ '@next/swc-win32-x64-msvc': 14.2.7
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -19279,7 +19601,7 @@ packages:
resolution: {integrity: sha512-1uiY543L+N7Og4yswvlm5NCKgPKDEXd9AUR9Jh3gen6oOeBsesr6LqhXom1er3eRzSUcVRWXzhv8tSNrIfGHKw==}
engines: {node: '>=18'}
dependencies:
- '@babel/parser': 7.25.0
+ '@babel/parser': 7.25.4
dev: false
@@ -19312,7 +19634,7 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
hosted-git-info: 6.1.1
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
semver: 7.6.3
validate-npm-package-license: 3.0.4
dev: true
@@ -19326,47 +19648,49 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
resolution: {integrity: sha512-3a4Zt3GvpklMqpMZJlGJDwNRt188t8p/WYwDNdn3nKmQGM6U8Maq04ZL3MRVNm9K9OgAEIf1Dax0ki5wBWm15w==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-character-count': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-code-block-lowlight': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-color': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-highlight': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-horizontal-rule': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-image': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-link': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-placeholder': 2.0.3(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-task-item': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
- '@tiptap/extension-task-list': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-text-style': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-underline': 2.5.7(@tiptap/[email protected])
- '@tiptap/extension-youtube': 2.5.7(@tiptap/[email protected])
- '@tiptap/pm': 2.5.7
- '@tiptap/react': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])([email protected])([email protected])
- '@tiptap/starter-kit': 2.5.7(@tiptap/[email protected])
- '@tiptap/suggestion': 2.5.7(@tiptap/[email protected])(@tiptap/[email protected])
+ '@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-character-count': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-code-block-lowlight': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])(@tiptap/[email protected])([email protected])([email protected])
+ '@tiptap/extension-color': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-highlight': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-horizontal-rule': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-image': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-link': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-placeholder': 2.0.3(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-task-item': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
+ '@tiptap/extension-task-list': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-text-style': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-underline': 2.6.6(@tiptap/[email protected])
+ '@tiptap/extension-youtube': 2.6.6(@tiptap/[email protected])
+ '@tiptap/pm': 2.6.6
+ '@tiptap/react': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])([email protected])([email protected])
+ '@tiptap/starter-kit': 2.6.6
+ '@tiptap/suggestion': 2.6.6(@tiptap/[email protected])(@tiptap/[email protected])
'@types/node': 18.15.3
- jotai: 2.9.1(@types/[email protected])([email protected])
+ jotai: 2.9.3(@types/[email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
- react-markdown: 8.0.7(@types/[email protected])([email protected])
+ react-markdown: 8.0.7(@types/[email protected])([email protected])
react-moveable: 0.56.0
tippy.js: 6.3.7
- tiptap-extension-global-drag-handle: 0.1.10
- tiptap-markdown: 0.8.10(@tiptap/[email protected])
- tunnel-rat: 0.1.2(@types/[email protected])([email protected])
+ tiptap-extension-global-drag-handle: 0.1.12
+ tiptap-markdown: 0.8.10(@tiptap/[email protected])
+ tunnel-rat: 0.1.2(@types/[email protected])([email protected])
transitivePeerDependencies:
- '@tiptap/extension-code-block'
- '@types/react'
+ - highlight.js
- immer
+ - lowlight
- supports-color
dev: false
@@ -19474,7 +19798,7 @@ packages:
make-fetch-happen: 10.2.1
minipass: 3.3.6
minipass-fetch: 1.4.1
- minipass-json-stream: 1.0.1
+ minipass-json-stream: 1.0.2
minizlib: 2.1.2
npm-package-arg: 8.1.5
transitivePeerDependencies:
@@ -19489,7 +19813,7 @@ packages:
make-fetch-happen: 11.1.1
minipass: 5.0.0
minipass-fetch: 3.0.5
- minipass-json-stream: 1.0.1
+ minipass-json-stream: 1.0.2
minizlib: 2.1.2
npm-package-arg: 10.1.0
proc-log: 3.0.0
@@ -19538,22 +19862,17 @@ packages:
boolbase: 1.0.0
dev: false
- resolution: {integrity: sha512-1MQz1Ed8z2yckoBeSfkQHHO9K1yDRxxtotKSJ9yvcTUUxSvfvzEq5GwBrjjHEpMlq/k5gvXdmJ1SbYxWtpNoVg==}
- engines: {node: '>=8'}
- dev: false
-
- resolution: {integrity: sha512-mbQKLo+4h9ZsCg9u4WcitBqVhP2XG2PrPc0sUN0IEHL3nUKjxHT2h3tqd1Wo1gkkGxan5uVpnJ9NP51y2j7vgg==}
+ resolution: {integrity: sha512-JqsnzO+hJyjJE7ebuhpHMLA2iGY48e2xr0oJQFhj7kjUmDABL2XOup47rxF5TL/5b9jEsmU2t0lAKin1VdK1/A==}
peerDependencies:
next: '>=13.4 <14.0.2 || ^14.0.3'
dependencies:
mitt: 3.0.1
dev: false
- resolution: {integrity: sha512-aNzOnL98bL6izG97zgnZs1PFEyO4WDVRhz2Pd066NPak44w5ESLRCYmJIyey8avSBPOMtBjhF3ZDDm7bIb7UOg==}
+ resolution: {integrity: sha512-WFmcHzhFtq2Ar91crpGQZUD8DS0SG7Zti1AgbansUAfdpIsoRXE+hcMNi8MW6bGNNObWis0x8BZRl6K+FR4oQg==}
dev: false
@@ -19693,7 +20012,7 @@ packages:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.46.0(@opentelemetry/[email protected])
- '@opentelemetry/semantic-conventions': 1.25.1
+ '@opentelemetry/semantic-conventions': 1.26.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -20009,7 +20328,7 @@ packages:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -20051,6 +20370,12 @@ packages:
parse5: 7.1.2
dev: false
+ resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
+ dependencies:
+ parse5: 7.1.2
+ dev: false
+
resolution: {integrity: sha512-FkmkatHahuLI+q1unkoCSRj89E6TqSJWNZfUGQ1mKKS2xtVeYZKdWPJhw3dWQPANdNyX+7fIoCT/qthCFeHzOQ==}
dependencies:
@@ -20276,38 +20601,38 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
resolution: {integrity: sha512-KHkmCILThWBRtg+Jn1owTnHPnFit4OkqS+eKiGEOPIGke54DCeYGJ6r0Fx/HjfE9M9kznApCLcU0DvnPchazMQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==}
engines: {node: '>=8'}
peerDependencies:
browserslist: '>=4'
postcss: '>=8'
dependencies:
- browserslist: 4.23.2
- postcss: 8.4.40
+ browserslist: 4.23.3
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-dNUX+UH4dAozZ8uMHZ3CtCNYw8fyFAmqqdcyxMr7PEdM9jLXV19YscoYO0F25KqZYhmtWKQ+4tKrIZQrwzwg7A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -20316,34 +20641,34 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-XQZm4q4fNFqVCYMGPiBjcqDhuG7Ey2xrl99AnDJMyr5eDASsAGalndVgHZF8i97VFNy1GQeZc4q2ydagGmhelQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-ruBqzEFDYHrcVq3FnW3XHgwRqVMrtEPLBtD7K2YmsLKVc2jbkxzzNEctJKsPCpDZ+LeMHLKRDoSShVefGc+CkQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-V1KgPcmvlGdxTel4/CyQtBJEFhMVpEmRGFrnVtgfGIHj5PJX9vO36eFBxKBeJn+aCDTed70cc+98Mz3J/uVdGQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -20353,10 +20678,10 @@ packages:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
'@csstools/media-query-list-parser': 2.1.13(@csstools/[email protected])(@csstools/[email protected])
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-oPn/OVqONB2ZLNqN185LDyaVByELAA/u3l2CS2TS16x2j2XsmV4kd8U49+TMxmUsEU9d8fB/I10E6U7kB0L1BA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -20365,12 +20690,12 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.13(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-ctIoprBMJwByYMGjXG0F7IT2iMF2hnamQ+aWZETyBM0aAlyaYdVZTeUkk8RB+9h9wP+NdN3f01lfvKl2ZSqC0g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -20379,109 +20704,109 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.13(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-1xEhjV9u1s4l3iP5lRt1zvMjI/ya8492o9l/ivcxHhkO3nOz16moC4JpMxDUGrOs4R3hX+KWT7gKoV842cwRgg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-i2bXrBYzfbRzFnm+pVuxVePSTCRiNmlfssGI4H0tJQvDue+yywXwUxe68VyzXs7cGtMaH6MCLY6IbCShrSroCw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.40
+ postcss: 8.4.41
resolution: {integrity: sha512-vwln/mgvFrotJuGV8GFhpAOu9iGf3pvTBr6dLPDmUcqVD5OsQpEFyQMAFTxSxWXGEzBj6ld4pZ/9GDfEpXvo0g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -20490,12 +20815,12 @@ packages:
'@csstools/css-color-parser': 2.0.5(@csstools/[email protected])(@csstools/[email protected])
'@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/utilities': 1.0.0([email protected])
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/utilities': 1.0.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
@@ -20508,10 +20833,10 @@ packages:
optional: true
dependencies:
lilconfig: 3.1.2
- postcss: 8.4.40
+ postcss: 8.4.41
yaml: 2.5.0
resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -20526,20 +20851,20 @@ packages:
dependencies:
cosmiconfig: 9.0.0([email protected])
jiti: 1.21.6
- postcss: 8.4.40
+ postcss: 8.4.41
semver: 7.6.3
transitivePeerDependencies:
- typescript
dev: true
resolution: {integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
@@ -20547,69 +20872,69 @@ packages:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
dev: true
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0([email protected])
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ icss-utils: 5.1.0([email protected])
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0([email protected])
- postcss: 8.4.40
+ icss-utils: 5.1.0([email protected])
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
resolution: {integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-resolve-nested': 1.1.0([email protected])
- '@csstools/selector-specificity': 3.1.1([email protected])
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-resolve-nested': 1.1.0([email protected])
+ '@csstools/selector-specificity': 3.1.1([email protected])
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==}
engines: {node: '>= 12'}
peerDependencies:
@@ -20617,167 +20942,167 @@ packages:
postcss: '>= 8'
dependencies:
'@csstools/normalize.css': 12.1.1
- browserslist: 4.23.2
- postcss: 8.4.40
- postcss-browser-comments: 4.0.0([email protected])([email protected])
+ browserslist: 4.23.3
+ postcss: 8.4.41
+ postcss-browser-comments: 4.0.0([email protected])([email protected])
sanitize.css: 13.0.0
dev: true
resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
postcss-value-parser: 4.2.0
dev: true
resolution: {integrity: sha512-Lxfk4RYjUdwPCYkc321QMdgtdCP34AeI94z+/8kVmqnTIlD4bMRQeGcMZgwz8BxHrzQiFXYIR5d7k/9JMs2MEA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-cascade-layers': 4.0.6([email protected])
- '@csstools/postcss-color-function': 3.0.19([email protected])
- '@csstools/postcss-color-mix-function': 2.0.19([email protected])
- '@csstools/postcss-content-alt-text': 1.0.0([email protected])
- '@csstools/postcss-exponential-functions': 1.0.9([email protected])
- '@csstools/postcss-font-format-keywords': 3.0.2([email protected])
- '@csstools/postcss-gamut-mapping': 1.0.11([email protected])
- '@csstools/postcss-gradients-interpolation-method': 4.0.20([email protected])
- '@csstools/postcss-hwb-function': 3.0.18([email protected])
- '@csstools/postcss-ic-unit': 3.0.7([email protected])
- '@csstools/postcss-initial': 1.0.1([email protected])
- '@csstools/postcss-is-pseudo-class': 4.0.8([email protected])
- '@csstools/postcss-light-dark-function': 1.0.8([email protected])
- '@csstools/postcss-logical-float-and-clear': 2.0.1([email protected])
- '@csstools/postcss-logical-overflow': 1.0.1([email protected])
- '@csstools/postcss-logical-overscroll-behavior': 1.0.1([email protected])
- '@csstools/postcss-logical-resize': 2.0.1([email protected])
- '@csstools/postcss-logical-viewport-units': 2.0.11([email protected])
- '@csstools/postcss-media-minmax': 1.1.8([email protected])
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.11([email protected])
- '@csstools/postcss-nested-calc': 3.0.2([email protected])
- '@csstools/postcss-normalize-display-values': 3.0.2([email protected])
- '@csstools/postcss-oklab-function': 3.0.19([email protected])
- '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
- '@csstools/postcss-relative-color-syntax': 2.0.19([email protected])
- '@csstools/postcss-scope-pseudo-class': 3.0.1([email protected])
- '@csstools/postcss-stepped-value-functions': 3.0.10([email protected])
- '@csstools/postcss-text-decoration-shorthand': 3.0.7([email protected])
- '@csstools/postcss-trigonometric-functions': 3.0.10([email protected])
- '@csstools/postcss-unset-value': 3.0.1([email protected])
- autoprefixer: 10.4.19([email protected])
- browserslist: 4.23.2
- css-blank-pseudo: 6.0.2([email protected])
- css-has-pseudo: 6.0.5([email protected])
- css-prefers-color-scheme: 9.0.1([email protected])
+ '@csstools/postcss-cascade-layers': 4.0.6([email protected])
+ '@csstools/postcss-color-function': 3.0.19([email protected])
+ '@csstools/postcss-color-mix-function': 2.0.19([email protected])
+ '@csstools/postcss-content-alt-text': 1.0.0([email protected])
+ '@csstools/postcss-exponential-functions': 1.0.9([email protected])
+ '@csstools/postcss-font-format-keywords': 3.0.2([email protected])
+ '@csstools/postcss-gamut-mapping': 1.0.11([email protected])
+ '@csstools/postcss-gradients-interpolation-method': 4.0.20([email protected])
+ '@csstools/postcss-hwb-function': 3.0.18([email protected])
+ '@csstools/postcss-ic-unit': 3.0.7([email protected])
+ '@csstools/postcss-initial': 1.0.1([email protected])
+ '@csstools/postcss-is-pseudo-class': 4.0.8([email protected])
+ '@csstools/postcss-light-dark-function': 1.0.8([email protected])
+ '@csstools/postcss-logical-float-and-clear': 2.0.1([email protected])
+ '@csstools/postcss-logical-overflow': 1.0.1([email protected])
+ '@csstools/postcss-logical-overscroll-behavior': 1.0.1([email protected])
+ '@csstools/postcss-logical-resize': 2.0.1([email protected])
+ '@csstools/postcss-logical-viewport-units': 2.0.11([email protected])
+ '@csstools/postcss-media-minmax': 1.1.8([email protected])
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.11([email protected])
+ '@csstools/postcss-nested-calc': 3.0.2([email protected])
+ '@csstools/postcss-normalize-display-values': 3.0.2([email protected])
+ '@csstools/postcss-oklab-function': 3.0.19([email protected])
+ '@csstools/postcss-progressive-custom-properties': 3.3.0([email protected])
+ '@csstools/postcss-relative-color-syntax': 2.0.19([email protected])
+ '@csstools/postcss-scope-pseudo-class': 3.0.1([email protected])
+ '@csstools/postcss-stepped-value-functions': 3.0.10([email protected])
+ '@csstools/postcss-text-decoration-shorthand': 3.0.7([email protected])
+ '@csstools/postcss-trigonometric-functions': 3.0.10([email protected])
+ '@csstools/postcss-unset-value': 3.0.1([email protected])
+ autoprefixer: 10.4.20([email protected])
+ browserslist: 4.23.3
+ css-blank-pseudo: 6.0.2([email protected])
+ css-has-pseudo: 6.0.5([email protected])
+ css-prefers-color-scheme: 9.0.1([email protected])
cssdb: 8.1.0
- postcss: 8.4.40
- postcss-attribute-case-insensitive: 6.0.3([email protected])
- postcss-clamp: 4.1.0([email protected])
- postcss-color-functional-notation: 6.0.14([email protected])
- postcss-color-hex-alpha: 9.0.4([email protected])
- postcss-color-rebeccapurple: 9.0.3([email protected])
- postcss-custom-media: 10.0.8([email protected])
- postcss-custom-properties: 13.3.12([email protected])
- postcss-custom-selectors: 7.1.12([email protected])
- postcss-dir-pseudo-class: 8.0.1([email protected])
- postcss-double-position-gradients: 5.0.7([email protected])
- postcss-focus-visible: 9.0.1([email protected])
- postcss-focus-within: 8.0.1([email protected])
- postcss-font-variant: 5.0.0([email protected])
- postcss-gap-properties: 5.0.1([email protected])
- postcss-image-set-function: 6.0.3([email protected])
- postcss-lab-function: 6.0.19([email protected])
- postcss-logical: 7.0.1([email protected])
- postcss-nesting: 12.1.5([email protected])
- postcss-opacity-percentage: 2.0.0([email protected])
- postcss-overflow-shorthand: 5.0.1([email protected])
- postcss-page-break: 3.0.4([email protected])
- postcss-place: 9.0.1([email protected])
- postcss-pseudo-class-any-link: 9.0.2([email protected])
- postcss-replace-overflow-wrap: 4.0.0([email protected])
- postcss-selector-not: 7.0.2([email protected])
- dev: true
-
+ postcss: 8.4.41
+ postcss-attribute-case-insensitive: 6.0.3([email protected])
+ postcss-clamp: 4.1.0([email protected])
+ postcss-color-functional-notation: 6.0.14([email protected])
+ postcss-color-hex-alpha: 9.0.4([email protected])
+ postcss-color-rebeccapurple: 9.0.3([email protected])
+ postcss-custom-media: 10.0.8([email protected])
+ postcss-custom-properties: 13.3.12([email protected])
+ postcss-custom-selectors: 7.1.12([email protected])
+ postcss-dir-pseudo-class: 8.0.1([email protected])
+ postcss-double-position-gradients: 5.0.7([email protected])
+ postcss-focus-visible: 9.0.1([email protected])
+ postcss-focus-within: 8.0.1([email protected])
+ postcss-font-variant: 5.0.0([email protected])
+ postcss-gap-properties: 5.0.1([email protected])
+ postcss-image-set-function: 6.0.3([email protected])
+ postcss-lab-function: 6.0.19([email protected])
+ postcss-logical: 7.0.1([email protected])
+ postcss-nesting: 12.1.5([email protected])
+ postcss-opacity-percentage: 2.0.0([email protected])
+ postcss-overflow-shorthand: 5.0.1([email protected])
+ postcss-page-break: 3.0.4([email protected])
+ postcss-place: 9.0.1([email protected])
+ postcss-pseudo-class-any-link: 9.0.2([email protected])
+ postcss-replace-overflow-wrap: 4.0.0([email protected])
+ postcss-selector-not: 7.0.2([email protected])
+ dev: true
+
resolution: {integrity: sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
- resolution: {integrity: sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==}
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
dev: true
resolution: {integrity: sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==}
engines: {node: '>=18.0'}
peerDependencies:
postcss: ^8.4.31
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.4.29
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.41
dev: true
resolution: {integrity: sha512-/SSxf/90Obye49VZIfc0ls4H0P6i6V1iHv0pzZH8SdgvZOPFkF37ef1r5cyWcMflJSFJ5bfuoluTnFnBBFiuSA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-selector-parser: 6.1.2
dev: true
@@ -20788,8 +21113,8 @@ packages:
util-deprecate: 1.0.2
dev: false
- resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
@@ -20798,7 +21123,7 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==}
engines: {node: '>=10'}
peerDependencies:
@@ -20806,7 +21131,7 @@ packages:
dependencies:
color-name: 1.1.4
is-url-superb: 4.0.0
- postcss: 8.4.40
+ postcss: 8.4.41
quote-unquote: 1.0.0
dev: false
@@ -20819,8 +21144,8 @@ packages:
source-map-js: 1.2.0
dev: false
- resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
+ resolution: {integrity: sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
@@ -20849,12 +21174,12 @@ packages:
xtend: 4.0.2
dev: false
- resolution: {integrity: sha512-YYhWckDIRObfCrQpiLq+fdcDTIbQp8ebiKi0ueGohMRgugIG9LJVSpBgCeCHZm2C7sOxDUNcAr3T5VBDUSQoOg==}
+ resolution: {integrity: sha512-BRCZUpkZTsNPTTclpqv6tB9aGD9OH1Lh+3SZdqo/JMbPesKRQ2XSis6WhxWmujrTZDfdJtVa7tnQG1aT2Ag4Yg==}
dependencies:
fflate: 0.4.8
- preact: 10.23.1
- web-vitals: 4.2.2
+ preact: 10.23.2
+ web-vitals: 4.2.3
dev: false
@@ -20870,9 +21195,8 @@ packages:
resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==}
dev: false
- resolution: {integrity: sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A==}
- dev: false
+ resolution: {integrity: sha512-kKYfePf9rzKnxOAKDpsWhg/ysrHPqT+yQ7UW4JjdnqjFIeNUnNcEJvhuA8fDenxAGWzUqtd51DfVg7xp/8T9NA==}
resolution: {integrity: sha512-x2qVN3oSOp3D05ihCd8XdkIPuEQsyte7PSxzLqiRgktu79S5Dr1I75/S+zAup8/0cwjoiJTQztE9h0/sWp9bJQ==}
@@ -20884,7 +21208,7 @@ packages:
detective-amd: 6.0.0
detective-cjs: 6.0.0
detective-es6: 5.0.0
- detective-postcss: 7.0.0([email protected])
+ detective-postcss: 7.0.0([email protected])
detective-sass: 6.0.0
detective-scss: 5.0.0
detective-stylus: 5.0.0
@@ -20892,7 +21216,7 @@ packages:
detective-vue2: 2.0.3([email protected])
module-definition: 6.0.0
node-source-walk: 7.0.0
- postcss: 8.4.40
+ postcss: 8.4.41
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -20917,8 +21241,8 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- resolution: {integrity: sha512-6i4PW1KxEA+VrokYNGeI/q8qQX3u5DNBc7eLr9GX4OrvWr9DMls1lhbuNopkKG7Li9rTNxerWnYQyjxoUO4ROA==}
+ resolution: {integrity: sha512-w+TmoLv2pIa+siplW1cCj2ujEXQQS6z7wmWLOiLQK/2QVl7Wy6xh/ZUpqQw8tbKMXDodmSW4GONxlA33xpdNOg==}
peerDependencies:
prettier: '>= 1.16.0'
peerDependenciesMeta:
@@ -20926,7 +21250,7 @@ packages:
optional: true
dependencies:
prettier: 3.3.3
- sort-package-json: 2.10.0
+ sort-package-json: 2.10.1
synckit: 0.9.1
dev: true
@@ -21025,7 +21349,7 @@ packages:
resolution: {integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ==}
dependencies:
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
dev: false
@@ -21037,34 +21361,34 @@ packages:
resolution: {integrity: sha512-xn1U/g36OqXn2tn5nGmvnnimAj/g1pUx2ypJJIe8WkVX83WyJVC5LTARaxZa2AtQRwntu9Jc5zXs9gL9svp/mg==}
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
dev: false
resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.1
dev: false
resolution: {integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==}
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.33.9
+ prosemirror-view: 1.34.1
dev: false
resolution: {integrity: sha512-2JZD8z2JviJrboD9cPuX/Sv/1ChFng+xh2tChQ2X4bB2HeK+rra/bmJ3xGntCcjhOqIzSDG6Id7e8RJ9QPXLEQ==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.1
rope-sequence: 1.3.4
dev: false
@@ -21072,7 +21396,7 @@ packages:
resolution: {integrity: sha512-6ygpPRuTJ2lcOXs9JkefieMst63wVJBgHZGl5QOytN7oSZs3Co/BYbc3Yx9zm9H37Bxw8kVzCnDsihsVsL4yEg==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
dev: false
@@ -21086,7 +21410,7 @@ packages:
resolution: {integrity: sha512-UziddX3ZYSYibgx8042hfGKmukq5Aljp2qoBiJRejD/8MH70siQNz5RB1TrdTPheqLMy4aCe4GYNF10/3lQS5g==}
dependencies:
markdown-it: 14.1.0
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
dev: false
@@ -21098,8 +21422,8 @@ packages:
prosemirror-state: 1.4.3
dev: false
- resolution: {integrity: sha512-I4lS7HHIW47D0Xv/gWmi4iUWcQIDYaJKd8Hk4+lcSps+553FlQrhmxtItpEvTr75iAruhzVShVp6WUwsT6Boww==}
+ resolution: {integrity: sha512-V4XCysitErI+i0rKFILGt/xClnFJaohe/wrrlT2NSZ+zk8ggQfDH4x2wNK7Gm0Hp4CIoWizvXFP7L9KMaCuI0Q==}
dependencies:
orderedmap: 2.1.1
dev: false
@@ -21107,36 +21431,36 @@ packages:
resolution: {integrity: sha512-h+H0OQwZVqMon1PNn0AG9cTfx513zgIG2DY00eJ00Yvgb3UD+GQ/VlWW5rcaxacpCGT1Yx8nuhwXk4+QbXUfJA==}
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
dev: false
resolution: {integrity: sha512-jbDyaP/6AFfDfu70VzySsD75Om2t3sXTOdl5+31Wlxlg62td1haUpty/ybajSfJ1pkGadlOfwQq9kgW5IMo1Rg==}
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
dev: false
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
dependencies:
- prosemirror-model: 1.22.2
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-model: 1.22.3
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.1
dev: false
- resolution: {integrity: sha512-fxryZZkQG12fSCNuZDrYx6Xvo2rLYZTbKLRd8rglOPgNJGMKIS8uvTt6gGC38m7UCu/ENnXIP9pEz5uDaPc+cA==}
+ resolution: {integrity: sha512-VMx4zlYWm7aBlZ5xtfJHpqa3Xgu3b7srV54fXYnXgsAcIGRqKSrhiK3f89omzzgaAgAtDOV4ImXnLKhVfheVNQ==}
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.1
dev: false
resolution: {integrity: sha512-YvyIn3/UaLFlFKrlJB6cObvUhmwFNZVhy1Q8OpW/avoTbD/Y7H5EcjK4AZFKhmuS6/N6WkGgt7gWtBWDnmFvHg==}
peerDependencies:
prosemirror-model: ^1.22.1
@@ -21145,23 +21469,23 @@ packages:
dependencies:
'@remirror/core-constants': 2.0.2
escape-string-regexp: 4.0.0
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.33.9
+ prosemirror-view: 1.34.1
dev: false
- resolution: {integrity: sha512-5UXkr1LIRx3jmpXXNKDhv8OyAOeLTGuXNwdVfg8x27uASna/wQkr9p6fD3eupGOi4PLJfbezxTyi/7fSJypXHg==}
+ resolution: {integrity: sha512-9UOgFSgN6Gj2ekQH5CTDJ8Rp/fnKR2IkYfGdzzp5zQMFsS4zDllLVx/+jGcX86YlACpG7UR5fwAXiWzxqWtBTg==}
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
dev: false
- resolution: {integrity: sha512-xV1A0Vz9cIcEnwmMhKKFAOkfIp8XmJRnaZoPqNXrPS7EK5n11Ov8V76KhR0RsfQd/SIzmWY+bg+M44A2Lx/Nnw==}
+ resolution: {integrity: sha512-KS2xmqrAM09h3SLu1S2pNO/ZoIP38qkTJ6KFd7+BeSfmX/ek0n5yOfGuiTZjFNTC8GOsEIUa1tHxt+2FMu3yWQ==}
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
dev: false
@@ -21341,9 +21665,9 @@ packages:
react: 18.3.1
dev: false
- resolution: {integrity: sha512-uNKIhaoICJ5KQALYZ4TOaOLElyM+xipord+Ha3crEFhTntdLvWZqVY49Wqd/0GiVCA/f9NjemLeiNPjG7Hpurg==}
- engines: {node: '>=12.22.0'}
+ resolution: {integrity: sha512-M1n3HhqCww6S2hxLxciEXy2oISPnAzxY7gvwVPrtlczTM/1dDadXgUxDpHMrMTblDOcm/AXtXxHwZ3jpg1mqKQ==}
+ engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
dependencies:
@@ -21365,7 +21689,7 @@ packages:
react: 18.3.1
dev: false
resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==}
peerDependencies:
'@types/react': '>=16'
@@ -21373,8 +21697,8 @@ packages:
dependencies:
'@types/hast': 2.3.10
'@types/prop-types': 15.7.12
- '@types/react': 18.3.3
- '@types/unist': 2.0.10
+ '@types/react': 18.3.4
+ '@types/unist': 2.0.11
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
@@ -21392,14 +21716,14 @@ packages:
- supports-color
dev: false
resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==}
peerDependencies:
'@types/react': '>=18'
react: '>=18'
dependencies:
'@types/hast': 3.0.4
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.0
html-url-attributes: 3.0.0
@@ -21409,7 +21733,7 @@ packages:
remark-rehype: 11.1.0
unified: 11.0.5
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -21418,7 +21742,7 @@ packages:
resolution: {integrity: sha512-FmJNmIOsOA36mdxbrc/huiE4wuXSRlmon/o+/OrfNhSiYYYL0AV5oObtPluEhb2Yr/7EfYWBHTxF5aWAvjg1SA==}
dependencies:
'@daybrush/utils': 1.13.0
- '@egjs/agent': 2.4.3
+ '@egjs/agent': 2.4.4
'@egjs/children-differ': 1.0.1
'@egjs/list-differ': 1.0.1
'@scena/dragscroll': 1.4.0
@@ -21432,12 +21756,24 @@ packages:
react-selecto: 1.26.3
dev: false
+ resolution: {integrity: sha512-chAnOO4vpxm/3WkgOVmti+eN8yUtkJzeGkOigV6UA9eDFz12W34e/SsYe2H5+RwYJ3+sfSZkVbiXcG1chEBxlg==}
+ requiresBuild: true
+ peerDependencies:
+ react-refresh: 0.10.x || 0.11.x || 0.12.x || 0.13.x || 0.14.x
+ typescript: ^4.8 || ^5.0
+ dependencies:
+ react-refresh: 0.14.2
+ typescript: 5.3.3
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
dev: true
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
peerDependencies:
@@ -21447,13 +21783,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- react-style-singleton: 2.2.1(@types/[email protected])([email protected])
- tslib: 2.6.3
+ react-style-singleton: 2.2.1(@types/[email protected])([email protected])
+ tslib: 2.7.0
dev: false
resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
engines: {node: '>=10'}
peerDependencies:
@@ -21463,16 +21799,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
- react-style-singleton: 2.2.1(@types/[email protected])([email protected])
- tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/[email protected])([email protected])
- use-sidecar: 1.1.2(@types/[email protected])([email protected])
+ react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
+ react-style-singleton: 2.2.1(@types/[email protected])([email protected])
+ tslib: 2.7.0
+ use-callback-ref: 1.3.2(@types/[email protected])([email protected])
+ use-sidecar: 1.1.2(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -21482,16 +21818,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
- react-style-singleton: 2.2.1(@types/[email protected])([email protected])
- tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/[email protected])([email protected])
- use-sidecar: 1.1.2(@types/[email protected])([email protected])
+ react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
+ react-style-singleton: 2.2.1(@types/[email protected])([email protected])
+ tslib: 2.7.0
+ use-callback-ref: 1.3.2(@types/[email protected])([email protected])
+ use-sidecar: 1.1.2(@types/[email protected])([email protected])
dev: false
resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
engines: {node: '>=10'}
peerDependencies:
@@ -21501,17 +21837,17 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
- react-style-singleton: 2.2.1(@types/[email protected])([email protected])
- tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/[email protected])([email protected])
- use-sidecar: 1.1.2(@types/[email protected])([email protected])
+ react-remove-scroll-bar: 2.3.6(@types/[email protected])([email protected])
+ react-style-singleton: 2.2.1(@types/[email protected])([email protected])
+ tslib: 2.7.0
+ use-callback-ref: 1.3.2(@types/[email protected])([email protected])
+ use-sidecar: 1.1.2(@types/[email protected])([email protected])
dev: false
- resolution: {integrity: sha512-G8x8o7wjQxCG+iF4x4ngKVBpe0CY+DAZ/SaiDoqBEt0yuKJe9OE/VVYMBMMugQ3GyQ65NnSJt23tujlaZZe75A==}
+ resolution: {integrity: sha512-+cUV/yZBYfiBj+WJtpWDJ3NtR4zgDZfHt3+xtaETKE+FCvp+RK/NJxacDQKxMHgRUTSkfA6AnGljQ5QZNsCQoA==}
peerDependencies:
react: ^16.14.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0
@@ -21530,7 +21866,7 @@ packages:
selecto: 1.26.3
dev: false
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -21540,11 +21876,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
@@ -21720,7 +22056,7 @@ packages:
es-errors: 1.3.0
get-intrinsic: 1.2.4
globalthis: 1.0.4
- which-builtin-type: 1.1.3
+ which-builtin-type: 1.1.4
dev: true
@@ -21738,7 +22074,13 @@ packages:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.4
+
+ resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
+ requiresBuild: true
+ dev: true
+ optional: true
resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
@@ -21780,7 +22122,7 @@ packages:
resolution: {integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==}
engines: {node: '>=14'}
dependencies:
- '@pnpm/npm-conf': 2.2.2
+ '@pnpm/npm-conf': 2.3.1
dev: false
@@ -21817,11 +22159,11 @@ packages:
hast-util-to-text: 4.0.2
lowlight: 3.1.0
unist-util-visit: 5.0.0
- vfile: 6.0.2
+ vfile: 6.0.3
dev: false
- resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==}
+ resolution: {integrity: sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==}
dependencies:
'@types/hast': 3.0.4
'@types/katex': 0.16.7
@@ -21829,7 +22171,7 @@ packages:
hast-util-to-text: 4.0.2
katex: 0.16.11
unist-util-visit-parents: 6.0.1
- vfile: 6.0.2
+ vfile: 6.0.3
dev: false
@@ -21893,7 +22235,7 @@ packages:
'@types/mdast': 4.0.4
mdast-util-to-hast: 13.2.0
unified: 11.0.5
- vfile: 6.0.2
+ vfile: 6.0.3
dev: false
@@ -21956,6 +22298,19 @@ packages:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+ resolution: {integrity: sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==}
+ engines: {node: '>=12'}
+ requiresBuild: true
+ dependencies:
+ adjust-sourcemap-loader: 4.0.0
+ convert-source-map: 1.9.0
+ loader-utils: 2.0.4
+ postcss: 8.4.41
+ source-map: 0.6.1
+ dev: true
+ optional: true
+
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
@@ -21964,7 +22319,7 @@ packages:
resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
dev: true
@@ -21972,7 +22327,7 @@ packages:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -21980,7 +22335,7 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: true
@@ -22033,9 +22388,8 @@ packages:
dependencies:
glob: 7.2.3
- resolution: {integrity: sha512-3i7b8OcswU6CpU8Ej89quJD4O98id7TtVM5U4Mybh84zQXdrFmDLouWBEEaD/QfO3gDDfH+AGFCGsR7kngzQnA==}
- engines: {node: 14 >=14.20 || 16 >=16.20 || >=18}
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
dependencies:
glob: 10.4.5
@@ -22073,7 +22427,7 @@ packages:
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.31.3
+ terser: 5.31.6
dev: false
@@ -22098,29 +22452,29 @@ packages:
fsevents: 2.3.3
dev: false
- resolution: {integrity: sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==}
+ resolution: {integrity: sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.20.0
- '@rollup/rollup-android-arm64': 4.20.0
- '@rollup/rollup-darwin-arm64': 4.20.0
- '@rollup/rollup-darwin-x64': 4.20.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.20.0
- '@rollup/rollup-linux-arm-musleabihf': 4.20.0
- '@rollup/rollup-linux-arm64-gnu': 4.20.0
- '@rollup/rollup-linux-arm64-musl': 4.20.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.20.0
- '@rollup/rollup-linux-riscv64-gnu': 4.20.0
- '@rollup/rollup-linux-s390x-gnu': 4.20.0
- '@rollup/rollup-linux-x64-gnu': 4.20.0
- '@rollup/rollup-linux-x64-musl': 4.20.0
- '@rollup/rollup-win32-arm64-msvc': 4.20.0
- '@rollup/rollup-win32-ia32-msvc': 4.20.0
- '@rollup/rollup-win32-x64-msvc': 4.20.0
+ '@rollup/rollup-android-arm-eabi': 4.21.1
+ '@rollup/rollup-android-arm64': 4.21.1
+ '@rollup/rollup-darwin-arm64': 4.21.1
+ '@rollup/rollup-darwin-x64': 4.21.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.21.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.21.1
+ '@rollup/rollup-linux-arm64-gnu': 4.21.1
+ '@rollup/rollup-linux-arm64-musl': 4.21.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.21.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.21.1
+ '@rollup/rollup-linux-s390x-gnu': 4.21.1
+ '@rollup/rollup-linux-x64-gnu': 4.21.1
+ '@rollup/rollup-linux-x64-musl': 4.21.1
+ '@rollup/rollup-win32-arm64-msvc': 4.21.1
+ '@rollup/rollup-win32-ia32-msvc': 4.21.1
+ '@rollup/rollup-win32-x64-msvc': 4.21.1
fsevents: 2.3.3
dev: false
@@ -22141,8 +22495,10 @@ packages:
rrweb: 2.0.0-alpha.4
dev: false
- resolution: {integrity: sha512-p81OrzUiCmUMZzJu4fGHeLB00PIbVIqsV/zhqzr2pitHTUXpMYcyOvDWt0vHdla0vnowEPaHq3Wsu6cUc732/w==}
+ resolution: {integrity: sha512-GBg5pV8LHOTbeVmH2VHLEFR0mc2QpQMzAvcoxEGfPNWgWHc8UvKCyq7pqN1vA+fDZ+yXXbixeO0kB2pzVvFCBw==}
+ dependencies:
+ postcss: 8.4.41
dev: false
@@ -22187,7 +22543,7 @@ packages:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
@@ -22222,7 +22578,6 @@ packages:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- dev: true
resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==}
@@ -22251,8 +22606,36 @@ packages:
dependencies:
neo-async: 2.6.2
sass: 1.77.8
+ dev: true
+
+ resolution: {integrity: sha512-xACl1ToTsKnL9Ce5yYpRxrLj9QUDCnwZNhzpC7tKiFyA8zXsd3Ap+HGVnbCgkdQcm43E+i6oKAWBsvGA6ZoiMw==}
+ engines: {node: '>= 18.12.0'}
+ requiresBuild: true
+ peerDependencies:
+ '@rspack/core': 0.x || 1.x
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ sass: ^1.3.0
+ sass-embedded: '*'
+ webpack: ^5.0.0
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ webpack:
+ optional: true
+ dependencies:
+ neo-async: 2.6.2
+ sass: 1.77.8
dev: true
+ optional: true
resolution: {integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==}
@@ -22702,8 +23085,8 @@ packages:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
dev: true
- resolution: {integrity: sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==}
+ resolution: {integrity: sha512-d76wfhgUuGypKqY72Unm5LFnMpACbdxXsLPcL27pOsSrmVqH3PztFp1uq+Z22suk15h7vXmTesuh2aEjdCqb5w==}
hasBin: true
dependencies:
detect-indent: 7.0.1
@@ -22766,7 +23149,7 @@ packages:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.18
+ spdx-license-ids: 3.0.20
dev: true
@@ -22777,11 +23160,11 @@ packages:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.18
+ spdx-license-ids: 3.0.20
dev: true
- resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
dev: true
@@ -22839,12 +23222,12 @@ packages:
minipass: 3.3.6
dev: true
resolution: {integrity: sha512-Cqc355SYlTAaUt8iDPaC/4DPPXK925PePLMxyBKuWd5kKc5mwsG3nT9+Mq2tyguL5s7b4Jg+IRMpTRsNTAfpSQ==}
peerDependencies:
svelte: ^4.0.0 || ^5.0.0-next.0
dependencies:
- svelte: 4.2.18
+ svelte: 4.2.19
swrev: 4.0.0
dev: false
@@ -22944,7 +23327,7 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
dependencies:
- emoji-regex: 10.3.0
+ emoji-regex: 10.4.0
get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
dev: true
@@ -23109,7 +23492,7 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
dev: true
@@ -23124,7 +23507,7 @@ packages:
inline-style-parser: 0.2.3
dev: false
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -23137,12 +23520,12 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
client-only: 0.0.1
react: 18.3.1
dev: false
resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==}
engines: {node: '>=18.12.0'}
peerDependencies:
@@ -23152,23 +23535,23 @@ packages:
postcss:
optional: true
dependencies:
- postcss: 8.4.40
- postcss-scss: 4.0.9([email protected])
- stylelint: 16.7.0([email protected])
- stylelint-config-recommended: 14.0.1([email protected])
- stylelint-scss: 6.4.1([email protected])
+ postcss: 8.4.41
+ postcss-scss: 4.0.9([email protected])
+ stylelint: 16.8.2([email protected])
+ stylelint-config-recommended: 14.0.1([email protected])
+ stylelint-scss: 6.5.1([email protected])
dev: true
resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.1.0
dependencies:
- stylelint: 16.7.0([email protected])
+ stylelint: 16.8.2([email protected])
dev: true
resolution: {integrity: sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA==}
engines: {node: '>=18.12.0'}
peerDependencies:
@@ -23178,37 +23561,39 @@ packages:
postcss:
optional: true
dependencies:
- postcss: 8.4.40
- stylelint: 16.7.0([email protected])
- stylelint-config-recommended-scss: 14.1.0([email protected])([email protected])
- stylelint-config-standard: 36.0.1([email protected])
+ postcss: 8.4.41
+ stylelint: 16.8.2([email protected])
+ stylelint-config-recommended-scss: 14.1.0([email protected])([email protected])
+ stylelint-config-standard: 36.0.1([email protected])
dev: true
resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.1.0
dependencies:
- stylelint: 16.7.0([email protected])
- stylelint-config-recommended: 14.0.1([email protected])
+ stylelint: 16.8.2([email protected])
+ stylelint-config-recommended: 14.0.1([email protected])
dev: true
- resolution: {integrity: sha512-+clI2bQC2FPOt06ZwUlXZZ95IO2C5bKTP0GLN1LNQPVvISfSNcgMKv/VTwym1mK9vnqhHbOk8lO4rj4nY7L9pw==}
+ resolution: {integrity: sha512-ZLqdqihm6uDYkrsOeD6YWb+stZI8Wn92kUNDhE4M+g9g1aCnRv0JlOrttFiAJJwaNzpdQgX3YJb5vDQXVuO9Ww==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.0.2
dependencies:
+ css-tree: 2.3.1
+ is-plain-object: 5.0.0
known-css-properties: 0.34.0
postcss-media-query-parser: 0.2.3
- postcss-resolve-nested-selector: 0.1.4
- postcss-selector-parser: 6.1.1
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- stylelint: 16.7.0([email protected])
+ stylelint: 16.8.2([email protected])
dev: true
resolution: {integrity: sha512-07lpo1uVoFctKv0EOOg/YSrUppcLMjNBSMRqgooNnlbfAOgQfMzvLK+EbXz0HQiEgZobr+XQX9md/TgwTGdzbw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -23217,22 +23602,22 @@ packages:
dependencies:
globby: 11.1.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
schema-utils: 4.2.0
- stylelint: 16.7.0([email protected])
+ stylelint: 16.8.2([email protected])
dev: true
- resolution: {integrity: sha512-Q1ATiXlz+wYr37a7TGsfvqYn2nSR3T/isw3IWlZQzFzCNoACHuGBb6xBplZXz56/uDRJHIygxjh7jbV/8isewA==}
+ resolution: {integrity: sha512-fInKATippQhcSm7AB+T32GpI+626yohrg33GkFT/5jzliUw5qhlwZq2UQQwgl3HsHrf09oeARi0ZwgY/UWEv9A==}
engines: {node: '>=18.12.0'}
hasBin: true
dependencies:
- '@csstools/css-parser-algorithms': 2.7.1(@csstools/[email protected])
- '@csstools/css-tokenizer': 2.4.1
- '@csstools/media-query-list-parser': 2.1.13(@csstools/[email protected])(@csstools/[email protected])
- '@csstools/selector-specificity': 3.1.1([email protected])
+ '@csstools/css-parser-algorithms': 3.0.1(@csstools/[email protected])
+ '@csstools/css-tokenizer': 3.0.1
+ '@csstools/media-query-list-parser': 3.0.1(@csstools/[email protected])(@csstools/[email protected])
+ '@csstools/selector-specificity': 4.0.0([email protected])
'@dual-bundle/import-meta-resolve': 4.1.0
balanced-match: 2.0.0
colord: 2.9.3
@@ -23247,24 +23632,24 @@ packages:
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-plain-object: 5.0.0
known-css-properties: 0.34.0
mathml-tag-names: 2.1.3
meow: 13.2.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.40
- postcss-resolve-nested-selector: 0.1.4
- postcss-safe-parser: 7.0.0([email protected])
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 7.0.0([email protected])
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
strip-ansi: 7.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.1.0
svg-tags: 1.0.0
table: 6.8.2
write-file-atomic: 5.0.1
@@ -23312,8 +23697,8 @@ packages:
dependencies:
has-flag: 4.0.0
- resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
+ resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
engines: {node: '>=14.18'}
dependencies:
has-flag: 4.0.0
@@ -23324,8 +23709,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- resolution: {integrity: sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==}
+ resolution: {integrity: sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==}
engines: {node: '>=16'}
dependencies:
'@ampproject/remapping': 2.3.0
@@ -23340,7 +23725,7 @@ packages:
estree-walker: 3.0.3
is-reference: 3.0.2
locate-character: 3.0.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
periscopic: 3.1.0
dev: false
@@ -23355,6 +23740,17 @@ packages:
upper-case: 1.1.3
dev: true
+ resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==}
+ peerDependencies:
+ '@swc/core': ^1.2.147
+ webpack: '>=2'
+ dependencies:
+ '@swc/core': 1.7.18
+ '@swc/counter': 0.1.3
+ dev: true
+
resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==}
peerDependencies:
@@ -23369,12 +23765,12 @@ packages:
resolution: {integrity: sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==}
dev: false
resolution: {integrity: sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==}
peerDependencies:
vue: '>=3.2.26 < 4'
dependencies:
- vue: 3.4.34([email protected])
+ vue: 3.4.38([email protected])
dev: false
@@ -23382,7 +23778,7 @@ packages:
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
@@ -23404,29 +23800,29 @@ packages:
resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
dev: false
- resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==}
+ resolution: {integrity: sha512-kjEBm+pvD+6eAwzJL2Bi+02/9LFLal1Gs61+QB7HvTfQQ0aXwC5LGT8PEt1gS0CWKktKe6ysPTAy3cBC5MeiIg==}
dev: false
resolution: {integrity: sha512-pmrtDIZeHyu2idTejfV59SbaJyvp1VRjYxAjZBH0jnyrPRo6HL1kD5Glz8VPagasqr6oAx6M05+Tuw429Z8jxg==}
engines: {node: '>=12.13.0'}
peerDependencies:
tailwindcss: 3.x
dependencies:
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.10
dev: false
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
dependencies:
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.10
dev: false
- resolution: {integrity: sha512-rxWZbe87YJb4OcSopb7up2Ba4U82BoiSGUdoDr3Ydrg9ckxFS/YWsvhN323GMcddgU65QRy7JndC7ahhInhvlQ==}
+ resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -23440,16 +23836,16 @@ packages:
is-glob: 4.0.3
jiti: 1.21.6
lilconfig: 2.1.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.40
- postcss-import: 15.1.0([email protected])
- postcss-js: 4.0.1([email protected])
- postcss-load-config: 4.0.2([email protected])
- postcss-nested: 6.2.0([email protected])
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.41
+ postcss-import: 15.1.0([email protected])
+ postcss-js: 4.0.1([email protected])
+ postcss-load-config: 4.0.2([email protected])
+ postcss-nested: 6.2.0([email protected])
+ postcss-selector-parser: 6.1.2
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -23499,7 +23895,7 @@ packages:
unique-string: 2.0.0
dev: false
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -23516,15 +23912,16 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- esbuild: 0.17.19
+ '@swc/core': 1.7.18
+ esbuild: 0.19.12
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.3
- webpack: 5.93.0([email protected])
- dev: false
+ terser: 5.31.6
+ dev: true
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -23541,15 +23938,16 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.25
+ '@swc/core': 1.7.18
esbuild: 0.19.12
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.3
+ terser: 5.31.6
dev: true
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -23566,16 +23964,16 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- esbuild: 0.19.12
+ esbuild: 0.17.19
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.3
- dev: true
+ terser: 5.31.6
+ webpack: 5.94.0([email protected])
+ dev: false
- resolution: {integrity: sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==}
+ resolution: {integrity: sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -23603,13 +24001,13 @@ packages:
dependencies:
any-promise: 1.3.0
resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
engines: {node: '>=10.18'}
peerDependencies:
tslib: ^2
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
@@ -23635,6 +24033,13 @@ packages:
next-tick: 1.1.0
dev: false
+ resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
+ dependencies:
+ globalyzer: 0.1.0
+ globrex: 0.1.2
+ dev: true
+
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
dev: true
@@ -23652,16 +24057,16 @@ packages:
'@popperjs/core': 2.11.8
dev: false
- resolution: {integrity: sha512-Bt6nzlQWp+Jw8ljvwO7dWqIgs2LupIzC6ar8SlXkfJ6MSGZ3+YMORrooSdbSysMlv2Zk1ypJc/kw/n9yGJMMEg==}
+ resolution: {integrity: sha512-hU3HlsIqebhKwgAmGvRN+9KXAkH6t/q9pX90Bfw5AcP1SK1MOYJpTCv2zE4efJMvIpn3eTQDuLsSvaoEKqsl0g==}
dev: false
resolution: {integrity: sha512-iDVkR2BjAqkTDtFX0h94yVvE2AihCXlF0Q7RIXSJPRSR5I0PA1TMuAg6FHFpmqTn4tPxJ0by0CK7PUMlnFLGEQ==}
peerDependencies:
'@tiptap/core': ^2.0.3
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/[email protected])
+ '@tiptap/core': 2.6.6(@tiptap/[email protected])
'@types/markdown-it': 13.0.9
markdown-it: 14.1.0
markdown-it-task-lists: 2.1.1
@@ -23675,22 +24080,22 @@ packages:
upper-case: 1.1.3
dev: true
- resolution: {integrity: sha512-oo07//cQZ5W7ovheiw30KOwawrQryLYnTD/8QwzaF/Bgqf4Oz0RmrOMLVd1R3pJzx1RsS7ArloyWS2Aae6p2Vw==}
+ resolution: {integrity: sha512-GGv6gaig9Q/7N8DrSIkl8cGkXs+OK/zZ3Pv4ey9+Z1UKceFUWKTMFwI6ja/D0SwwjZJdbKCjya0PTyJZAhmuBQ==}
peerDependencies:
react: ^18
react-dom: ^18
dependencies:
- '@radix-ui/react-alert-dialog': 1.1.1(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-context-menu': 2.2.1(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-dropdown-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-popover': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-select': 1.2.2(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-slider': 1.2.0(@types/[email protected])([email protected])([email protected])
- '@radix-ui/react-toast': 1.2.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
- '@tldraw/editor': 2.4.1([email protected])([email protected])
- '@tldraw/store': 2.4.1([email protected])
+ '@radix-ui/react-alert-dialog': 1.1.1(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-context-menu': 2.2.1(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-dropdown-menu': 2.1.1(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-popover': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-select': 1.2.2(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-slider': 1.2.0(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-toast': 1.2.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@tldraw/editor': 2.4.5([email protected])([email protected])
+ '@tldraw/store': 2.4.5([email protected])
canvas-size: 1.2.6
classnames: 2.5.1
hotkeys-js: 3.13.7
@@ -23744,13 +24149,13 @@ packages:
punycode: 2.3.1
dev: false
resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
dev: true
@@ -23790,11 +24195,11 @@ packages:
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.17.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
semver: 7.6.3
source-map: 0.7.4
typescript: 5.3.3
dev: true
@@ -23835,7 +24240,7 @@ packages:
yn: 3.1.1
dev: true
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -23854,7 +24259,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.14.12
+ '@types/node': 20.16.1
acorn: 8.12.1
acorn-walk: 8.3.3
arg: 4.1.3
@@ -23883,8 +24288,8 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -23907,74 +24312,74 @@ packages:
- supports-color
dev: true
resolution: {integrity: sha512-lR5VHmkPhzdhrM092lI2nACsLO4QubF0/yoOhzX7c+wIpbN1GjHNzCc91QlpxBi+cnx8vVJ+Ur6vL5cEoQPFpQ==}
dependencies:
- zustand: 4.5.4(@types/[email protected])([email protected])
+ zustand: 4.5.5(@types/[email protected])([email protected])
transitivePeerDependencies:
- '@types/react'
- immer
- react
dev: false
- resolution: {integrity: sha512-v7ztJ8sxdHw3SLfO2MhGFeeU4LQhFii1hIGs9uBiXns/0YTGOvxLeifnfGqhfSrAIIhrCoByXO7nR9wlm10n3Q==}
+ resolution: {integrity: sha512-gHwpDk2gyB7qZ57gUUwDIS/IkglqEjjVtPZCTxmCRg28Tiwjui0azsLVKrnHP9UZHllozwbi28x8HXLXLEFF1w==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-LUcqvkV9Bxtng6QHbevp8IK8zzwbIxM6HMjCE7FEW6yJBN1KwvTtRtsGBwwmTxaaLO0wD1Jgl3vgkXAmQ4fqUw==}
+ resolution: {integrity: sha512-GLaqGetNC6eS4eqXgsheLOHic/OcnGCGDi5boVf+TFZTXYH6YE15L4ugZha4xHXCr1KouCLILHh+f8EHEmWylg==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-xpdY1suXoEbsQsu0kPep2zrB8ijv/S5aKKrntGuQ62hCiwDFoDcA/Z7FZ8IHQ2u+dpJARa7yfiByHmizFE0r5Q==}
+ resolution: {integrity: sha512-VzBOsj7JyGoZtiNZZ6brjnY7UehRnClluw7pwznuLPzClkqOOPMd2jOcgkWxnP/xW4NBmOoFANXXrtvKBD4f2w==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-MBACTcSR874L1FtLL7gkgbI4yYJWBUCqeBN/iE29D+8EFe0d3fAyviFlbQP4K/HaDYet1i26xkkOiWr0z7/V9A==}
+ resolution: {integrity: sha512-St7svJnOO5g4F6R7Z32e10I/0M3e6qpNjEYybXwPNul9NSfnUXeky4WoKaALwqNhyJ7nYemoFpZ1d+i8hFQTHg==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-zi3YuKPkM9JxMTshZo3excPk37hUrj5WfnCqh4FjI26ux6j/LJK+Dh3SebMHd9mR7wP9CMam4GhmLCT+gDfM+w==}
+ resolution: {integrity: sha512-iSobNud2MrJ1SZ1upVPlErT8xexsr0MQtKapdfq6z0M0rBnrDGEq5bUCSScWyGu+O4+glB4br9xkTAkGFqaxqQ==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-wmed4kkenLvRbidi7gISB4PU77ujBuZfgVGDZ4DXTFslE/kYpINulwzkVwJIvNXsJtHqyOq0n6jL8Zwl3BrwDg==}
+ resolution: {integrity: sha512-d61jN4rjE5PnUfF66GKrKoj8S8Ql4FGXzFFzZz4kjsHpZZzCTtqlzPZBmd1byzGYhDPTorTqG3G1USohbdyohA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- resolution: {integrity: sha512-jF1K0tTUyryEWmgqk1V0ALbSz3VdeZ8FXUo6B64WsPksCMCE48N5jUezGOH2MN0+epdaRMH8/WcPU0QQaVfeLA==}
+ resolution: {integrity: sha512-A969/LO/sPHKlapIarY2VVzqQ5JnnW2/1kksZlnMEpsRD6gwOELvVL+ozfMiO7av9RILt3UeN02L17efr6HUCA==}
hasBin: true
optionalDependencies:
- turbo-darwin-64: 2.0.3
- turbo-darwin-arm64: 2.0.3
- turbo-linux-64: 2.0.3
- turbo-linux-arm64: 2.0.3
- turbo-windows-64: 2.0.3
- turbo-windows-arm64: 2.0.3
+ turbo-darwin-64: 2.1.0
+ turbo-darwin-arm64: 2.1.0
+ turbo-linux-64: 2.1.0
+ turbo-linux-arm64: 2.1.0
+ turbo-windows-64: 2.1.0
+ turbo-windows-arm64: 2.1.0
dev: true
@@ -24105,8 +24510,8 @@ packages:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
dev: true
- resolution: {integrity: sha512-wNKHUY2hYYkf6oSFfhwwiHo4WCHzHmzcXsqXYTN9ja3iApYIFbb2U6ics9hBcYLHcYGQoAlwnZlTrf3oF+BL/Q==}
+ resolution: {integrity: sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==}
engines: {node: '>=0.8.0'}
hasBin: true
requiresBuild: true
@@ -24125,8 +24530,8 @@ packages:
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
@@ -24134,8 +24539,8 @@ packages:
dependencies:
'@fastify/busboy': 2.1.1
- resolution: {integrity: sha512-i3uaEUwNdkRq2qtTRRJb13moW5HWqviu7Vl7oYRYz++uPtGHJj+x7TGjcEuwS5Mt2P4nA0U9dhIX3DdB6JGY0g==}
+ resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
engines: {node: '>=18.17'}
dev: false
@@ -24172,7 +24577,7 @@ packages:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -24184,13 +24589,13 @@ packages:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
bail: 2.0.2
devlop: 1.1.0
extend: 3.0.2
is-plain-obj: 4.1.0
trough: 2.2.0
- vfile: 6.0.2
+ vfile: 6.0.3
dev: false
@@ -24243,7 +24648,7 @@ packages:
resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
dev: false
@@ -24254,64 +24659,64 @@ packages:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
dev: false
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
dev: false
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
dev: false
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
dev: false
resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-visit: 5.0.0
dev: false
resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
dev: false
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
dev: false
resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
dev: false
resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
dev: false
resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
dev: false
@@ -24319,7 +24724,7 @@ packages:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
dev: false
@@ -24333,10 +24738,6 @@ packages:
engines: {node: '>= 4.0.0'}
dev: true
- resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==}
- engines: {node: '>= 10.0.0'}
-
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -24355,8 +24756,8 @@ packages:
webpack-virtual-modules: 0.5.0
dev: false
- resolution: {integrity: sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==}
+ resolution: {integrity: sha512-bEqQxeC7rxtxPZ3M5V4Djcc4lQqKPgGe3mAWZvxcSmX5jhGxll19NliaRzQSQPrk4xJZSGniK3puLWpRuZN7VQ==}
engines: {node: '>=14.0.0'}
dependencies:
acorn: 8.12.1
@@ -24375,13 +24776,13 @@ packages:
engines: {node: '>=4'}
dev: false
resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
escalade: 3.1.2
picocolors: 1.0.1
@@ -24416,7 +24817,7 @@ packages:
- encoding
dev: false
resolution: {integrity: sha512-hrxwOgqKs8siczPloop72drRBiUYaFDHMp45OR/sSAaAbOPyGBmBL88Bi4UWCvgC+aBWCLRxtMEGeoqrfu+OMg==}
engines: {node: '>=18.13.0'}
peerDependencies:
@@ -24445,9 +24846,9 @@ packages:
'@uploadthing/shared': 6.7.8
consola: 3.2.3
effect: 3.4.5
std-env: 3.7.0
- tailwindcss: 3.4.7
+ tailwindcss: 3.4.10
dev: false
@@ -24472,7 +24873,7 @@ packages:
querystring: 0.2.0
dev: false
resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
engines: {node: '>=10'}
peerDependencies:
@@ -24482,21 +24883,21 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- tslib: 2.6.3
+ tslib: 2.7.0
dev: false
- resolution: {integrity: sha512-0uUXjOfm44e6z4LZ/woZvkM8FwV1wiuoB6xnrrOmeAEjRDDzTLQNRFtYHvqUsJdrz1X37j0rVGIVp144GLHGKg==}
+ resolution: {integrity: sha512-DxQSI9ZKso689WM1mjgGU3ozcxU1TJElBJ3X6S4SMzMNcm2lVH0AHmyXB+K7ewjz2BSUKJTDqTcwtSMRfB89dg==}
engines: {node: '>= 16.0.0'}
peerDependencies:
- react: '>=16.8.0'
+ react: '*'
dependencies:
react: 18.3.1
dev: false
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -24506,18 +24907,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.6.3
- dev: false
-
- resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- react: 18.3.1
+ tslib: 2.7.0
dev: false
@@ -24609,13 +25002,13 @@ packages:
engines: {node: '>= 0.8'}
dev: true
resolution: {integrity: sha512-fAhd7i4RNMinx+WEm6pF3nOl78DFkAazcN04ElLPFF9BMCNGbY/kou8UMhIcicm0rJCNePJP0Yyza60gGOD0Jw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
- '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
+ '@radix-ui/react-dialog': 1.1.1(@types/[email protected])(@types/[email protected])([email protected])([email protected])
react: 18.3.1
react-dom: 18.3.1([email protected])
transitivePeerDependencies:
@@ -24623,22 +25016,22 @@ packages:
- '@types/react-dom'
dev: false
- resolution: {integrity: sha512-rofSro+xa68cU0dUciBIy7wM9ZMTR4cztMi1nt5N/wiSxPYhQL7Y/qzjHwaXSmMRItDUL+sNwbjMY4LX1WsBeA==}
+ resolution: {integrity: sha512-GhkaAwOhoy0xk+rkA/43cGSDuIMMzG71Gw1RZGsf5R1r//3BUqIyYqR5enQSw6php8wp2+HwTALyl31p+cJ4jw==}
engines: {node: '>= 16'}
hasBin: true
dependencies:
- '@vercel/build-utils': 8.3.5
+ '@vercel/build-utils': 8.3.7
'@vercel/fun': 1.1.0
'@vercel/go': 3.1.1
'@vercel/hydrogen': 1.0.4
- '@vercel/next': 4.3.6
- '@vercel/node': 3.2.7
+ '@vercel/next': 4.3.7
+ '@vercel/node': 3.2.9
'@vercel/python': 4.3.1
'@vercel/redwood': 2.1.3
- '@vercel/remix-builder': 2.2.1
+ '@vercel/remix-builder': 2.2.6
'@vercel/ruby': 2.1.0
- '@vercel/static-build': 2.5.17
+ '@vercel/static-build': 2.5.19
chokidar: 3.3.1
transitivePeerDependencies:
- '@swc/core'
@@ -24650,38 +25043,37 @@ packages:
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
dependencies:
- '@types/unist': 3.0.2
- vfile: 6.0.2
+ '@types/unist': 3.0.3
+ vfile: 6.0.3
dev: false
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
dev: false
resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
dev: false
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
dev: false
- resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==}
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
+ '@types/unist': 3.0.3
vfile-message: 4.0.2
dev: false
@@ -24708,8 +25100,8 @@ packages:
replace-ext: 1.0.1
dev: true
- resolution: {integrity: sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==}
+ resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -24717,6 +25109,7 @@ packages:
less: '*'
lightningcss: ^1.21.0
sass: '*'
+ sass-embedded: '*'
stylus: '*'
sugarss: '*'
terser: ^5.4.0
@@ -24729,6 +25122,8 @@ packages:
optional: true
sass:
optional: true
+ sass-embedded:
+ optional: true
stylus:
optional: true
sugarss:
@@ -24737,13 +25132,13 @@ packages:
optional: true
dependencies:
esbuild: 0.21.5
- postcss: 8.4.40
- rollup: 4.20.0
+ postcss: 8.4.41
+ rollup: 4.21.1
optionalDependencies:
fsevents: 2.3.3
dev: false
resolution: {integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==}
peerDependencies:
'@vue/compiler-sfc': '*'
@@ -24755,27 +25150,45 @@ packages:
vue:
optional: true
dependencies:
- '@vue/compiler-sfc': 3.4.34
+ '@vue/compiler-sfc': 3.4.38
chalk: 4.1.2
hash-sum: 2.0.0
- vue: 3.4.34([email protected])
- watchpack: 2.4.1
+ vue: 3.4.38([email protected])
+ watchpack: 2.4.2
dev: true
- resolution: {integrity: sha512-VZze05HWlA3ItreQ/ka7Sx7PoD0/3St8FEiSlSTVgb6l4hL+RjtP2/8g5WQBzZgyf8WG2f+g1bXzC7zggLhAJA==}
+ resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==}
+ requiresBuild: true
+ dependencies:
+ hash-sum: 1.0.2
+ loader-utils: 1.4.2
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
+ requiresBuild: true
+ dependencies:
+ de-indent: 1.0.2
+ he: 1.2.0
+ dev: true
+ optional: true
+
+ resolution: {integrity: sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-sfc': 3.4.34
- '@vue/runtime-dom': 3.4.34
- '@vue/server-renderer': 3.4.34([email protected])
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.4.38
+ '@vue/compiler-sfc': 3.4.38
+ '@vue/runtime-dom': 3.4.38
+ '@vue/server-renderer': 3.4.38([email protected])
+ '@vue/shared': 3.4.38
typescript: 5.5.4
@@ -24786,8 +25199,8 @@ packages:
resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==}
dev: true
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
@@ -24813,8 +25226,8 @@ packages:
resolution: {integrity: sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg==}
dev: true
- resolution: {integrity: sha512-nYfoOqb4EmElljyXU2qdeE76KsvoHdftQKY4DzA9Aw8DervCg2bG634pHLrJ/d6+B4mE3nWTSJv8Mo7B2mbZkw==}
+ resolution: {integrity: sha512-/CFAm1mNxSmOj6i0Co+iGFJ58OS4NRGVP+AWS/l509uIK5a1bSoIVaHz/ZumpHTfHSZBpgrJ+wjfpAOrTHok5Q==}
dev: false
@@ -24828,6 +25241,10 @@ packages:
resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==}
dev: true
+ resolution: {integrity: sha512-97TBmpoWJEE+3nFBQ4VocyCdLKfw54rFaJ6EVQYLBCXqCIpLSZkwGgASpv4oPt9gdKCJ80RJlcmNzNn008Ag6Q==}
+ dev: true
+
resolution: {integrity: sha512-a19+DzlT6Kp9/UI+mF9XQopeZ+n2ussjhxHJ4/pmIGge9ijCDz7Gn93mNnjpZAk95T4Tae8iHZ6sSf869txqiQ==}
dev: true
@@ -24848,7 +25265,7 @@ packages:
'@colors/colors': 1.6.0
browser-extension-manifest-fields: 1.0.6
content-security-policy-parser: 0.6.0
dev: true
@@ -24862,7 +25279,7 @@ packages:
parse5: 7.1.2
parse5-utils: 2.0.0
schema-utils: 4.2.0
dev: true
@@ -24872,7 +25289,7 @@ packages:
webpack: ~5.92.0
dependencies:
browser-extension-manifest-fields: 1.0.6
dev: true
@@ -24882,7 +25299,7 @@ packages:
webpack: ~5.92.0
dependencies:
browser-extension-manifest-fields: 1.0.6
dev: true
@@ -24892,7 +25309,7 @@ packages:
webpack: ~5.92.0
dependencies:
browser-extension-manifest-fields: 1.0.6
dev: true
@@ -24901,11 +25318,11 @@ packages:
peerDependencies:
webpack: ~5.92.0
dependencies:
- '@mdn/browser-compat-data': 5.5.42
+ '@mdn/browser-compat-data': 5.5.49
ajv: 8.17.1
browser-extension-manifest-fields: 1.0.6
chrome-extension-manifest-json-schema: 0.2.0
dev: true
@@ -24917,7 +25334,7 @@ packages:
ajv: 8.17.1
browser-extension-manifest-fields: 1.0.6
chrome-extension-manifest-json-schema: 0.2.0
dev: true
@@ -24927,7 +25344,7 @@ packages:
webpack: ^5.00.0
dependencies:
webextension-polyfill: 0.10.0
dev: true
@@ -24936,12 +25353,12 @@ packages:
peerDependencies:
webpack: ~5.92.0
dependencies:
- '@babel/generator': 7.25.0
+ '@babel/generator': 7.25.5
'@babel/parser': 7.24.5
'@babel/traverse': 7.24.5
'@babel/types': 7.24.5
schema-utils: 4.2.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -24954,7 +25371,7 @@ packages:
dependencies:
browser-extension-manifest-fields: 1.0.6
csv-loader: 3.0.5
dev: true
@@ -24966,10 +25383,10 @@ packages:
browser-extension-manifest-fields: 1.0.6
loader-utils: 3.3.1
schema-utils: 4.2.0
dev: true
resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==}
engines: {node: '>=14.15.0'}
hasBin: true
@@ -24987,10 +25404,10 @@ packages:
optional: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 2.1.1([email protected])([email protected])
- '@webpack-cli/generators': 3.0.7([email protected])([email protected])([email protected])
- '@webpack-cli/info': 2.0.2([email protected])([email protected])
- '@webpack-cli/serve': 2.0.5([email protected])([email protected])
+ '@webpack-cli/configtest': 2.1.1([email protected])([email protected])
+ '@webpack-cli/generators': 3.0.7([email protected])([email protected])([email protected])
+ '@webpack-cli/info': 2.0.2([email protected])([email protected])
+ '@webpack-cli/serve': 2.0.5([email protected])([email protected])
colorette: 2.0.20
commander: 10.0.1
cross-spawn: 7.0.3
@@ -24999,12 +25416,12 @@ packages:
import-local: 3.2.0
interpret: 3.1.1
rechoir: 0.8.0
webpack-merge: 5.10.0
dev: true
- resolution: {integrity: sha512-xD2qnNew+F6KwOGZR7kWdbIou/ud7cVqLEXeK1q0nHcNsX/u7ul/fSdlOTX4ntSL5FNFy7ZJJXbf0piF591JYw==}
+ resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.0.0
@@ -25013,12 +25430,12 @@ packages:
optional: true
dependencies:
colorette: 2.0.20
- memfs: 4.11.0
+ memfs: 4.11.1
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
schema-utils: 4.2.0
dev: true
@@ -25040,7 +25457,7 @@ packages:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.11
+ '@types/ws': 8.5.12
ansi-html-community: 0.0.8
bonjour-service: 1.2.1
chokidar: 3.6.0
@@ -25053,18 +25470,18 @@ packages:
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/[email protected])
ipaddr.js: 2.2.0
- launch-editor: 2.8.0
+ launch-editor: 2.8.1
open: 10.1.0
p-retry: 6.2.0
- rimraf: 5.0.9
+ rimraf: 5.0.10
schema-utils: 4.2.0
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
- webpack-dev-middleware: 7.3.0([email protected])
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ webpack-dev-middleware: 7.4.2([email protected])
ws: 8.18.0
transitivePeerDependencies:
- bufferutil
@@ -25082,6 +25499,15 @@ packages:
wildcard: 2.0.1
dev: true
+ resolution: {integrity: sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==}
+ engines: {node: '>=18.0.0'}
+ dependencies:
+ clone-deep: 4.0.1
+ flat: 5.0.2
+ wildcard: 2.0.1
+ dev: true
+
resolution: {integrity: sha512-SBL09QwzzWX0nXROsH8B5oX3qplQxMHT/fdWhsZocEt9b5iI7Rl7vpJW//axBbZ277O0htAWLNaYeCQGx+GUOw==}
engines: {node: '>=18'}
@@ -25096,7 +25522,7 @@ packages:
prefers-yarn: 1.0.1
progress: 2.0.3
schema-utils: 4.2.0
webpack-target-webextension: 1.1.2([email protected])
ws: 8.18.0
transitivePeerDependencies:
@@ -25118,7 +25544,7 @@ packages:
prefers-yarn: 1.0.1
progress: 2.0.3
schema-utils: 4.2.0
webpack-target-webextension: 1.1.2([email protected])
ws: 8.18.0
transitivePeerDependencies:
@@ -25136,13 +25562,13 @@ packages:
browser-extension-manifest-fields: 1.0.6
content-security-policy-parser: 0.6.0
firefox-location: 1.0.2
- firefox-profile: 4.6.0
+ firefox-profile: 4.7.0
fx-runner: 1.4.0
prefers-yarn: 1.0.1
progress: 2.0.3
schema-utils: 4.2.0
webextension-polyfill-ts: 0.26.0
webpack-target-webextension: 1.1.2([email protected])
ws: 8.17.1
transitivePeerDependencies:
@@ -25167,7 +25593,7 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
dev: true
@@ -25178,7 +25604,7 @@ packages:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
dev: false
resolution: {integrity: sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -25195,7 +25621,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5([email protected])
- browserslist: 4.23.2
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -25209,9 +25635,9 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10([email protected])([email protected])
- watchpack: 2.4.1
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ terser-webpack-plugin: 5.3.10(@swc/[email protected])([email protected])([email protected])
+ watchpack: 2.4.2
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -25219,8 +25645,8 @@ packages:
- uglify-js
dev: true
- resolution: {integrity: sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==}
+ resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -25229,14 +25655,13 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5([email protected])
- browserslist: 4.23.2
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -25250,17 +25675,18 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10([email protected])([email protected])
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(@swc/[email protected])([email protected])([email protected])
+ watchpack: 2.4.2
+ webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- dev: false
+ dev: true
- resolution: {integrity: sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==}
+ resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -25269,14 +25695,13 @@ packages:
webpack-cli:
optional: true
dependencies:
- '@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5([email protected])
- browserslist: 4.23.2
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -25290,15 +25715,14 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10([email protected])([email protected])
- watchpack: 2.4.1
- webpack-cli: 5.1.4(@webpack-cli/[email protected])([email protected])
+ terser-webpack-plugin: 5.3.10([email protected])([email protected])
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- dev: true
+ dev: false
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
@@ -25314,10 +25738,22 @@ packages:
engines: {node: '>=0.8.0'}
dev: true
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+ dependencies:
+ iconv-lite: 0.6.3
+ dev: false
+
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
dev: false
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+ dev: false
+
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
@@ -25345,8 +25781,8 @@ packages:
is-string: 1.0.7
is-symbol: 1.0.4
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
dependencies:
function.prototype.name: 1.1.6
@@ -25467,17 +25903,17 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6([email protected])
- '@babel/core': 7.24.9
- '@babel/preset-env': 7.25.0(@babel/[email protected])
- '@babel/runtime': 7.25.0
- '@rollup/plugin-babel': 5.3.1(@babel/[email protected])([email protected])
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/[email protected])
+ '@babel/runtime': 7.25.4
+ '@rollup/plugin-babel': 5.3.1(@babel/[email protected])([email protected])
'@rollup/plugin-node-resolve': 11.2.1([email protected])
'@rollup/plugin-replace': 2.4.2([email protected])
'@surma/rollup-plugin-off-main-thread': 2.2.3
ajv: 8.17.1
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
- fs-extra: 9.0.1
+ fs-extra: 9.1.0
glob: 7.2.3
lodash: 4.17.21
pretty-bytes: 5.6.0
@@ -25589,7 +26025,7 @@ packages:
resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==}
dev: false
resolution: {integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -25598,7 +26034,7 @@ packages:
fast-json-stable-stringify: 2.1.0
pretty-bytes: 5.6.0
upath: 1.2.0
- webpack: 5.93.0([email protected])
+ webpack: 5.94.0([email protected])
webpack-sources: 1.4.3
workbox-build: 6.6.0
transitivePeerDependencies:
@@ -25613,37 +26049,38 @@ packages:
workbox-core: 6.6.0
dev: false
- resolution: {integrity: sha512-w7lOLRy0XecQTg/ujTLWBiJJuoQvzB3CdQ6/8Wgex3QxFhV9Pbnh3UbwIuUfMw3OCCPQc4o7y+1P+mISAgp6yg==}
+ resolution: {integrity: sha512-y4phjCnEG96u8ZkgkkHB+gSw0i6uMNo23rBmixylWpjxDklB+LWD8dztasvsu7xGaZbLoTxQESdEw956F7VJDA==}
engines: {node: '>=16'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240718.0
- '@cloudflare/workerd-darwin-arm64': 1.20240718.0
- '@cloudflare/workerd-linux-64': 1.20240718.0
- '@cloudflare/workerd-linux-arm64': 1.20240718.0
- '@cloudflare/workerd-windows-64': 1.20240718.0
-
- resolution: {integrity: sha512-lLVJxq/OZMfntvZ79WQJNC1OKfxOCs6PLfogqDBuPFEQ3L/Mwqvd9IZ0bB8ahrwUN/K3lSdDPXynk9HfcGZxVw==}
+ '@cloudflare/workerd-darwin-64': 1.20240821.1
+ '@cloudflare/workerd-darwin-arm64': 1.20240821.1
+ '@cloudflare/workerd-linux-64': 1.20240821.1
+ '@cloudflare/workerd-linux-arm64': 1.20240821.1
+ '@cloudflare/workerd-windows-64': 1.20240821.1
+
+ resolution: {integrity: sha512-EBlJGOcwanbzFkiJkRB47WKhvevh1AZK0ty0MyD0gptsgWnAxBfmFGiBuzOuRXbvH45ZrFrTqgi8c67EwcV1nA==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20240718.0
+ '@cloudflare/workers-types': ^4.20240821.1
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
- '@cloudflare/workers-types': 4.20240725.0
+ '@cloudflare/workers-shared': 0.4.0
+ '@cloudflare/workers-types': 4.20240821.1
'@esbuild-plugins/node-globals-polyfill': 0.2.3([email protected])
'@esbuild-plugins/node-modules-polyfill': 0.2.2([email protected])
blake3-wasm: 2.1.5
chokidar: 3.6.0
date-fns: 3.6.0
esbuild: 0.17.19
- miniflare: 3.20240718.1
+ miniflare: 3.20240821.0
nanoid: 3.3.7
path-to-regexp: 6.2.2
resolve: 1.22.8
@@ -25651,7 +26088,7 @@ packages:
selfsigned: 2.4.1
source-map: 0.6.1
- workerd: 1.20240718.0
+ workerd: 1.20240821.1
xxhash-wasm: 1.0.2
optionalDependencies:
fsevents: 2.3.3
@@ -25766,8 +26203,8 @@ packages:
os-paths: 4.4.0
dev: true
- resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
+ resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
engines: {node: '>=4.0.0'}
dependencies:
sax: 1.4.1
@@ -25809,12 +26246,6 @@ packages:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: true
- resolution: {integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==}
- engines: {node: '>= 14'}
- hasBin: true
- dev: true
-
resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
engines: {node: '>= 14'}
@@ -25960,16 +26391,8 @@ packages:
mustache: 4.2.0
stacktracey: 2.1.8
- resolution: {integrity: sha512-+akaPo6a0zpVCCseDed504KBJUQpEW5QZw7RMneNmKw+fGaML1Z9tUNLnHHAC8x6dzVRO1eB2oEMyZRnuBZg7Q==}
- peerDependencies:
- zod: ^3.22.4
- dependencies:
- zod: 3.23.8
- dev: false
-
- resolution: {integrity: sha512-oT9INvydob1XV0v1d2IadrR74rLtDInLvDFfAa1CG0Pmg/vxATk7I2gSelfj271mbzeM4Da0uuDQE/Nkj3DWNw==}
+ resolution: {integrity: sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==}
peerDependencies:
zod: ^3.23.3
dependencies:
@@ -25979,8 +26402,8 @@ packages:
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- resolution: {integrity: sha512-/BPMyLKJPtFEvVL0E9E9BTUM63MNyhPGlvxk1XjrfWTUlV+BR8jufjsovHzrtR6YNcBEcL7cMHovL1n9xHawEg==}
+ resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
engines: {node: '>=12.7.0'}
peerDependencies:
'@types/react': '>=16.8'
@@ -25994,9 +26417,9 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.4
react: 18.3.1
- use-sync-external-store: 1.2.0([email protected])
+ use-sync-external-store: 1.2.2([email protected])
dev: false