From 9aaf0f0708b052065fba85e3e93e74f69a1a1863 Mon Sep 17 00:00:00 2001 From: Tim Sinaeve Date: Wed, 12 Nov 2025 11:17:45 +0100 Subject: [PATCH 1/2] Add CKEditor-powered rich document workflow --- components/FolderOverview.tsx | 1 + components/PromptEditor.tsx | 174 +- components/RichTextEditor.tsx | 205 + electron/database.ts | 2 +- hooks/usePrompts.ts | 11 +- index.html | 4 + package-lock.json | 14306 +++++++++++++++- package.json | 2 + .../__tests__/classificationService.test.ts | 12 + services/classificationService.ts | 5 +- services/documentExportService.ts | 3 + services/repository.ts | 2 +- styles/ckeditor-theme-lark.css | 4 + styles/tailwind.css | 11 + types.ts | 2 +- utils/ckeditorLicense.ts | 24 + 16 files changed, 14418 insertions(+), 350 deletions(-) create mode 100644 components/RichTextEditor.tsx create mode 100644 styles/ckeditor-theme-lark.css create mode 100644 utils/ckeditorLicense.ts diff --git a/components/FolderOverview.tsx b/components/FolderOverview.tsx index 720f273..0da51f9 100644 --- a/components/FolderOverview.tsx +++ b/components/FolderOverview.tsx @@ -92,6 +92,7 @@ const DOC_TYPE_LABELS: Record = { source_code: 'Source code', pdf: 'PDFs', image: 'Images', + rich_text: 'Rich documents', }; const formatDocTypeLabel = (docType: DocType) => DOC_TYPE_LABELS[docType] ?? docType.replace(/_/g, ' '); diff --git a/components/PromptEditor.tsx b/components/PromptEditor.tsx index 9dcdd51..b3be27f 100644 --- a/components/PromptEditor.tsx +++ b/components/PromptEditor.tsx @@ -1,7 +1,7 @@ import React, { useState, useEffect, useMemo, useRef, useCallback } from 'react'; -import type { DocumentOrFolder, PreviewMetadata, Settings, ViewMode } from '../types'; +import type { DocType, DocumentOrFolder, PreviewMetadata, Settings, ViewMode } from '../types'; import { llmService } from '../services/llmService'; -import { SparklesIcon, TrashIcon, CopyIcon, CheckIcon, HistoryIcon, EyeIcon, PencilIcon, LayoutHorizontalIcon, LayoutVerticalIcon, RefreshIcon, SaveIcon, FormatIcon, LockClosedIcon, LockOpenIcon, UndoIcon } from './Icons'; +import { SparklesIcon, TrashIcon, CopyIcon, CheckIcon, HistoryIcon, EyeIcon, PencilIcon, LayoutHorizontalIcon, LayoutVerticalIcon, RefreshIcon, SaveIcon, FormatIcon, LockClosedIcon, LockOpenIcon, UndoIcon, CodeIcon } from './Icons'; import Spinner from './Spinner'; import Modal from './Modal'; import { useLogger } from '../hooks/useLogger'; @@ -10,6 +10,7 @@ import IconButton from './IconButton'; import Button from './Button'; import MonacoEditor, { CodeEditorHandle } from './CodeEditor'; import MonacoDiffEditor from './MonacoDiffEditor'; +import RichTextEditor, { RichTextEditorHandle } from './RichTextEditor'; import PreviewPane from './PreviewPane'; import LanguageDropdown from './LanguageDropdown'; import PythonExecutionPanel from './PythonExecutionPanel'; @@ -68,6 +69,8 @@ const PREVIEWABLE_LANGUAGES = new Set([ 'image/svg+xml', ]); +type EditorEngine = 'visual' | 'source'; + const resolveDefaultViewMode = (mode: ViewMode | null | undefined, languageHint: string | null | undefined): ViewMode => { if (mode) return mode; const normalizedHint = languageHint?.toLowerCase(); @@ -129,6 +132,18 @@ const DocumentEditor: React.FC = ({ const [splitSize, setSplitSize] = useState(50); const isLocked = Boolean(documentNode.locked); const [isLocking, setIsLocking] = useState(false); + const docType = (documentNode.doc_type ?? 'prompt') as DocType; + const isRichDocument = docType === 'rich_text'; + const enginePreferencesRef = useRef>({}); + const [editorEngine, setEditorEngineState] = useState(() => { + const stored = enginePreferencesRef.current[documentNode.id]; + if (stored) { + return stored; + } + const defaultEngine: EditorEngine = isRichDocument ? 'visual' : 'source'; + enginePreferencesRef.current[documentNode.id] = defaultEngine; + return defaultEngine; + }); const { addLog } = useLogger(); const { skipNextAutoSave } = useDocumentAutoSave({ documentId: documentNode.id, @@ -175,6 +190,7 @@ const DocumentEditor: React.FC = ({ const titleInputRef = useRef(null); const isContentInitialized = useRef(false); const editorRef = useRef(null); + const richEditorRef = useRef(null); const previewScrollRef = useRef(null); const isSyncing = useRef(false); const syncTimeout = useRef(null); @@ -232,6 +248,9 @@ const DocumentEditor: React.FC = ({ setIsDiffMode(false); prevDocumentIdRef.current = documentNode.id; prevDocumentContentRef.current = documentNode.content; + const defaultEngine: EditorEngine = isRichDocument ? 'visual' : 'source'; + enginePreferencesRef.current[documentNode.id] = enginePreferencesRef.current[documentNode.id] ?? defaultEngine; + setEditorEngineState(enginePreferencesRef.current[documentNode.id]); return; } @@ -244,6 +263,17 @@ const DocumentEditor: React.FC = ({ } }, [documentNode.id, documentNode.content, documentNode.default_view_mode, documentNode.language_hint, documentNode.title, isDirty]); + useEffect(() => { + const storedEngine = enginePreferencesRef.current[documentNode.id]; + if (storedEngine) { + setEditorEngineState(storedEngine); + } else { + const defaultEngine: EditorEngine = isRichDocument ? 'visual' : 'source'; + enginePreferencesRef.current[documentNode.id] = defaultEngine; + setEditorEngineState(defaultEngine); + } + }, [documentNode.id, isRichDocument]); + useEffect(() => { setTitle(documentNode.title); }, [documentNode.id, documentNode.title]); @@ -306,9 +336,13 @@ const DocumentEditor: React.FC = ({ return; } if (formatTrigger > 0) { - editorRef.current?.format(); + if (isRichDocument && editorEngine === 'visual') { + richEditorRef.current?.format(); + } else { + editorRef.current?.format(); + } } - }, [formatTrigger]); + }, [editorEngine, formatTrigger, isRichDocument]); // --- Resizable Splitter Logic --- const handleSplitterMouseDown = (e: React.MouseEvent) => { @@ -371,7 +405,7 @@ const DocumentEditor: React.FC = ({ }, [viewMode]); const handlePreviewScroll = useCallback((e: React.UIEvent) => { - if (!viewMode.startsWith('split-') || isSyncing.current || !editorRef.current) return; + if (!viewMode.startsWith('split-') || isSyncing.current) return; const previewEl = e.currentTarget; const { scrollTop, scrollHeight, clientHeight } = previewEl; @@ -379,22 +413,26 @@ const DocumentEditor: React.FC = ({ if (scrollHeight <= clientHeight) return; const percentage = scrollTop / (scrollHeight - clientHeight); - - const editor = editorRef.current; - editor.getScrollInfo().then(editorInfo => { - if (!isSyncing.current && editorInfo.scrollHeight > editorInfo.clientHeight) { - const newEditorScrollTop = percentage * (editorInfo.scrollHeight - editorInfo.clientHeight); - - isSyncing.current = true; - editor.setScrollTop(newEditorScrollTop); - - if (syncTimeout.current) clearTimeout(syncTimeout.current); - syncTimeout.current = window.setTimeout(() => { - isSyncing.current = false; - }, 100); + + const activeEditor = (isRichDocument && editorEngine === 'visual') ? richEditorRef.current : editorRef.current; + if (!activeEditor) return; + + activeEditor.getScrollInfo().then((editorInfo) => { + if (!editorInfo || isSyncing.current || editorInfo.scrollHeight <= editorInfo.clientHeight) { + return; } + + const newEditorScrollTop = percentage * (editorInfo.scrollHeight - editorInfo.clientHeight); + + isSyncing.current = true; + activeEditor.setScrollTop(newEditorScrollTop); + + if (syncTimeout.current) clearTimeout(syncTimeout.current); + syncTimeout.current = window.setTimeout(() => { + isSyncing.current = false; + }, 100); }); - }, [viewMode]); + }, [editorEngine, isRichDocument, viewMode]); @@ -453,13 +491,25 @@ const DocumentEditor: React.FC = ({ setViewMode(newMode); onViewModeChange(newMode); }; - + + const handleEditorEngineChange = useCallback((nextEngine: EditorEngine) => { + if (!isRichDocument) { + return; + } + enginePreferencesRef.current[documentNode.id] = nextEngine; + setEditorEngineState(nextEngine); + }, [documentNode.id, isRichDocument]); + const handleFormatDocument = () => { if (isLocked) { setError('Document is locked and cannot be modified.'); addLog('WARNING', `Format request blocked for locked document "${title}".`); return; } + if (isRichDocument && editorEngine === 'visual') { + richEditorRef.current?.format(); + return; + } editorRef.current?.format(); }; @@ -635,11 +685,14 @@ const DocumentEditor: React.FC = ({ }; const language = documentNode.language_hint || 'plaintext'; - const normalizedLanguage = language.toLowerCase(); - const supportsAiTools = ['markdown', 'plaintext'].includes(normalizedLanguage); + const effectiveLanguage = isRichDocument ? 'html' : language; + const normalizedLanguage = effectiveLanguage.toLowerCase(); + const isVisualEngine = isRichDocument && editorEngine === 'visual'; + const supportsAiTools = ['markdown', 'plaintext', 'html'].includes(normalizedLanguage); const canAddEmojiToTitle = documentNode.type === 'document'; const supportsPreview = PREVIEWABLE_LANGUAGES.has(normalizedLanguage); - const supportsFormatting = ['javascript', 'typescript', 'json', 'html', 'css', 'xml', 'yaml'].includes(normalizedLanguage); + const supportsMonacoFormatting = ['javascript', 'typescript', 'json', 'html', 'css', 'xml', 'yaml'].includes(normalizedLanguage); + const canFormatDocument = isRichDocument ? true : supportsMonacoFormatting; const scriptBridgeAvailable = typeof window !== 'undefined' && (!!window.electronAPI || !!window.__DOCFORGE_SCRIPT_PREVIEW__); const isPythonDocument = typeof window !== 'undefined' && !!window.electronAPI && (normalizedLanguage === 'python'); @@ -767,9 +820,9 @@ const DocumentEditor: React.FC = ({ = ({ onFocusChange={handleEditorFocusChange} /> ) - : ( - - ); + : isVisualEngine + ? ( + + ) + : ( + + ); const preview = (
= ({ = ({ - +
{supportsPreview && ( @@ -912,8 +976,30 @@ const DocumentEditor: React.FC = ({ handleViewModeButton('split-horizontal')} tooltip="Split Horizontal" size="xs" className={`rounded-md ${viewMode === 'split-horizontal' ? 'bg-secondary text-primary' : ''}`}> )} + {isRichDocument && ( +
+ + +
+ )}
- {supportsFormatting && ( + {canFormatDocument && ( diff --git a/components/RichTextEditor.tsx b/components/RichTextEditor.tsx new file mode 100644 index 0000000..c028c97 --- /dev/null +++ b/components/RichTextEditor.tsx @@ -0,0 +1,205 @@ +import React, { useEffect, useImperativeHandle, useRef, useState } from 'react'; +import { CKEditor } from '@ckeditor/ckeditor5-react'; +import ClassicEditor from '@ckeditor/ckeditor5-build-classic'; +import '../styles/ckeditor-theme-lark.css'; + +import { CKEDITOR_LICENSE_KEY, resolveCkeditorLicenseKey } from '../utils/ckeditorLicense'; + +(ClassicEditor as unknown as { defaultConfig?: Record }).defaultConfig = { + ...((ClassicEditor as unknown as { defaultConfig?: Record }).defaultConfig ?? {}), + licenseKey: CKEDITOR_LICENSE_KEY, +}; + +export interface RichTextEditorHandle { + getHtml: () => string; + focus: () => void; + execute: (command: string, value?: unknown) => void; + format: () => void; + getScrollInfo: () => Promise<{ scrollTop: number; scrollHeight: number; clientHeight: number }>; + setScrollTop: (scrollTop: number) => void; +} + +interface RichTextEditorProps { + content: string; + onChange: (html: string) => void; + readOnly?: boolean; + onScroll?: (info: { scrollTop: number; scrollHeight: number; clientHeight: number }) => void; + onFocusChange?: (hasFocus: boolean) => void; +} + +const RichTextEditor = React.forwardRef( + ({ content, onChange, readOnly = false, onScroll, onFocusChange }, ref) => { + const editorRef = useRef(null); + const lastDataRef = useRef(content); + const readOnlyIdRef = useRef('docforge-rich-text-editor'); + const focusCleanupRef = useRef<(() => void) | null>(null); + const [isReady, setIsReady] = useState(false); + const licenseKeyRef = useRef(CKEDITOR_LICENSE_KEY); + + useEffect(() => { + licenseKeyRef.current = resolveCkeditorLicenseKey(); + }, []); + + const getEditableDom = () => { + const editor = editorRef.current; + if (!editor) return null; + const editable = editor.ui?.view?.editable; + const element: HTMLElement | undefined = editable?.element ?? editable?.domRoot; + return element ?? null; + }; + + useImperativeHandle(ref, () => ({ + getHtml: () => editorRef.current?.getData?.() ?? lastDataRef.current, + focus: () => { + if (editorRef.current?.focus) { + editorRef.current.focus(); + } + }, + execute: (command: string, value?: unknown) => { + try { + editorRef.current?.execute?.(command, value); + } catch (error) { + console.warn(`RichTextEditor command "${command}" failed`, error); + } + }, + format: () => { + const editor = editorRef.current; + if (!editor) return; + try { + editor.execute('selectAll'); + editor.execute('removeFormat'); + } catch (error) { + console.warn('RichTextEditor format command failed', error); + } + }, + getScrollInfo: async () => { + const domRoot = getEditableDom(); + if (!domRoot) { + return { scrollTop: 0, scrollHeight: 0, clientHeight: 0 }; + } + return { + scrollTop: domRoot.scrollTop, + scrollHeight: domRoot.scrollHeight, + clientHeight: domRoot.clientHeight, + }; + }, + setScrollTop: (value: number) => { + const domRoot = getEditableDom(); + if (domRoot) { + domRoot.scrollTop = value; + } + }, + }), []); + + useEffect(() => { + if (!editorRef.current || !isReady) return; + const domRoot = getEditableDom(); + if (domRoot && onScroll) { + const handler = () => { + onScroll({ + scrollTop: domRoot.scrollTop, + scrollHeight: domRoot.scrollHeight, + clientHeight: domRoot.clientHeight, + }); + }; + domRoot.addEventListener('scroll', handler); + return () => { + domRoot.removeEventListener('scroll', handler); + }; + } + return () => {}; + }, [onScroll, isReady]); + + useEffect(() => { + if (!editorRef.current || !isReady) return; + if (readOnly) { + editorRef.current.enableReadOnlyMode(readOnlyIdRef.current); + } else { + editorRef.current.disableReadOnlyMode(readOnlyIdRef.current); + } + }, [readOnly, isReady]); + + useEffect(() => { + if (!editorRef.current || !isReady) return; + if (content === lastDataRef.current) { + return; + } + const currentData = editorRef.current.getData(); + if (content !== currentData) { + editorRef.current.setData(content); + lastDataRef.current = content; + } + }, [content, isReady]); + + useEffect(() => { + return () => { + if (focusCleanupRef.current) { + focusCleanupRef.current(); + focusCleanupRef.current = null; + } + if (editorRef.current) { + editorRef.current.destroy?.().catch(() => undefined); + editorRef.current = null; + } + }; + }, []); + + const handleEditorReady = (editor: any) => { + editorRef.current = editor; + lastDataRef.current = editor.getData(); + if (readOnly) { + editor.enableReadOnlyMode(readOnlyIdRef.current); + } + if (onFocusChange) { + if (focusCleanupRef.current) { + focusCleanupRef.current(); + focusCleanupRef.current = null; + } + const tracker = editor.ui.focusTracker; + const handler = (_: unknown, __: string, isFocused: boolean) => { + onFocusChange(isFocused); + }; + tracker.on('change:isFocused', handler); + focusCleanupRef.current = () => { + tracker.off('change:isFocused', handler); + }; + } + setIsReady(true); + }; + + const handleEditorChange = (_: unknown, editor: any) => { + const data = editor.getData(); + lastDataRef.current = data; + onChange(data); + }; + + const handleBlur = () => { + onFocusChange?.(false); + }; + + const handleFocus = () => { + onFocusChange?.(true); + }; + + return ( +
+
+ +
+
+ ); + } +); + +RichTextEditor.displayName = 'RichTextEditor'; + +export default RichTextEditor; diff --git a/electron/database.ts b/electron/database.ts index cd80a48..871ec86 100644 --- a/electron/database.ts +++ b/electron/database.ts @@ -921,7 +921,7 @@ export const databaseService = { } if (nodeType === 'document') { - const allowedDocTypes: DocType[] = ['prompt', 'source_code', 'pdf', 'image']; + const allowedDocTypes: DocType[] = ['prompt', 'source_code', 'pdf', 'image', 'rich_text']; const allowedViewModes: ViewMode[] = ['edit', 'preview', 'split-vertical', 'split-horizontal']; let docType = allowedDocTypes.includes(node.doc_type as DocType) diff --git a/hooks/usePrompts.ts b/hooks/usePrompts.ts index 1391c54..f5f2f37 100644 --- a/hooks/usePrompts.ts +++ b/hooks/usePrompts.ts @@ -61,9 +61,12 @@ export const useDocuments = () => { const allNodesFlat = useMemo(() => flattenNodes(nodes), [nodes]); const items: DocumentOrFolder[] = useMemo(() => allNodesFlat.map(nodeToDocumentOrFolder), [allNodesFlat]); - const addDocument = useCallback(async ({ parentId, title = 'New Document', content = '', doc_type = 'prompt', language_hint = 'markdown' }: { parentId: string | null, title?: string, content?: string, doc_type?: DocType, language_hint?: string | null }) => { - const resolvedLanguage = mapExtensionToLanguageId(language_hint); - const shouldPreviewByDefault = doc_type === 'pdf' || doc_type === 'image' || resolvedLanguage === 'pdf' || resolvedLanguage === 'image'; + const addDocument = useCallback(async ({ parentId, title = 'New Document', content = '', doc_type = 'rich_text', language_hint = 'html' }: { parentId: string | null, title?: string, content?: string, doc_type?: DocType, language_hint?: string | null }) => { + const normalizedDocType: DocType = doc_type ?? 'rich_text'; + const resolvedLanguage = normalizedDocType === 'rich_text' + ? 'html' + : mapExtensionToLanguageId(language_hint); + const shouldPreviewByDefault = normalizedDocType === 'pdf' || normalizedDocType === 'image' || resolvedLanguage === 'pdf' || resolvedLanguage === 'image'; const defaultViewMode = shouldPreviewByDefault ? 'preview' : undefined; const now = new Date().toISOString(); const newNode = await addNode({ @@ -73,7 +76,7 @@ export const useDocuments = () => { locked: false, document: { content, - doc_type, + doc_type: normalizedDocType, language_hint: resolvedLanguage, language_source: 'user', doc_type_source: 'user', diff --git a/index.html b/index.html index 60d9375..324afea 100644 --- a/index.html +++ b/index.html @@ -117,6 +117,10 @@
+ diff --git a/package-lock.json b/package-lock.json index 7f4445d..18faa27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,8 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { + "@ckeditor/ckeditor5-build-classic": "^44.3.0", + "@ckeditor/ckeditor5-react": "^11.0.0", "@uiw/react-color-compact": "^2.9.2", "better-sqlite3": "^11.1.2", "electron-log": "^5.1.5", @@ -442,6 +444,13017 @@ "dev": true, "license": "MIT" }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-44.3.0.tgz", + "integrity": "sha512-+LYQi4DJmK87Mx3FU7q8Ei3Jv/BrXScR7P1rJVw9bYSySLISw1lPPGEuzNaDm+aI/IMwxAw6Laf7kp+bBfZg1A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-adapter-ckfinder/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-47.2.0.tgz", + "integrity": "sha512-lfcJAC8yJOQux3t33ikJrWRsZvywLr2zmU6mDR96SuCmeCyAN3UGXzCNa8kWPExpFGV01ZR61EZkjTah8LP2sQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-alignment/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-44.3.0.tgz", + "integrity": "sha512-cKRN73eWaci0px4RL/pu+uFx+/joJyicXjDogqRCqsrHtFnNziAoDxg1aU9F7eReMp+RJc5dqn9R94fZqxdaKQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-autoformat/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-47.2.0.tgz", + "integrity": "sha512-44nGL/M0qLURA1BEFkqZg6JzpjtvGyWJEluv728vb29JNQUGx0iNykjHBgtPX5s1Ztblx5ZwqFiuNiLkpmHptg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-autosave/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-44.3.0.tgz", + "integrity": "sha512-QxwJqzIMYD8Nq7I8utEm2N1wFYve3jR9W1RoxrP005V7F9hXubcG4VFkk1QspVjiPBBtWjYJh7Iq6LjeMnDXgg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-basic-styles/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-44.3.0.tgz", + "integrity": "sha512-J+t36widj2/f1DCZqZjCssOu4hdKCpX/mDWOAJwp4BNIei0NATmtHoblH4Lb98P0mF5UeneoLqR4XZlwMYD7tw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-block-quote/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-bookmark/-/ckeditor5-bookmark-44.3.0.tgz", + "integrity": "sha512-e3p6hUYC4LavTSVTDaz9VfpMaXpi35HNXqqCpIGJGtMKq7mYPaGf1ZZqIPEWuZz3UH/h/E445Mrm4KOgRo9hfg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-bookmark/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-build-classic": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-build-classic/-/ckeditor5-build-classic-44.3.0.tgz", + "integrity": "sha512-tvOwT1dAZlY4v1vZItqR0VFfTzr+OLoEmnOW/Lchl2Y0BUWT99GCfABCvAdakBBYvKdsMLsH0jqZFvnLxJCUmg==", + "deprecated": "The predefined builds are no longer maintained. Check the https://ckeditor.com/docs/ckeditor5/latest/updating/nim-migration/predefined-builds.html page for the details.", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-44.3.0.tgz", + "integrity": "sha512-R0cHl7aafBU1dvfpFu/dMq+7SMTKa7dAi1wQyu5RqmdN0glCAGXoyffe5h2gujcHGlUqzjGE9oX3207rrPi12A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "blurhash": "2.0.5", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckbox/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-44.3.0.tgz", + "integrity": "sha512-h/kQy9nUG2VmxAL28b56xZnVQDrr/N12cu2QE+ODfHIiumMNPPTx2Q+g7s8/eVhKAmNQuZJPXygokjXrirC8TA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ckfinder/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-44.3.0.tgz", + "integrity": "sha512-oCQfsHX0Z7RySzszvkpnsFi/p3pqEjpQs4FVpPXXWasK+3F00kWReYNNQFe+0z0eIw7alo/ZzqYTQG/FQHaQUw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-44.3.0.tgz", + "integrity": "sha512-c/jLU3lhoqPmwfwEXcU9fGw0ab6dQUcUjQUjamBH1x92p6NnEJTtXJD97trwgKJryZWZ6bk7vJG5nOC4i0XDZA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-cloud-services/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-47.2.0.tgz", + "integrity": "sha512-8SH10L7i+wirkouDmg4MdBN4R3AZDyutsuSCwDPALoKSHQs7KlYB+8TJxcejt/dSBd0JWgrBi7rVu9Arkk3I1A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-47.2.0.tgz", + "integrity": "sha512-x/ehXk+ga5tnumA8TenrZRU684DvpzzhTLfZScRxX3/3BJPYlFp7BWx60KJPQHKXYgb+I0qkQrgxuBXp83ed2g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-code-block/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-core": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-44.3.0.tgz", + "integrity": "sha512-QYyk00JI2wgE2Lr8/A3roRsms3rSOfwMAF88I6Ff2Qf+c8hT6O11gSX18jdd/bGLhfZ0c4IjWc8v67ohgUdMFg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-44.3.0.tgz", + "integrity": "sha512-s1Qpf45/31J4rW4RC0ArKLb5QqD0VKTn9LCB83qhyCLfGluk18MOZ2Fc7gfYoxZClzhCwdMQE6mhWOC9bQUmPw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-easy-image/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-47.2.0.tgz", + "integrity": "sha512-szIx59pnw6kgxYuAyqecMnSlwtwWu2q23XV4TpKF/V3NlHs9ZeIFusTX3icO8JLQR4ExsYa0bsYpabGdZdx2Ug==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-balloon/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-44.3.0.tgz", + "integrity": "sha512-Vi1tNQdKUCw6X66X2RPhtJPjXJHw/UqHw1Y0J4Vpmi5rf5UHerEj5Sjn+KrjUwDNbmeHtVO/egibLhwRMjKn8A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-classic/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-47.2.0.tgz", + "integrity": "sha512-h1Yw6/XHeEe5aW/4VV0njAGe5nsuIBkARCun039noA+b2bq+Qb9bAExzaSHULf7nZW4HHVJMcYvb2HwcX8MZ6g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-decoupled/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-47.2.0.tgz", + "integrity": "sha512-6kGG8Q4ggOim7KU/J3iMvmf5/faNjYL/ucg2RPMvzhH/eTqlZBlMdDid86b0YAW0fbKPvIIACifoOBHIGlcZyA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-inline/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-44.3.0.tgz", + "integrity": "sha512-2k13l0m9+UGMDOzz2uGkj706iMFsayvn+wp6D4niGUOoDGtKOZSX6gNUwq+WcHJ2+54fsXAAJ2xVZB9juXSuhg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-editor-multi-root/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-47.2.0.tgz", + "integrity": "sha512-pS1G0QVFOK2Z+BLrVmm6pVjFZRpkC95YgQeASuuIySLZBllYD3+tlys2lPt3el5PAd0IQB7s85XuTdbCXDFr6A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-mention": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5", + "fuzzysort": "3.1.0" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-emoji/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-engine": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-44.3.0.tgz", + "integrity": "sha512-76nq2oHwQocaGQfRKlaDaYYFSps3yVNfbC4204i4/S0moKtB9fSy9IBKwYm5D9iB+0qjqCYGnsn17wWNuKjCYQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-utils": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-enter": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-44.3.0.tgz", + "integrity": "sha512-M5pv6XC5SIqwa9ZiQQsmmvCAot/uiBN/8ax3KvLz8S78eXDHyHKE6mZMWUd0MJCfZ/0b+CnrFVY/kvZkS+h/7g==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-44.3.0.tgz", + "integrity": "sha512-DkE6u0pD3gcFLkyZRNA4IZVvjLQUpgoEeTCaB/QaCQRljSSj9300AtkIFpCdRiWo9RAGw7rs9XmVRoCsTPY4tQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-essentials/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-47.2.0.tgz", + "integrity": "sha512-34Uzpbxi+/eJx/0CR9/T92wDaw67KLaYcm39+RY4OUCxC9EywEFruIJEg/M/Xu4iTVjdVKbpQ3ovGBuciiL1vQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-find-and-replace/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-font": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-47.2.0.tgz", + "integrity": "sha512-X/AYeNHc3Hibd56OfPwOEdYRIGX3eWtGQ/qIAEVkS2xCEDPhM0fTHpLTEpDsMukw9NRAqmhnQHIp2amGaOwY8g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-font/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-fullscreen/-/ckeditor5-fullscreen-47.2.0.tgz", + "integrity": "sha512-Kf//0eQIuslGNVSbNkHXBELn/jZT+OsTIeo8PulZEbVI5do0vB/52w0F40rhgk8EudlGTxEmMOi0x/jrdR0MHg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-classic": "47.2.0", + "@ckeditor/ckeditor5-editor-decoupled": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-editor-classic": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-47.2.0.tgz", + "integrity": "sha512-fYy4RKmvM4kYvUgCRuBdUqVLE8ts1Kj4q1Caaq5VZyBudmaj/RZqQBSdiu5pZgKMdj1oMaIQ5Gextg96iJ3LTw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-fullscreen/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-44.3.0.tgz", + "integrity": "sha512-7uCSHN2UMTzn/nZpoACOiUyx2dX4ZlC8bfLbpdgMhDPM9vEaa0Tr/lgSFD5C1ugLFFSEJL3pAPGWStvZ4wD6YA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-heading/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-47.2.0.tgz", + "integrity": "sha512-Fp59HRybXJpJl/DtliMTjiVrIA95jmm0SptvXtIucD0hdP9ZX6TOFPTzrRl29LZGITNuYDulPqvNTpFoechRmQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-highlight/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-47.2.0.tgz", + "integrity": "sha512-/DHVMhI9vNs/NI+NQBbUXdzsXHj9hGKihtNDmbV5UP3Hy7l32Gv8k9nJVnBlDbBbHI6Wpxjj6GUxAiLZ46mc1Q==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-horizontal-line/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-47.2.0.tgz", + "integrity": "sha512-VhI789/KDKmQhz9nQqq64odOtLpwjJbPQ/Pf54J2d7AGDvbuNVkjAMVdj5xXXzb/nXdys6zM8lPQZfQGI/Ya8A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-html-embed/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-47.2.0.tgz", + "integrity": "sha512-IwaFBdv0qQQXfnA1LHL2BVQoioNJa9T8NIKDq2OG3mXg02jJvhJl84QADJ0ro36igjKsyfttsl8lM1pf00XAhA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-heading": "47.2.0", + "@ckeditor/ckeditor5-image": "47.2.0", + "@ckeditor/ckeditor5-list": "47.2.0", + "@ckeditor/ckeditor5-remove-format": "47.2.0", + "@ckeditor/ckeditor5-table": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-47.2.0.tgz", + "integrity": "sha512-x/ehXk+ga5tnumA8TenrZRU684DvpzzhTLfZScRxX3/3BJPYlFp7BWx60KJPQHKXYgb+I0qkQrgxuBXp83ed2g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-heading": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-47.2.0.tgz", + "integrity": "sha512-m1zSERVh7gdVXwLLYgcAsy7lkIOuadmA5YuwyPpR/g3oa0j1gcuNm5y/73MTOPflPUn0g0Y9DzocF2G1WY2NiQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-paragraph": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-image": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-47.2.0.tgz", + "integrity": "sha512-XbXvRS++kFku0l7GABhsribmQTBC/SOAfimDNKjg5rayhAXCfovys7YmmU0eicydpo4//fAaa8zvDYc8uXWZGA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-undo": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-list": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-47.2.0.tgz", + "integrity": "sha512-PDjTQLn2CqrZ4XuAAJWY2vA5bkVu8UHKQZa1+ddfS4FbvfF2QR3eDX5axywpuaCb2Dm2ZQoqxpA5GQmt1fUehg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-font": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-paragraph": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-47.2.0.tgz", + "integrity": "sha512-x6nqRQjlAcOhirOE9umNdK8WckWcz7JPVU7IlPTzlrVAYCq+wiz6rgpuh4COUHnee4c31fF21On+OVyqgu7JvQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-table": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-47.2.0.tgz", + "integrity": "sha512-zxNHpl4L7HsOLCYiKrbyyHoM2dMGetgP4eTjYyWfn9gf+ydVs7o+LJVN5bsWt3J4ToamCj5G7VHZUmqUcPbN6A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-undo": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-47.2.0.tgz", + "integrity": "sha512-smq5O3GdqJXB+9o54BTn/LyB52OHiW9ekzacOuMNxtuA/KBwHpdsPFMcGFGH04W9O0qUtSdt3fYC0i+SJjYAww==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-upload": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-47.2.0.tgz", + "integrity": "sha512-uE4FwVtmJ6UACDC9N+H6HHGhlpAF8Fk2QCF/iBboh4VqhlFbFjMbXCAbsWrDik6C/p9r4Iv+IEmbpjsRTD+9SQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-html-support/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-icons": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-icons/-/ckeditor5-icons-47.2.0.tgz", + "integrity": "sha512-9rxAWNQEjZBHyMBQ8XXwfa+ubPBzQntd+nkWBAGTK6ddqHZIaQLsiLrUAdR5tyKKK9tnTkwyx1jycGRspZnoxw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true + }, + "node_modules/@ckeditor/ckeditor5-image": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-44.3.0.tgz", + "integrity": "sha512-3mRgGSOXQ4e/TJZcB7N8SPSnN+pdUzA72kwiN6FrjjdV0CNqehNoSUCFrwra4ctHaFjLBBqFVV+hEvwFlgmlxA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-image/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-44.3.0.tgz", + "integrity": "sha512-Gju3Lt2/OQB2mzhk/TTtonHTEcmFua4Ag4keB75EbPxthpLZZnMQm3Gl7MvrecjUv4+3nRlEBv/Bon00OIXcqA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-indent/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-integrations-common": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-integrations-common/-/ckeditor5-integrations-common-2.2.3.tgz", + "integrity": "sha512-92kQWQj1wiABF7bY1+J79Ze+WHr7pwVBufn1eeJLWcTXbPQq4sAolfKv8Y8Ka9g69mdyE9+GPWmGFYDeQJVPDg==", + "license": "SEE LICENSE IN LICENSE.md", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "ckeditor5": ">=42.0.0 || ^0.0.0-nightly" + } + }, + "node_modules/@ckeditor/ckeditor5-language": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-47.2.0.tgz", + "integrity": "sha512-kc5MqQnvQtUPuvRJfdqXHQZNQyHVy/ZZv5laPY1AKrsKqc5SJO4y3v//4yHvdn45V4QKLwMOy4yC365Sdq0UpA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-language/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-44.3.0.tgz", + "integrity": "sha512-OmOWje1i7tuEBNHoIi/n6M69xE1K97P2xmbSJ9HB5nFFvelfCCMnuLa+7QmT1+/Sxg0VYM175dtTclinEeWJhQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-link/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-44.3.0.tgz", + "integrity": "sha512-66f3n8ASdhA7wxPoGt/sI+Eg/IhDFutSkCEcqL2tsJFVRB0MuhhQIklxdGRVfPrjbpMSUPSRJPMddAFhRCzfUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-list/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-47.2.0.tgz", + "integrity": "sha512-mt47/GMxrsAL3u/aBjOuH5ETSLH0knoYJpchYb7sXzIuQlY7xPqvcONyD9700TAN30FV7qpOVKUqI7tRyLL5uA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@types/hast": "3.0.4", + "ckeditor5": "47.2.0", + "hast-util-from-dom": "5.0.1", + "hast-util-to-html": "9.0.5", + "hast-util-to-mdast": "10.1.2", + "hastscript": "9.0.1", + "rehype-dom-parse": "5.0.2", + "rehype-dom-stringify": "4.0.2", + "rehype-remark": "10.0.1", + "remark-breaks": "4.0.0", + "remark-gfm": "4.0.1", + "remark-parse": "11.0.0", + "remark-rehype": "11.1.2", + "remark-stringify": "11.0.0", + "unified": "11.0.5", + "unist-util-visit": "5.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-47.2.0.tgz", + "integrity": "sha512-x/ehXk+ga5tnumA8TenrZRU684DvpzzhTLfZScRxX3/3BJPYlFp7BWx60KJPQHKXYgb+I0qkQrgxuBXp83ed2g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-markdown-gfm/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-44.3.0.tgz", + "integrity": "sha512-wlAITZKeNEZfB164hwODXfhg63pYaWynCuIvVCtaeVUmoBqnSkK8gxuZ2ehxUdi4SPlVJwt84afDsD4RU8UYDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-media-embed/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-mention": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-47.2.0.tgz", + "integrity": "sha512-ZPvVwEQxcCUI0SvJa28JUULww/SCXiiZpfnMtaneMxsIOqesAFxPqMXA9HkyLotikuK1sezu5XzgJ2S5gdqw3A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-mention/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-47.2.0.tgz", + "integrity": "sha512-Th6HspywP3JeGBMRUmpAuIyFa8XtrpMiGdsjazlKcHaitT6bHBTzaTjaWVnOuVY3gBdFAKsalv2ZEk8vIPqkhg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-minimap/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-47.2.0.tgz", + "integrity": "sha512-DosfUorg3wZ3a6yM/ymsJQ1E2Rbqi08RFOQ4oQLPPAi2VRdTLt0BiqQPFMKJmy2T2k5K4TLc7bs0s3E96aQyXg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-page-break/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paragraph": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-44.3.0.tgz", + "integrity": "sha512-kxZBn/xmz+woXB0fIKWA/ZrFZXqyubX5BhcOYpM2j3CtjsJUJsL6ekwBq/y9HNSkkKfNKHaTzK7IDiPBKblcrw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-44.3.0.tgz", + "integrity": "sha512-IHl3YVE6ONGXTxHf+uHvvBMFR90nxTz7nB9eA8DzuWskF+fOo+wtVdfZaafLUs0kJJXBTRebsv2Sa5onLLL6tA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-paste-from-office/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-react": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-react/-/ckeditor5-react-11.0.0.tgz", + "integrity": "sha512-ObspEdZzKjjUH+CyrOYMyy/NAcMzGESxKGiBYkTzI6vHCzMdR0mQYOXKcLADPEZ6dk1jvKdoeD1l6l31zKK/1w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-integrations-common": "^2.2.2" + }, + "peerDependencies": { + "ckeditor5": ">=46.0.0 || ^0.0.0-nightly", + "react": "^16.13.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-47.2.0.tgz", + "integrity": "sha512-CRWs7Osok8k3Oi2N7RvA12ECxi47wIyrDTsJ3lJYo8zDIbZdOXlv5o+In+mbsZ7lzNKLhKMAgRcF/PrGWcAaUg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-remove-format/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-47.2.0.tgz", + "integrity": "sha512-ziFgoZCHaHzzrLeQ6XIlrcEazoGF6IC2+qzxGnO1A1NKY/8WVLmokKFLmUgDMnPLrhvz5Qqldj0dSS2pKhj6QQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-restricted-editing/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-select-all": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-44.3.0.tgz", + "integrity": "sha512-GDNl6Iex1cyHAQgjR6cqIklH8QPO1x1Z87gwi93lX3mgm47DW6Q12jvwfRc36+d1zGf5W7+eH0xaP7jQPWYUPg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-47.2.0.tgz", + "integrity": "sha512-eIzvA5zQEWNGVXhkCTYVfw32tpsFEx4nTPAVpsFEv0hb1sAMaOv5fIoFmwcx/C8CmN9sBiZtuovXGM5i/pwoTQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-show-blocks/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-47.2.0.tgz", + "integrity": "sha512-B82fbUiTBWYR3XTfUk/30Hsk9PAmPkmraKNJKGDoch0NXduPz8ehpCwbnrJdIvm7pozbgB11RjWzq56VcBX2Qw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-theme-lark": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-source-editing/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-47.2.0.tgz", + "integrity": "sha512-aH1E1SEMRUF6gMdqPuFeDZvZRCUNJ/n8RWwXHFicsJArYDGOiATxVZQZbwk50duAsWcxxj0uTSHGwFXBL9evyQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-special-characters/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-style": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-47.2.0.tgz", + "integrity": "sha512-XAIl8oNHpFxTRbGIE+2vpKLgrP3VnknUTyasvL/HeS3iUHKLDRlh9d3ghozhuUqQaF5rnkzUQEBv/fv+4u3Y7A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-html-support": "47.2.0", + "@ckeditor/ckeditor5-list": "47.2.0", + "@ckeditor/ckeditor5-table": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-47.2.0.tgz", + "integrity": "sha512-x/ehXk+ga5tnumA8TenrZRU684DvpzzhTLfZScRxX3/3BJPYlFp7BWx60KJPQHKXYgb+I0qkQrgxuBXp83ed2g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-list": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-47.2.0.tgz", + "integrity": "sha512-PDjTQLn2CqrZ4XuAAJWY2vA5bkVu8UHKQZa1+ddfS4FbvfF2QR3eDX5axywpuaCb2Dm2ZQoqxpA5GQmt1fUehg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-font": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-table": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-47.2.0.tgz", + "integrity": "sha512-zxNHpl4L7HsOLCYiKrbyyHoM2dMGetgP4eTjYyWfn9gf+ydVs7o+LJVN5bsWt3J4ToamCj5G7VHZUmqUcPbN6A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-style/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-44.3.0.tgz", + "integrity": "sha512-kFPvQWe/7Iq9tPzq788HLax7Ss8SJaS5+bkhbUmH+k4RM4NABl1ABRa+EzyMIrdqz9KLYr0B57jUoCU8Y2HLsg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-alignment": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-alignment/-/ckeditor5-alignment-44.3.0.tgz", + "integrity": "sha512-PJLPQPJTaEs/TxmXovb5gZWHFk04VdyFxwpy+LFiVKTewV4T5Mz2jinXwL6+DYmlHh0oDu66O2joSdYeL6F9xw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-autosave": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autosave/-/ckeditor5-autosave-44.3.0.tgz", + "integrity": "sha512-vZS8lMUNwtpUplx1WtiywEmgqy2rXSTrwbCqkENZZ6vIOpYZg9sW0XxWAdCMslBiNZRhAF2et3jT+Es01/aEyg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-code-block": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-code-block/-/ckeditor5-code-block-44.3.0.tgz", + "integrity": "sha512-LNFRr7OIdvyZTfkmyNW/m48EXTsYdrQyDS/9hp4fpHrv9cC3rHhnP4/rS3vkmPh9FOv5I2JvXS36nn75BjWRRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-editor-balloon": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-balloon/-/ckeditor5-editor-balloon-44.3.0.tgz", + "integrity": "sha512-Lw6GIIUW37Pi/ErFqx+ozsqRmbBbvhrJhDJ1zIhILEYcwzADHGP32O2pKGLHDf5Z4QTfwunAyG73jvww/ks3kg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-editor-decoupled": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-decoupled/-/ckeditor5-editor-decoupled-44.3.0.tgz", + "integrity": "sha512-sG4KO0pPhfwQpiegtncDyL9G7nlCsjcWqDieZvRfwy2Uig7EaChny3BoIQhacjO4xKV8ZhXw+dTBJgZRtfePdQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-editor-inline": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-inline/-/ckeditor5-editor-inline-44.3.0.tgz", + "integrity": "sha512-asa9uWhdTGA6BDda7leJEj57UT3lkDmFAHPFL7fWsvQpL2mszbdf7P6L/rOedGcj2/7a9F8CZfb5aVmENrM3Zw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-emoji": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-emoji/-/ckeditor5-emoji-44.3.0.tgz", + "integrity": "sha512-NevoSyV8f9F44oTYFJ8DVaOGmqS1XzCisg/lSW5iwfu2R0+6WXCfU6zlGwp9wVedolznUu5OiYpHK0Emz3dmBw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "fuzzysort": "3.1.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-find-and-replace": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-find-and-replace/-/ckeditor5-find-and-replace-44.3.0.tgz", + "integrity": "sha512-d4fLo5IWyxPmfuoIqoaWaekoodgtFurKALc2ZyNvto7H9m+ul+uWwhF4A9buovbETv0N0mertDruGENygiuOCg==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-font": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-font/-/ckeditor5-font-44.3.0.tgz", + "integrity": "sha512-F1cdHNbtXkM/1nvqbCO4XeSCHahNiMnwkQqCm36njxuBRXbAei/qTwxqrwPAukE6Yb2q9boX1prUbvEBbPAqhw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-highlight": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-highlight/-/ckeditor5-highlight-44.3.0.tgz", + "integrity": "sha512-BwdMrcAbS0J/3q3dmtY0F6sVARVR9oSrWj4/850EfXp0hw9gkpQyEjrds17sIrIchCG+/8/0LM4Z9sADYzmo9w==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-horizontal-line": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-horizontal-line/-/ckeditor5-horizontal-line-44.3.0.tgz", + "integrity": "sha512-k8YuWptng4IKUbXVE+ZjVyNm8JpGU50aFWckYunimlpajNOKC52L8pneIEqIHr/BjA+2P/vtAIf8HDZs+AoNjw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-html-embed": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-embed/-/ckeditor5-html-embed-44.3.0.tgz", + "integrity": "sha512-rJV3ikojykVPw9CrtzInh8DsgGuk/2UOi8KUr3b6DEtuYOqJkG5cfpqRy5QVoSRbtpLhVOWNpEKhYGgiv+HUgw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-html-support": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-html-support/-/ckeditor5-html-support-44.3.0.tgz", + "integrity": "sha512-KFBHMzBNU9/YBj3Eil03qYBLNk7wAuholdZ3YijohgCt2YRw1cRu9krjGaOyhF9E5MEu0cqTJvTjPGBhGE8mVQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-language": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-language/-/ckeditor5-language-44.3.0.tgz", + "integrity": "sha512-lnhnnsSwMnnyFpUktrvAxuj6tlwn2zjSm7+ZDxMiQpsZuRsmABnSapeKqjlfs8B1rQwrcZIhp1FsHVvnaVOzug==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-markdown-gfm": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-markdown-gfm/-/ckeditor5-markdown-gfm-44.3.0.tgz", + "integrity": "sha512-q+vblaqjjwQQkcrFfsOCD7ejWl1ltqV982jfFK9LTx7DiJIuR2UwByNrRC00Xeol2rDeC8lYoIH77AZHavFIbw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@types/marked": "4.3.2", + "@types/turndown": "5.0.5", + "ckeditor5": "44.3.0", + "marked": "4.0.12", + "turndown": "7.2.0", + "turndown-plugin-gfm": "1.0.2" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-mention": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-mention/-/ckeditor5-mention-44.3.0.tgz", + "integrity": "sha512-pmf7prEvIJgP4rbyeTtY6Ynl2i5jo52G+DlFwJbWUzZDyOZIR41mh4hBimK50QHR0szaXMBGbM+alFu924vZCA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-minimap": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-minimap/-/ckeditor5-minimap-44.3.0.tgz", + "integrity": "sha512-iRO1t1lyeyiFZg4il5JGRVwyoqRYqsRcj9uSh90xNJJAxH5yiPlWAGIvCMzWDwlINFJe/hfaNd0RDzlbNHytgA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-page-break": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-page-break/-/ckeditor5-page-break-44.3.0.tgz", + "integrity": "sha512-PzvOsEDNBPWCtN9S6nhJPWYwF/5BoE0klXkNzTgoA28EwsoSA4evU8gztcoxxGkVOskdI2OzZfz1QUaPFczLDQ==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-remove-format": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-remove-format/-/ckeditor5-remove-format-44.3.0.tgz", + "integrity": "sha512-ZlbJNaX+IGui9C3NDC/W/4M308RzD3+jnk5iDGXENjBstNB99AnwpfDXel+Tc0t5rTd7D1fSr9eaxScnPLdgwA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-restricted-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-restricted-editing/-/ckeditor5-restricted-editing-44.3.0.tgz", + "integrity": "sha512-0V/can4jw70DMBPwex1MRiUHRsvFdbjZp/RaHagazen6gOZZOAo3R7vJjp+qBQrHmXP6T6aTGn89Y9NxYI9OIw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-show-blocks": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-show-blocks/-/ckeditor5-show-blocks-44.3.0.tgz", + "integrity": "sha512-4Qp992YWOby7+MiyX0PwD8bg/+PgsRFNXd9DLyhCvmmiFmkwUzbYmA8t3lp+V3uefg5SrcylzWn4QHlUNVg1iw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-source-editing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-source-editing/-/ckeditor5-source-editing-44.3.0.tgz", + "integrity": "sha512-OCv2oO6ok0UrZJHOoJRnywFpv3+UntOs7TuvEw35zDYJCgcmICfzqqTZ++ZcZaq1oOERbwk2L4E4uy2H8KXWQA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-special-characters": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-special-characters/-/ckeditor5-special-characters-44.3.0.tgz", + "integrity": "sha512-K3cOw/aMUmkXofUVFpUXTHLNYlwvcT3KUyfvTO3oT8ae3ecQlG4btTjgnzgVD2zIXFSEpguSBYywVUhMAZWNMA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-style": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-style/-/ckeditor5-style-44.3.0.tgz", + "integrity": "sha512-IUd5yRea8uh/VyAJ6p1NdXL9wWywQYfIOubzNgiP1b58q0psfWYxwsREekE6Epd+sMHC1H4wc+dZsIxfi+stKw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-44.3.0.tgz", + "integrity": "sha512-Druy7S1e3bjwMVLkld7ZPGIU6tdI9E6bn/AS+OrQF3mDck14mFP+K4qnMbYNCeYngMqv8Se0eSHtAmQhU7It0A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/@ckeditor/ckeditor5-word-count": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-44.3.0.tgz", + "integrity": "sha512-9iNiF1wq1f9npT/KhBAgDfM6kFbJ0GyUdlXt3V6zyLY2K3SILQ6q5B23jhtABZny8zxA+f528ClxDSTFh9bXDA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "ckeditor5": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-table/node_modules/ckeditor5": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-44.3.0.tgz", + "integrity": "sha512-g2arr/fejYAiOkdMeYvz1ficRPJ42OvO+pYROhre08YjIbAtJBr8wO9DPk9nCV3msnyYE+B02bs+TppazhYNtw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-alignment": "44.3.0", + "@ckeditor/ckeditor5-autoformat": "44.3.0", + "@ckeditor/ckeditor5-autosave": "44.3.0", + "@ckeditor/ckeditor5-basic-styles": "44.3.0", + "@ckeditor/ckeditor5-block-quote": "44.3.0", + "@ckeditor/ckeditor5-bookmark": "44.3.0", + "@ckeditor/ckeditor5-ckbox": "44.3.0", + "@ckeditor/ckeditor5-ckfinder": "44.3.0", + "@ckeditor/ckeditor5-clipboard": "44.3.0", + "@ckeditor/ckeditor5-cloud-services": "44.3.0", + "@ckeditor/ckeditor5-code-block": "44.3.0", + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-easy-image": "44.3.0", + "@ckeditor/ckeditor5-editor-balloon": "44.3.0", + "@ckeditor/ckeditor5-editor-classic": "44.3.0", + "@ckeditor/ckeditor5-editor-decoupled": "44.3.0", + "@ckeditor/ckeditor5-editor-inline": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-emoji": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-essentials": "44.3.0", + "@ckeditor/ckeditor5-find-and-replace": "44.3.0", + "@ckeditor/ckeditor5-font": "44.3.0", + "@ckeditor/ckeditor5-heading": "44.3.0", + "@ckeditor/ckeditor5-highlight": "44.3.0", + "@ckeditor/ckeditor5-horizontal-line": "44.3.0", + "@ckeditor/ckeditor5-html-embed": "44.3.0", + "@ckeditor/ckeditor5-html-support": "44.3.0", + "@ckeditor/ckeditor5-image": "44.3.0", + "@ckeditor/ckeditor5-indent": "44.3.0", + "@ckeditor/ckeditor5-language": "44.3.0", + "@ckeditor/ckeditor5-link": "44.3.0", + "@ckeditor/ckeditor5-list": "44.3.0", + "@ckeditor/ckeditor5-markdown-gfm": "44.3.0", + "@ckeditor/ckeditor5-media-embed": "44.3.0", + "@ckeditor/ckeditor5-mention": "44.3.0", + "@ckeditor/ckeditor5-minimap": "44.3.0", + "@ckeditor/ckeditor5-page-break": "44.3.0", + "@ckeditor/ckeditor5-paragraph": "44.3.0", + "@ckeditor/ckeditor5-paste-from-office": "44.3.0", + "@ckeditor/ckeditor5-remove-format": "44.3.0", + "@ckeditor/ckeditor5-restricted-editing": "44.3.0", + "@ckeditor/ckeditor5-select-all": "44.3.0", + "@ckeditor/ckeditor5-show-blocks": "44.3.0", + "@ckeditor/ckeditor5-source-editing": "44.3.0", + "@ckeditor/ckeditor5-special-characters": "44.3.0", + "@ckeditor/ckeditor5-style": "44.3.0", + "@ckeditor/ckeditor5-table": "44.3.0", + "@ckeditor/ckeditor5-theme-lark": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-undo": "44.3.0", + "@ckeditor/ckeditor5-upload": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@ckeditor/ckeditor5-watchdog": "44.3.0", + "@ckeditor/ckeditor5-widget": "44.3.0", + "@ckeditor/ckeditor5-word-count": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-theme-lark/-/ckeditor5-theme-lark-47.2.0.tgz", + "integrity": "sha512-5Guefuo+Nllq4FMaFnLJlU/fICy2IQYw3T+0PTYjFqd59xTx6suwjv2ou41HKPfJ1b6NCbmkbhuaC59lGIfBtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-theme-lark/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, + "node_modules/@ckeditor/ckeditor5-typing": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-44.3.0.tgz", + "integrity": "sha512-ojAuhhd/PfO5Oko94ObgEmuvQzqApARb2H0R5YEySSRj9oek4Nm1NGMhHMvIC0sMP2hSVxhfSbHcHY3vDjGwiA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-ui": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-44.3.0.tgz", + "integrity": "sha512-Sotme1g/xwhmDYes+bXEU/9hbGXcaKC952Yck6UiYgZyhei28lErlNwtSOAKfpQ2gHbPjWRt7rigSH22EN+iqw==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "@types/color-convert": "2.0.4", + "color-convert": "2.0.1", + "color-parse": "1.4.2", + "lodash-es": "4.17.21", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-undo": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-44.3.0.tgz", + "integrity": "sha512-cogFPl7QoDrmoUPKTZI0/LiUYoFboqm0lqBK168nh5VRgy53RuGgbXJ4+hCOHNuzdUnVUlWvl/2u0vR4/R07+A==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-upload": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-44.3.0.tgz", + "integrity": "sha512-oJgsw374nHeVKx1qvnlQzEyDhfFvC/su84f00nOdDGWfsHabU3hE0hZE+yoBtreRViORwwe6Ftg5qbhl5OVyuA==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0" + } + }, + "node_modules/@ckeditor/ckeditor5-utils": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-44.3.0.tgz", + "integrity": "sha512-Z/ttfLhu9QnuMc9BBdQfH9Do6JD01ijUkUmUB41BPByYfOjZbGYGfZmhywH9OjXmHnSDQSUqwRnxqqM3nceR1g==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-ui": "44.3.0", + "@types/lodash-es": "4.17.12", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-44.3.0.tgz", + "integrity": "sha512-7Y4FOWB021CLEUDsIf61tZzd9ZrZ8JkD8lQeRZOmv+bBLTxgjyz2/7MCjIDR7NN0xdASXTFwRS6XO32HbdrN0Q==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-editor-multi-root": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-widget": { + "version": "44.3.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-44.3.0.tgz", + "integrity": "sha512-nFEKBE33RnZ2bOeD9L9jfyKYaFw/xKY543ZNQWxWHcmI70AX3U2KJ8wUnuMjMknHafyMuH6bSlWjKtn5vz3w+g==", + "license": "SEE LICENSE IN LICENSE.md", + "dependencies": { + "@ckeditor/ckeditor5-core": "44.3.0", + "@ckeditor/ckeditor5-engine": "44.3.0", + "@ckeditor/ckeditor5-enter": "44.3.0", + "@ckeditor/ckeditor5-typing": "44.3.0", + "@ckeditor/ckeditor5-ui": "44.3.0", + "@ckeditor/ckeditor5-utils": "44.3.0", + "lodash-es": "4.17.21" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-word-count/-/ckeditor5-word-count-47.2.0.tgz", + "integrity": "sha512-1ouy59G1Qxf6hTRnW9tSL7Xjsx8kGfTJvrH9mZWGIpmNo0pIM6Ts96U/qgr5RB0LbhYtqhbDq87F9QjMcfYUjQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/@ckeditor/ckeditor5-word-count/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, "node_modules/@csstools/color-helpers": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", @@ -1935,6 +14948,12 @@ "node": ">= 10.0.0" } }, + "node_modules/@mixmark-io/domino": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz", + "integrity": "sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==", + "license": "BSD-2-Clause" + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -2563,6 +15582,21 @@ "@types/deep-eql": "*" } }, + "node_modules/@types/color-convert": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.4.tgz", + "integrity": "sha512-Ub1MmDdyZ7mX//g25uBAoH/mWGd9swVbt8BseymnaE18SU4po/PjmCrHxqIIRjBo3hV/vh1KGr0eMxUhp+t+dQ==", + "license": "MIT", + "dependencies": { + "@types/color-name": "^1.1.0" + } + }, + "node_modules/@types/color-name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.5.tgz", + "integrity": "sha512-j2K5UJqGTxeesj6oQuGpMgifpT5k9HprgQd8D1Y0lOFqKHl3PJu5GMeS4Y5EgjS55AE6OQxf8mPED9uaGbf4Cg==", + "license": "MIT" + }, "node_modules/@types/d3-scale": { "version": "4.0.9", "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz", @@ -2591,7 +15625,6 @@ "version": "4.1.12", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/ms": "*" @@ -2635,7 +15668,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -2665,6 +15697,27 @@ "@types/node": "*" } }, + "node_modules/@types/lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==", + "license": "MIT" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "license": "MIT", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/marked": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@types/marked/-/marked-4.3.2.tgz", + "integrity": "sha512-a79Yc3TOk6dGdituy8hmTTJXjOkZ7zsFYV10L337ttq/rec8lRMDBpV7fL3uLx6TgbFCa5DU/h8FmIBQPSbU0w==", + "license": "MIT" + }, "node_modules/@types/mdast": { "version": "3.0.15", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", @@ -2679,7 +15732,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", - "dev": true, "license": "MIT" }, "node_modules/@types/node": { @@ -2742,11 +15794,16 @@ "@types/node": "*" } }, + "node_modules/@types/turndown": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.5.tgz", + "integrity": "sha512-TL2IgGgc7B5j78rIccBtlYAnkuv8nUQqhQc+DSYV5j9Be9XOcm/SKOVRuA47xAVI3680Tk9B1d8flK2GWT2+4w==", + "license": "MIT" + }, "node_modules/@types/unist": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", - "dev": true, "license": "MIT" }, "node_modules/@types/uuid": { @@ -2860,7 +15917,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", - "dev": true, "license": "ISC" }, "node_modules/@vitejs/plugin-react": { @@ -3406,7 +16462,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -3534,6 +16589,12 @@ "bluebird": "^3.5.5" } }, + "node_modules/blurhash": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/blurhash/-/blurhash-2.0.5.tgz", + "integrity": "sha512-cRygWd7kGBQO3VEhPiTgq4Wc43ctsM+o46urrmPOiuAe+07fzlSB9OJVdpgDL0jPqXUVQ9ht7aq7kxOeJHRK+w==", + "license": "MIT" + }, "node_modules/boolean": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", @@ -3836,7 +16897,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -3881,7 +16941,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -3892,7 +16951,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -3903,7 +16961,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -4002,6 +17059,613 @@ "node": ">=8" } }, + "node_modules/ckeditor5": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/ckeditor5/-/ckeditor5-47.2.0.tgz", + "integrity": "sha512-mrG9UdpT4JC0I44vK1DV5UwfGhruEG/FMXIWwGv+LWYrKt4aLL/5NyNpW86UDO9YAFSaw6IdEcbJGC/WkMJJjA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-adapter-ckfinder": "47.2.0", + "@ckeditor/ckeditor5-alignment": "47.2.0", + "@ckeditor/ckeditor5-autoformat": "47.2.0", + "@ckeditor/ckeditor5-autosave": "47.2.0", + "@ckeditor/ckeditor5-basic-styles": "47.2.0", + "@ckeditor/ckeditor5-block-quote": "47.2.0", + "@ckeditor/ckeditor5-bookmark": "47.2.0", + "@ckeditor/ckeditor5-ckbox": "47.2.0", + "@ckeditor/ckeditor5-ckfinder": "47.2.0", + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-cloud-services": "47.2.0", + "@ckeditor/ckeditor5-code-block": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-easy-image": "47.2.0", + "@ckeditor/ckeditor5-editor-balloon": "47.2.0", + "@ckeditor/ckeditor5-editor-classic": "47.2.0", + "@ckeditor/ckeditor5-editor-decoupled": "47.2.0", + "@ckeditor/ckeditor5-editor-inline": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-emoji": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-essentials": "47.2.0", + "@ckeditor/ckeditor5-find-and-replace": "47.2.0", + "@ckeditor/ckeditor5-font": "47.2.0", + "@ckeditor/ckeditor5-fullscreen": "47.2.0", + "@ckeditor/ckeditor5-heading": "47.2.0", + "@ckeditor/ckeditor5-highlight": "47.2.0", + "@ckeditor/ckeditor5-horizontal-line": "47.2.0", + "@ckeditor/ckeditor5-html-embed": "47.2.0", + "@ckeditor/ckeditor5-html-support": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-image": "47.2.0", + "@ckeditor/ckeditor5-indent": "47.2.0", + "@ckeditor/ckeditor5-language": "47.2.0", + "@ckeditor/ckeditor5-link": "47.2.0", + "@ckeditor/ckeditor5-list": "47.2.0", + "@ckeditor/ckeditor5-markdown-gfm": "47.2.0", + "@ckeditor/ckeditor5-media-embed": "47.2.0", + "@ckeditor/ckeditor5-mention": "47.2.0", + "@ckeditor/ckeditor5-minimap": "47.2.0", + "@ckeditor/ckeditor5-page-break": "47.2.0", + "@ckeditor/ckeditor5-paragraph": "47.2.0", + "@ckeditor/ckeditor5-paste-from-office": "47.2.0", + "@ckeditor/ckeditor5-remove-format": "47.2.0", + "@ckeditor/ckeditor5-restricted-editing": "47.2.0", + "@ckeditor/ckeditor5-select-all": "47.2.0", + "@ckeditor/ckeditor5-show-blocks": "47.2.0", + "@ckeditor/ckeditor5-source-editing": "47.2.0", + "@ckeditor/ckeditor5-special-characters": "47.2.0", + "@ckeditor/ckeditor5-style": "47.2.0", + "@ckeditor/ckeditor5-table": "47.2.0", + "@ckeditor/ckeditor5-theme-lark": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-undo": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "@ckeditor/ckeditor5-word-count": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-adapter-ckfinder": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-adapter-ckfinder/-/ckeditor5-adapter-ckfinder-47.2.0.tgz", + "integrity": "sha512-zzuINBzWuheU76Ans9m59VCVMiljESoKxzpMh0aYu+M3YB5IDctOPU8pdOpXPIdBwoYv64+ioZE/T5TyZDckSw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-autoformat": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-autoformat/-/ckeditor5-autoformat-47.2.0.tgz", + "integrity": "sha512-d9ZwAB8JwWlgLK2Um+u3ctiCtv5bkBHGk/rSdXB6D/V7QHCl31NyPFYByxTyCOY9SsoNn1l/8zbJfvp89LJm2w==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-heading": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-basic-styles": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-basic-styles/-/ckeditor5-basic-styles-47.2.0.tgz", + "integrity": "sha512-a8pPHq3CXmyxPPXPQZ8C92OOyBoCfpY8M30dS7et/dLXW3nuVo9VVLMw0vR1j+zcKXClp3+/odyw2/rxP+qntA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-block-quote": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-block-quote/-/ckeditor5-block-quote-47.2.0.tgz", + "integrity": "sha512-BlFFfunyWpYcGhLsOmCR0yEz5VgrOmHREHQZIRcL6fKzXJwdpA/VFWPirotwF/QErJjguhhDZ5a3PBEnUAmW/A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-bookmark": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-bookmark/-/ckeditor5-bookmark-47.2.0.tgz", + "integrity": "sha512-FDFDZXm8MqktIt3x0WVrYFuXy9sxcCH31Cpa0/mV19lW8CzoCZCAfvXNzPWsz2eFo8qOsna2c/e55ax8OM/Ncg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-link": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-ckbox": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckbox/-/ckeditor5-ckbox-47.2.0.tgz", + "integrity": "sha512-Cu+nJTXhcmdE8DWHoTY1nrrjxyG4pfxMrEcO/PNV28cojwtOQaWGt4EbWlXOfZZTEWlZO18JIw/YrxYXwx5mTA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-cloud-services": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-image": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "blurhash": "2.0.5", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-ckfinder": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ckfinder/-/ckeditor5-ckfinder-47.2.0.tgz", + "integrity": "sha512-nsxn9weZNwdplW/BHfEJ/rvb+wZj0KECN2Av9zFRekTxE1mp0hTShQ9MNlKImRQ4X2UV6bGN6+DXwJJIU0smlQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-image": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-clipboard": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-clipboard/-/ckeditor5-clipboard-47.2.0.tgz", + "integrity": "sha512-x/ehXk+ga5tnumA8TenrZRU684DvpzzhTLfZScRxX3/3BJPYlFp7BWx60KJPQHKXYgb+I0qkQrgxuBXp83ed2g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-cloud-services": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-cloud-services/-/ckeditor5-cloud-services-47.2.0.tgz", + "integrity": "sha512-794mxJ8MFhz2SxSjlMSp4cZbyBBpVjinQ3GxOS5VqO7H4m/iT2hdSPJaWpML53soxpEoG/6ax4vVKe5d0+xoqA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-core": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-core/-/ckeditor5-core-47.2.0.tgz", + "integrity": "sha512-NwUNa25g//ScxaVPASalcGfMDhUSv7nIpxC07oVv99zJjk64RTBr4TZHpjKLCVqN9gAn3phAtjtkxa2KOgOMtQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-watchdog": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-easy-image": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-easy-image/-/ckeditor5-easy-image-47.2.0.tgz", + "integrity": "sha512-lSnbiGDzYdu9GeOaYjVpowaZWDJbrb7NHCuUN5Af2474jXTDyYmG7qOm39fWEBlcxjMTzDR8fFzPcRNhOvSRRA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-cloud-services": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-editor-classic": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-classic/-/ckeditor5-editor-classic-47.2.0.tgz", + "integrity": "sha512-fYy4RKmvM4kYvUgCRuBdUqVLE8ts1Kj4q1Caaq5VZyBudmaj/RZqQBSdiu5pZgKMdj1oMaIQ5Gextg96iJ3LTw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-editor-multi-root": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-editor-multi-root/-/ckeditor5-editor-multi-root-47.2.0.tgz", + "integrity": "sha512-bIkPzkpLGznNnDLAuSkVNP+LfICLbUj80IdkVLB9KeXnuZ1WKYkLqBGfDv6y70iJnANAiiP6Z8EaucBNzfjS7g==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-engine": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-engine/-/ckeditor5-engine-47.2.0.tgz", + "integrity": "sha512-T3pFgycam60ytkbLOo2r99UPkbalLfzp4e6QrDVdZnloY7BO46zAbU5p3TqgfCdxODPhZh7srFGzANh6IsLMeg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-enter": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-enter/-/ckeditor5-enter-47.2.0.tgz", + "integrity": "sha512-7ZHfrxDSs55IXgs5yAX6Nl8COY1dqefZ5HiWT/UM0cOP/4aMffp5I1yYYP7NVfBkTW9DlUoeAkHFTv2miTwclQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-essentials": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-essentials/-/ckeditor5-essentials-47.2.0.tgz", + "integrity": "sha512-d3hHtkuLhvI+RvsDU7cKFc/K9uD27Tvi4NVjALcN1Ybr0k8dkJFGU1nUwXuo6zcdqRnkIJMWxIR+cwteuMCGQg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-select-all": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-undo": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-heading": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-heading/-/ckeditor5-heading-47.2.0.tgz", + "integrity": "sha512-m1zSERVh7gdVXwLLYgcAsy7lkIOuadmA5YuwyPpR/g3oa0j1gcuNm5y/73MTOPflPUn0g0Y9DzocF2G1WY2NiQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-paragraph": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-image": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-image/-/ckeditor5-image-47.2.0.tgz", + "integrity": "sha512-XbXvRS++kFku0l7GABhsribmQTBC/SOAfimDNKjg5rayhAXCfovys7YmmU0eicydpo4//fAaa8zvDYc8uXWZGA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-undo": "47.2.0", + "@ckeditor/ckeditor5-upload": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-indent": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-indent/-/ckeditor5-indent-47.2.0.tgz", + "integrity": "sha512-Q85+b+o+nonhJ/I9K9wB9XeZ5W8rS9k66VvoDHxL3jJ6g6C+oyEAOomooTDCvJvBgDN6vGpcwzznKp0Q8baoCQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-heading": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-list": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-link": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-link/-/ckeditor5-link-47.2.0.tgz", + "integrity": "sha512-ijaF1Ic23FH9qulW2ZuaxecmdT0JuK/4XNkdaoRntloHiVZ/tFAu+o/6st/pDXfutDBmnEXwrNGVtzO/JTPhrw==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-image": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-list": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-list/-/ckeditor5-list-47.2.0.tgz", + "integrity": "sha512-PDjTQLn2CqrZ4XuAAJWY2vA5bkVu8UHKQZa1+ddfS4FbvfF2QR3eDX5axywpuaCb2Dm2ZQoqxpA5GQmt1fUehg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-font": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-media-embed": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-media-embed/-/ckeditor5-media-embed-47.2.0.tgz", + "integrity": "sha512-lATTMej9pBsZk4qm8cOqLXhmrCq/t+HpP/zg3DWnYbiD6zclO69PSJxD09l9NsyOo0YZb8SYAsVISoKNaIOr0A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-undo": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-paragraph": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paragraph/-/ckeditor5-paragraph-47.2.0.tgz", + "integrity": "sha512-x6nqRQjlAcOhirOE9umNdK8WckWcz7JPVU7IlPTzlrVAYCq+wiz6rgpuh4COUHnee4c31fF21On+OVyqgu7JvQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-paste-from-office": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-paste-from-office/-/ckeditor5-paste-from-office-47.2.0.tgz", + "integrity": "sha512-DGGNGNhl25ub8dFBKJF4jfMBoSSbF5uKzFShMNIaAVAagV6kkDWR0HJWAir5CuFrElzWTkPd0ZC5RNL76yTbtg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "ckeditor5": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-select-all": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-select-all/-/ckeditor5-select-all-47.2.0.tgz", + "integrity": "sha512-4kswe9jmKp6y1hTwWfJBxF8XuX1pgZxraAlm+ugJLhjsus/vGBVXBFNN7kH+RoNxC6tf1ZXly69dGTG4P/nXrg==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-table": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-table/-/ckeditor5-table-47.2.0.tgz", + "integrity": "sha512-zxNHpl4L7HsOLCYiKrbyyHoM2dMGetgP4eTjYyWfn9gf+ydVs7o+LJVN5bsWt3J4ToamCj5G7VHZUmqUcPbN6A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-clipboard": "47.2.0", + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@ckeditor/ckeditor5-widget": "47.2.0", + "ckeditor5": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-typing": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-typing/-/ckeditor5-typing-47.2.0.tgz", + "integrity": "sha512-BDJLlaX9SHFUfZegOEW7ZeJ0o/TBgabINNxa3CwtGuGBLHUAQ3IAFJ0Cd6jHq12J2kRDwiXZzvvgMyCH7jeeUQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-ui": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-ui/-/ckeditor5-ui-47.2.0.tgz", + "integrity": "sha512-/yd1/JmIqJybqBRZvk/QGzeY6DZlJvPtyEqq9Ay+U4bUftr2DOrfOikM62okepYRCCtMQ4nQk3c2eFmacfym2A==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "@types/color-convert": "2.0.4", + "color-convert": "3.1.0", + "color-parse": "2.0.2", + "es-toolkit": "1.39.5", + "vanilla-colorful": "0.7.2" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-undo": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-undo/-/ckeditor5-undo-47.2.0.tgz", + "integrity": "sha512-smq5O3GdqJXB+9o54BTn/LyB52OHiW9ekzacOuMNxtuA/KBwHpdsPFMcGFGH04W9O0qUtSdt3fYC0i+SJjYAww==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-upload": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-upload/-/ckeditor5-upload-47.2.0.tgz", + "integrity": "sha512-uE4FwVtmJ6UACDC9N+H6HHGhlpAF8Fk2QCF/iBboh4VqhlFbFjMbXCAbsWrDik6C/p9r4Iv+IEmbpjsRTD+9SQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-utils": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-utils/-/ckeditor5-utils-47.2.0.tgz", + "integrity": "sha512-1b9SWtGuPZApm9065swh+fivxQMvuAsVXHuo26OGV2EnQK//w7kHsxKhVGJMzfHeuev5KvhJ2zdo8SUvePfBoA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-ui": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-watchdog": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-watchdog/-/ckeditor5-watchdog-47.2.0.tgz", + "integrity": "sha512-C1AT7OqLBkPCUm4pjJe4n64qj+5vvMdQb2+lLMSz0SMsBqmYFrVYMlZWW4LjpaYUAYEmvTPcyDoqukBKRWNrRQ==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-editor-multi-root": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/@ckeditor/ckeditor5-widget": { + "version": "47.2.0", + "resolved": "https://registry.npmjs.org/@ckeditor/ckeditor5-widget/-/ckeditor5-widget-47.2.0.tgz", + "integrity": "sha512-1vhfdeVPNc6UtCPAC+aKDNIi0EDxpAJ7TudepJVLXnS752V5rnArjPrYBfH6dkpHYV920CuxxsoS1sSuVVMrkA==", + "license": "SEE LICENSE IN LICENSE.md", + "peer": true, + "dependencies": { + "@ckeditor/ckeditor5-core": "47.2.0", + "@ckeditor/ckeditor5-engine": "47.2.0", + "@ckeditor/ckeditor5-enter": "47.2.0", + "@ckeditor/ckeditor5-icons": "47.2.0", + "@ckeditor/ckeditor5-typing": "47.2.0", + "@ckeditor/ckeditor5-ui": "47.2.0", + "@ckeditor/ckeditor5-utils": "47.2.0", + "es-toolkit": "1.39.5" + } + }, + "node_modules/ckeditor5/node_modules/color-convert": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-3.1.0.tgz", + "integrity": "sha512-TVoqAq8ZDIpK5lsQY874DDnu65CSsc9vzq0wLpNQ6UMBq81GSZocVazPiBbYGzngzBOIRahpkTzCLVe2at4MfA==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + }, + "engines": { + "node": ">=14.6" + } + }, + "node_modules/ckeditor5/node_modules/color-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.2.tgz", + "integrity": "sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/ckeditor5/node_modules/color-parse": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", + "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "^2.0.0" + } + }, "node_modules/cli-truncate": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", @@ -4066,7 +17730,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -4079,9 +17742,17 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, "license": "MIT" }, + "node_modules/color-parse": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-1.4.2.tgz", + "integrity": "sha512-RI7s49/8yqDj3fECFZjUI1Yi0z/Gq1py43oNJivAIIDSyJiOZLfYCRQEgn8HEVAj++PcRe8AnL2XF0fRJ3BTnA==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0" + } + }, "node_modules/color-string": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", @@ -4110,7 +17781,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -4934,7 +18604,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz", "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==", - "dev": true, "license": "MIT", "dependencies": { "character-entities": "^2.0.0" @@ -5062,7 +18731,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -5089,7 +18757,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "dev": true, "license": "MIT", "dependencies": { "dequal": "^2.0.0" @@ -5751,6 +19418,17 @@ "node": ">= 0.4" } }, + "node_modules/es-toolkit": { + "version": "1.39.5", + "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.39.5.tgz", + "integrity": "sha512-z9V0qU4lx1TBXDNFWfAASWk6RNU6c6+TJBKE+FLIg8u0XJ6Yw58Hi0yX8ftEouj6p1QARRlXLFfHbIli93BdQQ==", + "license": "MIT", + "peer": true, + "workspaces": [ + "docs", + "benchmarks" + ] + }, "node_modules/es6-error": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", @@ -5874,7 +19552,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true, "license": "MIT" }, "node_modules/extract-zip": { @@ -6175,6 +19852,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/fuzzysort": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fuzzysort/-/fuzzysort-3.1.0.tgz", + "integrity": "sha512-sR9BNCjBg6LNgwvxlBd0sBABvQitkLzoVY9MYYROQVX/FvfJ4Mai9LsGhDgd8qYdds0bY77VzYd5iuB+v5rwQQ==", + "license": "MIT" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -6484,11 +20167,25 @@ "node": ">= 0.4" } }, + "node_modules/hast-util-embedded": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz", + "integrity": "sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-is-element": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-from-dom": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz", "integrity": "sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==", - "dev": true, "license": "ISC", "dependencies": { "@types/hast": "^3.0.0", @@ -6564,6 +20261,20 @@ "dev": true, "license": "MIT" }, + "node_modules/hast-util-has-property": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz", + "integrity": "sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-heading-rank": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-heading-rank/-/hast-util-heading-rank-3.0.0.tgz", @@ -6578,11 +20289,24 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/hast-util-is-body-ok-link": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz", + "integrity": "sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-is-element": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz", "integrity": "sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" @@ -6592,11 +20316,28 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/hast-util-minify-whitespace": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz", + "integrity": "sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-embedded": "^3.0.0", + "hast-util-is-element": "^3.0.0", + "hast-util-whitespace": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-parse-selector": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" @@ -6606,6 +20347,24 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/hast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-embedded": "^3.0.0", + "hast-util-has-property": "^3.0.0", + "hast-util-is-body-ok-link": "^3.0.0", + "hast-util-is-element": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-raw": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-9.1.0.tgz", @@ -6639,11 +20398,26 @@ "dev": true, "license": "MIT" }, + "node_modules/hast-util-to-dom": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-dom/-/hast-util-to-dom-4.0.1.tgz", + "integrity": "sha512-z1VE7sZ8uFzS2baF3LEflX1IPw2gSzrdo3QFEsyoi23MkCVY3FoE9x6nLgOgjwJu8VNWgo+07iaxtONhDzKrUQ==", + "license": "ISC", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "property-information": "^7.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-to-html": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", @@ -6667,7 +20441,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/hast-util-to-jsx-runtime": { @@ -6705,6 +20478,57 @@ "dev": true, "license": "MIT" }, + "node_modules/hast-util-to-mdast": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/hast-util-to-mdast/-/hast-util-to-mdast-10.1.2.tgz", + "integrity": "sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "hast-util-phrasing": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "hast-util-to-text": "^4.0.0", + "hast-util-whitespace": "^3.0.0", + "mdast-util-phrasing": "^4.0.0", + "mdast-util-to-hast": "^13.0.0", + "mdast-util-to-string": "^4.0.0", + "rehype-minify-whitespace": "^6.0.0", + "trim-trailing-lines": "^2.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-mdast/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/hast-util-to-mdast/node_modules/mdast-util-to-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/hast-util-to-parse5": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz", @@ -6754,7 +20578,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz", "integrity": "sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", @@ -6771,14 +20594,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/hast-util-whitespace": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" @@ -6792,7 +20613,6 @@ "version": "9.0.1", "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-9.0.1.tgz", "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", @@ -6857,7 +20677,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -7244,7 +21063,6 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7664,7 +21482,6 @@ "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true, "license": "MIT" }, "node_modules/lodash.defaults": { @@ -7724,7 +21541,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -7798,13 +21614,24 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz", "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==", - "dev": true, "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/marked": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz", + "integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } + }, "node_modules/matcher": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", @@ -7833,7 +21660,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -7850,7 +21676,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -7860,7 +21685,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, "license": "MIT", "engines": { "node": ">=12" @@ -7898,7 +21722,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==", - "dev": true, "license": "MIT", "dependencies": { "mdast-util-from-markdown": "^2.0.0", @@ -7918,7 +21741,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz", "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -7936,7 +21758,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -7946,7 +21767,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -7967,7 +21787,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -7984,7 +21803,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8001,7 +21819,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -8019,7 +21836,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -8029,14 +21845,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-gfm-footnote/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -8061,7 +21875,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -8075,7 +21888,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8111,7 +21923,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8146,7 +21957,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8168,7 +21978,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8191,7 +22000,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8212,7 +22020,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8235,7 +22042,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8258,7 +22064,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8279,7 +22084,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8299,7 +22103,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8321,7 +22124,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8342,7 +22144,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8362,7 +22163,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8385,7 +22185,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8402,7 +22201,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8419,7 +22217,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8439,7 +22236,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8459,7 +22255,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8481,7 +22276,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8504,7 +22298,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8521,7 +22314,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8538,7 +22330,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -8552,7 +22343,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -8568,7 +22358,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -8578,14 +22367,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-gfm-strikethrough/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -8610,7 +22397,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -8624,7 +22410,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8660,7 +22445,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8695,7 +22479,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8717,7 +22500,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8740,7 +22522,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8761,7 +22542,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8784,7 +22564,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8807,7 +22586,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8828,7 +22606,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8848,7 +22625,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8870,7 +22646,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8891,7 +22666,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8911,7 +22685,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8934,7 +22707,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8951,7 +22723,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8968,7 +22739,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -8988,7 +22758,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9008,7 +22777,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9030,7 +22798,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9053,7 +22820,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9070,7 +22836,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9087,7 +22852,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -9101,7 +22865,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -9119,7 +22882,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -9129,14 +22891,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-gfm-table/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -9161,7 +22921,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -9175,7 +22934,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9211,7 +22969,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9246,7 +23003,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9268,7 +23024,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9291,7 +23046,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9312,7 +23066,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9335,7 +23088,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9358,7 +23110,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9379,7 +23130,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9399,7 +23149,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9421,7 +23170,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9442,7 +23190,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9462,7 +23209,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9485,7 +23231,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9502,7 +23247,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9519,7 +23263,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9539,7 +23282,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9559,7 +23301,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9581,7 +23322,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9604,7 +23344,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9621,7 +23360,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9638,7 +23376,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -9652,7 +23389,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -9669,7 +23405,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -9679,14 +23414,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-gfm-task-list-item/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -9711,7 +23444,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -9725,7 +23457,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9761,7 +23492,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9796,7 +23526,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9818,7 +23547,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9841,7 +23569,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9862,7 +23589,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9885,7 +23611,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9908,7 +23633,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9929,7 +23653,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9949,7 +23672,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9971,7 +23693,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -9992,7 +23713,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10012,7 +23732,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10035,7 +23754,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10052,7 +23770,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10069,7 +23786,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10089,7 +23805,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10109,7 +23824,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10131,7 +23845,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10154,7 +23867,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10171,7 +23883,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10188,7 +23899,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -10202,7 +23912,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -10212,14 +23921,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-gfm/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -10244,7 +23951,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -10258,7 +23964,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10294,7 +23999,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10329,7 +24033,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10351,7 +24054,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10374,7 +24076,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10395,7 +24096,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10418,7 +24118,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10441,7 +24140,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10462,7 +24160,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10482,7 +24179,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10504,7 +24200,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10525,7 +24220,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10545,7 +24239,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10568,7 +24261,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10585,7 +24277,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10602,7 +24293,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10622,7 +24312,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10642,7 +24331,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10664,7 +24352,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10687,7 +24374,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10704,7 +24390,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -10721,7 +24406,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -12946,11 +26630,35 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/mdast-util-newline-to-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-newline-to-break/-/mdast-util-newline-to-break-2.0.0.tgz", + "integrity": "sha512-MbgeFca0hLYIEx/2zGsszCSEJJ1JSCdiY5xQxRcLDDGa8EPvlLPupJ4DSajbMPAnC0je8jfb9TiUATnxxrHUog==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-find-and-replace": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-newline-to-break/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/mdast-util-phrasing": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -12965,7 +26673,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -12975,7 +26682,6 @@ "version": "13.2.0", "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", @@ -12997,7 +26703,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -13007,7 +26712,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13028,7 +26732,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13045,7 +26748,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13067,7 +26769,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13084,7 +26785,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13101,7 +26801,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -13123,7 +26822,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -13133,14 +26831,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/mdast-util-to-markdown/node_modules/mdast-util-to-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -13154,7 +26850,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13175,7 +26870,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13197,7 +26891,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13217,7 +26910,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13240,7 +26932,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13257,7 +26948,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13419,7 +27109,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==", - "dev": true, "license": "MIT", "dependencies": { "micromark-extension-gfm-autolink-literal": "^2.0.0", @@ -13440,7 +27129,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==", - "dev": true, "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", @@ -13457,7 +27145,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13478,7 +27165,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13495,7 +27181,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13517,7 +27202,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13534,7 +27218,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13551,7 +27234,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==", - "dev": true, "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -13572,7 +27254,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13607,7 +27288,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13629,7 +27309,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13652,7 +27331,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13673,7 +27351,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13696,7 +27373,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13719,7 +27395,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13740,7 +27415,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13760,7 +27434,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13782,7 +27455,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13799,7 +27471,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13816,7 +27487,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13836,7 +27506,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13856,7 +27525,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13878,7 +27546,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13901,7 +27568,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13918,7 +27584,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13935,7 +27600,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==", - "dev": true, "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -13954,7 +27618,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13975,7 +27638,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -13995,7 +27657,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14017,7 +27678,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14037,7 +27697,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14054,7 +27713,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14071,7 +27729,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", - "dev": true, "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -14089,7 +27746,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14110,7 +27766,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14131,7 +27786,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14148,7 +27802,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14165,7 +27818,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz", "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==", - "dev": true, "license": "MIT", "dependencies": { "micromark-util-types": "^2.0.0" @@ -14179,7 +27831,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14196,7 +27847,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==", - "dev": true, "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -14214,7 +27864,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14235,7 +27884,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14256,7 +27904,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14273,7 +27920,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14290,7 +27936,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14310,7 +27955,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14331,7 +27975,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -14348,7 +27991,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15670,7 +29312,6 @@ "version": "7.1.0", "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -15951,6 +29592,30 @@ "dev": true, "license": "MIT" }, + "node_modules/rehype-dom-parse": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/rehype-dom-parse/-/rehype-dom-parse-5.0.2.tgz", + "integrity": "sha512-8CqP11KaqvtWsMqVEC2yM3cZWZsDNqqpr8nPvogjraLuh45stabgcpXadCAxu1n6JaUNJ/Xr3GIqXP7okbNqLg==", + "license": "ISC", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-dom": "^5.0.0", + "unified": "^11.0.0" + } + }, + "node_modules/rehype-dom-stringify": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/rehype-dom-stringify/-/rehype-dom-stringify-4.0.2.tgz", + "integrity": "sha512-2HVFYbtmm5W3C2j8QsV9lcHdIMc2Yn/ytlPKcSC85/tRx2haZbU8V67Wxyh8STT38ZClvKlZ993Me/Hw8g88Aw==", + "license": "ISC", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-dom": "^4.0.0", + "unified": "^11.0.0" + } + }, "node_modules/rehype-katex": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/rehype-katex/-/rehype-katex-7.0.1.tgz", @@ -15971,6 +29636,21 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/rehype-minify-whitespace": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/rehype-minify-whitespace/-/rehype-minify-whitespace-6.0.2.tgz", + "integrity": "sha512-Zk0pyQ06A3Lyxhe9vGtOtzz3Z0+qZ5+7icZ/PL/2x1SHPbKao5oB/g/rlc6BCTajqBb33JcOe71Ye1oFsuYbnw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-minify-whitespace": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/rehype-raw": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-7.0.0.tgz", @@ -15987,6 +29667,34 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/rehype-remark": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/rehype-remark/-/rehype-remark-10.0.1.tgz", + "integrity": "sha512-EmDndlb5NVwXGfUa4c9GPK+lXeItTilLhE6ADSaQuHr4JUlKw9MidzGzx4HpqZrNCt6vnHmEifXQiiA+CEnjYQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "hast-util-to-mdast": "^10.0.0", + "unified": "^11.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-remark/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/rehype-slug": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/rehype-slug/-/rehype-slug-6.0.0.tgz", @@ -16005,11 +29713,36 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/remark-breaks": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-breaks/-/remark-breaks-4.0.0.tgz", + "integrity": "sha512-IjEjJOkH4FuJvHZVIW0QCDWxcG96kCq7An/KVH2NfJe6rKZU2AsHeB3OEjPNRxi4QC34Xdx7I2KGYn6IpT7gxQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/mdast": "^4.0.0", + "mdast-util-newline-to-break": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-breaks/node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/remark-gfm": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz", "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -16028,7 +29761,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -16065,7 +29797,6 @@ "version": "11.0.0", "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -16082,7 +29813,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -16092,14 +29822,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/remark-parse/node_modules/mdast-util-from-markdown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz", "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -16124,7 +29852,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0" @@ -16138,7 +29865,6 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16174,7 +29900,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16209,7 +29934,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16231,7 +29955,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16254,7 +29977,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16275,7 +29997,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz", "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16298,7 +30019,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16321,7 +30041,6 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16342,7 +30061,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16362,7 +30080,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz", "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16384,7 +30101,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16405,7 +30121,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16425,7 +30140,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16448,7 +30162,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16465,7 +30178,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16482,7 +30194,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16502,7 +30213,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16522,7 +30232,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16544,7 +30253,6 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16567,7 +30275,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16584,7 +30291,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -16601,7 +30307,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -16615,7 +30320,6 @@ "version": "11.1.2", "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz", "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==", - "dev": true, "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", @@ -16633,7 +30337,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -16643,7 +30346,6 @@ "version": "11.0.0", "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", - "dev": true, "license": "MIT", "dependencies": { "@types/mdast": "^4.0.0", @@ -16659,7 +30361,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "*" @@ -17299,7 +31000,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -17402,7 +31102,6 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", - "dev": true, "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", @@ -17991,18 +31690,27 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "dev": true, "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/trim-trailing-lines": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-2.1.0.tgz", + "integrity": "sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==", + "license": "MIT", + "peer": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, "node_modules/trough": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -18056,6 +31764,21 @@ "node": "*" } }, + "node_modules/turndown": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/turndown/-/turndown-7.2.0.tgz", + "integrity": "sha512-eCZGBN4nNNqM9Owkv9HAtWRYfLA4h909E/WGAWWBpmB275ehNhZyk87/Tpvjbp0jjNl9XwCsbe6bm6CqFsgD+A==", + "license": "MIT", + "dependencies": { + "@mixmark-io/domino": "^2.2.0" + } + }, + "node_modules/turndown-plugin-gfm": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz", + "integrity": "sha512-vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==", + "license": "MIT" + }, "node_modules/type-fest": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", @@ -18095,7 +31818,6 @@ "version": "11.0.5", "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18115,7 +31837,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/union": { @@ -18134,7 +31855,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz", "integrity": "sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18149,14 +31869,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/unist-util-is": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -18170,14 +31888,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/unist-util-position": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -18191,7 +31907,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/unist-util-remove-position": { @@ -18234,7 +31949,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18250,7 +31964,6 @@ "version": "6.0.2", "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18265,14 +31978,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/unist-util-visit/node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/universalify": { @@ -18378,6 +32089,12 @@ "node": ">=8" } }, + "node_modules/vanilla-colorful": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/vanilla-colorful/-/vanilla-colorful-0.7.2.tgz", + "integrity": "sha512-z2YZusTFC6KnLERx1cgoIRX2CjPRP0W75N+3CC6gbvdX5Ch47rZkEMGO2Xnf+IEmi3RiFLxS18gayMA27iU7Kg==", + "license": "MIT" + }, "node_modules/verror": { "version": "1.10.1", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", @@ -18398,7 +32115,6 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18435,7 +32151,6 @@ "version": "4.0.3", "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz", "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", @@ -18450,14 +32165,12 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/vfile-message/node_modules/unist-util-stringify-position": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "dev": true, "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" @@ -18471,7 +32184,6 @@ "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "dev": true, "license": "MIT" }, "node_modules/vite": { @@ -19156,7 +32868,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", - "dev": true, "license": "MIT", "funding": { "type": "github", @@ -19455,7 +33166,6 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "dev": true, "license": "MIT", "funding": { "type": "github", diff --git a/package.json b/package.json index 616a38f..c2a6d56 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,8 @@ "url": "https://github.com/beNative/docforge.git" }, "dependencies": { + "@ckeditor/ckeditor5-build-classic": "^44.3.0", + "@ckeditor/ckeditor5-react": "^11.0.0", "@uiw/react-color-compact": "^2.9.2", "better-sqlite3": "^11.1.2", "electron-log": "^5.1.5", diff --git a/services/__tests__/classificationService.test.ts b/services/__tests__/classificationService.test.ts index 4de1639..1e8380e 100644 --- a/services/__tests__/classificationService.test.ts +++ b/services/__tests__/classificationService.test.ts @@ -45,4 +45,16 @@ describe('classificationService', () => { expect(result.docType).toBe('source_code'); expect(result.summary.primaryMatch).toContain('Dockerfile instruction heuristics matched'); }); + + it('classifies HTML content as rich text', () => { + const result = classifyDocumentContent({ + content: '\nTest

Hello

', + title: 'index.html', + }); + + expect(result.languageHint).toBe('html'); + expect(result.docType).toBe('rich_text'); + expect(result.defaultViewMode).toBe('edit'); + expect(result.summary.primaryMatch).toContain('Extension indicates HTML'); + }); }); diff --git a/services/classificationService.ts b/services/classificationService.ts index 9b5c081..5959e2b 100644 --- a/services/classificationService.ts +++ b/services/classificationService.ts @@ -208,6 +208,9 @@ export const classifyDocumentContent = (options: ClassificationOptions): Classif if (langFromExtension === 'markdown') { return classifyWith('markdown', 'prompt', null, 0.65, 'Extension indicates Markdown'); } + if (langFromExtension === 'html') { + return classifyWith('html', 'rich_text', 'edit', 0.75, 'Extension indicates HTML'); + } if (langFromExtension === 'plantuml') { return classifyWith('plantuml', 'source_code', 'split-vertical', 0.8, 'Extension indicates PlantUML'); } @@ -233,7 +236,7 @@ export const classifyDocumentContent = (options: ClassificationOptions): Classif } if (looksLikeHtml(trimmed)) { - return classifyWith('html', 'source_code', null, 0.75, 'HTML tag heuristics matched'); + return classifyWith('html', 'rich_text', 'edit', 0.7, 'HTML tag heuristics matched'); } if (looksLikeYaml(trimmed)) { diff --git a/services/documentExportService.ts b/services/documentExportService.ts index 117af02..d14ff65 100644 --- a/services/documentExportService.ts +++ b/services/documentExportService.ts @@ -21,6 +21,7 @@ const DEFAULT_DOC_TYPE_EXTENSION: Record = { source_code: 'txt', pdf: 'pdf', image: 'png', + rich_text: 'html', }; const DOC_TYPE_FILTER_LABELS: Partial> = { @@ -28,6 +29,7 @@ const DOC_TYPE_FILTER_LABELS: Partial> = { source_code: 'Code Files', pdf: 'PDF Documents', image: 'Image Files', + rich_text: 'Rich Documents', }; const LANGUAGE_EXTENSION_MAP: Record = { @@ -223,6 +225,7 @@ const inferMimeFromExtension = (extension: string | null, docType?: DocType): st if (docType) { if (docType === 'pdf') return 'application/pdf'; if (docType === 'image') return 'image/png'; + if (docType === 'rich_text') return 'text/html'; } return TEXT_MIME_DEFAULT; }; diff --git a/services/repository.ts b/services/repository.ts index ba6dc91..75ab936 100644 --- a/services/repository.ts +++ b/services/repository.ts @@ -1317,7 +1317,7 @@ export const repository = { const { collection, parentId, insertIndex } = resolveTarget(); - const allowedDocTypes: DocType[] = ['prompt', 'source_code', 'pdf', 'image']; + const allowedDocTypes: DocType[] = ['prompt', 'source_code', 'pdf', 'image', 'rich_text']; const allowedViewModes: ViewMode[] = ['edit', 'preview', 'split-vertical', 'split-horizontal']; const createdIds: string[] = []; diff --git a/styles/ckeditor-theme-lark.css b/styles/ckeditor-theme-lark.css new file mode 100644 index 0000000..deadda7 --- /dev/null +++ b/styles/ckeditor-theme-lark.css @@ -0,0 +1,4 @@ +/* + * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options + */ diff --git a/styles/tailwind.css b/styles/tailwind.css index 9e02006..e10a1e1 100644 --- a/styles/tailwind.css +++ b/styles/tailwind.css @@ -20,3 +20,14 @@ background: transparent !important; border: none !important; } + +.ck-editor, +.ck-editor__main { + height: 100%; +} + +.ck-editor__editable_inline { + min-height: 100%; + padding: 1rem; + overflow-y: auto; +} diff --git a/types.ts b/types.ts index ec37240..0520ff6 100644 --- a/types.ts +++ b/types.ts @@ -144,7 +144,7 @@ export interface UpdateErrorPayload { } export type NodeType = 'folder' | 'document'; -export type DocType = 'prompt' | 'source_code' | 'pdf' | 'image'; +export type DocType = 'prompt' | 'source_code' | 'pdf' | 'image' | 'rich_text'; export type ClassificationSource = 'auto' | 'user' | 'imported' | 'unknown'; export type SaveFilePayload = diff --git a/utils/ckeditorLicense.ts b/utils/ckeditorLicense.ts new file mode 100644 index 0000000..f53ad79 --- /dev/null +++ b/utils/ckeditorLicense.ts @@ -0,0 +1,24 @@ +declare global { + interface Window { + CKEDITOR_LICENSE_KEY?: string; + CKEDITOR_GLOBAL_LICENSE_KEY?: string; + } +} + +export const resolveCkeditorLicenseKey = (): string => { + if (typeof window === 'undefined') { + return 'GPL'; + } + + if (typeof window.CKEDITOR_GLOBAL_LICENSE_KEY !== 'string' || window.CKEDITOR_GLOBAL_LICENSE_KEY.trim() === '') { + window.CKEDITOR_GLOBAL_LICENSE_KEY = 'GPL'; + } + + if (typeof window.CKEDITOR_LICENSE_KEY !== 'string' || window.CKEDITOR_LICENSE_KEY.trim() === '') { + window.CKEDITOR_LICENSE_KEY = window.CKEDITOR_GLOBAL_LICENSE_KEY; + } + + return window.CKEDITOR_LICENSE_KEY; +}; + +export const CKEDITOR_LICENSE_KEY = resolveCkeditorLicenseKey(); From 8a5dc410406e1b7a2daa4f77033a70d41e5449c7 Mon Sep 17 00:00:00 2001 From: Tim Sinaeve Date: Wed, 12 Nov 2025 11:57:22 +0100 Subject: [PATCH 2/2] Hide CKEditor watermark --- styles/ckeditor-theme-lark.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/styles/ckeditor-theme-lark.css b/styles/ckeditor-theme-lark.css index deadda7..cce8f74 100644 --- a/styles/ckeditor-theme-lark.css +++ b/styles/ckeditor-theme-lark.css @@ -2,3 +2,9 @@ * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ + +/* Hide the powered by CKEditor watermark */ +.ck.ck-reset_all .ck-powered-by, +.ck.ck-editor .ck-powered-by { + display: none !important; +}