) => React.createElement('div', props),
Content: ({
children,
@@ -95,7 +96,8 @@ vi.mock('@/components/ui/confirm-dialog-provider', () => ({
vi.mock('@/components/ui/tooltip', async () => {
const React = await import('react');
return {
- Tip: ({ children }: { children: ReactNode }) => React.createElement(React.Fragment, null, children),
+ Tip: ({ children }: { children: ReactNode }) =>
+ React.createElement(React.Fragment, null, children),
};
});
@@ -194,6 +196,12 @@ beforeEach(() => {
},
});
(window as unknown as { electronAPI: unknown }).electronAPI = {
+ wecomGroupNotification: {
+ getState: vi.fn(async () => ({ configured: false })),
+ saveAndTest: vi.fn(),
+ test: vi.fn(),
+ clear: vi.fn(),
+ },
maker: {
schedule: {
listTemplates: vi.fn(async () => [template]),
@@ -230,7 +238,9 @@ describe('Scheduler template entry', () => {
expect(screen.getByTestId('agent-kind').textContent).toBe('claude-code');
expect(screen.getByTestId('model-value').textContent).toBe('claude-sonnet-4-6');
- fireEvent.click(screen.getByRole('button', { name: 'scheduler.editor.promptDialog.createAria' }));
+ fireEvent.click(
+ screen.getByRole('button', { name: 'scheduler.editor.promptDialog.createAria' }),
+ );
await waitFor(() => expect(createSchedule).toHaveBeenCalledTimes(1));
expect(createSchedule).toHaveBeenCalledWith(
@@ -242,7 +252,7 @@ describe('Scheduler template entry', () => {
recurring: true,
agentKind: 'claude-code',
model: 'claude-sonnet-4-6',
- notify: { desktop: true, feishu: false },
+ notify: { desktop: true, feishu: false, wecomGroup: false },
}),
);
});
diff --git a/apps/desktop/src/renderer/components/settings/ImBotSection.tsx b/apps/desktop/src/renderer/components/settings/ImBotSection.tsx
index 25f67b447b7..54e2f8a1875 100644
--- a/apps/desktop/src/renderer/components/settings/ImBotSection.tsx
+++ b/apps/desktop/src/renderer/components/settings/ImBotSection.tsx
@@ -31,6 +31,7 @@ import { FeishuBotSection } from './FeishuBotSection';
import { HookConnectionsSection } from './HookConnectionsSection';
import { TelegramBotSection } from './TelegramBotSection';
import { WechatBotSection } from './WechatBotSection';
+import { WecomBotSection } from './WecomBotSection';
import {
showCindyGroup,
showDiscordBot,
@@ -73,16 +74,19 @@ function PersonalGroupContent({
showTelegram: boolean;
}) {
const [expandedChannel, setExpandedChannel] = useState<
- 'wechat' | 'feishu' | 'discord' | 'telegram' | 'dingtalk' | null
+ 'wechat' | 'wecom' | 'feishu' | 'discord' | 'telegram' | 'dingtalk' | null
>(null);
- const toggle = (channel: 'wechat' | 'feishu' | 'discord' | 'telegram' | 'dingtalk') => {
+ const toggle = (
+ channel: 'wechat' | 'wecom' | 'feishu' | 'discord' | 'telegram' | 'dingtalk',
+ ) => {
setExpandedChannel((current) => (current === channel ? null : channel));
};
return (
toggle('wechat')} />
+ toggle('wecom')} />
toggle('feishu')}
diff --git a/apps/desktop/src/renderer/components/settings/ImDefaultSettingsSection.tsx b/apps/desktop/src/renderer/components/settings/ImDefaultSettingsSection.tsx
index 60a6cc1d4bc..617d88928d6 100644
--- a/apps/desktop/src/renderer/components/settings/ImDefaultSettingsSection.tsx
+++ b/apps/desktop/src/renderer/components/settings/ImDefaultSettingsSection.tsx
@@ -5,7 +5,11 @@
* 静默改写;非 thread 渠道通过 `/new` 显式应用。
*/
-import { connectedProvidersForAgent, getModel, isAgentSelectableModel } from '@cindy/model-providers';
+import {
+ connectedProvidersForAgent,
+ getModel,
+ isAgentSelectableModel,
+} from '@cindy/model-providers';
import { MessageSquare } from 'lucide-react';
import { useCallback, useEffect, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
@@ -13,7 +17,6 @@ import { useTranslation } from 'react-i18next';
import { ClaudeMark } from '@/components/icons/ClaudeMark';
import { CodexMark } from '@/components/icons/CodexMark';
import { ModelSelector } from '@/components/new-chat/ModelSelector';
-import { PermissionSelector } from '@/components/new-chat/PermissionSelector';
import { type ModelDescriptor, useAgentCapabilities } from '@/hooks/useAgentCapabilities';
import { useProviders } from '@/hooks/useProviders';
import { deriveModelsFromProviders } from '@/lib/providerModels';
@@ -29,8 +32,6 @@ import {
type ImDefaultSettingsPatch,
type ImDefaultSettingsState,
isImDefaultEffort,
- isImDefaultPermissionMode,
- isWechatUnsupportedPermissionMode,
} from '../../../shared/imDefaultSettings';
import { DefaultOverrideControls } from './DefaultOverrideControls';
import { buildAgentSettingsPatch, mergeSettingsPatch } from './imDefaultSettingsLogic';
@@ -99,7 +100,9 @@ export function ImDefaultSettingsSection({
// 准入口径:IM 默认模型是「从零挑一个」的清单,停用的供应商/模型与能力模型
// 不该可选 —— 否则 headless runner 派发时才降级换模型,用户无感(PR #744 review)。
const fromProviders = {
- 'claude-code': deriveModelsFromProviders(providers, 'claude-code', { admissionFiltered: true }),
+ 'claude-code': deriveModelsFromProviders(providers, 'claude-code', {
+ admissionFiltered: true,
+ }),
codex: deriveModelsFromProviders(providers, 'codex', { admissionFiltered: true }),
};
return {
@@ -225,17 +228,6 @@ export function ImDefaultSettingsSection({
);
};
- const changePermissionMode = (permissionMode: string) => {
- if (
- !isImDefaultPermissionMode(permissionMode) ||
- isWechatUnsupportedPermissionMode(permissionMode) ||
- permissionMode === settings.permissionMode
- ) {
- return;
- }
- void persist({ permissionMode });
- };
-
return (
-
- {channel === 'wechat' && (
-
-
- {t('settings.wechatBot.permission.label')}
-
-
-
- {t('settings.wechatBot.permission.hint')}
-
-
- )}
);
}
diff --git a/apps/desktop/src/renderer/components/settings/NotificationSection.tsx b/apps/desktop/src/renderer/components/settings/NotificationSection.tsx
index 5fa0accc029..245a4003785 100644
--- a/apps/desktop/src/renderer/components/settings/NotificationSection.tsx
+++ b/apps/desktop/src/renderer/components/settings/NotificationSection.tsx
@@ -1,9 +1,10 @@
/**
* NotificationSection — Settings 页"系统通知"区块。
*
- * 两个独立开关:
+ * 两个个人通知开关:
* 1. 桌面通知 — CC Agent session 完成 / 待回复时弹系统 toast(默认开)。
* 2. 飞书通知 — 同源触发,失焦时给 bot owner 私聊一条文本(默认关)。
+ * 企业微信群是共享通道,总开关控制通道可用性;每个自动操作仍需显式选择。
*
* 飞书开关的可用前提是 bot 已绑定 ownerOpenId(用户至少私聊过 bot 一次);
* 未绑定时开关禁用,并在 hint 里提示去"飞书机器人" tab 完成配置/绑定。
@@ -11,14 +12,17 @@
* 沿用 AppearanceSection 的卡片样式(rounded 12 / Card bg / 1px Board / padding 20)。
*/
-import { useEffect } from 'react';
+import { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
+import { Loader2, Send, Trash2 } from 'lucide-react';
+import { toast } from '@/lib/toast';
import { Switch } from '@/components/ui/switch';
import { cn } from '@/lib/utils';
import { useNotificationSettings } from '@/hooks/useNotificationSettings';
import { useFeishuNotificationSettings } from '@/hooks/useFeishuNotificationSettings';
import { useFeishuBot } from '@/hooks/useFeishuBot';
+import { useWecomGroupNotificationSettings } from '@/hooks/useWecomGroupNotificationSettings';
export function NotificationSection() {
const { enabled, setEnabled } = useNotificationSettings();
@@ -26,6 +30,8 @@ export function NotificationSection() {
// ownerOpenId 才是 sendMarkdownText 的硬前置(status='connected' 也可能 owner 未绑),
// 用它作为飞书开关的可用门槛,与主进程实际兜底逻辑对齐。
const { ownerOpenId } = useFeishuBot();
+ const wecomGroup = useWecomGroupNotificationSettings();
+ const [webhookUrl, setWebhookUrl] = useState('');
const feishuReady = Boolean(ownerOpenId);
const { t } = useTranslation();
@@ -101,6 +107,131 @@ export function NotificationSection() {
aria-label={t('settings.notifications.feishuAria')}
/>
+
+
+
+
+
+ {t('settings.notifications.wecomGroupLabel')}
+
+
+ {wecomGroup.configured
+ ? t('settings.notifications.wecomGroupConfiguredHint', {
+ maskedKey: wecomGroup.maskedKey,
+ })
+ : t('settings.notifications.wecomGroupHint')}
+
+
+
{
+ void wecomGroup
+ .setEnabled(next)
+ .catch(() => toast.error(t('settings.notifications.wecomGroupToggleFailed')));
+ }}
+ disabled={!wecomGroup.configured || wecomGroup.busy}
+ aria-label={t('settings.notifications.wecomGroupAria')}
+ />
+
+
+ {wecomGroup.configured ? (
+
+
+
+
+ ) : (
+
+ setWebhookUrl(event.target.value)}
+ placeholder={t('settings.notifications.wecomGroupPlaceholder')}
+ autoComplete="new-password"
+ spellCheck={false}
+ className={cn(
+ 'h-[42px] w-full rounded-full px-[14px]',
+ 'border border-[var(--settings-input-border)]',
+ 'bg-[var(--settings-input-bg)] text-13 text-[var(--settings-input-text)]',
+ 'placeholder:text-[var(--settings-input-placeholder)] outline-none',
+ 'focus:border-[var(--settings-input-border-focus)]',
+ )}
+ />
+
+
+ )}
+
);
}
diff --git a/apps/desktop/src/renderer/components/settings/WecomBotSection.tsx b/apps/desktop/src/renderer/components/settings/WecomBotSection.tsx
new file mode 100644
index 00000000000..31aa001a41b
--- /dev/null
+++ b/apps/desktop/src/renderer/components/settings/WecomBotSection.tsx
@@ -0,0 +1,277 @@
+import { useCallback, useState } from 'react';
+import { useTranslation } from 'react-i18next';
+import { Check, Eye, EyeOff, Loader2, Trash2 } from 'lucide-react';
+
+import { useConfirmDialog } from '@/components/ui/confirm-dialog-provider';
+import { useWecomBot } from '@/hooks/useWecomBot';
+import { cn } from '@/lib/utils';
+import { ImChannelSettingsCard, useImChannelSettingsSummary } from './ImChannelSettingsCard';
+import { ImDefaultSettingsSection } from './ImDefaultSettingsSection';
+
+const STATUS_KEY: Record = {
+ idle: 'settings.wecomBot.status.needsConfig',
+ connecting: 'settings.wecomBot.status.connecting',
+ connected: 'settings.wecomBot.status.connected',
+ conflict: 'settings.wecomBot.status.conflict',
+ error: 'settings.wecomBot.status.error',
+};
+
+function statusColor(status: WecomBotTransportStatus): string {
+ switch (status.kind) {
+ case 'idle':
+ return 'var(--settings-badge-needs-config)';
+ case 'connecting':
+ case 'conflict':
+ return 'var(--settings-badge-saved)';
+ case 'connected':
+ return 'var(--settings-badge-connected)';
+ case 'error':
+ return 'var(--settings-badge-error)';
+ }
+}
+
+const fieldClassName = cn(
+ 'h-[42px] w-full rounded-full px-[14px]',
+ 'border border-[var(--settings-input-border)] bg-[var(--settings-input-bg)]',
+ 'text-13 text-[var(--settings-input-text)] placeholder:text-[var(--settings-input-placeholder)]',
+ 'outline-none transition-colors focus:border-[var(--settings-input-border-focus)]',
+);
+
+export function WecomBotSection({
+ expanded,
+ onToggle,
+}: {
+ expanded: boolean;
+ onToggle: () => void;
+}) {
+ const {
+ botId,
+ setBotId,
+ secret,
+ setSecret,
+ ownerUserId,
+ status,
+ validationError,
+ isSaving,
+ isDisconnecting,
+ canConnect,
+ canReconnect,
+ connect,
+ reconnect,
+ disconnect,
+ } = useWecomBot();
+ const [showSecret, setShowSecret] = useState(false);
+ const [routeSummary, setRouteSummary] = useImChannelSettingsSummary('wecom');
+ const { confirm } = useConfirmDialog();
+ const { t } = useTranslation();
+
+ const handleDisconnect = useCallback(async () => {
+ const approved = await confirm({
+ title: t('settings.wecomBot.disconnectConfirm.title'),
+ description: t('settings.wecomBot.disconnectConfirm.description'),
+ confirmText: t('settings.wecomBot.disconnectConfirm.confirm'),
+ cancelText: t('settings.wecomBot.disconnectConfirm.cancel'),
+ });
+ if (approved) await disconnect();
+ }, [confirm, disconnect, t]);
+
+ return (
+
+
+ {t(STATUS_KEY[status.kind])}
+
+ }
+ >
+
+
+
+ {status.kind === 'connected' ? (
+
+
+
+
+
+
+
+ {t('settings.wecomBot.connected.heading')}
+
+
+ {ownerUserId
+ ? t('settings.wecomBot.connected.ownerBound', { ownerUserId })
+ : t('settings.wecomBot.connected.awaitingOwner')}
+
+
+
+
+
+ ) : (
+
+
+ {t('settings.wecomBot.setupHint')}
+
+
+
setBotId(event.target.value)}
+ placeholder={t('settings.wecomBot.botIdPlaceholder')}
+ spellCheck={false}
+ autoComplete="off"
+ className={fieldClassName}
+ />
+
+
+ setSecret(event.target.value)}
+ placeholder={t('settings.wecomBot.secretPlaceholder')}
+ spellCheck={false}
+ autoComplete="new-password"
+ className={cn(fieldClassName, 'pr-10')}
+ />
+
+
+ {validationError || status.kind === 'error' ? (
+
+ {validationError ?? (status.kind === 'error' ? status.reason : '')}
+
+ ) : (
+
+ {t('settings.wecomBot.ownerHint')}
+
+ )}
+
+ {botId.trim() && !secret.trim() ? (
+
+ ) : (
+
+ )}
+ {botId.trim() ? (
+
+ ) : null}
+
+
+ )}
+
+ );
+}
diff --git a/apps/desktop/src/renderer/features/cc-agent/CCAgentSidebarUpper.tsx b/apps/desktop/src/renderer/features/cc-agent/CCAgentSidebarUpper.tsx
index e18284a20fd..98bc6a0e533 100644
--- a/apps/desktop/src/renderer/features/cc-agent/CCAgentSidebarUpper.tsx
+++ b/apps/desktop/src/renderer/features/cc-agent/CCAgentSidebarUpper.tsx
@@ -819,7 +819,11 @@ function ExpandedView({
sessionId,
title,
kind,
- channels: { desktop: desktopEnabled, feishu: feishuEnabled, mobile: true },
+ channels: {
+ desktop: desktopEnabled,
+ feishu: feishuEnabled,
+ mobile: true,
+ },
});
}, []);
const handleSessionDone = useCallback(
diff --git a/apps/desktop/src/renderer/features/scheduler/components/ScheduleFormDialog.tsx b/apps/desktop/src/renderer/features/scheduler/components/ScheduleFormDialog.tsx
index 48f2ffd0b5c..df7f1ad4bb2 100644
--- a/apps/desktop/src/renderer/features/scheduler/components/ScheduleFormDialog.tsx
+++ b/apps/desktop/src/renderer/features/scheduler/components/ScheduleFormDialog.tsx
@@ -15,6 +15,7 @@ import { sessionModelSupportsFastMode } from '@cindy/model-providers';
import type { UtilityTextAttemptReason, UtilityTextFailure } from '../../../../shared/utilityTextResult';
import { useFeishuBot } from '@/hooks/useFeishuBot';
import { useProjectPickerOptions } from '@/hooks/useProjectPickerOptions';
+import { useWecomGroupNotificationSettings } from '@/hooks/useWecomGroupNotificationSettings';
import type { Schedule, CreateScheduleInput, ScheduleTemplate, UpdateScheduleInput } from '@cindy/maker-scheduler';
import { applyTemplateParams } from '@cindy/maker-scheduler/template-engine';
import { ScriptCapabilityMultiSelect } from './ScriptCapabilityMultiSelect';
@@ -350,6 +351,7 @@ export function ScheduleFormDialog({
if (template.notify) {
setField('notifyDesktop', template.notify.desktop);
setField('notifyFeishu', template.notify.feishu);
+ setField('notifyWecomGroup', template.notify.wecomGroup === true);
}
const initParams: Record = {};
for (const parameter of template.parameters ?? []) {
@@ -379,6 +381,8 @@ export function ScheduleFormDialog({
}, [selectedTemplate, paramValues, promptDirty, setField]);
const feishuBotReady = useFeishuBot().status === 'connected';
+ const wecomGroupSettings = useWecomGroupNotificationSettings();
+ const wecomGroupReady = wecomGroupSettings.configured && wecomGroupSettings.enabled;
const navigate = useNavigate();
const openReferencedSession = useCallback(
async (sessionId: string) => {
@@ -401,6 +405,10 @@ export function ScheduleFormDialog({
// 飞书机器人在「IM 机器人」页的「个人」分栏,缺省 imGroup 会落到默认的 Cindy 栏
navigate('/settings?tab=im-bot&imGroup=personal');
};
+ const goConfigWecomGroup = () => {
+ onOpenChange(false);
+ navigate('/settings?tab=general§ion=notifications');
+ };
const projectOptions = useProjectPickerOptions();
@@ -938,6 +946,45 @@ export function ScheduleFormDialog({
{t('scheduler.editor.fields.configFeishu')}
)}
+ {wecomGroupReady ? (
+
+ ) : (
+
+ )}
{/* bound 态:单行会话选择器(换选即换绑,选择器旁带"打开会话")。
不再叠加绑定卡片 —— 标题在 select 里已可见,单独的"解除绑定"
diff --git a/apps/desktop/src/renderer/features/scheduler/hooks/useScheduleForm.ts b/apps/desktop/src/renderer/features/scheduler/hooks/useScheduleForm.ts
index ef0f6e55f68..1caa233f832 100644
--- a/apps/desktop/src/renderer/features/scheduler/hooks/useScheduleForm.ts
+++ b/apps/desktop/src/renderer/features/scheduler/hooks/useScheduleForm.ts
@@ -58,6 +58,7 @@ const DEFAULT_FORM: ScheduleFormState = {
preRunHookTimeoutSec: '',
notifyDesktop: true,
notifyFeishu: false,
+ notifyWecomGroup: false,
};
const SCHEDULE_FORM_PREFS_KEY = 'xdt:scheduleFormPrefs:v1';
@@ -244,6 +245,7 @@ export function makeFormFromSchedule(s: Schedule | null): ScheduleFormState {
: '',
notifyDesktop: s.notify.desktop,
notifyFeishu: s.notify.feishu,
+ notifyWecomGroup: s.notify.wecomGroup === true,
};
}
diff --git a/apps/desktop/src/renderer/features/scheduler/lib/projectAutomationConfig.ts b/apps/desktop/src/renderer/features/scheduler/lib/projectAutomationConfig.ts
index 9b2d3049db9..3b890858bc8 100644
--- a/apps/desktop/src/renderer/features/scheduler/lib/projectAutomationConfig.ts
+++ b/apps/desktop/src/renderer/features/scheduler/lib/projectAutomationConfig.ts
@@ -28,7 +28,7 @@ export interface ProjectScheduleConfig {
* ⚠️ 与 main 侧 project-automation-loader.ts 的 ProjectScheduleConfig 保持同形。
*/
preRunHook?: { command: string; timeoutMs?: number };
- notify?: { desktop?: boolean; feishu?: boolean };
+ notify?: { desktop?: boolean; feishu?: boolean; wecomGroup?: boolean };
}
export function generateProjectScheduleId(): string {
@@ -93,6 +93,10 @@ export function formToProjectConfig(
// 与 buildScheduleInput 同源:未启用为 undefined(JSON 序列化时省略该字段;
// 类型上抹掉 null——那是 update patch 的清空语义,config 文件里用"字段缺席"表达)
preRunHook: buildPreRunHook(form) ?? undefined,
- notify: { desktop: form.notifyDesktop, feishu: form.notifyFeishu },
+ notify: {
+ desktop: form.notifyDesktop,
+ feishu: form.notifyFeishu,
+ wecomGroup: form.notifyWecomGroup === true,
+ },
};
}
diff --git a/apps/desktop/src/renderer/features/scheduler/lib/scheduleFormLogic.ts b/apps/desktop/src/renderer/features/scheduler/lib/scheduleFormLogic.ts
index 434e0a16ac8..be3477ce8eb 100644
--- a/apps/desktop/src/renderer/features/scheduler/lib/scheduleFormLogic.ts
+++ b/apps/desktop/src/renderer/features/scheduler/lib/scheduleFormLogic.ts
@@ -120,6 +120,7 @@ export interface ScheduleFormState {
preRunHookTimeoutSec: string;
notifyDesktop: boolean;
notifyFeishu: boolean;
+ notifyWecomGroup?: boolean;
}
/** bound 态"已选绑定但尚未挑会话"的占位 id;validate 用 selectThread 拦截。 */
@@ -432,7 +433,11 @@ export function buildScheduleInput(form: ScheduleFormState): CreateScheduleInput
silentWhenIdle: !isScript && form.silentWhenIdle,
targetSessionId: !isScript ? (form.targetSessionId.trim() || undefined) : undefined,
preRunHook: buildPreRunHook(form),
- notify: { desktop: form.notifyDesktop, feishu: form.notifyFeishu },
+ notify: {
+ desktop: form.notifyDesktop,
+ feishu: form.notifyFeishu,
+ wecomGroup: form.notifyWecomGroup === true,
+ },
};
if (isScript) {
diff --git a/apps/desktop/src/renderer/hooks/useWecomBot.ts b/apps/desktop/src/renderer/hooks/useWecomBot.ts
new file mode 100644
index 00000000000..5eb720082b8
--- /dev/null
+++ b/apps/desktop/src/renderer/hooks/useWecomBot.ts
@@ -0,0 +1,198 @@
+import { useCallback, useEffect, useState } from 'react';
+import { useTranslation } from 'react-i18next';
+
+import { createLogger } from '@/lib/logger';
+import { toast } from '@/lib/toast';
+
+const log = createLogger('useWecomBot');
+
+interface CachedState {
+ status: WecomBotTransportStatus;
+ botId: string;
+ ownerUserId: string;
+}
+
+let cachedState: CachedState | null = null;
+
+export function useWecomBot() {
+ const { t } = useTranslation();
+ const [botId, setBotId] = useState(() => cachedState?.botId ?? '');
+ const [secret, setSecret] = useState('');
+ const [ownerUserId, setOwnerUserId] = useState(() => cachedState?.ownerUserId ?? '');
+ const [status, setStatus] = useState(
+ () => cachedState?.status ?? { kind: 'idle' },
+ );
+ const [isSaving, setIsSaving] = useState(false);
+ const [isDisconnecting, setIsDisconnecting] = useState(false);
+ const [validationError, setValidationError] = useState(null);
+
+ useEffect(() => {
+ let cancelled = false;
+ void window.electronAPI.wecomBot
+ .getStatus()
+ .then((state) => {
+ if (cancelled) return;
+ const next = {
+ status: state.status,
+ botId: state.botId ?? '',
+ ownerUserId: state.ownerUserId ?? '',
+ };
+ cachedState = next;
+ setStatus(next.status);
+ setBotId(next.botId);
+ setOwnerUserId(next.ownerUserId);
+ })
+ .catch((error) => {
+ log.error('getStatus failed:', error instanceof Error ? error.message : String(error));
+ });
+ return () => {
+ cancelled = true;
+ };
+ }, []);
+
+ useEffect(
+ () =>
+ window.electronAPI.wecomBot.onStatusChange((state) => {
+ const next = {
+ status: state.status,
+ botId: state.botId ?? cachedState?.botId ?? '',
+ ownerUserId: state.ownerUserId ?? '',
+ };
+ cachedState = next;
+ setStatus(next.status);
+ setBotId(next.botId);
+ setOwnerUserId(next.ownerUserId);
+ if (next.status.kind === 'connected') setSecret('');
+ }),
+ [],
+ );
+
+ const connect = useCallback(async () => {
+ if (isSaving) return false;
+ const nextBotId = botId.trim();
+ const nextSecret = secret.trim();
+ if (!nextBotId || !nextSecret) {
+ setValidationError(t('settings.wecomBot.fieldsRequired'));
+ return false;
+ }
+ setValidationError(null);
+ setIsSaving(true);
+ try {
+ const result = await window.electronAPI.wecomBot.setConfig({
+ botId: nextBotId,
+ secret: nextSecret,
+ });
+ const next = {
+ status: result.status,
+ botId: result.botId ?? nextBotId,
+ ownerUserId: result.ownerUserId ?? '',
+ };
+ cachedState = next;
+ setStatus(next.status);
+ setBotId(next.botId);
+ setOwnerUserId(next.ownerUserId);
+ if (next.status.kind === 'connected') setSecret('');
+ if (result.saveErrorStatus?.kind === 'error' || result.status.kind === 'error') {
+ toast.error(t('settings.wecomBot.connectFailed'));
+ return false;
+ }
+ toast.success(t('settings.wecomBot.configSaved'));
+ return true;
+ } catch (error) {
+ const message = error instanceof Error ? error.message : String(error);
+ log.error('setConfig failed:', message);
+ toast.error(t('settings.wecomBot.saveFailed', { message }));
+ return false;
+ } finally {
+ setIsSaving(false);
+ }
+ }, [botId, isSaving, secret, t]);
+
+ const reconnect = useCallback(async () => {
+ if (isSaving || !botId.trim()) return false;
+ setValidationError(null);
+ setIsSaving(true);
+ try {
+ const result = await window.electronAPI.wecomBot.reconnect();
+ const next = {
+ status: result.status,
+ botId: result.botId ?? botId.trim(),
+ ownerUserId: result.ownerUserId ?? '',
+ };
+ cachedState = next;
+ setStatus(next.status);
+ setBotId(next.botId);
+ setOwnerUserId(next.ownerUserId);
+ if (result.status.kind === 'error') {
+ toast.error(t('settings.wecomBot.connectFailed'));
+ return false;
+ }
+ toast.success(t('settings.wecomBot.reconnecting'));
+ return true;
+ } catch (error) {
+ const message = error instanceof Error ? error.message : String(error);
+ log.error('reconnect failed:', message);
+ toast.error(t('settings.wecomBot.reconnectFailed', { message }));
+ return false;
+ } finally {
+ setIsSaving(false);
+ }
+ }, [botId, isSaving, t]);
+
+ const disconnect = useCallback(async () => {
+ if (isDisconnecting) return;
+ setIsDisconnecting(true);
+ try {
+ const result = await window.electronAPI.wecomBot.disconnect();
+ const next = { status: result.status, botId: '', ownerUserId: '' };
+ cachedState = next;
+ setStatus(next.status);
+ setBotId('');
+ setSecret('');
+ setOwnerUserId('');
+ setValidationError(null);
+ toast.success(t('settings.wecomBot.disconnected'));
+ } catch (error) {
+ const message = error instanceof Error ? error.message : String(error);
+ log.error('disconnect failed:', message);
+ toast.error(t('settings.wecomBot.disconnectFailed', { message }));
+ } finally {
+ setIsDisconnecting(false);
+ }
+ }, [isDisconnecting, t]);
+
+ return {
+ botId,
+ setBotId: (value: string) => {
+ setBotId(value);
+ setValidationError(null);
+ },
+ secret,
+ setSecret: (value: string) => {
+ setSecret(value);
+ setValidationError(null);
+ },
+ ownerUserId,
+ status,
+ validationError,
+ isSaving,
+ isDisconnecting,
+ canConnect: Boolean(
+ botId.trim() &&
+ secret.trim() &&
+ status.kind !== 'connecting' &&
+ !isSaving &&
+ !isDisconnecting,
+ ),
+ canReconnect: Boolean(
+ botId.trim() &&
+ !secret.trim() &&
+ status.kind !== 'connecting' &&
+ !isSaving &&
+ !isDisconnecting,
+ ),
+ connect,
+ reconnect,
+ disconnect,
+ };
+}
diff --git a/apps/desktop/src/renderer/hooks/useWecomGroupNotificationSettings.ts b/apps/desktop/src/renderer/hooks/useWecomGroupNotificationSettings.ts
new file mode 100644
index 00000000000..47e0e37e7a6
--- /dev/null
+++ b/apps/desktop/src/renderer/hooks/useWecomGroupNotificationSettings.ts
@@ -0,0 +1,95 @@
+import { useCallback, useEffect, useState } from 'react';
+
+const LEGACY_SESSION_NOTIFICATION_KEY = 'notifications.wecomGroupEnabled';
+
+export function useWecomGroupNotificationSettings() {
+ const [enabled, setEnabledState] = useState(false);
+ const [configured, setConfigured] = useState(false);
+ const [maskedKey, setMaskedKey] = useState();
+ const [busy, setBusy] = useState(false);
+
+ useEffect(() => {
+ let cancelled = false;
+ try {
+ localStorage.removeItem(LEGACY_SESSION_NOTIFICATION_KEY);
+ } catch {
+ // Legacy preference cleanup is best-effort.
+ }
+ void window.electronAPI.wecomGroupNotification
+ .getState()
+ .then((state) => {
+ if (cancelled) return;
+ setConfigured(state.configured);
+ setEnabledState(state.enabled);
+ setMaskedKey(state.maskedKey);
+ })
+ .catch(() => {
+ if (!cancelled) {
+ setConfigured(false);
+ setEnabledState(false);
+ }
+ });
+ return () => {
+ cancelled = true;
+ };
+ }, []);
+
+ const setEnabled = useCallback(async (next: boolean) => {
+ setBusy(true);
+ try {
+ const state = await window.electronAPI.wecomGroupNotification.setEnabled(next);
+ setConfigured(state.configured);
+ setEnabledState(state.enabled);
+ setMaskedKey(state.maskedKey);
+ } finally {
+ setBusy(false);
+ }
+ }, []);
+
+ const saveAndTest = useCallback(async (webhookUrl: string, testMessage: string) => {
+ setBusy(true);
+ try {
+ const state = await window.electronAPI.wecomGroupNotification.saveAndTest(
+ webhookUrl,
+ testMessage,
+ );
+ setConfigured(state.configured);
+ setEnabledState(state.enabled);
+ setMaskedKey(state.maskedKey);
+ } finally {
+ setBusy(false);
+ }
+ }, []);
+
+ const test = useCallback(async (testMessage: string) => {
+ setBusy(true);
+ try {
+ await window.electronAPI.wecomGroupNotification.test(testMessage);
+ } finally {
+ setBusy(false);
+ }
+ }, []);
+
+ const clear = useCallback(async () => {
+ setBusy(true);
+ try {
+ await window.electronAPI.wecomGroupNotification.clear();
+ setConfigured(false);
+ setEnabledState(false);
+ setMaskedKey(undefined);
+ } finally {
+ setBusy(false);
+ }
+ }, []);
+
+ return {
+ enabled,
+ setEnabled,
+ configured,
+ maskedKey,
+ busy,
+ saveAndTest,
+ test,
+ clear,
+ };
+}
diff --git a/apps/desktop/src/renderer/i18n/locales/en/common.json b/apps/desktop/src/renderer/i18n/locales/en/common.json
index 45f9534a935..2ae57f565f0 100644
--- a/apps/desktop/src/renderer/i18n/locales/en/common.json
+++ b/apps/desktop/src/renderer/i18n/locales/en/common.json
@@ -467,7 +467,23 @@
"feishuLabel": "Send a Feishu / Lark DM when a session finishes or needs a reply",
"feishuHint": "Sends a private message via the linked Feishu or Lark bot; only when the window is unfocused.",
"feishuDisabledHint": "First set up the bot in \"Feishu / Lark Bot\" and DM it once to complete binding.",
- "feishuAria": "Toggle session-done FeiShu notifications"
+ "feishuAria": "Toggle session-done FeiShu notifications",
+ "wecomGroupLabel": "WeCom group notifications",
+ "wecomGroupHint": "Used for automation completion notifications. Paste a WeCom group bot Webhook URL; it is encrypted on this device.",
+ "wecomGroupConfiguredHint": "Configured (key {{maskedKey}}). Turn on the master switch, then enable it for each automation as needed.",
+ "wecomGroupAria": "Toggle the WeCom group notification master switch",
+ "wecomGroupPlaceholder": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=…",
+ "wecomGroupSaveAndTest": "Save and test",
+ "wecomGroupSaveSuccess": "Webhook saved and test message sent",
+ "wecomGroupSaveFailed": "Could not save or test the Webhook",
+ "wecomGroupTest": "Send test",
+ "wecomGroupTestMessage": "Cindy WeCom group notification test succeeded",
+ "wecomGroupTestSuccess": "Test message sent",
+ "wecomGroupTestFailed": "Test message failed",
+ "wecomGroupToggleFailed": "Could not update WeCom group notifications",
+ "wecomGroupClear": "Remove",
+ "wecomGroupCleared": "Webhook removed",
+ "wecomGroupClearFailed": "Could not remove the Webhook"
},
"windowBehavior": {
"title": "App Behavior",
@@ -1791,6 +1807,48 @@
}
}
},
+ "wecomBot": {
+ "title": "WeCom Intelligent Bot",
+ "description": "Connect a WeCom intelligent bot and use {{appName}} from direct and group chats.",
+ "status": {
+ "needsConfig": "Not configured",
+ "connecting": "Connecting…",
+ "connected": "Connected",
+ "conflict": "Connection replaced",
+ "error": "Connection failed"
+ },
+ "fieldsRequired": "Enter both the Bot ID and Secret",
+ "botIdLabel": "Bot ID",
+ "botIdPlaceholder": "Bot ID from WeCom administration",
+ "secretLabel": "Secret",
+ "secretPlaceholder": "Bot Secret from WeCom administration",
+ "showSecret": "Show Secret",
+ "hideSecret": "Hide Secret",
+ "setupHint": "Create an intelligent bot in WeCom administration, enable long connection, then enter its Bot ID and Secret.",
+ "ownerHint": "After connecting, the first member to DM the bot becomes this computer's owner. Only that member can trigger the Agent.",
+ "connect": "Save and connect",
+ "reconnect": "Reconnect",
+ "connectingAction": "Connecting…",
+ "disconnect": "Unbind",
+ "configSaved": "WeCom bot configuration saved",
+ "connectFailed": "WeCom bot connection failed; check the credentials and network",
+ "reconnecting": "Reconnecting the WeCom bot",
+ "reconnectFailed": "Reconnect failed: {{message}}",
+ "saveFailed": "Save failed: {{message}}",
+ "disconnected": "WeCom bot unbound",
+ "disconnectFailed": "Unbind failed: {{message}}",
+ "connected": {
+ "heading": "WeCom bot connected",
+ "awaitingOwner": "Send the bot a direct message from your WeCom account to bind the owner.",
+ "ownerBound": "Owner on this computer: {{ownerUserId}}"
+ },
+ "disconnectConfirm": {
+ "title": "Unbind the WeCom bot?",
+ "description": "The saved Bot ID, Secret, and owner binding will be removed from this computer.",
+ "confirm": "Unbind",
+ "cancel": "Cancel"
+ }
+ },
"telegramBot": {
"title": "Telegram Bot",
"description": "Connect your own Telegram bot. The desktop connects to Telegram directly, so {{appName}} works from DMs and group chats.",
@@ -2711,8 +2769,8 @@
},
"tips": {
"cindy": "Cindy is the official shared bot — no credentials needed. Connect Slack and just @Cindy to hand off tasks.",
- "personal": "Personal connections include WeChat scan authorization and your own Feishu / Discord / Telegram credentials. Each channel keeps independent new-conversation settings.",
- "personalFeishuOnly": "Personal connections include WeChat scan authorization plus your own Feishu and DingTalk credentials. Each channel keeps independent new-conversation settings."
+ "personal": "Personal connections include WeChat scan authorization and your own WeCom / Feishu / Discord / Telegram credentials. Each channel keeps independent new-conversation settings.",
+ "personalFeishuOnly": "Personal connections include WeChat scan authorization plus your own WeCom, Feishu, and DingTalk credentials. Each channel keeps independent new-conversation settings."
},
"defaults": {
"title": "New Conversation Configuration",
@@ -2722,7 +2780,8 @@
"discord": "New Discord conversations use this Agent and model. Send /new in an existing DM to apply it.",
"wechat": "New WeChat conversations use this Agent, model, and permission mode. Send /new in an existing chat to apply them.",
"telegram": "New Telegram conversations use this Agent and model. Send /new in an existing conversation to apply it.",
- "dingtalk": "New DingTalk conversations use this Agent and model. Send /new in an existing conversation to apply it."
+ "dingtalk": "New DingTalk conversations use this Agent and model. Send /new in an existing conversation to apply it.",
+ "wecom": "New WeCom conversations use this Agent, model, and permission mode. Send /new in an existing chat to apply them."
},
"agentLabel": "Agent",
"modelLabel": "Model Configuration",
@@ -3455,6 +3514,12 @@
"mailPrompt": "Help me build my Smart Contacts from email: first check which mail tools I have connected (if none, tell me how to connect one); scan the last 6 months of correspondence and create profiles for real contacts I exchange mail with — confirm high-frequency, clearly-identified people directly, use pending for uncertain ones; skip marketing mail, notification bots, and one-off senders. Report which profiles you created at the end.",
"imPrompt": "Help me build my Smart Contacts from chat tools: first check which IMs I have connected (Feishu / Slack / WeChat etc.; if none, tell me how to connect one); organize the people I chat with regularly into contacts, use pending for uncertain ones, and skip group bots and one-off conversations. Report which profiles you created at the end."
}
+ },
+ "remotePermission": {
+ "label": "Permission mode",
+ "hint": "Remote IM keeps confirmation enabled for actions that need approval.",
+ "fullAccessDisabled": "Full Access is unavailable for remote IM because actions that cannot be safely confirmed must not run directly.",
+ "permissionModeDisabled": "This permission mode is unavailable because remote IM uses Cindy Desktop's confirmation policy."
}
},
"remoteDevice": {
@@ -6598,6 +6663,8 @@
"silentRunTooltip": "When enabled, successful runs do not notify by default. If the task prompt asks to notify under specific conditions, AI will report when those conditions are met. Failures and errors still notify.",
"silentRunInfoAria": "View silent run rules",
"finishSendToFeishu": "Finish Send To FeishuBot",
+ "finishSendToWecomGroup": "Send result to WeCom group",
+ "configWecomGroup": "Configure WeCom group notifications",
"configFeishu": "Config FeishuBot"
},
"runSession": {
diff --git a/apps/desktop/src/renderer/i18n/locales/ja/common.json b/apps/desktop/src/renderer/i18n/locales/ja/common.json
index e40f46bdf2d..cbb12f7c2de 100644
--- a/apps/desktop/src/renderer/i18n/locales/ja/common.json
+++ b/apps/desktop/src/renderer/i18n/locales/ja/common.json
@@ -467,7 +467,23 @@
"feishuLabel": "セッション完了または返信が必要な時に Feishu / Lark メッセージを送信",
"feishuHint": "連携済みの Feishu または Lark ボットからプライベートメッセージを送信します。ウィンドウが非アクティブの場合のみ送信。",
"feishuDisabledHint": "先に「Feishu / Lark ボット」で設定し、ボットに 1 度メッセージを送ってバインドを完了してください。",
- "feishuAria": "セッション完了時の Feishu 通知を切り替え"
+ "feishuAria": "セッション完了時の Feishu 通知を切り替え",
+ "wecomGroupLabel": "WeCom グループ通知",
+ "wecomGroupHint": "自動操作の完了通知に使用します。WeCom グループボットの Webhook URL を貼り付けると、このデバイスに暗号化保存されます。",
+ "wecomGroupConfiguredHint": "設定済み(キー {{maskedKey}})。全体スイッチをオンにした後、自動操作ごとに必要に応じて送信できます。",
+ "wecomGroupAria": "WeCom グループ通知の全体スイッチを切り替え",
+ "wecomGroupPlaceholder": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=…",
+ "wecomGroupSaveAndTest": "保存してテスト",
+ "wecomGroupSaveSuccess": "Webhook を保存し、テストメッセージを送信しました",
+ "wecomGroupSaveFailed": "Webhook の保存またはテストに失敗しました",
+ "wecomGroupTest": "テスト送信",
+ "wecomGroupTestMessage": "Cindy の WeCom グループ通知テストに成功しました",
+ "wecomGroupTestSuccess": "テストメッセージを送信しました",
+ "wecomGroupTestFailed": "テストメッセージの送信に失敗しました",
+ "wecomGroupToggleFailed": "WeCom グループ通知の設定を更新できませんでした",
+ "wecomGroupClear": "削除",
+ "wecomGroupCleared": "Webhook を削除しました",
+ "wecomGroupClearFailed": "Webhook を削除できませんでした"
},
"windowBehavior": {
"title": "アプリの動作",
@@ -1790,6 +1806,48 @@
}
}
},
+ "wecomBot": {
+ "title": "WeCom インテリジェントボット",
+ "description": "WeCom インテリジェントボットを接続し、DM とグループチャットから {{appName}} を利用します。",
+ "status": {
+ "needsConfig": "未設定",
+ "connecting": "接続中…",
+ "connected": "接続済み",
+ "conflict": "接続が置き換えられました",
+ "error": "接続失敗"
+ },
+ "fieldsRequired": "Bot ID と Secret を入力してください",
+ "botIdLabel": "Bot ID",
+ "botIdPlaceholder": "WeCom 管理画面の Bot ID",
+ "secretLabel": "Secret",
+ "secretPlaceholder": "WeCom 管理画面の Secret",
+ "showSecret": "Secret を表示",
+ "hideSecret": "Secret を隠す",
+ "setupHint": "WeCom 管理画面でインテリジェントボットを作成し、長時間接続を有効にしてから Bot ID と Secret を入力します。",
+ "ownerHint": "接続後、最初にボットへ DM を送ったメンバーがこのコンピューターの owner になります。そのメンバーだけが Agent を起動できます。",
+ "connect": "保存して接続",
+ "reconnect": "再接続",
+ "connectingAction": "接続中…",
+ "disconnect": "連携解除",
+ "configSaved": "WeCom ボット設定を保存しました",
+ "connectFailed": "WeCom ボットに接続できません。認証情報とネットワークを確認してください",
+ "reconnecting": "WeCom ボットに再接続しています",
+ "reconnectFailed": "再接続に失敗しました:{{message}}",
+ "saveFailed": "保存失敗:{{message}}",
+ "disconnected": "WeCom ボットの連携を解除しました",
+ "disconnectFailed": "連携解除に失敗しました:{{message}}",
+ "connected": {
+ "heading": "WeCom ボット接続済み",
+ "awaitingOwner": "WeCom アカウントからボットへ DM を送り、owner を設定してください。",
+ "ownerBound": "このコンピューターの owner:{{ownerUserId}}"
+ },
+ "disconnectConfirm": {
+ "title": "WeCom ボットの連携を解除しますか?",
+ "description": "保存済みの Bot ID、Secret、owner の紐付けをこのコンピューターから削除します。",
+ "confirm": "連携解除",
+ "cancel": "キャンセル"
+ }
+ },
"telegramBot": {
"title": "Telegram ボット",
"description": "自分で作成した Telegram ボットを連携します。デスクトップが Telegram に直接接続し、DM でもグループでも {{appName}} を使えます。",
@@ -2710,8 +2768,8 @@
},
"tips": {
"cindy": "Cindy は公式提供の共有ボットです。認証情報の申請は不要で、Slack を連携して @Cindy にメンションするだけでタスクを任せられます。",
- "personal": "個人接続には WeChat のスキャン認証と、自分の Feishu / Discord / Telegram 認証情報を使用する接続があります。新規会話設定はチャネルごとに保存されます。",
- "personalFeishuOnly": "個人接続には WeChat のスキャン認証と、自分の Feishu / DingTalk 認証情報を使用する接続があります。新規会話設定はチャネルごとに保存されます。"
+ "personal": "個人接続には WeChat のスキャン認証と、自分の WeCom / Feishu / Discord / Telegram 認証情報を使用する接続があります。新規会話設定はチャネルごとに保存されます。",
+ "personalFeishuOnly": "個人接続には WeChat のスキャン認証と、自分の WeCom / Feishu / DingTalk 認証情報を使用する接続があります。新規会話設定はチャネルごとに保存されます。"
},
"defaults": {
"title": "新規会話設定",
@@ -2721,7 +2779,8 @@
"discord": "Discord の新規会話では、この Agent とモデルを使用します。既存の DM には /new で適用します。",
"wechat": "WeChat の新規会話では、この Agent・モデル・権限モードを使用します。既存のチャットには /new で適用します。",
"telegram": "Telegram の新規会話では、この Agent とモデルを使用します。既存の会話には /new で適用します。",
- "dingtalk": "DingTalk の新規会話では、この Agent とモデルを使用します。既存の会話には /new で適用します。"
+ "dingtalk": "DingTalk の新規会話では、この Agent とモデルを使用します。既存の会話には /new で適用します。",
+ "wecom": "WeCom の新規会話では、この Agent・モデル・権限モードを使用します。既存のチャットには /new で適用します。"
},
"agentLabel": "Agent",
"modelLabel": "モデル設定",
@@ -3453,6 +3512,12 @@
"mailPrompt": "メールからスマート連絡先を作成してください:まず接続済みのメールツールを確認し(なければ接続方法を教えてください)、直近 6 か月のやり取りをスキャンして、双方向のやり取りがある実在の連絡先を登録してください——頻度が高く身元が明確な人は確定で、不確かな人は pending で。マーケティングメール、通知ボット、一度きりの送信者はスキップ。最後に作成した項目を報告してください。",
"imPrompt": "チャットツールからスマート連絡先を作成してください:まず接続済みの IM(Feishu / Slack / WeChat など)を確認し(なければ接続方法を教えてください)、最近よく会話する相手を連絡先に整理してください。不確かな人は pending で、グループボットや一時的な会話はスキップ。最後に作成した項目を報告してください。"
}
+ },
+ "remotePermission": {
+ "label": "権限モード",
+ "hint": "リモート IM では、承認が必要な操作の確認フローを維持します。",
+ "fullAccessDisabled": "安全に確認できない操作が直接実行されないよう、リモート IM では Full Access を利用できません。",
+ "permissionModeDisabled": "リモート IM は Cindy Desktop の確認ポリシーを使用するため、この権限モードは利用できません。"
}
},
"remoteDevice": {
@@ -6587,6 +6652,8 @@
"silentRunTooltip": "オンにすると、正常完了時はデフォルトで通知しません。タスク説明で特定条件の通知を求めている場合、AI が条件を満たしたときに自動で上報します。失敗や異常は引き続き通知されます。",
"silentRunInfoAria": "サイレント実行のルールを表示",
"finishSendToFeishu": "完了時に Feishu Bot に送信",
+ "finishSendToWecomGroup": "完了時に WeCom グループへ送信",
+ "configWecomGroup": "WeCom グループ通知を設定",
"configFeishu": "Feishu Bot を設定"
},
"runSession": {
diff --git a/apps/desktop/src/renderer/i18n/locales/ko/common.json b/apps/desktop/src/renderer/i18n/locales/ko/common.json
index f02f62154de..f385f298701 100644
--- a/apps/desktop/src/renderer/i18n/locales/ko/common.json
+++ b/apps/desktop/src/renderer/i18n/locales/ko/common.json
@@ -467,7 +467,23 @@
"feishuLabel": "세션 완료 또는 응답 필요 시 Feishu / Lark 메시지 전송",
"feishuHint": "연동된 Feishu 또는 Lark 봇을 통해 개인 메시지를 보냅니다. 창이 비활성 상태일 때만 전송됩니다.",
"feishuDisabledHint": "먼저 \"Feishu / Lark 봇\"에서 봇을 설정하고 한 번 메시지를 보내 바인딩을 완료하세요.",
- "feishuAria": "세션 완료 Feishu 알림 전환"
+ "feishuAria": "세션 완료 Feishu 알림 전환",
+ "wecomGroupLabel": "WeCom 그룹 알림",
+ "wecomGroupHint": "자동 작업 완료 알림에 사용됩니다. WeCom 그룹 봇 Webhook URL을 붙여넣으면 이 기기에 암호화되어 저장됩니다.",
+ "wecomGroupConfiguredHint": "설정됨(키 {{maskedKey}}). 전체 스위치를 켠 후 각 자동 작업에서 필요할 때 전송할 수 있습니다.",
+ "wecomGroupAria": "WeCom 그룹 알림 전체 스위치 전환",
+ "wecomGroupPlaceholder": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=…",
+ "wecomGroupSaveAndTest": "저장 및 테스트",
+ "wecomGroupSaveSuccess": "Webhook을 저장하고 테스트 메시지를 보냈습니다",
+ "wecomGroupSaveFailed": "Webhook 저장 또는 테스트에 실패했습니다",
+ "wecomGroupTest": "테스트 전송",
+ "wecomGroupTestMessage": "Cindy WeCom 그룹 알림 테스트에 성공했습니다",
+ "wecomGroupTestSuccess": "테스트 메시지를 보냈습니다",
+ "wecomGroupTestFailed": "테스트 메시지 전송에 실패했습니다",
+ "wecomGroupToggleFailed": "WeCom 그룹 알림 설정을 업데이트하지 못했습니다",
+ "wecomGroupClear": "삭제",
+ "wecomGroupCleared": "Webhook을 삭제했습니다",
+ "wecomGroupClearFailed": "Webhook을 삭제하지 못했습니다"
},
"windowBehavior": {
"title": "앱 동작",
@@ -1790,6 +1806,48 @@
}
}
},
+ "wecomBot": {
+ "title": "WeCom 지능형 봇",
+ "description": "WeCom 지능형 봇을 연결하고 DM과 그룹 채팅에서 {{appName}}를 사용하세요.",
+ "status": {
+ "needsConfig": "설정되지 않음",
+ "connecting": "연결 중…",
+ "connected": "연결됨",
+ "conflict": "연결이 대체됨",
+ "error": "연결 실패"
+ },
+ "fieldsRequired": "Bot ID와 Secret을 모두 입력하세요",
+ "botIdLabel": "Bot ID",
+ "botIdPlaceholder": "WeCom 관리 화면의 Bot ID",
+ "secretLabel": "Secret",
+ "secretPlaceholder": "WeCom 관리 화면의 Secret",
+ "showSecret": "Secret 표시",
+ "hideSecret": "Secret 숨기기",
+ "setupHint": "WeCom 관리 화면에서 지능형 봇을 만들고 장기 연결을 활성화한 다음 Bot ID와 Secret을 입력하세요.",
+ "ownerHint": "연결 후 봇에 처음 DM을 보낸 구성원이 이 컴퓨터의 owner로 연결됩니다. 해당 구성원만 Agent를 실행할 수 있습니다.",
+ "connect": "저장하고 연결",
+ "reconnect": "다시 연결",
+ "connectingAction": "연결 중…",
+ "disconnect": "연결 해제",
+ "configSaved": "WeCom 봇 설정을 저장했습니다",
+ "connectFailed": "WeCom 봇 연결에 실패했습니다. 자격 증명과 네트워크를 확인하세요",
+ "reconnecting": "WeCom 봇에 다시 연결하는 중입니다",
+ "reconnectFailed": "다시 연결하지 못했습니다: {{message}}",
+ "saveFailed": "저장 실패: {{message}}",
+ "disconnected": "WeCom 봇 연결을 해제했습니다",
+ "disconnectFailed": "연결 해제 실패: {{message}}",
+ "connected": {
+ "heading": "WeCom 봇 연결됨",
+ "awaitingOwner": "WeCom 계정에서 봇으로 DM을 보내 owner를 연결하세요.",
+ "ownerBound": "이 컴퓨터의 owner: {{ownerUserId}}"
+ },
+ "disconnectConfirm": {
+ "title": "WeCom 봇 연결을 해제할까요?",
+ "description": "저장된 Bot ID, Secret 및 owner 연결이 이 컴퓨터에서 삭제됩니다.",
+ "confirm": "연결 해제",
+ "cancel": "취소"
+ }
+ },
"telegramBot": {
"title": "Telegram 봇",
"description": "직접 만든 Telegram 봇을 연결하세요. 데스크톱이 Telegram에 직접 연결되어 DM과 그룹 채팅에서 {{appName}}를 사용할 수 있습니다.",
@@ -2710,8 +2768,8 @@
},
"tips": {
"cindy": "Cindy는 공식 제공 공유 봇입니다. 자격 증명을 신청할 필요 없이 Slack을 연결하고 @Cindy를 멘션하면 바로 작업을 맡길 수 있습니다.",
- "personal": "개인 연결에는 WeChat 스캔 인증과 직접 발급한 Feishu / Discord / Telegram 인증 정보 연결이 포함됩니다. 새 대화 설정은 채널별로 저장됩니다.",
- "personalFeishuOnly": "개인 연결에는 WeChat 스캔 인증과 직접 발급한 Feishu 및 DingTalk 자격 증명 연결이 포함됩니다. 새 대화 설정은 채널별로 저장됩니다."
+ "personal": "개인 연결에는 WeChat 스캔 인증과 직접 발급한 WeCom / Feishu / Discord / Telegram 인증 정보 연결이 포함됩니다. 새 대화 설정은 채널별로 저장됩니다.",
+ "personalFeishuOnly": "개인 연결에는 WeChat 스캔 인증과 직접 발급한 WeCom, Feishu 및 DingTalk 자격 증명 연결이 포함됩니다. 새 대화 설정은 채널별로 저장됩니다."
},
"defaults": {
"title": "새 대화 설정",
@@ -2721,7 +2779,8 @@
"discord": "새 Discord 대화는 이 Agent와 모델을 사용합니다. 기존 DM에는 /new를 보내 적용하세요.",
"wechat": "새 WeChat 대화는 이 Agent, 모델, 권한 모드를 사용합니다. 기존 채팅에는 /new를 보내 적용하세요.",
"telegram": "새 Telegram 대화는 이 Agent와 모델을 사용합니다. 기존 대화에는 /new를 보내 적용하세요.",
- "dingtalk": "새 DingTalk 대화는 이 Agent와 모델을 사용합니다. 기존 대화에는 /new를 보내 적용하세요."
+ "dingtalk": "새 DingTalk 대화는 이 Agent와 모델을 사용합니다. 기존 대화에는 /new를 보내 적용하세요.",
+ "wecom": "새 WeCom 대화는 이 Agent, 모델, 권한 모드를 사용합니다. 기존 채팅에는 /new를 보내 적용하세요."
},
"agentLabel": "Agent",
"modelLabel": "모델 설정",
@@ -3453,6 +3512,12 @@
"mailPrompt": "이메일에서 스마트 연락처를 만들어 주세요: 먼저 연결된 메일 도구를 확인하고(없다면 연결 방법을 알려 주세요), 최근 6개월간의 주고받은 메일을 스캔해 실제로 왕래하는 연락처를 등록해 주세요 — 빈도가 높고 신원이 명확한 사람은 바로 확정, 불확실한 사람은 pending으로. 마케팅 메일, 알림 봇, 일회성 발신자는 건너뜁니다. 마지막에 어떤 프로필을 만들었는지 보고해 주세요.",
"imPrompt": "채팅 도구에서 스마트 연락처를 만들어 주세요: 먼저 연결된 IM(Feishu / Slack / WeChat 등)을 확인하고(없다면 연결 방법을 알려 주세요), 최근 자주 대화하는 사람들을 연락처로 정리해 주세요. 불확실한 사람은 pending으로, 그룹 봇과 일회성 대화는 건너뜁니다. 마지막에 어떤 프로필을 만들었는지 보고해 주세요."
}
+ },
+ "remotePermission": {
+ "label": "권한 모드",
+ "hint": "원격 IM은 승인이 필요한 작업의 확인 절차를 유지합니다.",
+ "fullAccessDisabled": "안전하게 확인할 수 없는 작업이 직접 실행되지 않도록 원격 IM에서는 Full Access를 사용할 수 없습니다.",
+ "permissionModeDisabled": "원격 IM은 Cindy Desktop의 확인 정책을 사용하므로 이 권한 모드를 사용할 수 없습니다."
}
},
"remoteDevice": {
@@ -6587,6 +6652,8 @@
"silentRunTooltip": "켜면 작업이 성공적으로 완료되어도 기본적으로 알림을 보내지 않습니다. 작업 프롬프트에서 특정 조건에 알림을 요청한 경우, AI가 조건이 충족될 때 직접 보고합니다. 실패와 오류는 계속 알림을 보냅니다.",
"silentRunInfoAria": "조용히 실행 규칙 보기",
"finishSendToFeishu": "완료 시 Feishu Bot에 전송",
+ "finishSendToWecomGroup": "완료 시 WeCom 그룹으로 전송",
+ "configWecomGroup": "WeCom 그룹 알림 설정",
"configFeishu": "Feishu Bot 설정"
},
"runSession": {
diff --git a/apps/desktop/src/renderer/i18n/locales/zh-CN/common.json b/apps/desktop/src/renderer/i18n/locales/zh-CN/common.json
index 64f23587b3d..0da162770a3 100644
--- a/apps/desktop/src/renderer/i18n/locales/zh-CN/common.json
+++ b/apps/desktop/src/renderer/i18n/locales/zh-CN/common.json
@@ -467,7 +467,23 @@
"feishuLabel": "任务完成或需要回复时发送飞书 / Lark 消息",
"feishuHint": "通过已绑定的飞书或 Lark 机器人,向你私聊发送一条消息;仅在窗口失焦时发送。",
"feishuDisabledHint": "需要先在「飞书 / Lark 机器人」中配置 bot 并向它发送一条消息以完成绑定。",
- "feishuAria": "切换任务完成的飞书通知"
+ "feishuAria": "切换任务完成的飞书通知",
+ "wecomGroupLabel": "企业微信群通知",
+ "wecomGroupHint": "用于自动操作的完成通知。粘贴企微群机器人的 Webhook URL,URL 会加密保存在本机。",
+ "wecomGroupConfiguredHint": "已配置(密钥 {{maskedKey}})。开启总开关后,可在每个自动操作中按需发送。",
+ "wecomGroupAria": "切换企业微信群通知总开关",
+ "wecomGroupPlaceholder": "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=…",
+ "wecomGroupSaveAndTest": "保存并测试",
+ "wecomGroupSaveSuccess": "Webhook 已保存,测试消息已发送",
+ "wecomGroupSaveFailed": "Webhook 保存或测试失败",
+ "wecomGroupTest": "发送测试",
+ "wecomGroupTestMessage": "Cindy 企业微信群通知测试成功",
+ "wecomGroupTestSuccess": "测试消息已发送",
+ "wecomGroupTestFailed": "测试消息发送失败",
+ "wecomGroupToggleFailed": "企业微信群通知开关更新失败",
+ "wecomGroupClear": "移除",
+ "wecomGroupCleared": "Webhook 已移除",
+ "wecomGroupClearFailed": "Webhook 移除失败"
},
"windowBehavior": {
"title": "应用行为",
@@ -1790,6 +1806,48 @@
}
}
},
+ "wecomBot": {
+ "title": "企业微信智能机器人",
+ "description": "连接企业微信智能机器人,在单聊和群聊中使用 {{appName}}。",
+ "status": {
+ "needsConfig": "未配置",
+ "connecting": "连接中…",
+ "connected": "已连接",
+ "conflict": "连接被替换",
+ "error": "连接失败"
+ },
+ "fieldsRequired": "请输入 Bot ID 和 Secret",
+ "botIdLabel": "Bot ID",
+ "botIdPlaceholder": "企业微信后台中的机器人 ID",
+ "secretLabel": "Secret",
+ "secretPlaceholder": "企业微信后台中的机器人 Secret",
+ "showSecret": "显示 Secret",
+ "hideSecret": "隐藏 Secret",
+ "setupHint": "在企业微信管理后台创建智能机器人并启用长连接,然后填入 Bot ID 和 Secret。",
+ "ownerHint": "连接后,首个向机器人发送单聊消息的成员会绑定为本机 owner;仅该成员可触发 Agent。",
+ "connect": "保存并连接",
+ "reconnect": "重新连接",
+ "connectingAction": "正在连接…",
+ "disconnect": "解绑",
+ "configSaved": "企业微信机器人配置已保存",
+ "connectFailed": "企业微信机器人连接失败,请检查凭证与网络",
+ "reconnecting": "正在重新连接企业微信机器人",
+ "reconnectFailed": "重新连接失败:{{message}}",
+ "saveFailed": "保存失败:{{message}}",
+ "disconnected": "已解绑企业微信机器人",
+ "disconnectFailed": "解绑失败:{{message}}",
+ "connected": {
+ "heading": "企业微信机器人已连接",
+ "awaitingOwner": "请使用你的企业微信账号向机器人发送一条单聊消息,完成 owner 绑定。",
+ "ownerBound": "本机 owner:{{ownerUserId}}"
+ },
+ "disconnectConfirm": {
+ "title": "解绑企业微信机器人?",
+ "description": "本机保存的 Bot ID、Secret 和 owner 绑定会被清除。",
+ "confirm": "解绑",
+ "cancel": "取消"
+ }
+ },
"telegramBot": {
"title": "Telegram 机器人",
"description": "绑定你自建的 Telegram Bot,桌面端直连 Telegram,私聊和群聊都能找 {{appName}}。",
@@ -2710,8 +2768,8 @@
},
"tips": {
"cindy": "Cindy 是官方提供的共享机器人:无需申请任何凭证,连接 Slack 后 @Cindy 即可直接派活。",
- "personal": "个人连接包括微信扫码,以及使用自有凭证接入飞书 / Discord / Telegram;各渠道独立保存新对话配置。",
- "personalFeishuOnly": "个人连接包括微信扫码,以及使用自有凭证接入飞书和钉钉;各渠道独立保存新对话配置。"
+ "personal": "个人连接包括微信扫码,以及使用自有凭证接入企业微信 / 飞书 / Discord / Telegram;各渠道独立保存新对话配置。",
+ "personalFeishuOnly": "个人连接包括微信扫码,以及使用自有凭证接入企业微信、飞书和钉钉;各渠道独立保存新对话配置。"
},
"defaults": {
"title": "新对话配置",
@@ -2721,7 +2779,8 @@
"discord": "Discord 新对话会使用这组 Agent 和模型;已有私聊发送 /new 后应用。",
"wechat": "微信新对话会使用这组 Agent、模型和权限模式;已有私聊发送 /new 后应用。",
"telegram": "Telegram 新对话会使用这组 Agent 和模型;已有对话发送 /new 后应用。",
- "dingtalk": "钉钉新对话会使用这组 Agent 和模型;已有对话发送 /new 后应用。"
+ "dingtalk": "钉钉新对话会使用这组 Agent 和模型;已有对话发送 /new 后应用。",
+ "wecom": "企业微信新对话会使用这组 Agent、模型和权限模式;已有对话发送 /new 后应用。"
},
"agentLabel": "Agent",
"modelLabel": "模型配置",
@@ -3453,6 +3512,12 @@
"mailPrompt": "帮我从邮件建立智能通讯录:先看看我连接了哪些邮箱工具(没有的话告诉我该怎么连接);扫描最近 6 个月的往来邮件,找出和我有双向往来的真实联系人建档——高频且信息明确的直接确认,拿不准的用 pending;营销邮件、通知机器人、一次性发件人跳过。最后汇报建了哪些档案。",
"imPrompt": "帮我从 IM 工具建立智能通讯录:先看看我连接了哪些 IM(飞书 / Slack / 微信等,没有的话告诉我该怎么连接);把近期经常和我对话的联系人整理进通讯录,拿不准的用 pending,群机器人和一次性对话跳过。最后汇报建了哪些档案。"
}
+ },
+ "remotePermission": {
+ "label": "权限模式",
+ "hint": "远程 IM 会为需要审批的操作保留确认流程。",
+ "fullAccessDisabled": "远程 IM 不支持完全访问,避免无法安全确认的操作被直接执行。",
+ "permissionModeDisabled": "远程 IM 使用 Cindy 桌面端确认策略,因此该权限模式不可用。"
}
},
"remoteDevice": {
@@ -6587,6 +6652,8 @@
"silentRunTooltip": "开启后,任务成功完成时默认不提醒。若任务说明中要求在特定情况提醒,AI 会在满足条件时主动上报;失败和异常仍会提醒。",
"silentRunInfoAria": "查看静默运行规则",
"finishSendToFeishu": "完成时发送到飞书机器人",
+ "finishSendToWecomGroup": "完成时发送到企业微信群",
+ "configWecomGroup": "配置企微群通知",
"configFeishu": "配置飞书机器人"
},
"runSession": {
diff --git a/apps/desktop/src/renderer/vite-env.d.ts b/apps/desktop/src/renderer/vite-env.d.ts
index 773bca69522..1b03dfd78ab 100644
--- a/apps/desktop/src/renderer/vite-env.d.ts
+++ b/apps/desktop/src/renderer/vite-env.d.ts
@@ -419,6 +419,12 @@ type TelegramBotTransportStatus =
| { kind: 'error'; reason: string };
type DingTalkBotTransportStatus = DiscordBotTransportStatus;
+type WecomBotTransportStatus =
+ | { kind: 'idle' }
+ | { kind: 'connecting' }
+ | { kind: 'connected'; appId: string }
+ | { kind: 'conflict'; appId: string }
+ | { kind: 'error'; reason: string };
type WechatBotPhase =
| 'disconnected'
@@ -1828,6 +1834,37 @@ interface ElectronAPI {
onOwnerChange: (callback: (update: { ownerUserId: string }) => void) => () => void;
};
+ wecomBot: {
+ getStatus: () => Promise<{
+ status: WecomBotTransportStatus;
+ botId: string | null;
+ ownerUserId: string | null;
+ }>;
+ setConfig: (payload: { botId: string; secret: string }) => Promise<{
+ status: WecomBotTransportStatus;
+ saveErrorStatus?: WecomBotTransportStatus;
+ botId: string | null;
+ ownerUserId: string | null;
+ }>;
+ reconnect: () => Promise<{
+ status: WecomBotTransportStatus;
+ botId: string | null;
+ ownerUserId: string | null;
+ }>;
+ disconnect: () => Promise<{
+ status: WecomBotTransportStatus;
+ botId: string | null;
+ ownerUserId: string | null;
+ }>;
+ onStatusChange: (
+ callback: (update: {
+ status: WecomBotTransportStatus;
+ botId: string | null;
+ ownerUserId: string | null;
+ }) => void,
+ ) => () => void;
+ };
+
// ── Personal WeChat (Settings → IM Bot → Personal) ──
wechatBot: {
getState: () => Promise;
@@ -2136,6 +2173,18 @@ interface ElectronAPI {
}) => Promise;
/** Sync the renderer-owned global desktop-notification preference to main. */
notificationSetDesktopEnabled?: (enabled: boolean) => Promise<{ ok: true }>;
+ wecomGroupNotification: {
+ getState: () => Promise<{ configured: boolean; enabled: boolean; maskedKey?: string }>;
+ saveAndTest: (
+ webhookUrl: string,
+ testMessage: string,
+ ) => Promise<{ configured: boolean; enabled: boolean; maskedKey?: string }>;
+ test: (testMessage: string) => Promise<{ ok: true }>;
+ setEnabled: (
+ enabled: boolean,
+ ) => Promise<{ configured: boolean; enabled: boolean; maskedKey?: string }>;
+ clear: () => Promise<{ configured: boolean; enabled: boolean }>;
+ };
/** 将对应 session 标记为需要关注,显示 Dock/taskbar app badge。 */
notificationMarkSessionAttention: (sessionId: string) => Promise;
/** 用户查看对应 session 后,清除系统级 Dock/taskbar attention badge。 */
diff --git a/apps/desktop/src/shared/imDefaultSettings.ts b/apps/desktop/src/shared/imDefaultSettings.ts
index d773f1de806..ecf0555f69d 100644
--- a/apps/desktop/src/shared/imDefaultSettings.ts
+++ b/apps/desktop/src/shared/imDefaultSettings.ts
@@ -8,7 +8,14 @@ export type ImDefaultEffort = 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' |
* 刻意读 global(channel=undefined, 见 hook-control/session-runner.ts), 不落
* 在这个键上 — 两者互不影响。
*/
-export type ImDefaultSettingsChannel = 'feishu' | 'slack' | 'discord' | 'wechat' | 'telegram' | 'dingtalk';
+export type ImDefaultSettingsChannel =
+ | 'feishu'
+ | 'slack'
+ | 'discord'
+ | 'wechat'
+ | 'telegram'
+ | 'dingtalk'
+ | 'wecom';
export interface ImDefaultAgentSettings {
providerId: string | null;
@@ -58,6 +65,7 @@ export const IM_DEFAULT_SETTINGS_CHANNELS: readonly ImDefaultSettingsChannel[] =
'wechat',
'telegram',
'dingtalk',
+ 'wecom',
];
export const IM_DEFAULT_EFFORT_OVERRIDES: Readonly>> = {
@@ -84,11 +92,6 @@ const PERMISSION_MODES = new Set([
'bypassPermissions',
]);
-export const WECHAT_UNSUPPORTED_PERMISSION_MODES: readonly ImDefaultPermissionMode[] = [
- 'acceptEdits',
- 'bypassPermissions',
-];
-
export function isImDefaultAgentKind(value: unknown): value is ImDefaultAgentKind {
return typeof value === 'string' && AGENT_KINDS.has(value as ImDefaultAgentKind);
}
@@ -101,12 +104,6 @@ export function isImDefaultPermissionMode(value: unknown): value is ImDefaultPer
return typeof value === 'string' && PERMISSION_MODES.has(value as ImDefaultPermissionMode);
}
-export function isWechatUnsupportedPermissionMode(
- value: unknown,
-): value is ImDefaultPermissionMode {
- return isImDefaultPermissionMode(value) && WECHAT_UNSUPPORTED_PERMISSION_MODES.includes(value);
-}
-
export function isImDefaultSettingsChannel(value: unknown): value is ImDefaultSettingsChannel {
return (
typeof value === 'string' &&
diff --git a/apps/desktop/src/shared/sessionSource.ts b/apps/desktop/src/shared/sessionSource.ts
index f9eee855c78..5f55f6ea5ca 100644
--- a/apps/desktop/src/shared/sessionSource.ts
+++ b/apps/desktop/src/shared/sessionSource.ts
@@ -7,6 +7,7 @@ export const SESSION_SOURCES = [
'discord',
'wechat',
'dingtalk',
+ 'wecom',
'scheduler',
'learn',
'shared',
@@ -37,6 +38,7 @@ export const DESKTOP_VISIBLE_SESSION_SOURCES: SessionSource[] = [
'discord',
'wechat',
'dingtalk',
+ 'wecom',
'scheduler',
'learn',
'shared',
@@ -51,6 +53,7 @@ export function normalizeSessionSource(source: unknown): SessionSource {
source === 'discord' ||
source === 'wechat' ||
source === 'dingtalk' ||
+ source === 'wecom' ||
source === 'scheduler' ||
source === 'learn' ||
source === 'shared' ||
diff --git a/docs/legal/notices/THIRD-PARTY-NOTICES.txt b/docs/legal/notices/THIRD-PARTY-NOTICES.txt
index 2293f7d6639..2fdd1941c32 100644
--- a/docs/legal/notices/THIRD-PARTY-NOTICES.txt
+++ b/docs/legal/notices/THIRD-PARTY-NOTICES.txt
@@ -4299,7 +4299,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
==============================================================================
-SECTION 2: npm packages (1316 packages)
+SECTION 2: npm packages (1319 packages)
==============================================================================
- @adobe/css-tools@4.5.0 — MIT — https://github.com/adobe/css-tools
@@ -4362,8 +4362,8 @@ SECTION 2: npm packages (1316 packages)
- @babel/plugin-transform-private-methods@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-private-property-in-object@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-react-display-name@7.29.7 — MIT — https://github.com/babel/babel
-- @babel/plugin-transform-react-jsx@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-react-jsx-development@7.29.7 — MIT — https://github.com/babel/babel
+- @babel/plugin-transform-react-jsx@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-react-pure-annotations@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-runtime@7.29.7 — MIT — https://github.com/babel/babel
- @babel/plugin-transform-shorthand-properties@7.29.7 — MIT — https://github.com/babel/babel
@@ -4410,9 +4410,9 @@ SECTION 2: npm packages (1316 packages)
- @expo-google-fonts/material-symbols@0.4.40 — MIT AND Apache-2.0 — https://github.com/expo/google-fonts
- @expo/cli@56.1.20 — MIT — https://github.com/expo/expo
- @expo/code-signing-certificates@0.0.6 — MIT — https://github.com/expo/code-signing-certificates
-- @expo/config@56.0.12 — MIT — https://github.com/expo/expo
- @expo/config-plugins@56.0.13 — MIT — https://github.com/expo/expo
- @expo/config-types@56.0.7 — MIT — https://github.com/expo/expo
+- @expo/config@56.0.12 — MIT — https://github.com/expo/expo
- @expo/devcert@1.2.1 — MIT — https://github.com/expo/devcert
- @expo/devtools@56.0.2 — MIT — https://github.com/expo/expo
- @expo/dom-webview@56.0.6 — MIT — https://github.com/expo/expo
@@ -4427,10 +4427,10 @@ SECTION 2: npm packages (1316 packages)
- @expo/json-file@11.0.1 — MIT — https://github.com/expo/expo
- @expo/local-build-cache-provider@56.0.10 — MIT — https://github.com/expo/expo
- @expo/log-box@56.0.14 — MIT — https://github.com/expo/expo/tree/main/packages/@expo/log-box
-- @expo/metro@56.0.0 — MIT — https://github.com/expo/expo-metro
- @expo/metro-config@56.0.17 — MIT — https://github.com/expo/expo
- @expo/metro-file-map@56.0.3 — MIT — https://github.com/expo/expo
- @expo/metro-runtime@56.0.17 — MIT — https://github.com/expo/expo
+- @expo/metro@56.0.0 — MIT — https://github.com/expo/expo-metro
- @expo/osascript@2.7.1 — MIT — https://github.com/expo/expo
- @expo/package-manager@1.13.1 — MIT — https://github.com/expo/expo
- @expo/plist@0.7.0 — MIT — https://github.com/expo/expo
@@ -4517,29 +4517,29 @@ SECTION 2: npm packages (1316 packages)
- @mermaid-js/parser@1.2.0 — MIT — https://github.com/mermaid-js/mermaid
- @modelcontextprotocol/sdk@1.29.0 — MIT — https://github.com/modelcontextprotocol/typescript-sdk
- @monogrid/gainmap-js@3.4.0 — MIT — https://github.com/MONOGRID/gainmap-js
-- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-darwin-arm64@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-darwin-x64@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-linux-arm64-gnu@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-linux-x64-gnu@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-win32-arm64-msvc@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-win32-x64-msvc@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
-- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/woff-build-darwin-arm64@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-darwin-x64@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-linux-arm64-gnu@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-linux-x64-gnu@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-win32-arm64-msvc@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-win32-x64-msvc@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @noble/hashes@1.8.0 — MIT — https://github.com/paulmillr/noble-hashes
- @paralleldrive/cuid2@2.3.1 — MIT — https://github.com/ericelliott/cuid2
-- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-darwin-arm64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-darwin-x64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-linux-arm64-glibc@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-linux-x64-glibc@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-win32-arm64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-win32-x64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
+- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @pkgjs/parseargs@0.11.0 — MIT — https://github.com/pkgjs/parseargs
- @protobufjs/aspromise@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
- @protobufjs/base64@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
@@ -4624,7 +4624,6 @@ SECTION 2: npm packages (1316 packages)
- @tiptap/extension-text@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/pm@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/react@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
-- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-array@3.2.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-axis@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-brush@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -4646,18 +4645,19 @@ SECTION 2: npm packages (1316 packages)
- @types/d3-polygon@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-quadtree@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-random@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-scale-chromatic@3.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-selection@3.0.11 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-shape@3.1.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-time-format@4.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-timer@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-transition@3.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-zoom@3.0.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/debug@4.1.13 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/estree-jsx@1.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/geojson@7946.0.16 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/hast@3.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/istanbul-lib-coverage@2.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -4668,18 +4668,19 @@ SECTION 2: npm packages (1316 packages)
- @types/ms@2.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/node@25.9.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/pako@2.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/react@19.2.17 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/react-test-renderer@19.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/react@19.2.17 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/trusted-types@2.0.7 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/unist@2.0.11 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/unist@3.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/use-sync-external-store@0.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/ws@8.18.1 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/yargs@17.0.35 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/yargs-parser@21.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/yargs@17.0.35 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @ungap/structured-clone@1.3.3 — ISC — https://github.com/ungap/structured-clone
- @upsetjs/venn.js@2.0.0 — MIT — https://github.com/upsetjs/venn.js
- @vladfrangu/async_event_emitter@2.4.7 — MIT — https://github.com/vladfrangu/async_event_emitter
+- @wecom/aibot-node-sdk@1.0.7 — MIT — https://github.com/WecomTeam/aibot-node-sdk
- @xmldom/xmldom@0.8.13 — MIT — https://github.com/xmldom/xmldom
- @xmldom/xmldom@0.9.10 — MIT — https://github.com/xmldom/xmldom
- @xterm/addon-clipboard@0.1.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-clipboard
@@ -4693,10 +4694,10 @@ SECTION 2: npm packages (1316 packages)
- agent-base@6.0.2 — MIT — https://github.com/TooTallNate/node-agent-base
- agent-base@7.1.4 — MIT — https://github.com/TooTallNate/proxy-agents
- agent-cli-detector@0.1.2 — MIT
-- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
-- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ajv-formats@1.6.1 — MIT — https://github.com/ajv-validator/ajv-formats
- ajv-formats@3.0.1 — MIT — https://github.com/ajv-validator/ajv-formats
+- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
+- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- anser@1.4.10 — MIT — https://github.com/IonicaBizau/anser
- ansi-escapes@4.3.2 — MIT — https://github.com/sindresorhus/ansi-escapes
- ansi-regex@4.1.1 — MIT — https://github.com/chalk/ansi-regex
@@ -4747,9 +4748,9 @@ SECTION 2: npm packages (1316 packages)
- braces@3.0.3 — MIT — https://github.com/micromatch/braces
- browserslist@4.28.6 — MIT — https://github.com/browserslist/browserslist
- bser@2.1.1 — Apache-2.0 — https://github.com/facebook/watchman
-- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buffer-equal-constant-time@1.0.1 — BSD-3-Clause — https://github.com/goinstant/buffer-equal-constant-time
- buffer-from@1.1.2 — MIT — https://github.com/LinusU/buffer-from
+- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buildcheck@0.0.7 — MIT — http://github.com/mscdex/buildcheck
- byte-size@8.2.1 — MIT — https://github.com/75lb/byte-size
- bytes@3.1.2 — MIT — https://github.com/visionmedia/bytes.js
@@ -4762,9 +4763,9 @@ SECTION 2: npm packages (1316 packages)
- chalk@2.4.2 — MIT — https://github.com/chalk/chalk
- chalk@4.1.2 — MIT — https://github.com/chalk/chalk
- chalk@5.6.2 — MIT — https://github.com/chalk/chalk
-- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-entities-html4@2.1.0 — MIT — https://github.com/wooorm/character-entities-html4
- character-entities-legacy@3.0.0 — MIT — https://github.com/wooorm/character-entities-legacy
+- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-reference-invalid@2.0.1 — MIT — https://github.com/wooorm/character-reference-invalid
- charenc@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-charenc
- chownr@1.1.4 — ISC — https://github.com/isaacs/chownr
@@ -4780,12 +4781,12 @@ SECTION 2: npm packages (1316 packages)
- clone@1.0.4 — MIT — https://github.com/pvorb/node-clone
- clsx@2.1.1 — MIT — https://github.com/lukeed/clsx
- cn-font-split@6.0.3 — Apache-2.0 — https://github.com/KonghaYao/cn-font-split/tree/ts/packages/subsets
-- color@4.2.3 — MIT — https://github.com/Qix-/color
- color-convert@1.9.3 — MIT — https://github.com/Qix-/color-convert
- color-convert@2.0.1 — MIT — https://github.com/Qix-/color-convert
- color-name@1.1.3 — MIT — https://github.com/dfcreative/color-name
- color-name@1.1.4 — MIT — https://github.com/colorjs/color-name
- color-string@1.9.1 — MIT — https://github.com/Qix-/color-string
+- color@4.2.3 — MIT — https://github.com/Qix-/color
- combined-stream@1.0.8 — MIT — https://github.com/felixge/node-combined-stream
- comma-separated-tokens@2.0.3 — MIT — https://github.com/wooorm/comma-separated-tokens
- commander@12.1.0 — MIT — https://github.com/tj/commander.js
@@ -4800,9 +4801,9 @@ SECTION 2: npm packages (1316 packages)
- content-type@1.0.5 — MIT — https://github.com/jshttp/content-type
- content-type@2.0.0 — MIT — https://github.com/jshttp/content-type
- convert-source-map@2.0.0 — MIT — https://github.com/thlorenz/convert-source-map
+- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- cookie@0.7.2 — MIT — https://github.com/jshttp/cookie
- cookie@1.1.1 — MIT — https://github.com/jshttp/cookie
-- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- core-js-compat@3.49.0 — MIT — https://github.com/zloirock/core-js
- core-util-is@1.0.3 — MIT — https://github.com/isaacs/core-util-is
- cors@2.8.6 — MIT — https://github.com/expressjs/cors
@@ -4819,10 +4820,9 @@ SECTION 2: npm packages (1316 packages)
- css-what@6.2.2 — BSD-2-Clause — https://github.com/fb55/css-what
- css.escape@1.5.1 — MIT — https://github.com/mathiasbynens/CSS.escape
- csstype@3.2.3 — MIT — https://github.com/frenic/csstype
-- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- cytoscape-cose-bilkent@4.1.0 — MIT — https://github.com/cytoscape/cytoscape.js-cose-bilkent
- cytoscape-fcose@2.2.0 — MIT — https://github.com/iVis-at-Bilkent/cytoscape.js-fcose
-- d3@7.9.0 — ISC — https://github.com/d3/d3
+- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- d3-array@2.12.1 — BSD-3-Clause — https://github.com/d3/d3-array
- d3-array@3.2.4 — ISC — https://github.com/d3/d3-array
- d3-axis@3.0.0 — ISC — https://github.com/d3/d3-axis
@@ -4847,16 +4847,17 @@ SECTION 2: npm packages (1316 packages)
- d3-quadtree@3.0.1 — ISC — https://github.com/d3/d3-quadtree
- d3-random@3.0.1 — ISC — https://github.com/d3/d3-random
- d3-sankey@0.12.3 — BSD-3-Clause — https://github.com/d3/d3-sankey
-- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-scale-chromatic@3.1.0 — ISC — https://github.com/d3/d3-scale-chromatic
+- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-selection@3.0.0 — ISC — https://github.com/d3/d3-selection
- d3-shape@1.3.7 — BSD-3-Clause — https://github.com/d3/d3-shape
- d3-shape@3.2.0 — ISC — https://github.com/d3/d3-shape
-- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-time-format@4.1.0 — ISC — https://github.com/d3/d3-time-format
+- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-timer@3.0.1 — ISC — https://github.com/d3/d3-timer
- d3-transition@3.0.1 — ISC — https://github.com/d3/d3-transition
- d3-zoom@3.0.0 — ISC — https://github.com/d3/d3-zoom
+- d3@7.9.0 — ISC — https://github.com/d3/d3
- dagre-d3-es@7.0.14 — MIT — https://github.com/tbo47/dagre-es
- data-uri-to-buffer@4.0.1 — MIT — https://github.com/TooTallNate/node-data-uri-to-buffer
- dayjs@1.11.21 — MIT — https://github.com/iamkun/dayjs
@@ -4882,6 +4883,7 @@ SECTION 2: npm packages (1316 packages)
- devlop@1.1.0 — MIT — https://github.com/wooorm/devlop
- diff@8.0.4 — BSD-3-Clause — https://github.com/kpdecker/jsdiff
- dijkstrajs@1.0.3 — MIT — https://github.com/tcort/dijkstrajs
+- dingtalk-stream@v2.1.5 — MIT — https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs
- discord-api-types@0.38.50 — MIT — https://github.com/discordjs/discord-api-types
- discord.js@14.27.0 — Apache-2.0 — https://github.com/discordjs/discord.js
- dnssd-advertise@1.1.6 — MIT — https://github.com/kitten/dnssd-advertise
@@ -4924,12 +4926,12 @@ SECTION 2: npm packages (1316 packages)
- estree-util-is-identifier-name@3.0.0 — MIT — https://github.com/syntax-tree/estree-util-is-identifier-name
- etag@1.8.1 — MIT — https://github.com/jshttp/etag
- event-target-shim@5.0.1 — MIT — https://github.com/mysticatea/event-target-shim
-- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
+- eventemitter3@5.0.4 — MIT — https://github.com/primus/eventemitter3
- eventsource-parser@3.1.0 — MIT — https://github.com/rexxars/eventsource-parser
+- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
- execa@4.1.0 — MIT — https://github.com/sindresorhus/execa
- execa@5.1.1 — MIT — https://github.com/sindresorhus/execa
- expand-template@2.0.3 — (MIT OR WTFPL) — https://github.com/ralphtheninja/expand-template
-- expo@56.0.16 — MIT — https://github.com/expo/expo
- expo-apple-authentication@56.0.4 — MIT — https://github.com/expo/expo
- expo-application@56.0.3 — MIT — https://github.com/expo/expo
- expo-asset@56.0.20 — MIT — https://github.com/expo/expo
@@ -4946,10 +4948,10 @@ SECTION 2: npm packages (1316 packages)
- expo-file-system@56.0.8 — MIT — https://github.com/expo/expo
- expo-font@56.0.7 — MIT — https://github.com/expo/expo
- expo-glass-effect@56.0.4 — MIT — https://github.com/expo/expo
-- expo-image@56.0.11 — MIT — https://github.com/expo/expo
- expo-image-loader@56.0.3 — MIT — https://github.com/expo/expo
- expo-image-manipulator@56.0.22 — MIT — https://github.com/expo/expo
- expo-image-picker@56.0.21 — MIT — https://github.com/expo/expo
+- expo-image@56.0.11 — MIT — https://github.com/expo/expo
- expo-json-utils@56.0.0 — MIT — https://github.com/expo/expo
- expo-keep-awake@56.0.3 — MIT — https://github.com/expo/expo
- expo-linking@56.0.15 — MIT — https://github.com/expo/expo
@@ -4969,21 +4971,22 @@ SECTION 2: npm packages (1316 packages)
- expo-status-bar@56.0.4 — MIT — https://github.com/expo/expo
- expo-structured-headers@56.0.0 — MIT — https://github.com/expo/expo
- expo-symbols@56.0.6 — MIT — https://github.com/expo/expo
-- expo-updates@56.0.22 — MIT — https://github.com/expo/expo
- expo-updates-interface@56.0.2 — MIT — https://github.com/expo/expo
+- expo-updates@56.0.22 — MIT — https://github.com/expo/expo
- expo-web-browser@56.0.5 — MIT — https://github.com/expo/expo
+- expo@56.0.16 — MIT — https://github.com/expo/expo
- exponential-backoff@3.1.3 — Apache-2.0 — https://github.com/coveooss/exponential-backoff
-- express@5.2.1 — MIT — https://github.com/expressjs/express
- express-rate-limit@8.5.2 — MIT — https://github.com/express-rate-limit/express-rate-limit
-- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
+- express@5.2.1 — MIT — https://github.com/expressjs/express
- extend-shallow@2.0.1 — MIT — https://github.com/jonschlinkert/extend-shallow
+- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
- fast-deep-equal@3.1.3 — MIT — https://github.com/epoberezkin/fast-deep-equal
- fast-equals@5.4.1 — MIT — https://github.com/planttheidea/fast-equals
- fast-uri@3.1.4 — BSD-3-Clause — https://github.com/fastify/fast-uri
- fb-dotslash@0.5.8 — (MIT OR Apache-2.0) — https://github.com/facebook/dotslash
- fb-watchman@2.0.2 — Apache-2.0 — https://github.com/facebook/watchman
-- fbjs@3.0.5 — MIT — https://github.com/facebook/fbjs
- fbjs-css-vars@1.0.2 — MIT — https://github.com/facebook/fbjs
+- fbjs@3.0.5 — MIT — https://github.com/facebook/fbjs
- fdir@6.5.0 — MIT — https://github.com/thecodrr/fdir
- fetch-blob@3.2.0 — MIT — https://github.com/node-fetch/fetch-blob
- fetch-nodeshim@0.4.10 — MIT — https://github.com/kitten/fetch-nodeshim
@@ -5040,8 +5043,8 @@ SECTION 2: npm packages (1316 packages)
- has-tostringtag@1.0.2 — MIT — https://github.com/inspect-js/has-tostringtag
- hasown@2.0.4 — MIT — https://github.com/inspect-js/hasOwn
- hast-util-from-dom@5.0.1 — ISC — https://github.com/syntax-tree/hast-util-from-dom
-- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-html-isomorphic@2.0.0 — MIT — https://github.com/syntax-tree/hast-util-from-html-isomorphic
+- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-parse5@8.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-parse5
- hast-util-heading-rank@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-heading-rank
- hast-util-is-element@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-is-element
@@ -5146,19 +5149,18 @@ SECTION 2: npm packages (1316 packages)
- leven@3.1.0 — MIT — https://github.com/sindresorhus/leven
- lie@3.3.0 — MIT — https://github.com/calvinmetcalf/lie
- lighthouse-logger@1.4.2 — Apache-2.0
-- lightningcss@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-darwin-arm64@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-darwin-x64@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-linux-arm64-gnu@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-linux-x64-gnu@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-win32-arm64-msvc@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lightningcss-win32-x64-msvc@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
-- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
+- lightningcss@1.32.0 — MPL-2.0 — https://github.com/parcel-bundler/lightningcss
- lit-element@4.2.2 — BSD-3-Clause — https://github.com/lit/lit
- lit-html@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
+- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- locate-path@3.0.0 — MIT — https://github.com/sindresorhus/locate-path
- locate-path@5.0.0 — MIT — https://github.com/sindresorhus/locate-path
-- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash-es@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash.debounce@4.0.8 — MIT — https://github.com/lodash/lodash
- lodash.identity@3.0.0 — MIT — https://github.com/lodash/lodash
@@ -5166,6 +5168,7 @@ SECTION 2: npm packages (1316 packages)
- lodash.pickby@4.6.0 — MIT — https://github.com/lodash/lodash
- lodash.snakecase@4.1.1 — MIT — https://github.com/lodash/lodash
- lodash.throttle@4.1.1 — MIT — https://github.com/lodash/lodash
+- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- log-symbols@2.2.0 — MIT — https://github.com/sindresorhus/log-symbols
- long@5.3.2 — Apache-2.0 — https://github.com/dcodeIO/long.js
- longest-streak@3.1.0 — MIT — https://github.com/wooorm/longest-streak
@@ -5175,8 +5178,8 @@ SECTION 2: npm packages (1316 packages)
- lru-cache@10.4.3 — ISC — https://github.com/isaacs/node-lru-cache
- lru-cache@11.5.2 — BlueOak-1.0.0 — https://github.com/isaacs/node-lru-cache
- lru-cache@5.1.1 — ISC — https://github.com/isaacs/node-lru-cache
-- lucide-react@0.468.0 — ISC — https://github.com/lucide-icons/lucide
- lucide-react-native@0.468.0 — ISC — https://github.com/lucide-icons/lucide
+- lucide-react@0.468.0 — ISC — https://github.com/lucide-icons/lucide
- magic-bytes.js@1.13.0 — MIT — https://github.com/LarsKoelpin/magic-bytes
- make-dir@3.1.0 — MIT — https://github.com/sindresorhus/make-dir
- makeerror@1.0.12 — BSD-3-Clause — https://github.com/daaku/nodejs-makeerror
@@ -5187,20 +5190,20 @@ SECTION 2: npm packages (1316 packages)
- md5@2.3.0 — BSD-3-Clause — https://github.com/pvorb/node-md5
- mdast-util-find-and-replace@3.0.2 — MIT — https://github.com/syntax-tree/mdast-util-find-and-replace
- mdast-util-from-markdown@2.0.3 — MIT — https://github.com/syntax-tree/mdast-util-from-markdown
-- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-gfm-autolink-literal@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-gfm-autolink-literal
- mdast-util-gfm-footnote@2.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-footnote
- mdast-util-gfm-strikethrough@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-strikethrough
- mdast-util-gfm-table@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-table
- mdast-util-gfm-task-list-item@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-task-list-item
+- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-math@3.0.0 — MIT — https://github.com/syntax-tree/mdast-util-math
- mdast-util-mdx-expression@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdx-expression
- mdast-util-mdx-jsx@3.2.0 — MIT — https://github.com/syntax-tree/mdast-util-mdx-jsx
- mdast-util-mdxjs-esm@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdxjs-esm
- mdast-util-phrasing@4.1.0 — MIT — https://github.com/syntax-tree/mdast-util-phrasing
- mdast-util-to-hast@13.2.1 — MIT — https://github.com/syntax-tree/mdast-util-to-hast
-- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-markdown-cjk-friendly@1.0.0 — MIT — https://github.com/tats-u/markdown-cjk-friendly
+- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-string@4.0.0 — MIT — https://github.com/syntax-tree/mdast-util-to-string
- mdn-data@2.0.14 — CC0-1.0 — https://github.com/mdn/data
- media-typer@1.1.0 — MIT — https://github.com/jshttp/media-typer
@@ -5210,10 +5213,9 @@ SECTION 2: npm packages (1316 packages)
- merge-options@3.0.4 — MIT — https://github.com/schnittstabil/merge-options
- merge-stream@2.0.0 — MIT — https://github.com/grncdr/merge-stream
- mermaid@11.16.0 — MIT — https://github.com/mermaid-js/mermaid
-- metro@0.84.4 — MIT — https://github.com/facebook/metro
- metro-babel-transformer@0.84.4 — MIT — https://github.com/facebook/metro
-- metro-cache@0.84.4 — MIT — https://github.com/facebook/metro
- metro-cache-key@0.84.4 — MIT — https://github.com/facebook/metro
+- metro-cache@0.84.4 — MIT — https://github.com/facebook/metro
- metro-config@0.84.4 — MIT — https://github.com/facebook/metro
- metro-core@0.84.4 — MIT — https://github.com/facebook/metro
- metro-file-map@0.84.4 — MIT — https://github.com/facebook/metro
@@ -5224,17 +5226,17 @@ SECTION 2: npm packages (1316 packages)
- metro-symbolicate@0.84.4 — MIT — https://github.com/facebook/metro
- metro-transform-plugins@0.84.4 — MIT — https://github.com/facebook/metro
- metro-transform-worker@0.84.4 — MIT — https://github.com/facebook/metro
-- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
+- metro@0.84.4 — MIT — https://github.com/facebook/metro
- micromark-core-commonmark@2.0.3 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark
-- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-cjk-friendly-util@3.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
-- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
+- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-gfm-autolink-literal@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-autolink-literal
- micromark-extension-gfm-footnote@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-footnote
- micromark-extension-gfm-strikethrough@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-strikethrough
- micromark-extension-gfm-table@2.1.1 — MIT — https://github.com/micromark/micromark-extension-gfm-table
- micromark-extension-gfm-tagfilter@2.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm-tagfilter
- micromark-extension-gfm-task-list-item@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-task-list-item
+- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
- micromark-extension-math@3.1.0 — MIT — https://github.com/micromark/micromark-extension-math
- micromark-factory-destination@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination
- micromark-factory-label@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label
@@ -5255,12 +5257,13 @@ SECTION 2: npm packages (1316 packages)
- micromark-util-subtokenize@2.1.0 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize
- micromark-util-symbol@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol
- micromark-util-types@2.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-types
+- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- micromatch@4.0.8 — MIT — https://github.com/micromatch/micromatch
-- mime@1.6.0 — MIT — https://github.com/broofa/node-mime
- mime-db@1.52.0 — MIT — https://github.com/jshttp/mime-db
- mime-db@1.54.0 — MIT — https://github.com/jshttp/mime-db
- mime-types@2.1.35 — MIT — https://github.com/jshttp/mime-types
- mime-types@3.0.2 — MIT — https://github.com/jshttp/mime-types
+- mime@1.6.0 — MIT — https://github.com/broofa/node-mime
- mimic-fn@1.2.0 — MIT — https://github.com/sindresorhus/mimic-fn
- mimic-fn@2.1.0 — MIT — https://github.com/sindresorhus/mimic-fn
- mimic-fn@3.1.0 — MIT — https://github.com/sindresorhus/mimic-fn
@@ -5270,9 +5273,9 @@ SECTION 2: npm packages (1316 packages)
- minimatch@9.0.9 — ISC — https://github.com/isaacs/minimatch
- minimist@1.2.8 — MIT — https://github.com/minimistjs/minimist
- minipass@7.1.3 — BlueOak-1.0.0 — https://github.com/isaacs/minipass
+- mkdirp-classic@0.5.3 — MIT — https://github.com/mafintosh/mkdirp-classic
- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mkdirp@1.0.4 — MIT — https://github.com/isaacs/node-mkdirp
-- mkdirp-classic@0.5.3 — MIT — https://github.com/mafintosh/mkdirp-classic
- mri@1.2.0 — MIT — https://github.com/lukeed/mri
- ms@2.0.0 — MIT — https://github.com/zeit/ms
- ms@2.1.3 — MIT — https://github.com/vercel/ms
@@ -5342,16 +5345,16 @@ SECTION 2: npm packages (1316 packages)
- pngjs@5.0.0 — MIT — https://github.com/lukeapage/pngjs
- points-on-curve@0.2.0 — MIT — https://github.com/pshihn/bezier-points
- points-on-path@0.2.1 — MIT — https://github.com/pshihn/points-on-path
-- postcss@8.5.19 — MIT — https://github.com/postcss/postcss
- postcss-value-parser@4.2.0 — MIT — https://github.com/TrySound/postcss-value-parser
+- postcss@8.5.19 — MIT — https://github.com/postcss/postcss
- prebuild-install@7.1.3 — MIT — https://github.com/prebuild/prebuild-install
- pretty-format@29.7.0 — MIT — https://github.com/jestjs/jest
- proc-log@4.2.0 — ISC — https://github.com/npm/proc-log
- process-nextick-args@2.0.1 — MIT — https://github.com/calvinmetcalf/process-nextick-args
- progress@2.0.3 — MIT — https://github.com/visionmedia/node-progress
+- promise-worker-transferable@1.0.4 — Apache-2.0 — https://github.com/terikon/promise-worker-transferable
- promise@7.3.1 — MIT — https://github.com/then/promise
- promise@8.3.0 — MIT — https://github.com/then/promise
-- promise-worker-transferable@1.0.4 — Apache-2.0 — https://github.com/terikon/promise-worker-transferable
- prompts@2.4.2 — MIT — https://github.com/terkelg/prompts
- property-information@7.2.0 — MIT — https://github.com/wooorm/property-information
- prosemirror-changeset@2.4.1 — MIT — https://code.haverbeke.berlin/prosemirror/prosemirror-changeset
@@ -5380,7 +5383,6 @@ SECTION 2: npm packages (1316 packages)
- range-parser@1.3.0 — MIT — https://github.com/jshttp/range-parser
- raw-body@3.0.2 — MIT — https://github.com/stream-utils/raw-body
- rc@1.2.8 — (BSD-2-Clause OR MIT OR Apache-2.0) — https://github.com/dominictarr/rc
-- react@19.2.3 — MIT — https://github.com/facebook/react
- react-devtools-core@6.1.5 — MIT — https://github.com/facebook/react
- react-dom@19.2.3 — MIT — https://github.com/facebook/react
- react-fast-compare@3.2.2 — MIT — https://github.com/FormidableLabs/react-fast-compare
@@ -5389,7 +5391,6 @@ SECTION 2: npm packages (1316 packages)
- react-is@18.3.1 — MIT — https://github.com/facebook/react
- react-is@19.2.7 — MIT — https://github.com/facebook/react
- react-markdown@10.1.0 — MIT — https://github.com/remarkjs/react-markdown
-- react-native@0.85.3 — MIT — https://github.com/facebook/react-native
- react-native-drawer-layout@4.2.7 — MIT — https://github.com/react-navigation/react-navigation
- react-native-gesture-handler@3.0.2 — MIT — https://github.com/software-mansion/react-native-gesture-handler
- react-native-is-edge-to-edge@1.3.1 — MIT — https://github.com/zoontek/react-native-edge-to-edge
@@ -5401,17 +5402,19 @@ SECTION 2: npm packages (1316 packages)
- react-native-web@0.21.2 — MIT — https://github.com/necolas/react-native-web
- react-native-webview@13.16.1 — MIT — https://github.com/react-native-webview/react-native-webview
- react-native-worklets@0.8.3 — MIT — https://github.com/software-mansion/react-native-reanimated
+- react-native@0.85.3 — MIT — https://github.com/facebook/react-native
- react-refresh@0.14.2 — MIT — https://github.com/facebook/react
-- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-remove-scroll-bar@2.3.8 — MIT — https://github.com/theKashey/react-remove-scroll-bar
-- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-router-dom@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
- react-style-singleton@2.2.3 — MIT — https://github.com/theKashey/react-style-singleton
+- react@19.2.3 — MIT — https://github.com/facebook/react
- readable-stream@2.3.8 — MIT — https://github.com/nodejs/readable-stream
- readable-stream@3.6.2 — MIT — https://github.com/nodejs/readable-stream
- redent@3.0.0 — MIT — https://github.com/sindresorhus/redent
-- regenerate@1.4.2 — MIT — https://github.com/mathiasbynens/regenerate
- regenerate-unicode-properties@10.2.2 — MIT — https://github.com/mathiasbynens/regenerate-unicode-properties
+- regenerate@1.4.2 — MIT — https://github.com/mathiasbynens/regenerate
- regenerator-runtime@0.13.11 — MIT — https://github.com/facebook/regenerator/tree/main/packages/runtime
- regexpu-core@6.4.0 — MIT — https://github.com/mathiasbynens/regexpu-core
- regjsgen@0.8.0 — MIT — https://github.com/bnjmnt4n/regjsgen
@@ -5428,9 +5431,9 @@ SECTION 2: npm packages (1316 packages)
- require-directory@2.1.1 — MIT — https://github.com/troygoode/node-require-directory
- require-from-string@2.0.2 — MIT — https://github.com/floatdrop/require-from-string
- require-main-filename@2.0.0 — ISC — https://github.com/yargs/require-main-filename
-- resolve@1.22.12 — MIT — ssh://github.com/browserify/resolve
- resolve-from@5.0.0 — MIT — https://github.com/sindresorhus/resolve-from
- resolve-workspace-root@2.0.1 — MIT — https://github.com/byCedric/resolve-workspace-root
+- resolve@1.22.12 — MIT — ssh://github.com/browserify/resolve
- restore-cursor@2.0.0 — MIT — https://github.com/sindresorhus/restore-cursor
- rimraf@5.0.10 — ISC — https://github.com/isaacs/rimraf
- robust-predicates@3.0.3 — Unlicense — https://github.com/mourner/robust-predicates
@@ -5465,10 +5468,10 @@ SECTION 2: npm packages (1316 packages)
- shell-env@4.0.3 — MIT — https://github.com/sindresorhus/shell-env
- shell-path@3.1.0 — MIT — https://github.com/sindresorhus/shell-path
- shell-quote@1.10.0 — MIT — http://github.com/ljharb/shell-quote
-- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- side-channel-list@1.0.1 — MIT — https://github.com/ljharb/side-channel-list
- side-channel-map@1.0.1 — MIT — https://github.com/ljharb/side-channel-map
- side-channel-weakmap@1.0.2 — MIT — https://github.com/ljharb/side-channel-weakmap
+- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- signal-exit@3.0.7 — ISC — https://github.com/tapjs/signal-exit
- signal-exit@4.1.0 — ISC — https://github.com/tapjs/signal-exit
- silk-wasm@3.7.1 — MIT — https://github.com/idranme/silk-wasm
@@ -5481,10 +5484,10 @@ SECTION 2: npm packages (1316 packages)
- slugify@1.6.9 — MIT — https://github.com/simov/slugify
- smol-toml@1.7.0 — BSD-3-Clause — https://github.com/squirrelchat/smol-toml
- sortablejs@1.15.7 — MIT — https://github.com/SortableJS/Sortable
-- source-map@0.5.7 — BSD-3-Clause — http://github.com/mozilla/source-map
-- source-map@0.6.1 — BSD-3-Clause — http://github.com/mozilla/source-map
- source-map-js@1.2.1 — BSD-3-Clause — https://github.com/7rulnik/source-map-js
- source-map-support@0.5.21 — MIT — https://github.com/evanw/node-source-map-support
+- source-map@0.5.7 — BSD-3-Clause — http://github.com/mozilla/source-map
+- source-map@0.6.1 — BSD-3-Clause — http://github.com/mozilla/source-map
- space-separated-tokens@2.0.2 — MIT — https://github.com/wooorm/space-separated-tokens
- split-on-first@1.1.0 — MIT — https://github.com/sindresorhus/split-on-first
- sprintf-js@1.0.3 — BSD-3-Clause — https://github.com/alexei/sprintf.js
@@ -5548,9 +5551,9 @@ SECTION 2: npm packages (1316 packages)
- type-is@2.1.0 — MIT — https://github.com/jshttp/type-is
- typebox@1.1.39 — MIT — https://github.com/sinclairzx81/typebox
- ua-parser-js@1.0.41 — MIT — https://github.com/faisalman/ua-parser-js
+- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- undici@6.27.0 — MIT — https://github.com/nodejs/undici
- undici@8.7.0 — MIT — https://github.com/nodejs/undici
-- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- unicode-canonical-property-names-ecmascript@2.0.1 — MIT — https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript
- unicode-match-property-ecmascript@2.0.0 — MIT — https://github.com/mathiasbynens/unicode-match-property-ecmascript
- unicode-match-property-value-ecmascript@2.2.1 — MIT — https://github.com/mathiasbynens/unicode-match-property-value-ecmascript
@@ -5561,8 +5564,8 @@ SECTION 2: npm packages (1316 packages)
- unist-util-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-position
- unist-util-remove-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-remove-position
- unist-util-stringify-position@4.0.0 — MIT — https://github.com/syntax-tree/unist-util-stringify-position
-- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- unist-util-visit-parents@6.0.2 — MIT — https://github.com/syntax-tree/unist-util-visit-parents
+- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- universalify@2.0.1 — MIT — https://github.com/RyanZim/universalify
- unpipe@1.0.0 — MIT — https://github.com/stream-utils/unpipe
- update-browserslist-db@1.2.3 — MIT — https://github.com/browserslist/update-db
@@ -5579,9 +5582,9 @@ SECTION 2: npm packages (1316 packages)
- validate-npm-package-name@5.0.1 — ISC — https://github.com/npm/validate-npm-package-name
- vary@1.1.2 — MIT — https://github.com/jshttp/vary
- vaul@1.1.2 — MIT — https://github.com/emilkowalski/vaul
-- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- vfile-location@5.0.3 — MIT — https://github.com/vfile/vfile-location
- vfile-message@4.0.3 — MIT — https://github.com/vfile/vfile-message
+- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- vlq@1.0.1 — MIT — https://github.com/Rich-Harris/vlq
- void-elements@3.1.0 — MIT — https://github.com/pugjs/void-elements
- w3c-keyname@2.2.8 — MIT — https://github.com/marijnh/w3c-keyname
@@ -5592,10 +5595,10 @@ SECTION 2: npm packages (1316 packages)
- web-streams-polyfill@3.3.3 — MIT — https://github.com/MattiasBuelens/web-streams-polyfill
- webidl-conversions@3.0.1 — BSD-2-Clause — https://github.com/jsdom/webidl-conversions
- whatwg-fetch@3.6.20 — MIT — https://github.com/github/fetch
-- whatwg-url@5.0.0 — MIT — https://github.com/jsdom/whatwg-url
- whatwg-url-minimum@0.1.2 — MIT — https://github.com/kitten/whatwg-url-minimum
-- which@2.0.2 — ISC — https://github.com/isaacs/node-which
+- whatwg-url@5.0.0 — MIT — https://github.com/jsdom/whatwg-url
- which-module@2.0.1 — ISC — https://github.com/nexdrew/which-module
+- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- workerpool@9.1.1 — Apache-2.0 — https://github.com/josdejong/workerpool
- wrap-ansi@6.2.0 — MIT — https://github.com/chalk/wrap-ansi
- wrap-ansi@7.0.0 — MIT — https://github.com/chalk/wrap-ansi
@@ -5611,12 +5614,12 @@ SECTION 2: npm packages (1316 packages)
- y18n@5.0.8 — ISC — https://github.com/yargs/y18n
- yallist@3.1.1 — ISC — https://github.com/isaacs/yallist
- yaml@2.9.0 — ISC — https://github.com/eemeli/yaml
-- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
-- yargs@17.7.3 — MIT — https://github.com/yargs/yargs
- yargs-parser@18.1.3 — ISC — https://github.com/yargs/yargs-parser
- yargs-parser@21.1.1 — ISC — https://github.com/yargs/yargs-parser
-- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
+- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
+- yargs@17.7.3 — MIT — https://github.com/yargs/yargs
- zod-to-json-schema@3.25.2 — ISC — https://github.com/StefanTerdell/zod-to-json-schema
+- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
- zwitch@2.0.4 — MIT — https://github.com/wooorm/zwitch
==============================================================================
@@ -6210,7 +6213,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[4] Applies to: cargo:anstream@1.0.0, cargo:anstyle@1.0.14, cargo:anstyle-parse@1.0.0, cargo:anstyle-query@1.1.5, cargo:anstyle-wincon@3.0.11, cargo:clap@4.6.1, cargo:clap_builder@4.6.0, cargo:clap_derive@4.6.1, cargo:clap_lex@1.1.0, cargo:colorchoice@1.0.5, cargo:is_terminal_polyfill@1.70.2, cargo:once_cell_polyfill@1.70.2, cargo:serde_spanned@1.1.1, cargo:toml@1.1.2+spec-1.1.0, cargo:toml_datetime@1.1.1+spec-1.1.0, cargo:toml_parser@1.1.2+spec-1.1.0, cargo:toml_writer@1.1.1+spec-1.1.0
+[4] Applies to: cargo:anstream@1.0.0, cargo:anstyle-parse@1.0.0, cargo:anstyle-query@1.1.5, cargo:anstyle-wincon@3.0.11, cargo:anstyle@1.0.14, cargo:clap_builder@4.6.0, cargo:clap_derive@4.6.1, cargo:clap_lex@1.1.0, cargo:clap@4.6.1, cargo:colorchoice@1.0.5, cargo:is_terminal_polyfill@1.70.2, cargo:once_cell_polyfill@1.70.2, cargo:serde_spanned@1.1.1, cargo:toml_datetime@1.1.1+spec-1.1.0, cargo:toml_parser@1.1.2+spec-1.1.0, cargo:toml_writer@1.1.1+spec-1.1.0, cargo:toml@1.1.2+spec-1.1.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -6435,7 +6438,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[5] Applies to: cargo:anyhow@1.0.103, cargo:dtoa@1.0.11, cargo:dyn-clone@1.0.20, cargo:erased-serde@0.4.10, cargo:itoa@1.0.18, cargo:proc-macro2@1.0.106, cargo:quote@1.0.46, cargo:ref-cast@1.0.25, cargo:ref-cast-impl@1.0.25, cargo:rustc-hash@2.1.3, cargo:semver@1.0.28, cargo:serde@1.0.228, cargo:serde_core@1.0.228, cargo:serde_derive@1.0.228, cargo:serde_derive_internals@0.29.1, cargo:serde_json@1.0.150, cargo:serde_repr@0.1.20, cargo:serde-untagged@0.1.9, cargo:syn@2.0.118, cargo:thiserror@1.0.69, cargo:thiserror@2.0.18, cargo:thiserror-impl@1.0.69, cargo:thiserror-impl@2.0.18, cargo:typeid@1.0.3
+[5] Applies to: cargo:anyhow@1.0.103, cargo:dtoa@1.0.11, cargo:dyn-clone@1.0.20, cargo:erased-serde@0.4.10, cargo:itoa@1.0.18, cargo:proc-macro2@1.0.106, cargo:quote@1.0.46, cargo:ref-cast-impl@1.0.25, cargo:ref-cast@1.0.25, cargo:rustc-hash@2.1.3, cargo:semver@1.0.28, cargo:serde_core@1.0.228, cargo:serde_derive_internals@0.29.1, cargo:serde_derive@1.0.228, cargo:serde_json@1.0.150, cargo:serde_repr@0.1.20, cargo:serde-untagged@0.1.9, cargo:serde@1.0.228, cargo:syn@2.0.118, cargo:thiserror-impl@1.0.69, cargo:thiserror-impl@2.0.18, cargo:thiserror@1.0.69, cargo:thiserror@2.0.18, cargo:typeid@1.0.3
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -7097,7 +7100,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[8] Applies to: cargo:bitflags@1.3.2, cargo:bitflags@2.13.0, cargo:glob@0.3.3, cargo:log@0.4.33, cargo:num-traits@0.2.19, cargo:regex@1.13.0, cargo:regex-automata@0.4.15, cargo:regex-syntax@0.8.11
+[8] Applies to: cargo:bitflags@1.3.2, cargo:bitflags@2.13.0, cargo:glob@0.3.3, cargo:log@0.4.33, cargo:num-traits@0.2.19, cargo:regex-automata@0.4.15, cargo:regex-syntax@0.8.11, cargo:regex@1.13.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -11184,7 +11187,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[28] Applies to: cargo:cssparser@0.36.0, cargo:cssparser-macros@0.6.1, cargo:dtoa-short@0.3.5
+[28] Applies to: cargo:cssparser-macros@0.6.1, cargo:cssparser@0.36.0, cargo:dtoa-short@0.3.5
------------------------------------------------------------------------------
Mozilla Public License Version 2.0
==================================
@@ -11561,7 +11564,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[29] Applies to: cargo:ctor@0.8.0, cargo:ctor-proc-macro@0.0.7, cargo:dtor@0.3.0, cargo:dtor-proc-macro@0.0.6
+[29] Applies to: cargo:ctor-proc-macro@0.0.7, cargo:ctor@0.8.0, cargo:dtor-proc-macro@0.0.6, cargo:dtor@0.3.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -11772,7 +11775,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[30] Applies to: cargo:darling@0.23.0, cargo:darling_core@0.23.0, cargo:darling_macro@0.23.0
+[30] Applies to: cargo:darling_core@0.23.0, cargo:darling_macro@0.23.0, cargo:darling@0.23.0
------------------------------------------------------------------------------
MIT License
@@ -12022,7 +12025,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[32] Applies to: cargo:derive_more@2.1.1, cargo:derive_more-impl@2.1.1
+[32] Applies to: cargo:derive_more-impl@2.1.1, cargo:derive_more@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12278,7 +12281,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[34] Applies to: cargo:dirs@6.0.0, cargo:dirs-sys@0.5.0
+[34] Applies to: cargo:dirs-sys@0.5.0, cargo:dirs@6.0.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -12889,7 +12892,7 @@ express Statement of Purpose.
this CC0 or use of the Work.
------------------------------------------------------------------------------
-[38] Applies to: cargo:either@1.16.0, cargo:serde_with@3.21.0, cargo:serde_with_macros@3.21.0
+[38] Applies to: cargo:either@1.16.0, cargo:serde_with_macros@3.21.0, cargo:serde_with@3.21.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -15937,7 +15940,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[54] Applies to: cargo:icu_collections@2.2.0, cargo:icu_locale_core@2.2.0, cargo:icu_normalizer@2.2.0, cargo:icu_normalizer_data@2.2.0, cargo:icu_properties@2.2.0, cargo:icu_properties_data@2.2.0, cargo:icu_provider@2.2.0, cargo:litemap@0.8.2, cargo:potential_utf@0.1.5, cargo:tinystr@0.8.3, cargo:writeable@0.6.3, cargo:yoke@0.8.3, cargo:yoke-derive@0.8.2, cargo:zerofrom@0.1.8, cargo:zerofrom-derive@0.1.7, cargo:zerotrie@0.2.4, cargo:zerovec@0.11.6, cargo:zerovec-derive@0.11.3
+[54] Applies to: cargo:icu_collections@2.2.0, cargo:icu_locale_core@2.2.0, cargo:icu_normalizer_data@2.2.0, cargo:icu_normalizer@2.2.0, cargo:icu_properties_data@2.2.0, cargo:icu_properties@2.2.0, cargo:icu_provider@2.2.0, cargo:litemap@0.8.2, cargo:potential_utf@0.1.5, cargo:tinystr@0.8.3, cargo:writeable@0.6.3, cargo:yoke-derive@0.8.2, cargo:yoke@0.8.3, cargo:zerofrom-derive@0.1.7, cargo:zerofrom@0.1.8, cargo:zerotrie@0.2.4, cargo:zerovec-derive@0.11.3, cargo:zerovec@0.11.6
------------------------------------------------------------------------------
UNICODE LICENSE V3
@@ -16010,7 +16013,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[56] Applies to: cargo:idna@1.1.0, cargo:percent-encoding@2.3.2, cargo:url@2.5.8
+[56] Applies to: cargo:idna_adapter@1.2.2
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -16214,7 +16217,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-Copyright (c) 2013-2025 The rust-url developers
+Copyright (c) The rust-url developers
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
@@ -16241,7 +16244,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[57] Applies to: cargo:idna_adapter@1.2.2
+[57] Applies to: cargo:idna@1.1.0, cargo:percent-encoding@2.3.2, cargo:url@2.5.8
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -16445,7 +16448,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-Copyright (c) The rust-url developers
+Copyright (c) 2013-2025 The rust-url developers
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
@@ -17613,7 +17616,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[64] Applies to: cargo:lock_api@0.4.14, cargo:parking_lot@0.12.5, cargo:parking_lot_core@0.9.12
+[64] Applies to: cargo:lock_api@0.4.14, cargo:parking_lot_core@0.9.12, cargo:parking_lot@0.12.5
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -19675,7 +19678,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[75] Applies to: cargo:phf@0.13.1, cargo:phf_generator@0.13.1, cargo:phf_macros@0.13.1, cargo:phf_shared@0.13.1
+[75] Applies to: cargo:phf_generator@0.13.1, cargo:phf_macros@0.13.1, cargo:phf_shared@0.13.1, cargo:phf@0.13.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -20648,7 +20651,7 @@ Permission is granted to anyone to use this software for any purpose, including
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
-[83] Applies to: cargo:rayon@1.12.0, cargo:rayon-core@1.13.0
+[83] Applies to: cargo:rayon-core@1.13.0, cargo:rayon@1.12.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -20933,7 +20936,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[85] Applies to: cargo:schemars@0.8.22, cargo:schemars@0.9.0, cargo:schemars@1.2.1, cargo:schemars_derive@0.8.22
+[85] Applies to: cargo:schemars_derive@0.8.22, cargo:schemars@0.8.22, cargo:schemars@0.9.0, cargo:schemars@1.2.1
------------------------------------------------------------------------------
MIT License
@@ -21189,7 +21192,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[87] Applies to: cargo:serialize-to-javascript@0.1.2, cargo:serialize-to-javascript-impl@0.1.2
+[87] Applies to: cargo:serialize-to-javascript-impl@0.1.2, cargo:serialize-to-javascript@0.1.2
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -23121,7 +23124,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[100] Applies to: cargo:time@0.3.53, cargo:time-core@0.1.9, cargo:time-macros@0.2.31
+[100] Applies to: cargo:time-core@0.1.9, cargo:time-macros@0.2.31, cargo:time@0.3.53
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -23321,7 +23324,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[101] Applies to: cargo:tinyvec@1.12.0
+[101] Applies to: cargo:tinyvec_macros@0.1.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -23511,7 +23514,7 @@ Apache License
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright [yyyy] [name of copyright owner]
+ Copyright 2020 Tomasz "Soveu" Marx
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -23525,26 +23528,50 @@ Apache License
See the License for the specific language governing permissions and
limitations under the License.
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+MIT License
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+Copyright (c) 2020 Soveu
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-Copyright (c) 2019 Daniel "Lokathor" Gee.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
-This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
-Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
+zlib License
-1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+(C) 2020 Tomasz "Soveu" Marx
-2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
-[102] Applies to: cargo:tinyvec_macros@0.1.1
+[102] Applies to: cargo:tinyvec@1.12.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -23734,7 +23761,7 @@ Apache License
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright 2020 Tomasz "Soveu" Marx
+ Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -23748,46 +23775,22 @@ Apache License
See the License for the specific language governing permissions and
limitations under the License.
-MIT License
-
-Copyright (c) 2020 Soveu
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+Copyright (c) 2019 Daniel "Lokathor" Gee.
-zlib License
+This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
-(C) 2020 Tomasz "Soveu" Marx
+Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
-2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
@@ -23816,7 +23819,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[104] Applies to: cargo:tracing@0.1.44, cargo:tracing-core@0.1.36
+[104] Applies to: cargo:tracing-core@0.1.36, cargo:tracing@0.1.44
------------------------------------------------------------------------------
Copyright (c) 2019 Tokio Contributors
@@ -25731,7 +25734,7 @@ PackageDownloadLocation: git+ssh://github.com/tauri-apps/window-vibrancy.git
Creator: Person: Daniel Thompson-Yvetot
------------------------------------------------------------------------------
-[114] Applies to: cargo:windows@0.57.0, cargo:windows@0.61.3, cargo:windows_x86_64_msvc@0.52.6, cargo:windows-collections@0.2.0, cargo:windows-core@0.57.0, cargo:windows-core@0.61.2, cargo:windows-future@0.2.1, cargo:windows-implement@0.57.0, cargo:windows-implement@0.60.2, cargo:windows-interface@0.57.0, cargo:windows-interface@0.59.3, cargo:windows-link@0.1.3, cargo:windows-link@0.2.1, cargo:windows-numerics@0.2.0, cargo:windows-result@0.1.2, cargo:windows-result@0.3.4, cargo:windows-strings@0.4.2, cargo:windows-sys@0.59.0, cargo:windows-sys@0.61.2, cargo:windows-targets@0.52.6, cargo:windows-threading@0.1.0, cargo:windows-version@0.1.7
+[114] Applies to: cargo:windows_x86_64_msvc@0.52.6, cargo:windows-collections@0.2.0, cargo:windows-core@0.57.0, cargo:windows-core@0.61.2, cargo:windows-future@0.2.1, cargo:windows-implement@0.57.0, cargo:windows-implement@0.60.2, cargo:windows-interface@0.57.0, cargo:windows-interface@0.59.3, cargo:windows-link@0.1.3, cargo:windows-link@0.2.1, cargo:windows-numerics@0.2.0, cargo:windows-result@0.1.2, cargo:windows-result@0.3.4, cargo:windows-strings@0.4.2, cargo:windows-sys@0.59.0, cargo:windows-sys@0.61.2, cargo:windows-targets@0.52.6, cargo:windows-threading@0.1.0, cargo:windows-version@0.1.7, cargo:windows@0.57.0, cargo:windows@0.61.3
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -26511,7 +26514,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[122] Applies to: npm:@babel/code-frame@7.29.7, npm:@babel/compat-data@7.29.7, npm:@babel/core@7.29.7, npm:@babel/generator@7.29.7, npm:@babel/helper-annotate-as-pure@7.29.7, npm:@babel/helper-compilation-targets@7.29.7, npm:@babel/helper-create-class-features-plugin@7.29.7, npm:@babel/helper-create-regexp-features-plugin@7.29.7, npm:@babel/helper-globals@7.29.7, npm:@babel/helper-member-expression-to-functions@7.29.7, npm:@babel/helper-module-imports@7.29.7, npm:@babel/helper-module-transforms@7.29.7, npm:@babel/helper-optimise-call-expression@7.29.7, npm:@babel/helper-plugin-utils@7.29.7, npm:@babel/helper-remap-async-to-generator@7.29.7, npm:@babel/helper-replace-supers@7.29.7, npm:@babel/helper-skip-transparent-expression-wrappers@7.29.7, npm:@babel/helper-string-parser@7.29.7, npm:@babel/helper-validator-identifier@7.29.7, npm:@babel/helper-validator-option@7.29.7, npm:@babel/helper-wrap-function@7.29.7, npm:@babel/plugin-proposal-decorators@7.29.7, npm:@babel/plugin-proposal-export-default-from@7.29.7, npm:@babel/plugin-syntax-decorators@7.29.7, npm:@babel/plugin-syntax-dynamic-import@7.8.3, npm:@babel/plugin-syntax-export-default-from@7.29.7, npm:@babel/plugin-syntax-flow@7.29.7, npm:@babel/plugin-syntax-jsx@7.29.7, npm:@babel/plugin-syntax-nullish-coalescing-operator@7.8.3, npm:@babel/plugin-syntax-optional-chaining@7.8.3, npm:@babel/plugin-syntax-typescript@7.29.7, npm:@babel/plugin-transform-arrow-functions@7.29.7, npm:@babel/plugin-transform-async-generator-functions@7.29.7, npm:@babel/plugin-transform-async-to-generator@7.29.7, npm:@babel/plugin-transform-block-scoping@7.29.7, npm:@babel/plugin-transform-class-properties@7.29.7, npm:@babel/plugin-transform-class-static-block@7.29.7, npm:@babel/plugin-transform-classes@7.29.7, npm:@babel/plugin-transform-destructuring@7.29.7, npm:@babel/plugin-transform-export-namespace-from@7.29.7, npm:@babel/plugin-transform-flow-strip-types@7.29.7, npm:@babel/plugin-transform-for-of@7.29.7, npm:@babel/plugin-transform-logical-assignment-operators@7.29.7, npm:@babel/plugin-transform-modules-commonjs@7.29.7, npm:@babel/plugin-transform-named-capturing-groups-regex@7.29.7, npm:@babel/plugin-transform-nullish-coalescing-operator@7.29.7, npm:@babel/plugin-transform-object-rest-spread@7.29.7, npm:@babel/plugin-transform-optional-catch-binding@7.29.7, npm:@babel/plugin-transform-optional-chaining@7.29.7, npm:@babel/plugin-transform-parameters@7.29.7, npm:@babel/plugin-transform-private-methods@7.29.7, npm:@babel/plugin-transform-private-property-in-object@7.29.7, npm:@babel/plugin-transform-react-display-name@7.29.7, npm:@babel/plugin-transform-react-jsx@7.29.7, npm:@babel/plugin-transform-react-jsx-development@7.29.7, npm:@babel/plugin-transform-react-pure-annotations@7.29.7, npm:@babel/plugin-transform-runtime@7.29.7, npm:@babel/plugin-transform-shorthand-properties@7.29.7, npm:@babel/plugin-transform-template-literals@7.29.7, npm:@babel/plugin-transform-typescript@7.29.7, npm:@babel/plugin-transform-unicode-regex@7.29.7, npm:@babel/preset-typescript@7.29.7, npm:@babel/runtime@7.29.7, npm:@babel/template@7.29.7, npm:@babel/traverse@7.29.7, npm:@babel/types@7.29.7
+[122] Applies to: npm:@babel/code-frame@7.29.7, npm:@babel/compat-data@7.29.7, npm:@babel/core@7.29.7, npm:@babel/generator@7.29.7, npm:@babel/helper-annotate-as-pure@7.29.7, npm:@babel/helper-compilation-targets@7.29.7, npm:@babel/helper-create-class-features-plugin@7.29.7, npm:@babel/helper-create-regexp-features-plugin@7.29.7, npm:@babel/helper-globals@7.29.7, npm:@babel/helper-member-expression-to-functions@7.29.7, npm:@babel/helper-module-imports@7.29.7, npm:@babel/helper-module-transforms@7.29.7, npm:@babel/helper-optimise-call-expression@7.29.7, npm:@babel/helper-plugin-utils@7.29.7, npm:@babel/helper-remap-async-to-generator@7.29.7, npm:@babel/helper-replace-supers@7.29.7, npm:@babel/helper-skip-transparent-expression-wrappers@7.29.7, npm:@babel/helper-string-parser@7.29.7, npm:@babel/helper-validator-identifier@7.29.7, npm:@babel/helper-validator-option@7.29.7, npm:@babel/helper-wrap-function@7.29.7, npm:@babel/plugin-proposal-decorators@7.29.7, npm:@babel/plugin-proposal-export-default-from@7.29.7, npm:@babel/plugin-syntax-decorators@7.29.7, npm:@babel/plugin-syntax-dynamic-import@7.8.3, npm:@babel/plugin-syntax-export-default-from@7.29.7, npm:@babel/plugin-syntax-flow@7.29.7, npm:@babel/plugin-syntax-jsx@7.29.7, npm:@babel/plugin-syntax-nullish-coalescing-operator@7.8.3, npm:@babel/plugin-syntax-optional-chaining@7.8.3, npm:@babel/plugin-syntax-typescript@7.29.7, npm:@babel/plugin-transform-arrow-functions@7.29.7, npm:@babel/plugin-transform-async-generator-functions@7.29.7, npm:@babel/plugin-transform-async-to-generator@7.29.7, npm:@babel/plugin-transform-block-scoping@7.29.7, npm:@babel/plugin-transform-class-properties@7.29.7, npm:@babel/plugin-transform-class-static-block@7.29.7, npm:@babel/plugin-transform-classes@7.29.7, npm:@babel/plugin-transform-destructuring@7.29.7, npm:@babel/plugin-transform-export-namespace-from@7.29.7, npm:@babel/plugin-transform-flow-strip-types@7.29.7, npm:@babel/plugin-transform-for-of@7.29.7, npm:@babel/plugin-transform-logical-assignment-operators@7.29.7, npm:@babel/plugin-transform-modules-commonjs@7.29.7, npm:@babel/plugin-transform-named-capturing-groups-regex@7.29.7, npm:@babel/plugin-transform-nullish-coalescing-operator@7.29.7, npm:@babel/plugin-transform-object-rest-spread@7.29.7, npm:@babel/plugin-transform-optional-catch-binding@7.29.7, npm:@babel/plugin-transform-optional-chaining@7.29.7, npm:@babel/plugin-transform-parameters@7.29.7, npm:@babel/plugin-transform-private-methods@7.29.7, npm:@babel/plugin-transform-private-property-in-object@7.29.7, npm:@babel/plugin-transform-react-display-name@7.29.7, npm:@babel/plugin-transform-react-jsx-development@7.29.7, npm:@babel/plugin-transform-react-jsx@7.29.7, npm:@babel/plugin-transform-react-pure-annotations@7.29.7, npm:@babel/plugin-transform-runtime@7.29.7, npm:@babel/plugin-transform-shorthand-properties@7.29.7, npm:@babel/plugin-transform-template-literals@7.29.7, npm:@babel/plugin-transform-typescript@7.29.7, npm:@babel/plugin-transform-unicode-regex@7.29.7, npm:@babel/preset-typescript@7.29.7, npm:@babel/runtime@7.29.7, npm:@babel/template@7.29.7, npm:@babel/traverse@7.29.7, npm:@babel/types@7.29.7
------------------------------------------------------------------------------
MIT License
@@ -27893,7 +27896,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[136] Applies to: npm:@expo/cli@56.1.20, npm:@expo/config@56.0.12, npm:@expo/config-plugins@56.0.13, npm:@expo/devtools@56.0.2, npm:@expo/dom-webview@56.0.6, npm:@expo/expo-modules-macros-plugin@0.2.2, npm:@expo/fingerprint@0.19.8, npm:@expo/image-utils@0.10.3, npm:@expo/image-utils@0.10.4, npm:@expo/inline-modules@0.0.14, npm:@expo/json-file@10.2.0, npm:@expo/json-file@11.0.1, npm:@expo/local-build-cache-provider@56.0.10, npm:@expo/log-box@56.0.14, npm:@expo/metro-config@56.0.17, npm:@expo/metro-file-map@56.0.3, npm:@expo/metro-runtime@56.0.17, npm:@expo/osascript@2.7.1, npm:@expo/package-manager@1.13.1, npm:@expo/plist@0.7.0, npm:@expo/prebuild-config@56.0.20, npm:@expo/router-server@56.0.16, npm:babel-preset-expo@56.0.17, npm:expo@56.0.16, npm:expo-apple-authentication@56.0.4, npm:expo-application@56.0.3, npm:expo-asset@56.0.20, npm:expo-audio@56.0.12, npm:expo-auth-session@56.0.15, npm:expo-blur@56.0.4, npm:expo-build-properties@56.0.23, npm:expo-clipboard@56.0.4, npm:expo-constants@56.0.21, npm:expo-constants@56.0.22, npm:expo-crypto@56.0.4, npm:expo-document-picker@56.0.4, npm:expo-eas-client@56.0.1, npm:expo-file-system@56.0.8, npm:expo-font@56.0.7, npm:expo-glass-effect@56.0.4, npm:expo-image@56.0.11, npm:expo-image-loader@56.0.3, npm:expo-image-manipulator@56.0.22, npm:expo-image-picker@56.0.21, npm:expo-keep-awake@56.0.3, npm:expo-linking@56.0.15, npm:expo-localization@56.0.6, npm:expo-manifests@56.0.4, npm:expo-media-library@56.0.9, npm:expo-modules-autolinking@56.0.20, npm:expo-modules-core@56.0.21, npm:expo-modules-jsi@56.0.12, npm:expo-notifications@56.0.22, npm:expo-secure-store@56.0.4, npm:expo-server@56.0.5, npm:expo-sharing@56.0.22, npm:expo-splash-screen@56.0.13, npm:expo-status-bar@56.0.4, npm:expo-symbols@56.0.6, npm:expo-updates-interface@56.0.2, npm:expo-web-browser@56.0.5
+[136] Applies to: npm:@expo/cli@56.1.20, npm:@expo/config-plugins@56.0.13, npm:@expo/config@56.0.12, npm:@expo/devtools@56.0.2, npm:@expo/dom-webview@56.0.6, npm:@expo/expo-modules-macros-plugin@0.2.2, npm:@expo/fingerprint@0.19.8, npm:@expo/image-utils@0.10.3, npm:@expo/image-utils@0.10.4, npm:@expo/inline-modules@0.0.14, npm:@expo/json-file@10.2.0, npm:@expo/json-file@11.0.1, npm:@expo/local-build-cache-provider@56.0.10, npm:@expo/log-box@56.0.14, npm:@expo/metro-config@56.0.17, npm:@expo/metro-file-map@56.0.3, npm:@expo/metro-runtime@56.0.17, npm:@expo/osascript@2.7.1, npm:@expo/package-manager@1.13.1, npm:@expo/plist@0.7.0, npm:@expo/prebuild-config@56.0.20, npm:@expo/router-server@56.0.16, npm:babel-preset-expo@56.0.17, npm:expo-apple-authentication@56.0.4, npm:expo-application@56.0.3, npm:expo-asset@56.0.20, npm:expo-audio@56.0.12, npm:expo-auth-session@56.0.15, npm:expo-blur@56.0.4, npm:expo-build-properties@56.0.23, npm:expo-clipboard@56.0.4, npm:expo-constants@56.0.21, npm:expo-constants@56.0.22, npm:expo-crypto@56.0.4, npm:expo-document-picker@56.0.4, npm:expo-eas-client@56.0.1, npm:expo-file-system@56.0.8, npm:expo-font@56.0.7, npm:expo-glass-effect@56.0.4, npm:expo-image-loader@56.0.3, npm:expo-image-manipulator@56.0.22, npm:expo-image-picker@56.0.21, npm:expo-image@56.0.11, npm:expo-keep-awake@56.0.3, npm:expo-linking@56.0.15, npm:expo-localization@56.0.6, npm:expo-manifests@56.0.4, npm:expo-media-library@56.0.9, npm:expo-modules-autolinking@56.0.20, npm:expo-modules-core@56.0.21, npm:expo-modules-jsi@56.0.12, npm:expo-notifications@56.0.22, npm:expo-secure-store@56.0.4, npm:expo-server@56.0.5, npm:expo-sharing@56.0.22, npm:expo-splash-screen@56.0.13, npm:expo-status-bar@56.0.4, npm:expo-symbols@56.0.6, npm:expo-updates-interface@56.0.2, npm:expo-web-browser@56.0.5, npm:expo@56.0.16
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -28704,7 +28707,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[154] Applies to: npm:@jest/schemas@29.6.3, npm:@jest/types@29.6.3, npm:babel-plugin-syntax-hermes-parser@0.33.3, npm:hermes-estree@0.33.3, npm:hermes-estree@0.35.0, npm:hermes-parser@0.33.3, npm:hermes-parser@0.35.0, npm:jest-get-type@29.6.3, npm:jest-util@29.7.0, npm:jest-validate@29.7.0, npm:jest-worker@29.7.0, npm:pretty-format@29.7.0, npm:react@19.2.3, npm:react-dom@19.2.3, npm:react-is@19.2.7, npm:react-native@0.85.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
+[154] Applies to: npm:@jest/schemas@29.6.3, npm:@jest/types@29.6.3, npm:babel-plugin-syntax-hermes-parser@0.33.3, npm:hermes-estree@0.33.3, npm:hermes-estree@0.35.0, npm:hermes-parser@0.33.3, npm:hermes-parser@0.35.0, npm:jest-get-type@29.6.3, npm:jest-util@29.7.0, npm:jest-validate@29.7.0, npm:jest-worker@29.7.0, npm:pretty-format@29.7.0, npm:react-dom@19.2.3, npm:react-is@19.2.7, npm:react-native@0.85.3, npm:react@19.2.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
------------------------------------------------------------------------------
MIT License
@@ -28962,7 +28965,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[165] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit@3.3.3, npm:lit-element@4.2.2, npm:lit-html@3.3.3
+[165] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit-element@4.2.2, npm:lit-html@3.3.3, npm:lit@3.3.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -29169,7 +29172,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[173] Applies to: npm:@parcel/watcher@2.5.6, npm:@parcel/watcher-darwin-arm64@2.5.6, npm:@parcel/watcher-darwin-x64@2.5.6, npm:@parcel/watcher-linux-arm64-glibc@2.5.6, npm:@parcel/watcher-linux-x64-glibc@2.5.6, npm:@parcel/watcher-win32-arm64@2.5.6, npm:@parcel/watcher-win32-x64@2.5.6
+[173] Applies to: npm:@parcel/watcher-darwin-arm64@2.5.6, npm:@parcel/watcher-darwin-x64@2.5.6, npm:@parcel/watcher-linux-arm64-glibc@2.5.6, npm:@parcel/watcher-linux-x64-glibc@2.5.6, npm:@parcel/watcher-win32-arm64@2.5.6, npm:@parcel/watcher-win32-x64@2.5.6, npm:@parcel/watcher@2.5.6
------------------------------------------------------------------------------
MIT License
@@ -29477,7 +29480,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[185] Applies to: npm:@types/d3@7.4.3, npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale@4.0.9, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time@3.0.4, npm:@types/d3-time-format@4.0.3, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/debug@4.1.13, npm:@types/estree@1.0.9, npm:@types/estree-jsx@1.0.5, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/istanbul-lib-coverage@2.0.6, npm:@types/istanbul-lib-report@3.0.3, npm:@types/istanbul-reports@3.0.4, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/pako@2.0.4, npm:@types/react@19.2.17, npm:@types/react-test-renderer@19.1.0, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1, npm:@types/yargs@17.0.35, npm:@types/yargs-parser@21.0.3
+[185] Applies to: npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-scale@4.0.9, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time-format@4.0.3, npm:@types/d3-time@3.0.4, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/d3@7.4.3, npm:@types/debug@4.1.13, npm:@types/estree-jsx@1.0.5, npm:@types/estree@1.0.9, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/istanbul-lib-coverage@2.0.6, npm:@types/istanbul-lib-report@3.0.3, npm:@types/istanbul-reports@3.0.4, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/pako@2.0.4, npm:@types/react-test-renderer@19.1.0, npm:@types/react@19.2.17, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1, npm:@types/yargs-parser@21.0.3, npm:@types/yargs@17.0.35
------------------------------------------------------------------------------
MIT License
@@ -29809,11 +29812,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[199] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
+[199] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2015-2021 Evgeny Poberezkin
+Copyright (c) 2020 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -29834,11 +29837,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[200] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
+[200] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2020 Evgeny Poberezkin
+Copyright (c) 2015-2021 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -30630,7 +30633,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[217] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities@2.0.2, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
+[217] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-entities@2.0.2, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -31078,7 +31081,48 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[233] Applies to: npm:buffer@5.7.1
+[233] Applies to: npm:buffer-equal-constant-time@1.0.1
+------------------------------------------------------------------------------
+Copyright (c) 2013, GoInstant Inc., a salesforce.com company
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+------------------------------------------------------------------------------
+[234] Applies to: npm:buffer-from@1.1.2
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2016, 2018 Linus Unnebäck
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[235] Applies to: npm:buffer@5.7.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -31102,47 +31146,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-------------------------------------------------------------------------------
-[234] Applies to: npm:buffer-equal-constant-time@1.0.1
-------------------------------------------------------------------------------
-Copyright (c) 2013, GoInstant Inc., a salesforce.com company
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
-* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-------------------------------------------------------------------------------
-[235] Applies to: npm:buffer-from@1.1.2
-------------------------------------------------------------------------------
-MIT License
-
-Copyright (c) 2016, 2018 Linus Unnebäck
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
------------------------------------------------------------------------------
[236] Applies to: npm:buildcheck@0.0.7, npm:cpu-features@0.0.10, npm:ssh2@1.17.0
------------------------------------------------------------------------------
@@ -32213,9 +32216,9 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[250] Applies to: npm:color@4.2.3
+[250] Applies to: npm:color-convert@1.9.3, npm:color-convert@2.0.1
------------------------------------------------------------------------------
-Copyright (c) 2012 Heather Arthur
+Copyright (c) 2011-2016 Heather Arthur
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -32237,9 +32240,21 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[251] Applies to: npm:color-convert@1.9.3, npm:color-convert@2.0.1
+[251] Applies to: npm:color-name@1.1.3, npm:color-name@1.1.4
------------------------------------------------------------------------------
-Copyright (c) 2011-2016 Heather Arthur
+The MIT License (MIT)
+Copyright (c) 2015 Dmitry Ivanov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[252] Applies to: npm:color-string@1.9.1
+------------------------------------------------------------------------------
+Copyright (c) 2011 Heather Arthur
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -32261,21 +32276,9 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[252] Applies to: npm:color-name@1.1.3, npm:color-name@1.1.4
+[253] Applies to: npm:color@4.2.3
------------------------------------------------------------------------------
-The MIT License (MIT)
-Copyright (c) 2015 Dmitry Ivanov
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[253] Applies to: npm:color-string@1.9.1
-------------------------------------------------------------------------------
-Copyright (c) 2011 Heather Arthur
+Copyright (c) 2012 Heather Arthur
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -32508,12 +32511,11 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[262] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
+[262] Applies to: npm:cookie-signature@1.2.2
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012-2014 Roman Shtylman
-Copyright (c) 2015 Douglas Christopher Wilson
+Copyright (c) 2012–2024 LearnBoost and other contributors;
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -32535,11 +32537,12 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[263] Applies to: npm:cookie-signature@1.2.2
+[263] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012–2024 LearnBoost and other contributors;
+Copyright (c) 2012-2014 Roman Shtylman
+Copyright (c) 2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -32795,7 +32798,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[274] Applies to: npm:css.escape@1.5.1, npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:jsesc@3.1.0, npm:punycode@2.3.1, npm:regenerate@1.4.2, npm:regenerate-unicode-properties@10.2.2, npm:regexpu-core@6.4.0, npm:unicode-canonical-property-names-ecmascript@2.0.1, npm:unicode-match-property-ecmascript@2.0.0, npm:unicode-match-property-value-ecmascript@2.2.1, npm:unicode-property-aliases-ecmascript@2.2.0
+[274] Applies to: npm:css.escape@1.5.1, npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:jsesc@3.1.0, npm:punycode@2.3.1, npm:regenerate-unicode-properties@10.2.2, npm:regenerate@1.4.2, npm:regexpu-core@6.4.0, npm:unicode-canonical-property-names-ecmascript@2.0.1, npm:unicode-match-property-ecmascript@2.0.0, npm:unicode-match-property-value-ecmascript@2.2.1, npm:unicode-property-aliases-ecmascript@2.2.0
------------------------------------------------------------------------------
Copyright Mathias Bynens
@@ -32842,9 +32845,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[276] Applies to: npm:cytoscape@3.34.0
+[276] Applies to: npm:cytoscape-cose-bilkent@4.1.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2026, The Cytoscape Consortium.
+Copyright (c) 2016-2018, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -32864,18 +32867,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-import fs from 'fs';
-import path from 'path';
-
-import { fileURLToPath } from 'url';
-import { dirname } from 'path';
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = dirname(__filename);
-
-const year = (new Date()).getFullYear();
-
-const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
+------------------------------------------------------------------------------
+[277] Applies to: npm:cytoscape-fcose@2.2.0
+------------------------------------------------------------------------------
+Copyright (c) 2018 - present, iVis-at-Bilkent.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -32893,14 +32888,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.`;
-
-fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
+SOFTWARE.
------------------------------------------------------------------------------
-[277] Applies to: npm:cytoscape-cose-bilkent@4.1.0
+[278] Applies to: npm:cytoscape@3.34.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2018, The Cytoscape Consortium.
+Copyright (c) 2016-2026, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -32920,10 +32913,18 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[278] Applies to: npm:cytoscape-fcose@2.2.0
-------------------------------------------------------------------------------
-Copyright (c) 2018 - present, iVis-at-Bilkent.
+import fs from 'fs';
+import path from 'path';
+
+import { fileURLToPath } from 'url';
+import { dirname } from 'path';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const year = (new Date()).getFullYear();
+
+const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -32941,27 +32942,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-------------------------------------------------------------------------------
-[279] Applies to: npm:d3@7.9.0, npm:d3-array@3.2.4
-------------------------------------------------------------------------------
-Copyright 2010-2023 Mike Bostock
-
-Permission to use, copy, modify, and/or distribute this software for any purpose
-with or without fee is hereby granted, provided that the above copyright notice
-and this permission notice appear in all copies.
+SOFTWARE.`;
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-THIS SOFTWARE.
+fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
------------------------------------------------------------------------------
-[280] Applies to: npm:d3-array@2.12.1
+[279] Applies to: npm:d3-array@2.12.1
------------------------------------------------------------------------------
Copyright 2010-2020 Mike Bostock
All rights reserved.
@@ -32991,6 +32977,23 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+------------------------------------------------------------------------------
+[280] Applies to: npm:d3-array@3.2.4, npm:d3@7.9.0
+------------------------------------------------------------------------------
+Copyright 2010-2023 Mike Bostock
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
------------------------------------------------------------------------------
[281] Applies to: npm:d3-axis@3.0.0, npm:d3-brush@3.0.0, npm:d3-chord@3.0.1, npm:d3-dispatch@3.0.1, npm:d3-drag@3.0.0, npm:d3-force@3.0.0, npm:d3-hierarchy@3.1.2, npm:d3-interpolate@3.0.1, npm:d3-polygon@3.0.1, npm:d3-quadtree@3.0.1, npm:d3-random@3.0.1, npm:d3-scale@4.0.2, npm:d3-selection@3.0.0, npm:d3-time-format@4.1.0, npm:d3-timer@3.0.1, npm:d3-transition@3.0.1, npm:d3-zoom@3.0.0
------------------------------------------------------------------------------
@@ -33421,7 +33424,7 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[299] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm@3.1.0, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark@4.0.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
+[299] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-gfm@3.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:micromark@4.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -33943,7 +33946,32 @@ THE SOFTWARE.
```
------------------------------------------------------------------------------
-[313] Applies to: npm:discord-api-types@0.38.50
+[313] Applies to: npm:dingtalk-stream@v2.1.5
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2023 钉钉开放平台团队
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[314] Applies to: npm:discord-api-types@0.38.50
------------------------------------------------------------------------------
MIT License
@@ -33968,7 +33996,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[314] Applies to: npm:dnssd-advertise@1.1.6, npm:multitars@1.0.0, npm:toqr@0.1.1
+[315] Applies to: npm:dnssd-advertise@1.1.6, npm:multitars@1.0.0, npm:toqr@0.1.1
------------------------------------------------------------------------------
MIT License
@@ -33994,7 +34022,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[315] Applies to: npm:dom-accessibility-api@0.6.3
+[316] Applies to: npm:dom-accessibility-api@0.6.3
------------------------------------------------------------------------------
MIT License
@@ -34019,7 +34047,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[316] Applies to: npm:dom-serializer@2.0.0
+[317] Applies to: npm:dom-serializer@2.0.0
------------------------------------------------------------------------------
License
@@ -34034,7 +34062,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[317] Applies to: npm:dompurify@3.4.12
+[318] Applies to: npm:dompurify@3.4.12
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -34613,7 +34641,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[318] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
+[319] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -34638,7 +34666,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[319] Applies to: npm:ecdsa-sig-formatter@1.0.11
+[320] Applies to: npm:ecdsa-sig-formatter@1.0.11
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -34843,7 +34871,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[320] Applies to: npm:ee-first@1.1.1
+[321] Applies to: npm:ee-first@1.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -34868,7 +34896,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[321] Applies to: npm:electron-squirrel-startup@1.0.1
+[322] Applies to: npm:electron-squirrel-startup@1.0.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -35073,7 +35101,7 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[322] Applies to: npm:electron-to-chromium@1.5.392
+[323] Applies to: npm:electron-to-chromium@1.5.392
------------------------------------------------------------------------------
Copyright 2018 Kilian Valkhof
@@ -35082,7 +35110,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[323] Applies to: npm:electron-window-state@5.0.3
+[324] Applies to: npm:electron-window-state@5.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -35108,7 +35136,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[324] Applies to: npm:encodeurl@1.0.2, npm:encodeurl@2.0.0
+[325] Applies to: npm:encodeurl@1.0.2, npm:encodeurl@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -35134,7 +35162,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[325] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
+[326] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -35159,7 +35187,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[326] Applies to: npm:error-stack-parser@2.1.4, npm:stackframe@1.3.4
+[327] Applies to: npm:error-stack-parser@2.1.4, npm:stackframe@1.3.4
------------------------------------------------------------------------------
Copyright (c) 2017 Eric Wendelin and other contributors
@@ -35182,7 +35210,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[327] Applies to: npm:es-set-tostringtag@2.1.0
+[328] Applies to: npm:es-set-tostringtag@2.1.0
------------------------------------------------------------------------------
MIT License
@@ -35207,7 +35235,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[328] Applies to: npm:es-toolkit@1.49.0
+[329] Applies to: npm:es-toolkit@1.49.0
------------------------------------------------------------------------------
MIT License
@@ -35232,7 +35260,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[329] Applies to: npm:escape-html@1.0.3
+[330] Applies to: npm:escape-html@1.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -35260,7 +35288,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[330] Applies to: npm:esprima@4.0.1
+[331] Applies to: npm:esprima@4.0.1
------------------------------------------------------------------------------
Copyright JS Foundation and other contributors, https://js.foundation/
@@ -35285,7 +35313,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[331] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-math@3.1.0
+[332] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-math@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -35311,7 +35339,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[332] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
+[333] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
------------------------------------------------------------------------------
(The MIT License)
@@ -35337,7 +35365,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[333] Applies to: npm:event-target-shim@5.0.1
+[334] Applies to: npm:event-target-shim@5.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -35362,33 +35390,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[334] Applies to: npm:eventsource@3.0.7
+[335] Applies to: npm:eventemitter3@5.0.4
------------------------------------------------------------------------------
-The MIT License
+The MIT License (MIT)
-Copyright (c) EventSource GitHub organisation
+Copyright (c) 2014 Arnout Kazemier
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
------------------------------------------------------------------------------
-[335] Applies to: npm:eventsource-parser@3.1.0
+[336] Applies to: npm:eventsource-parser@3.1.0
------------------------------------------------------------------------------
MIT License
@@ -35413,7 +35440,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[336] Applies to: npm:expand-template@2.0.3
+[337] Applies to: npm:eventsource@3.0.7
+------------------------------------------------------------------------------
+The MIT License
+
+Copyright (c) EventSource GitHub organisation
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[338] Applies to: npm:expand-template@2.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -35438,7 +35491,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[337] Applies to: npm:expo-paste-input@0.2.2
+[339] Applies to: npm:expo-paste-input@0.2.2
------------------------------------------------------------------------------
MIT License
@@ -35463,7 +35516,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[338] Applies to: npm:exponential-backoff@3.1.3
+[340] Applies to: npm:exponential-backoff@3.1.3
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -35668,7 +35721,31 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[339] Applies to: npm:express@5.2.1
+[341] Applies to: npm:express-rate-limit@8.5.2
+------------------------------------------------------------------------------
+# MIT License
+
+Copyright 2023 Nathan Friedly, Vedant K
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[342] Applies to: npm:express@5.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -35696,31 +35773,32 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[340] Applies to: npm:express-rate-limit@8.5.2
+[343] Applies to: npm:extend-shallow@2.0.1
------------------------------------------------------------------------------
-# MIT License
+The MIT License (MIT)
-Copyright 2023 Nathan Friedly, Vedant K
+Copyright (c) 2014-2015, Jon Schlinkert.
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
------------------------------------------------------------------------------
-[341] Applies to: npm:extend@3.0.2
+[344] Applies to: npm:extend@3.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -35746,32 +35824,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[342] Applies to: npm:extend-shallow@2.0.1
-------------------------------------------------------------------------------
-The MIT License (MIT)
-
-Copyright (c) 2014-2015, Jon Schlinkert.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[343] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
+[345] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -35796,7 +35849,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[344] Applies to: npm:fast-equals@5.4.1
+[346] Applies to: npm:fast-equals@5.4.1
------------------------------------------------------------------------------
MIT License
@@ -35821,7 +35874,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[345] Applies to: npm:fast-uri@3.1.4
+[347] Applies to: npm:fast-uri@3.1.4
------------------------------------------------------------------------------
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
Copyright (c) 2021-present The Fastify team
@@ -35855,7 +35908,7 @@ The complete list of contributors can be found at:
- https://github.com/garycourt/uri-js/graphs/contributors
------------------------------------------------------------------------------
-[346] Applies to: npm:fbjs@3.0.5, npm:fbjs-css-vars@1.0.2, npm:invariant@2.2.4
+[348] Applies to: npm:fbjs-css-vars@1.0.2, npm:fbjs@3.0.5, npm:invariant@2.2.4
------------------------------------------------------------------------------
MIT License
@@ -35880,7 +35933,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[347] Applies to: npm:fdir@6.5.0
+[349] Applies to: npm:fdir@6.5.0
------------------------------------------------------------------------------
Copyright 2023 Abdullah Atta
@@ -35891,7 +35944,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[348] Applies to: npm:fetch-blob@3.2.0
+[350] Applies to: npm:fetch-blob@3.2.0
------------------------------------------------------------------------------
MIT License
@@ -35916,7 +35969,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[349] Applies to: npm:fetch-nodeshim@0.4.10
+[351] Applies to: npm:fetch-nodeshim@0.4.10
------------------------------------------------------------------------------
MIT License
@@ -35945,7 +35998,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[350] Applies to: npm:file-uri-to-path@1.0.0
+[352] Applies to: npm:file-uri-to-path@1.0.0
------------------------------------------------------------------------------
Copyright (c) 2014 Nathan Rajlich
@@ -35969,7 +36022,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[351] Applies to: npm:finalhandler@1.1.2
+[353] Applies to: npm:finalhandler@1.1.2
------------------------------------------------------------------------------
(The MIT License)
@@ -35995,7 +36048,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[352] Applies to: npm:finalhandler@2.1.1
+[354] Applies to: npm:finalhandler@2.1.1
------------------------------------------------------------------------------
(The MIT License)
@@ -36021,7 +36074,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[353] Applies to: npm:follow-redirects@1.16.0
+[355] Applies to: npm:follow-redirects@1.16.0
------------------------------------------------------------------------------
Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh
@@ -36043,7 +36096,7 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[354] Applies to: npm:fontfaceobserver@2.3.0
+[356] Applies to: npm:fontfaceobserver@2.3.0
------------------------------------------------------------------------------
Copyright (c) 2014 - Bram Stein
@@ -36068,7 +36121,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[355] Applies to: npm:foreground-child@3.3.1
+[357] Applies to: npm:foreground-child@3.3.1
------------------------------------------------------------------------------
The ISC License
@@ -36087,7 +36140,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[356] Applies to: npm:form-data@4.0.6
+[358] Applies to: npm:form-data@4.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
@@ -36110,7 +36163,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
THE SOFTWARE.
------------------------------------------------------------------------------
-[357] Applies to: npm:formdata-polyfill@4.0.10
+[359] Applies to: npm:formdata-polyfill@4.0.10
------------------------------------------------------------------------------
MIT License
@@ -36135,7 +36188,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[358] Applies to: npm:fresh@0.5.2, npm:fresh@2.0.0
+[360] Applies to: npm:fresh@0.5.2, npm:fresh@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -36162,7 +36215,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[359] Applies to: npm:fs-constants@1.0.0
+[361] Applies to: npm:fs-constants@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -36187,7 +36240,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[360] Applies to: npm:fs-extra@11.3.6
+[362] Applies to: npm:fs-extra@11.3.6
------------------------------------------------------------------------------
(The MIT License)
@@ -36206,7 +36259,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[361] Applies to: npm:function-bind@1.1.2
+[363] Applies to: npm:function-bind@1.1.2
------------------------------------------------------------------------------
Copyright (c) 2013 Raynos.
@@ -36229,7 +36282,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[362] Applies to: npm:gensync@1.0.0-beta.2
+[364] Applies to: npm:gensync@1.0.0-beta.2
------------------------------------------------------------------------------
Copyright 2018 Logan Smyth
@@ -36240,7 +36293,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[363] Applies to: npm:get-caller-file@2.0.5
+[365] Applies to: npm:get-caller-file@2.0.5
------------------------------------------------------------------------------
ISC License (ISC)
Copyright 2018 Stefan Penner
@@ -36250,7 +36303,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[364] Applies to: npm:get-intrinsic@1.3.0
+[366] Applies to: npm:get-intrinsic@1.3.0
------------------------------------------------------------------------------
MIT License
@@ -36275,7 +36328,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[365] Applies to: npm:get-nonce@1.0.1
+[367] Applies to: npm:get-nonce@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -36300,7 +36353,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[366] Applies to: npm:get-proto@1.0.1
+[368] Applies to: npm:get-proto@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -36325,7 +36378,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[367] Applies to: npm:getenv@2.0.0
+[369] Applies to: npm:getenv@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2012-2019 Christoph Tavan
@@ -36349,7 +36402,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[368] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
+[370] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
------------------------------------------------------------------------------
This software is released under the MIT license:
@@ -36371,7 +36424,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[369] Applies to: npm:github-slugger@2.0.0
+[371] Applies to: npm:github-slugger@2.0.0
------------------------------------------------------------------------------
Copyright (c) 2015, Dan Flettre
@@ -36380,7 +36433,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[370] Applies to: npm:glob@10.5.0
+[372] Applies to: npm:glob@10.5.0
------------------------------------------------------------------------------
The ISC License
@@ -36399,7 +36452,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[371] Applies to: npm:glob@13.0.6, npm:package-json-from-dist@1.0.1
+[373] Applies to: npm:glob@13.0.6, npm:package-json-from-dist@1.0.1
------------------------------------------------------------------------------
All packages under `src/` are licensed according to the terms in
their respective `LICENSE` or `LICENSE.md` files.
@@ -36466,7 +36519,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[372] Applies to: npm:gopd@1.2.0
+[374] Applies to: npm:gopd@1.2.0
------------------------------------------------------------------------------
MIT License
@@ -36491,7 +36544,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[373] Applies to: npm:graceful-fs@4.2.11
+[375] Applies to: npm:graceful-fs@4.2.11
------------------------------------------------------------------------------
The ISC License
@@ -36510,7 +36563,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[374] Applies to: npm:gray-matter@4.0.3
+[376] Applies to: npm:gray-matter@4.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -36535,7 +36588,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[375] Applies to: npm:gtoken@8.0.0
+[377] Applies to: npm:gtoken@8.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -36560,7 +36613,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[376] Applies to: npm:hachure-fill@0.5.2
+[378] Applies to: npm:hachure-fill@0.5.2
------------------------------------------------------------------------------
MIT License
@@ -36585,7 +36638,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[377] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
+[379] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -36613,7 +36666,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[378] Applies to: npm:has-symbols@1.1.0
+[380] Applies to: npm:has-symbols@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -36638,7 +36691,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[379] Applies to: npm:has-tostringtag@1.0.2
+[381] Applies to: npm:has-tostringtag@1.0.2
------------------------------------------------------------------------------
MIT License
@@ -36663,7 +36716,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[380] Applies to: npm:hasown@2.0.4
+[382] Applies to: npm:hasown@2.0.4
------------------------------------------------------------------------------
MIT License
@@ -36688,7 +36741,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[381] Applies to: npm:hast-util-from-dom@5.0.1
+[383] Applies to: npm:hast-util-from-dom@5.0.1
------------------------------------------------------------------------------
(ISC License)
@@ -36707,11 +36760,11 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[382] Applies to: npm:hast-util-from-html@2.0.3
+[384] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2022 Titus Wormer
+Copyright (c) 2023 Remco Haszing
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -36733,11 +36786,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[383] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
+[385] Applies to: npm:hast-util-from-html@2.0.3
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2023 Remco Haszing
+Copyright (c) 2022 Titus Wormer
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -36759,7 +36812,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[384] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
+[386] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -36784,7 +36837,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[385] Applies to: npm:hast-util-to-text@4.0.2
+[387] Applies to: npm:hast-util-to-text@4.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -36810,7 +36863,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[386] Applies to: npm:highlight.js@11.11.1
+[388] Applies to: npm:highlight.js@11.11.1
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -36843,7 +36896,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[387] Applies to: npm:hono@4.12.30
+[389] Applies to: npm:hono@4.12.30
------------------------------------------------------------------------------
MIT License
@@ -36868,7 +36921,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[388] Applies to: npm:hosted-git-info@7.0.2
+[390] Applies to: npm:hosted-git-info@7.0.2
------------------------------------------------------------------------------
Copyright (c) 2015, Rebecca Turner
@@ -36885,7 +36938,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[389] Applies to: npm:html-to-image@1.11.13
+[391] Applies to: npm:html-to-image@1.11.13
------------------------------------------------------------------------------
MIT License
@@ -36910,7 +36963,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[390] Applies to: npm:http-errors@2.0.1
+[392] Applies to: npm:http-errors@2.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -36936,7 +36989,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[391] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
+[393] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -37141,7 +37194,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[392] Applies to: npm:hyphenate-style-name@1.1.0
+[394] Applies to: npm:hyphenate-style-name@1.1.0
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -37174,7 +37227,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[393] Applies to: npm:i18next@26.3.6
+[395] Applies to: npm:i18next@26.3.6
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37199,7 +37252,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[394] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
+[396] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
------------------------------------------------------------------------------
Copyright (c) 2011 Alexander Shtuchkin
@@ -37223,7 +37276,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[395] Applies to: npm:ieee754@1.2.1
+[397] Applies to: npm:ieee754@1.2.1
------------------------------------------------------------------------------
Copyright 2008 Fair Oaks Labs, Inc.
@@ -37238,7 +37291,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[396] Applies to: npm:ignore@5.3.2, npm:ignore@7.0.6
+[398] Applies to: npm:ignore@5.3.2, npm:ignore@7.0.6
------------------------------------------------------------------------------
Copyright (c) 2013 Kael Zhang , contributors
http://kael.me/
@@ -37263,7 +37316,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[397] Applies to: npm:image-size@1.2.1
+[399] Applies to: npm:image-size@1.2.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37276,7 +37329,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[398] Applies to: npm:immediate@3.0.6
+[400] Applies to: npm:immediate@3.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier
@@ -37300,7 +37353,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[399] Applies to: npm:import-meta-resolve@4.2.0
+[401] Applies to: npm:import-meta-resolve@4.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -37378,7 +37431,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[400] Applies to: npm:inherits@2.0.4
+[402] Applies to: npm:inherits@2.0.4
------------------------------------------------------------------------------
The ISC License
@@ -37397,7 +37450,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[401] Applies to: npm:inline-style-parser@0.2.7
+[403] Applies to: npm:inline-style-parser@0.2.7
------------------------------------------------------------------------------
(The MIT License)
@@ -37410,7 +37463,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[402] Applies to: npm:inline-style-prefixer@7.0.1
+[404] Applies to: npm:inline-style-prefixer@7.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37435,7 +37488,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[403] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
+[405] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
------------------------------------------------------------------------------
Copyright 2021 Mike Bostock
@@ -37452,7 +37505,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[404] Applies to: npm:ip-address@10.2.0
+[406] Applies to: npm:ip-address@10.2.0
------------------------------------------------------------------------------
Copyright (C) 2011 by Beau Gunderson
@@ -37475,7 +37528,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[405] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
+[407] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
------------------------------------------------------------------------------
Copyright (C) 2011-2017 whitequark
@@ -37498,7 +37551,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[406] Applies to: npm:is-arrayish@0.3.4
+[408] Applies to: npm:is-arrayish@0.3.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37523,7 +37576,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[407] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
+[409] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37548,7 +37601,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[408] Applies to: npm:is-core-module@2.16.2
+[410] Applies to: npm:is-core-module@2.16.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37572,7 +37625,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[409] Applies to: npm:is-extendable@0.1.1
+[411] Applies to: npm:is-extendable@0.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37597,7 +37650,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[410] Applies to: npm:is-extglob@2.1.1
+[412] Applies to: npm:is-extglob@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37622,7 +37675,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[411] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
+[413] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37647,7 +37700,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[412] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0, npm:promise@7.3.1, npm:promise@8.3.0
+[414] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0, npm:promise@7.3.1, npm:promise@8.3.0
------------------------------------------------------------------------------
Copyright (c) 2014 Forbes Lindesay
@@ -37670,7 +37723,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[413] Applies to: npm:jackspeak@3.4.3, npm:minimatch@10.2.5
+[415] Applies to: npm:jackspeak@3.4.3, npm:minimatch@10.2.5
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -37729,7 +37782,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim._**
------------------------------------------------------------------------------
-[414] Applies to: npm:jose@6.2.3
+[416] Applies to: npm:jose@6.2.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37754,7 +37807,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[415] Applies to: npm:js-base64@3.9.1
+[417] Applies to: npm:js-base64@3.9.1
------------------------------------------------------------------------------
Copyright (c) 2014, Dan Kogai
All rights reserved.
@@ -37785,7 +37838,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[416] Applies to: npm:js-tokens@4.0.0
+[418] Applies to: npm:js-tokens@4.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37810,7 +37863,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[417] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
+[419] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -37835,7 +37888,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[418] Applies to: npm:jsc-safe-url@0.2.4
+[420] Applies to: npm:jsc-safe-url@0.2.4
------------------------------------------------------------------------------
Zero-Clause BSD
=============
@@ -37852,7 +37905,7 @@ AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[419] Applies to: npm:json-bigint@1.0.0
+[421] Applies to: npm:json-bigint@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -37876,7 +37929,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[420] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
+[422] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -37901,7 +37954,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[421] Applies to: npm:json-schema-typed@7.0.3
+[423] Applies to: npm:json-schema-typed@7.0.3
------------------------------------------------------------------------------
BSD-2-Clause License
@@ -37931,7 +37984,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[422] Applies to: npm:json-schema-typed@8.0.2
+[424] Applies to: npm:json-schema-typed@8.0.2
------------------------------------------------------------------------------
BSD 2-Clause License
@@ -37992,7 +38045,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[423] Applies to: npm:json5@2.2.3
+[425] Applies to: npm:json5@2.2.3
------------------------------------------------------------------------------
MIT License
@@ -38019,7 +38072,7 @@ SOFTWARE.
[others]: https://github.com/json5/json5/contributors
------------------------------------------------------------------------------
-[424] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
+[426] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -38038,7 +38091,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[425] Applies to: npm:jszip@3.10.1
+[427] Applies to: npm:jszip@3.10.1
------------------------------------------------------------------------------
JSZip is dual licensed. At your choice you may use it under the MIT license *or* the GPLv3
license.
@@ -38693,7 +38746,7 @@ copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[426] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
+[428] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
------------------------------------------------------------------------------
Copyright (c) 2013 Brian J. Brennan
@@ -38714,7 +38767,7 @@ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TOR
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[427] Applies to: npm:katex@0.16.47
+[429] Applies to: npm:katex@0.16.47
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -38739,7 +38792,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[428] Applies to: npm:khroma@2.1.0
+[430] Applies to: npm:khroma@2.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -38764,7 +38817,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[429] Applies to: npm:lan-network@0.2.1
+[431] Applies to: npm:lan-network@0.2.1
------------------------------------------------------------------------------
MIT License
@@ -38789,7 +38842,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[430] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
+[432] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
------------------------------------------------------------------------------
MIT License
@@ -38814,7 +38867,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[431] Applies to: npm:lie@3.3.0
+[433] Applies to: npm:lie@3.3.0
------------------------------------------------------------------------------
#Copyright (c) 2014-2018 Calvin Metcalf, Jordan Harband
@@ -38825,7 +38878,7 @@ The above copyright notice and this permission notice shall be included in all c
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**
------------------------------------------------------------------------------
-[432] Applies to: npm:lightningcss@1.32.0, npm:lightningcss-darwin-arm64@1.32.0, npm:lightningcss-darwin-x64@1.32.0, npm:lightningcss-linux-arm64-gnu@1.32.0, npm:lightningcss-linux-x64-gnu@1.32.0, npm:lightningcss-win32-arm64-msvc@1.32.0, npm:lightningcss-win32-x64-msvc@1.32.0
+[434] Applies to: npm:lightningcss-darwin-arm64@1.32.0, npm:lightningcss-darwin-x64@1.32.0, npm:lightningcss-linux-arm64-gnu@1.32.0, npm:lightningcss-linux-x64-gnu@1.32.0, npm:lightningcss-win32-arm64-msvc@1.32.0, npm:lightningcss-win32-x64-msvc@1.32.0, npm:lightningcss@1.32.0
------------------------------------------------------------------------------
Mozilla Public License Version 2.0
==================================
@@ -39202,7 +39255,7 @@ This Source Code Form is "Incompatible With Secondary Licenses", as
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[433] Applies to: npm:lodash@4.18.1, npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2
+[435] Applies to: npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2, npm:lodash@4.18.1
------------------------------------------------------------------------------
Copyright OpenJS Foundation and other contributors
@@ -39253,7 +39306,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[434] Applies to: npm:lodash.debounce@4.0.8, npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1, npm:lodash.throttle@4.1.1
+[436] Applies to: npm:lodash.debounce@4.0.8, npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1, npm:lodash.throttle@4.1.1
------------------------------------------------------------------------------
Copyright jQuery Foundation and other contributors
@@ -39304,7 +39357,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[435] Applies to: npm:lodash.identity@3.0.0
+[437] Applies to: npm:lodash.identity@3.0.0
------------------------------------------------------------------------------
Copyright 2012-2015 The Dojo Foundation
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,
@@ -39330,7 +39383,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[436] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
+[438] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -39356,7 +39409,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[437] Applies to: npm:loose-envify@1.4.0
+[439] Applies to: npm:loose-envify@1.4.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -39381,7 +39434,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[438] Applies to: npm:loudness@0.4.2
+[440] Applies to: npm:loudness@0.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -39405,7 +39458,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[439] Applies to: npm:lru-cache@10.4.3
+[441] Applies to: npm:lru-cache@10.4.3
------------------------------------------------------------------------------
The ISC License
@@ -39424,7 +39477,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[440] Applies to: npm:lru-cache@11.5.2, npm:minipass@7.1.3, npm:path-scurry@1.11.1, npm:path-scurry@2.0.2, npm:sax@1.6.0
+[442] Applies to: npm:lru-cache@11.5.2, npm:minipass@7.1.3, npm:path-scurry@1.11.1, npm:path-scurry@2.0.2, npm:sax@1.6.0
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -39483,7 +39536,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[441] Applies to: npm:lucide-react@0.468.0, npm:lucide-react-native@0.468.0
+[443] Applies to: npm:lucide-react-native@0.468.0, npm:lucide-react@0.468.0
------------------------------------------------------------------------------
ISC License
@@ -39502,7 +39555,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[442] Applies to: npm:magic-bytes.js@1.13.0
+[444] Applies to: npm:magic-bytes.js@1.13.0
------------------------------------------------------------------------------
MIT License
@@ -39527,7 +39580,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[443] Applies to: npm:makeerror@1.0.12, npm:tmpl@1.0.5
+[445] Applies to: npm:makeerror@1.0.12, npm:tmpl@1.0.5
------------------------------------------------------------------------------
BSD License
@@ -39559,7 +39612,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[444] Applies to: npm:marked@16.4.2
+[446] Applies to: npm:marked@16.4.2
------------------------------------------------------------------------------
# License information
@@ -39607,7 +39660,7 @@ Redistribution and use in source and binary forms, with or without modification,
This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
------------------------------------------------------------------------------
-[445] Applies to: npm:marky@1.3.0
+[447] Applies to: npm:marky@1.3.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -39819,7 +39872,7 @@ APPENDIX: How to apply the Apache License to your work
permissions and limitations under the License.
------------------------------------------------------------------------------
-[446] Applies to: npm:md5@2.3.0
+[448] Applies to: npm:md5@2.3.0
------------------------------------------------------------------------------
Copyright © 2011-2012, Paul Vorbach.
Copyright © 2009, Jeff Mott.
@@ -39850,7 +39903,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[447] Applies to: npm:mdast-util-phrasing@4.1.0
+[449] Applies to: npm:mdast-util-phrasing@4.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -39877,7 +39930,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[448] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
+[450] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
@@ -39909,7 +39962,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[449] Applies to: npm:mdn-data@2.0.14
+[451] Applies to: npm:mdn-data@2.0.14
------------------------------------------------------------------------------
CC0 1.0 Universal
@@ -40029,7 +40082,7 @@ For more information, please see
------------------------------------------------------------------------------
-[450] Applies to: npm:memoize-one@5.2.1, npm:memoize-one@6.0.0
+[452] Applies to: npm:memoize-one@5.2.1, npm:memoize-one@6.0.0
------------------------------------------------------------------------------
MIT License
@@ -40054,7 +40107,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[451] Applies to: npm:merge-descriptors@2.0.0
+[453] Applies to: npm:merge-descriptors@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -40069,7 +40122,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[452] Applies to: npm:merge-options@3.0.4
+[454] Applies to: npm:merge-options@3.0.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40094,7 +40147,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[453] Applies to: npm:merge-stream@2.0.0
+[455] Applies to: npm:merge-stream@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40119,7 +40172,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[454] Applies to: npm:mermaid@11.16.0
+[456] Applies to: npm:mermaid@11.16.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40144,13 +40197,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[455] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
+[457] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark and micromark-core-commonmark
+Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
(The MIT License)
@@ -40176,13 +40229,13 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[456] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
+[458] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
+Based on micromark and micromark-core-commonmark
(The MIT License)
@@ -40208,7 +40261,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[457] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
+[459] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -40234,32 +40287,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[458] Applies to: npm:mime@1.6.0
-------------------------------------------------------------------------------
-The MIT License (MIT)
-
-Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[459] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
+[460] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
------------------------------------------------------------------------------
(The MIT License)
@@ -40286,7 +40314,32 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[460] Applies to: npm:min-indent@1.0.1
+[461] Applies to: npm:mime@1.6.0
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[462] Applies to: npm:min-indent@1.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40311,7 +40364,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[461] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
+[463] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
------------------------------------------------------------------------------
The ISC License
@@ -40330,11 +40383,11 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[462] Applies to: npm:mkdirp@0.5.6
+[464] Applies to: npm:mkdirp-classic@0.5.3
------------------------------------------------------------------------------
-Copyright 2010 James Halliday (mail@substack.net)
+The MIT License (MIT)
-This project is free software released under the MIT/X11 license:
+Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -40355,11 +40408,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[463] Applies to: npm:mkdirp@1.0.4
+[465] Applies to: npm:mkdirp@0.5.6
------------------------------------------------------------------------------
-Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me)
+Copyright 2010 James Halliday (mail@substack.net)
-This project is free software released under the MIT license:
+This project is free software released under the MIT/X11 license:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -40380,11 +40433,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[464] Applies to: npm:mkdirp-classic@0.5.3
+[466] Applies to: npm:mkdirp@1.0.4
------------------------------------------------------------------------------
-The MIT License (MIT)
+Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me)
-Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
+This project is free software released under the MIT license:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -40405,7 +40458,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[465] Applies to: npm:ms@2.0.0
+[467] Applies to: npm:ms@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40430,7 +40483,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[466] Applies to: npm:ms@2.1.3
+[468] Applies to: npm:ms@2.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40455,7 +40508,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[467] Applies to: npm:nan@2.28.0
+[469] Applies to: npm:nan@2.28.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40468,7 +40521,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[468] Applies to: npm:nanoid@3.3.16
+[470] Applies to: npm:nanoid@3.3.16
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40492,7 +40545,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[469] Applies to: npm:napi-build-utils@2.0.0
+[471] Applies to: npm:napi-build-utils@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -40517,7 +40570,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[470] Applies to: npm:negotiator@0.6.3, npm:negotiator@0.6.4, npm:negotiator@1.0.0
+[472] Applies to: npm:negotiator@0.6.3, npm:negotiator@0.6.4, npm:negotiator@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -40545,7 +40598,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[471] Applies to: npm:node-abi@3.94.0
+[473] Applies to: npm:node-abi@3.94.0
------------------------------------------------------------------------------
MIT License
@@ -40570,7 +40623,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[472] Applies to: npm:node-addon-api@7.1.1
+[474] Applies to: npm:node-addon-api@7.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40583,7 +40636,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[473] Applies to: npm:node-domexception@1.0.0
+[475] Applies to: npm:node-domexception@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -40608,7 +40661,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[474] Applies to: npm:node-fetch@2.7.0
+[476] Applies to: npm:node-fetch@2.7.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40633,7 +40686,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[475] Applies to: npm:node-fetch@3.3.2
+[477] Applies to: npm:node-fetch@3.3.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -40658,7 +40711,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[476] Applies to: npm:node-forge@1.4.0
+[478] Applies to: npm:node-forge@1.4.0
------------------------------------------------------------------------------
You may use the Forge project under the terms of either the BSD License or the
GNU General Public License (GPL) Version 2.
@@ -40992,7 +41045,7 @@ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
------------------------------------------------------------------------------
-[477] Applies to: npm:node-int64@0.4.0
+[479] Applies to: npm:node-int64@0.4.0
------------------------------------------------------------------------------
Copyright (c) 2014 Robert Kieffer
@@ -41015,7 +41068,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[478] Applies to: npm:node-machine-id@1.1.12
+[480] Applies to: npm:node-machine-id@1.1.12
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -41040,7 +41093,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[479] Applies to: npm:node-pty@1.1.0
+[481] Applies to: npm:node-pty@1.1.0
------------------------------------------------------------------------------
Copyright (c) 2012-2015, Christopher Jeffrey (https://github.com/chjj/)
@@ -41113,7 +41166,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[480] Applies to: npm:node-releases@2.0.51
+[482] Applies to: npm:node-releases@2.0.51
------------------------------------------------------------------------------
The MIT License
@@ -41138,7 +41191,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[481] Applies to: npm:npm-package-arg@11.0.3
+[483] Applies to: npm:npm-package-arg@11.0.3
------------------------------------------------------------------------------
The ISC License
@@ -41157,7 +41210,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[482] Applies to: npm:nullthrows@1.1.1
+[484] Applies to: npm:nullthrows@1.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2016 Andres Suarez
@@ -41169,7 +41222,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[483] Applies to: npm:object-inspect@1.13.4
+[485] Applies to: npm:object-inspect@1.13.4
------------------------------------------------------------------------------
MIT License
@@ -41194,7 +41247,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[484] Applies to: npm:on-finished@2.3.0, npm:on-finished@2.4.1
+[486] Applies to: npm:on-finished@2.3.0, npm:on-finished@2.4.1
------------------------------------------------------------------------------
(The MIT License)
@@ -41221,7 +41274,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[485] Applies to: npm:on-headers@1.1.0
+[487] Applies to: npm:on-headers@1.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -41247,7 +41300,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[486] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
+[488] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke and others
@@ -41270,7 +41323,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[487] Applies to: npm:package-manager-detector@1.7.0
+[489] Applies to: npm:package-manager-detector@1.7.0
------------------------------------------------------------------------------
MIT License
@@ -41295,7 +41348,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[488] Applies to: npm:pako@1.0.11, npm:pako@2.2.0
+[490] Applies to: npm:pako@1.0.11, npm:pako@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -41320,7 +41373,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[489] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
+[491] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -41346,7 +41399,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[490] Applies to: npm:parse-png@2.1.0, npm:shebang-command@2.0.0
+[492] Applies to: npm:parse-png@2.1.0, npm:shebang-command@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -41359,7 +41412,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[491] Applies to: npm:parse5@7.3.0
+[493] Applies to: npm:parse5@7.3.0
------------------------------------------------------------------------------
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
@@ -41382,7 +41435,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[492] Applies to: npm:parseurl@1.3.3
+[494] Applies to: npm:parseurl@1.3.3
------------------------------------------------------------------------------
(The MIT License)
@@ -41409,7 +41462,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[493] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
+[495] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
------------------------------------------------------------------------------
MIT License
@@ -41434,7 +41487,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[494] Applies to: npm:path-parse@1.0.7
+[496] Applies to: npm:path-parse@1.0.7
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -41459,7 +41512,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[495] Applies to: npm:path-to-regexp@8.4.2
+[497] Applies to: npm:path-to-regexp@8.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -41484,7 +41537,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[496] Applies to: npm:pdfjs-dist@5.7.284
+[498] Applies to: npm:pdfjs-dist@5.7.284
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -41664,7 +41717,7 @@ Apache License
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[497] Applies to: npm:picocolors@1.1.1
+[499] Applies to: npm:picocolors@1.1.1
------------------------------------------------------------------------------
ISC License
@@ -41683,7 +41736,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[498] Applies to: npm:picomatch@2.3.2, npm:picomatch@4.0.5
+[500] Applies to: npm:picomatch@2.3.2, npm:picomatch@4.0.5
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -41708,7 +41761,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[499] Applies to: npm:pkce-challenge@5.0.1
+[501] Applies to: npm:pkce-challenge@5.0.1
------------------------------------------------------------------------------
MIT License
@@ -41733,7 +41786,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[500] Applies to: npm:playwright-core@1.60.0
+[502] Applies to: npm:playwright-core@1.60.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -41939,7 +41992,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[501] Applies to: npm:playwright-core@1.60.0 (NOTICE)
+[503] Applies to: npm:playwright-core@1.60.0 (NOTICE)
------------------------------------------------------------------------------
NOTICE for npm:playwright-core@1.60.0:
@@ -41950,7 +42003,7 @@ This software contains code derived from the Puppeteer project (https://github.c
available under the Apache 2.0 license (https://github.com/puppeteer/puppeteer/blob/master/LICENSE).
------------------------------------------------------------------------------
-[502] Applies to: npm:plist@3.1.1
+[504] Applies to: npm:plist@3.1.1
------------------------------------------------------------------------------
(The MIT License)
@@ -41978,7 +42031,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[503] Applies to: npm:pngjs@3.4.0, npm:pngjs@5.0.0
+[505] Applies to: npm:pngjs@3.4.0, npm:pngjs@5.0.0
------------------------------------------------------------------------------
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
pngjs derived work Copyright (c) 2012 Kuba Niegowski
@@ -42002,7 +42055,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[504] Applies to: npm:points-on-path@0.2.1
+[506] Applies to: npm:points-on-path@0.2.1
------------------------------------------------------------------------------
MIT License
@@ -42027,31 +42080,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[505] Applies to: npm:postcss@8.5.19
-------------------------------------------------------------------------------
-The MIT License (MIT)
-
-Copyright 2013 Andrey Sitnik
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[506] Applies to: npm:postcss-value-parser@4.2.0
+[507] Applies to: npm:postcss-value-parser@4.2.0
------------------------------------------------------------------------------
Copyright (c) Bogdan Chadkin
@@ -42077,7 +42106,31 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[507] Applies to: npm:prebuild-install@7.1.3
+[508] Applies to: npm:postcss@8.5.19
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright 2013 Andrey Sitnik
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[509] Applies to: npm:prebuild-install@7.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42102,7 +42155,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[508] Applies to: npm:proc-log@4.2.0
+[510] Applies to: npm:proc-log@4.2.0
------------------------------------------------------------------------------
The ISC License
@@ -42121,7 +42174,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[509] Applies to: npm:process-nextick-args@2.0.1
+[511] Applies to: npm:process-nextick-args@2.0.1
------------------------------------------------------------------------------
# Copyright (c) 2015 Calvin Metcalf
@@ -42144,7 +42197,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.**
------------------------------------------------------------------------------
-[510] Applies to: npm:progress@2.0.3
+[512] Applies to: npm:progress@2.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -42170,7 +42223,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[511] Applies to: npm:promise-worker-transferable@1.0.4
+[513] Applies to: npm:promise-worker-transferable@1.0.4
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -42375,7 +42428,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[512] Applies to: npm:prompts@2.4.2, npm:sisteransi@1.0.5
+[514] Applies to: npm:prompts@2.4.2, npm:sisteransi@1.0.5
------------------------------------------------------------------------------
MIT License
@@ -42400,7 +42453,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[513] Applies to: npm:prosemirror-changeset@2.4.1
+[515] Applies to: npm:prosemirror-changeset@2.4.1
------------------------------------------------------------------------------
Copyright (C) 2017 by Marijn Haverbeke and others
@@ -42423,7 +42476,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[514] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
+[516] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
------------------------------------------------------------------------------
Copyright (C) 2015-2017 by Marijn Haverbeke and others
@@ -42446,7 +42499,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[515] Applies to: npm:prosemirror-tables@1.8.5
+[517] Applies to: npm:prosemirror-tables@1.8.5
------------------------------------------------------------------------------
Copyright (C) 2015-2016 by Marijn Haverbeke and others
@@ -42469,7 +42522,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[516] Applies to: npm:protobufjs@7.6.5
+[518] Applies to: npm:protobufjs@7.6.5
------------------------------------------------------------------------------
This license applies to all parts of protobuf.js except those files
either explicitly including or referencing a different license or
@@ -42512,7 +42565,7 @@ standalone and requires a support library to be linked with it. This
support library is itself covered by the above license.
------------------------------------------------------------------------------
-[517] Applies to: npm:proxy-from-env@2.1.0
+[519] Applies to: npm:proxy-from-env@2.1.0
------------------------------------------------------------------------------
The MIT License
@@ -42536,7 +42589,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[518] Applies to: npm:qrcode@1.5.4
+[520] Applies to: npm:qrcode@1.5.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42549,7 +42602,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[519] Applies to: npm:qs@6.15.3
+[521] Applies to: npm:qs@6.15.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -42582,7 +42635,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[520] Applies to: npm:query-string@7.1.3
+[522] Applies to: npm:query-string@7.1.3
------------------------------------------------------------------------------
MIT License
@@ -42595,7 +42648,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[521] Applies to: npm:queue@6.0.2
+[523] Applies to: npm:queue@6.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2014 Jesse Tane
@@ -42607,7 +42660,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[522] Applies to: npm:range-parser@1.2.1, npm:range-parser@1.3.0
+[524] Applies to: npm:range-parser@1.2.1, npm:range-parser@1.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -42634,7 +42687,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[523] Applies to: npm:raw-body@3.0.2
+[525] Applies to: npm:raw-body@3.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42660,7 +42713,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[524] Applies to: npm:rc@1.2.8
+[526] Applies to: npm:rc@1.2.8
------------------------------------------------------------------------------
Apache License, Version 2.0
@@ -42731,7 +42784,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[525] Applies to: npm:react-fast-compare@3.2.2
+[527] Applies to: npm:react-fast-compare@3.2.2
------------------------------------------------------------------------------
MIT License
@@ -42757,7 +42810,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[526] Applies to: npm:react-freeze@1.0.4
+[528] Applies to: npm:react-freeze@1.0.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42782,7 +42835,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[527] Applies to: npm:react-i18next@17.0.10
+[529] Applies to: npm:react-i18next@17.0.10
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42807,7 +42860,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[528] Applies to: npm:react-markdown@10.1.0
+[530] Applies to: npm:react-markdown@10.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42832,7 +42885,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[529] Applies to: npm:react-native-drawer-layout@4.2.7
+[531] Applies to: npm:react-native-drawer-layout@4.2.7
------------------------------------------------------------------------------
MIT License
@@ -42857,7 +42910,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[530] Applies to: npm:react-native-gesture-handler@3.0.2, npm:react-native-reanimated@4.3.1
+[532] Applies to: npm:react-native-gesture-handler@3.0.2, npm:react-native-reanimated@4.3.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42882,7 +42935,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[531] Applies to: npm:react-native-is-edge-to-edge@1.3.1
+[533] Applies to: npm:react-native-is-edge-to-edge@1.3.1
------------------------------------------------------------------------------
MIT License
@@ -42907,7 +42960,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[532] Applies to: npm:react-native-safe-area-context@5.7.0
+[534] Applies to: npm:react-native-safe-area-context@5.7.0
------------------------------------------------------------------------------
MIT License
@@ -42932,7 +42985,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[533] Applies to: npm:react-native-screens@4.25.2
+[535] Applies to: npm:react-native-screens@4.25.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42957,7 +43010,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[534] Applies to: npm:react-native-svg@15.15.4
+[536] Applies to: npm:react-native-svg@15.15.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -42982,7 +43035,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[535] Applies to: npm:react-native-uitextview@2.2.0
+[537] Applies to: npm:react-native-uitextview@2.2.0
------------------------------------------------------------------------------
MIT License
@@ -43006,7 +43059,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[536] Applies to: npm:react-native-web@0.21.2
+[538] Applies to: npm:react-native-web@0.21.2
------------------------------------------------------------------------------
MIT License
@@ -43032,7 +43085,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[537] Applies to: npm:react-native-worklets@0.8.3
+[539] Applies to: npm:react-native-worklets@0.8.3
------------------------------------------------------------------------------
MIT License
@@ -43056,7 +43109,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[538] Applies to: npm:react-router@7.18.1, npm:react-router-dom@7.18.1
+[540] Applies to: npm:react-router-dom@7.18.1, npm:react-router@7.18.1
------------------------------------------------------------------------------
MIT License
@@ -43083,7 +43136,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[539] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
+[541] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
------------------------------------------------------------------------------
Node.js is licensed for use as follows:
@@ -43134,7 +43187,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[540] Applies to: npm:regenerator-runtime@0.13.11
+[542] Applies to: npm:regenerator-runtime@0.13.11
------------------------------------------------------------------------------
MIT License
@@ -43159,7 +43212,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[541] Applies to: npm:regjsgen@0.8.0
+[543] Applies to: npm:regjsgen@0.8.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43185,7 +43238,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[542] Applies to: npm:regjsparser@0.13.2
+[544] Applies to: npm:regjsparser@0.13.2
------------------------------------------------------------------------------
Copyright (c) Julian Viereck and Contributors, All Rights Reserved.
@@ -43210,7 +43263,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[543] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
+[545] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -43235,7 +43288,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[544] Applies to: npm:require-directory@2.1.1
+[546] Applies to: npm:require-directory@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43261,7 +43314,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[545] Applies to: npm:require-from-string@2.0.2
+[547] Applies to: npm:require-from-string@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43286,7 +43339,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[546] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3, npm:yargs-parser@21.1.1
+[548] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3, npm:yargs-parser@21.1.1
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -43304,32 +43357,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[547] Applies to: npm:resolve@1.22.12
-------------------------------------------------------------------------------
-MIT License
-
-Copyright (c) 2012 James Halliday
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-------------------------------------------------------------------------------
-[548] Applies to: npm:resolve-workspace-root@2.0.1
+[549] Applies to: npm:resolve-workspace-root@2.0.1
------------------------------------------------------------------------------
# The MIT License (MIT)
@@ -43354,7 +43382,32 @@ Copyright (c) 2024-present Cedric van Putten
> THE SOFTWARE.
------------------------------------------------------------------------------
-[549] Applies to: npm:rope-sequence@1.3.4
+[550] Applies to: npm:resolve@1.22.12
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2012 James Halliday
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[551] Applies to: npm:rope-sequence@1.3.4
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke
@@ -43377,7 +43430,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[550] Applies to: npm:roughjs@4.6.6
+[552] Applies to: npm:roughjs@4.6.6
------------------------------------------------------------------------------
MIT License
@@ -43402,7 +43455,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[551] Applies to: npm:router@2.2.0
+[553] Applies to: npm:router@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -43429,7 +43482,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[552] Applies to: npm:rtl-detect@1.1.2
+[554] Applies to: npm:rtl-detect@1.1.2
------------------------------------------------------------------------------
Copyright 2015 Yahoo Inc.
All rights reserved.
@@ -43460,7 +43513,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[553] Applies to: npm:rw@1.3.3
+[555] Applies to: npm:rw@1.3.3
------------------------------------------------------------------------------
Copyright (c) 2014-2016, Michael Bostock
All rights reserved.
@@ -43490,7 +43543,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[554] Applies to: npm:safer-buffer@2.1.2
+[556] Applies to: npm:safer-buffer@2.1.2
------------------------------------------------------------------------------
MIT License
@@ -43515,7 +43568,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[555] Applies to: npm:section-matter@1.0.0
+[557] Applies to: npm:section-matter@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43540,7 +43593,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[556] Applies to: npm:send@0.19.2, npm:send@1.2.1
+[558] Applies to: npm:send@0.19.2, npm:send@1.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -43567,7 +43620,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[557] Applies to: npm:serve-static@1.16.3, npm:serve-static@2.2.1
+[559] Applies to: npm:serve-static@1.16.3, npm:serve-static@2.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -43596,7 +43649,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[558] Applies to: npm:set-cookie-parser@2.7.2
+[560] Applies to: npm:set-cookie-parser@2.7.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43621,7 +43674,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[559] Applies to: npm:setimmediate@1.0.5
+[561] Applies to: npm:setimmediate@1.0.5
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola
@@ -43645,7 +43698,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[560] Applies to: npm:setprototypeof@1.2.0
+[562] Applies to: npm:setprototypeof@1.2.0
------------------------------------------------------------------------------
Copyright (c) 2015, Wes Todd
@@ -43662,7 +43715,7 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[561] Applies to: npm:sf-symbols-typescript@2.2.0
+[563] Applies to: npm:sf-symbols-typescript@2.2.0
------------------------------------------------------------------------------
MIT License
@@ -43687,7 +43740,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[562] Applies to: npm:shallowequal@1.1.0
+[564] Applies to: npm:shallowequal@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -43712,7 +43765,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[563] Applies to: npm:shell-quote@1.10.0
+[565] Applies to: npm:shell-quote@1.10.0
------------------------------------------------------------------------------
The MIT License
@@ -43740,7 +43793,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[564] Applies to: npm:side-channel@1.1.1, npm:side-channel-weakmap@1.0.2
+[566] Applies to: npm:side-channel-weakmap@1.0.2, npm:side-channel@1.1.1
------------------------------------------------------------------------------
MIT License
@@ -43765,7 +43818,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[565] Applies to: npm:signal-exit@3.0.7
+[567] Applies to: npm:signal-exit@3.0.7
------------------------------------------------------------------------------
The ISC License
@@ -43785,7 +43838,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[566] Applies to: npm:signal-exit@4.1.0
+[568] Applies to: npm:signal-exit@4.1.0
------------------------------------------------------------------------------
The ISC License
@@ -43805,7 +43858,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[567] Applies to: npm:silk-wasm@3.7.1
+[569] Applies to: npm:silk-wasm@3.7.1
------------------------------------------------------------------------------
MIT License
@@ -43830,7 +43883,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[568] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
+[570] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43854,7 +43907,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[569] Applies to: npm:simple-plist@1.3.1
+[571] Applies to: npm:simple-plist@1.3.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43878,7 +43931,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[570] Applies to: npm:simple-swizzle@0.2.4
+[572] Applies to: npm:simple-swizzle@0.2.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43903,7 +43956,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[571] Applies to: npm:slugify@1.6.9
+[573] Applies to: npm:slugify@1.6.9
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -43928,7 +43981,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[572] Applies to: npm:smol-toml@1.7.0
+[574] Applies to: npm:smol-toml@1.7.0
------------------------------------------------------------------------------
Copyright (c) Squirrel Chat et al., All rights reserved.
@@ -43956,7 +44009,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[573] Applies to: npm:sortablejs@1.15.7
+[575] Applies to: npm:sortablejs@1.15.7
------------------------------------------------------------------------------
MIT License
@@ -43981,7 +44034,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[574] Applies to: npm:source-map@0.5.7, npm:source-map@0.6.1, npm:source-map-js@1.2.1
+[576] Applies to: npm:source-map-js@1.2.1, npm:source-map@0.5.7, npm:source-map@0.6.1
------------------------------------------------------------------------------
Copyright (c) 2009-2011, Mozilla Foundation and contributors
All rights reserved.
@@ -44012,7 +44065,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[575] Applies to: npm:source-map-support@0.5.21
+[577] Applies to: npm:source-map-support@0.5.21
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44037,7 +44090,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[576] Applies to: npm:sprintf-js@1.0.3
+[578] Applies to: npm:sprintf-js@1.0.3
------------------------------------------------------------------------------
Copyright (c) 2007-2014, Alexandru Marasteanu
All rights reserved.
@@ -44065,7 +44118,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[577] Applies to: npm:ssh-config@5.2.0
+[579] Applies to: npm:ssh-config@5.2.0
------------------------------------------------------------------------------
MIT License
@@ -44090,7 +44143,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[578] Applies to: npm:stacktrace-parser@0.1.11
+[580] Applies to: npm:stacktrace-parser@0.1.11
------------------------------------------------------------------------------
MIT License
@@ -44115,7 +44168,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[579] Applies to: npm:statuses@1.5.0, npm:statuses@2.0.2
+[581] Applies to: npm:statuses@1.5.0, npm:statuses@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44141,7 +44194,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[580] Applies to: npm:stream-buffers@2.2.0
+[582] Applies to: npm:stream-buffers@2.2.0
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -44169,7 +44222,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[581] Applies to: npm:strict-uri-encode@2.0.0
+[583] Applies to: npm:strict-uri-encode@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44194,7 +44247,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[582] Applies to: npm:strip-bom-string@1.0.0
+[584] Applies to: npm:strip-bom-string@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44219,7 +44272,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[583] Applies to: npm:style-mod@4.1.3
+[585] Applies to: npm:style-mod@4.1.3
------------------------------------------------------------------------------
Copyright (C) 2018 by Marijn Haverbeke and others
@@ -44242,7 +44295,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[584] Applies to: npm:style-to-js@1.1.21
+[586] Applies to: npm:style-to-js@1.1.21
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44268,7 +44321,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[585] Applies to: npm:style-to-object@1.0.14
+[587] Applies to: npm:style-to-object@1.0.14
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44294,7 +44347,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[586] Applies to: npm:styleq@0.1.3
+[588] Applies to: npm:styleq@0.1.3
------------------------------------------------------------------------------
MIT License
@@ -44319,7 +44372,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[587] Applies to: npm:stylis@4.4.0
+[589] Applies to: npm:stylis@4.4.0
------------------------------------------------------------------------------
MIT License
@@ -44344,7 +44397,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[588] Applies to: npm:supports-hyperlinks@2.3.0
+[590] Applies to: npm:supports-hyperlinks@2.3.0
------------------------------------------------------------------------------
MIT License
@@ -44357,7 +44410,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[589] Applies to: npm:supports-preserve-symlinks-flag@1.0.0
+[591] Applies to: npm:supports-preserve-symlinks-flag@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -44382,7 +44435,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[590] Applies to: npm:tailwind-merge@2.6.1
+[592] Applies to: npm:tailwind-merge@2.6.1
------------------------------------------------------------------------------
MIT License
@@ -44407,7 +44460,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[591] Applies to: npm:terser@5.49.0
+[593] Applies to: npm:terser@5.49.0
------------------------------------------------------------------------------
Copyright 2012-2018 (c) Mihai Bazon
@@ -44438,7 +44491,7 @@ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
------------------------------------------------------------------------------
-[592] Applies to: npm:throat@5.0.0
+[594] Applies to: npm:throat@5.0.0
------------------------------------------------------------------------------
Copyright (c) 2013 Forbes Lindesay
@@ -44461,7 +44514,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[593] Applies to: npm:tinyexec@1.2.4
+[595] Applies to: npm:tinyexec@1.2.4
------------------------------------------------------------------------------
MIT License
@@ -44486,7 +44539,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[594] Applies to: npm:tinyglobby@0.2.17
+[596] Applies to: npm:tinyglobby@0.2.17
------------------------------------------------------------------------------
MIT License
@@ -44511,7 +44564,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[595] Applies to: npm:to-regex-range@5.0.1
+[597] Applies to: npm:to-regex-range@5.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44536,7 +44589,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[596] Applies to: npm:toidentifier@1.0.1
+[598] Applies to: npm:toidentifier@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -44561,7 +44614,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[597] Applies to: npm:trough@2.2.0
+[599] Applies to: npm:trough@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -44586,7 +44639,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[598] Applies to: npm:ts-dedent@2.3.0
+[600] Applies to: npm:ts-dedent@2.3.0
------------------------------------------------------------------------------
MIT License
@@ -44611,7 +44664,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[599] Applies to: npm:ts-mixer@6.0.4
+[601] Applies to: npm:ts-mixer@6.0.4
------------------------------------------------------------------------------
MIT License
@@ -44636,7 +44689,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[600] Applies to: npm:tslib@2.8.1
+[602] Applies to: npm:tslib@2.8.1
------------------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
@@ -44652,7 +44705,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[601] Applies to: npm:tslog@4.11.0
+[603] Applies to: npm:tslog@4.11.0
------------------------------------------------------------------------------
MIT License
@@ -44677,7 +44730,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[602] Applies to: npm:tunnel-agent@0.6.0
+[604] Applies to: npm:tunnel-agent@0.6.0
------------------------------------------------------------------------------
Apache License
@@ -44736,7 +44789,7 @@ If the Work includes a "NOTICE" text file as part of its distribution, then any
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[603] Applies to: npm:type-fest@0.20.2, npm:type-fest@0.21.3
+[605] Applies to: npm:type-fest@0.20.2, npm:type-fest@0.21.3
------------------------------------------------------------------------------
MIT License
@@ -44749,7 +44802,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[604] Applies to: npm:typebox@1.1.39
+[606] Applies to: npm:typebox@1.1.39
------------------------------------------------------------------------------
TypeBox
@@ -44776,7 +44829,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[605] Applies to: npm:ua-parser-js@1.0.41
+[607] Applies to: npm:ua-parser-js@1.0.41
------------------------------------------------------------------------------
MIT License
@@ -44801,7 +44854,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[606] Applies to: npm:undici@6.27.0, npm:undici@8.7.0, npm:undici-types@7.24.6
+[608] Applies to: npm:undici-types@7.24.6, npm:undici@6.27.0, npm:undici@8.7.0
------------------------------------------------------------------------------
MIT License
@@ -44826,7 +44879,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[607] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
+[609] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -44851,7 +44904,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[608] Applies to: npm:unist-util-is@6.0.1
+[610] Applies to: npm:unist-util-is@6.0.1
------------------------------------------------------------------------------
(The MIT license)
@@ -44877,7 +44930,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[609] Applies to: npm:universalify@2.0.1
+[611] Applies to: npm:universalify@2.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -44901,7 +44954,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[610] Applies to: npm:unpipe@1.0.0
+[612] Applies to: npm:unpipe@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -44927,7 +44980,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[611] Applies to: npm:update-browserslist-db@1.2.3
+[613] Applies to: npm:update-browserslist-db@1.2.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -44951,7 +45004,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[612] Applies to: npm:uri-js@4.4.1
+[614] Applies to: npm:uri-js@4.4.1
------------------------------------------------------------------------------
Copyright 2011 Gary Court. All rights reserved.
@@ -44966,7 +45019,7 @@ THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRA
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
------------------------------------------------------------------------------
-[613] Applies to: npm:url-template@2.0.8
+[615] Applies to: npm:url-template@2.0.8
------------------------------------------------------------------------------
Copyright (c) 2012-2014, Bram Stein
All rights reserved.
@@ -44995,7 +45048,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[614] Applies to: npm:use-latest-callback@0.2.6
+[616] Applies to: npm:use-latest-callback@0.2.6
------------------------------------------------------------------------------
MIT License
@@ -45020,7 +45073,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[615] Applies to: npm:util-deprecate@1.0.2
+[617] Applies to: npm:util-deprecate@1.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -45048,7 +45101,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[616] Applies to: npm:utils-merge@1.0.1
+[618] Applies to: npm:utils-merge@1.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45072,7 +45125,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[617] Applies to: npm:uuid@14.0.1
+[619] Applies to: npm:uuid@14.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45085,7 +45138,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[618] Applies to: npm:uuid@7.0.3
+[620] Applies to: npm:uuid@7.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45110,7 +45163,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[619] Applies to: npm:validate-npm-package-name@5.0.1
+[621] Applies to: npm:validate-npm-package-name@5.0.1
------------------------------------------------------------------------------
Copyright (c) 2015, npm, Inc
@@ -45120,7 +45173,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[620] Applies to: npm:vaul@1.1.2
+[622] Applies to: npm:vaul@1.1.2
------------------------------------------------------------------------------
MIT License
@@ -45133,7 +45186,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[621] Applies to: npm:vlq@1.0.1
+[623] Applies to: npm:vlq@1.0.1
------------------------------------------------------------------------------
Copyright (c) 2017 [these people](https://github.com/Rich-Harris/vlq/graphs/contributors)
@@ -45144,7 +45197,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[622] Applies to: npm:void-elements@3.1.0
+[624] Applies to: npm:void-elements@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -45170,7 +45223,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[623] Applies to: npm:walker@1.0.8
+[625] Applies to: npm:walker@1.0.8
------------------------------------------------------------------------------
Copyright 2013 Naitik Shah
@@ -45187,7 +45240,7 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[624] Applies to: npm:warn-once@0.1.1
+[626] Applies to: npm:warn-once@0.1.1
------------------------------------------------------------------------------
MIT License
@@ -45212,7 +45265,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[625] Applies to: npm:wcwidth@1.0.1
+[627] Applies to: npm:wcwidth@1.0.1
------------------------------------------------------------------------------
wcwidth.js: JavaScript Portng of Markus Kuhn's wcwidth() Implementation
=======================================================================
@@ -45245,7 +45298,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[626] Applies to: npm:web-streams-polyfill@3.3.3
+[628] Applies to: npm:web-streams-polyfill@3.3.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45271,7 +45324,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[627] Applies to: npm:webidl-conversions@3.0.1
+[629] Applies to: npm:webidl-conversions@3.0.1
------------------------------------------------------------------------------
# The BSD 2-Clause License
@@ -45287,7 +45340,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[628] Applies to: npm:whatwg-fetch@3.6.20
+[630] Applies to: npm:whatwg-fetch@3.6.20
------------------------------------------------------------------------------
Copyright (c) 2014-2023 GitHub, Inc.
@@ -45311,11 +45364,13 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[629] Applies to: npm:whatwg-url@5.0.0
+[631] Applies to: npm:whatwg-url-minimum@0.1.2
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2015–2016 Sebastian Mayr
+Copyright (c) Phil Pluckthun,
+Copyright (c) 650 Industries, Inc. (aka Expo),
+Copyright (c) Sebastian Mayr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -45324,25 +45379,23 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
------------------------------------------------------------------------------
-[630] Applies to: npm:whatwg-url-minimum@0.1.2
+[632] Applies to: npm:whatwg-url@5.0.0
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) Phil Pluckthun,
-Copyright (c) 650 Industries, Inc. (aka Expo),
-Copyright (c) Sebastian Mayr
+Copyright (c) 2015–2016 Sebastian Mayr
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -45351,19 +45404,19 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
------------------------------------------------------------------------------
-[631] Applies to: npm:which-module@2.0.1
+[633] Applies to: npm:which-module@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -45380,7 +45433,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[632] Applies to: npm:workerpool@9.1.1
+[634] Applies to: npm:workerpool@9.1.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -45585,7 +45638,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[633] Applies to: npm:ws@7.5.12
+[635] Applies to: npm:ws@7.5.12
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45610,7 +45663,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[634] Applies to: npm:ws@8.21.1
+[636] Applies to: npm:ws@8.21.1
------------------------------------------------------------------------------
Copyright (c) 2011 Einar Otto Stangvik
Copyright (c) 2013 Arnout Kazemier and contributors
@@ -45634,7 +45687,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[635] Applies to: npm:xcode@3.0.1 (NOTICE)
+[637] Applies to: npm:xcode@3.0.1 (NOTICE)
------------------------------------------------------------------------------
NOTICE for npm:xcode@3.0.1:
@@ -45645,7 +45698,7 @@ This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
------------------------------------------------------------------------------
-[636] Applies to: npm:xml2js@0.6.0
+[638] Applies to: npm:xml2js@0.6.0
------------------------------------------------------------------------------
Copyright 2010, 2011, 2012, 2013. All rights reserved.
@@ -45668,7 +45721,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
------------------------------------------------------------------------------
-[637] Applies to: npm:xmlbuilder@11.0.1, npm:xmlbuilder@15.1.1
+[639] Applies to: npm:xmlbuilder@11.0.1, npm:xmlbuilder@15.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -45693,7 +45746,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[638] Applies to: npm:y18n@4.0.3, npm:y18n@5.0.8
+[640] Applies to: npm:y18n@4.0.3, npm:y18n@5.0.8
------------------------------------------------------------------------------
Copyright (c) 2015, Contributors
@@ -45710,7 +45763,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[639] Applies to: npm:yaml@2.9.0
+[641] Applies to: npm:yaml@2.9.0
------------------------------------------------------------------------------
Copyright Eemeli Aro
@@ -45727,7 +45780,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[640] Applies to: npm:yargs@15.4.1, npm:yargs@17.7.3
+[642] Applies to: npm:yargs@15.4.1, npm:yargs@17.7.3
------------------------------------------------------------------------------
MIT License
@@ -45752,7 +45805,26 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[641] Applies to: npm:zod@4.3.6
+[643] Applies to: npm:zod-to-json-schema@3.25.2
+------------------------------------------------------------------------------
+ISC License
+
+Copyright (c) 2020, Stefan Terdell
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+------------------------------------------------------------------------------
+[644] Applies to: npm:zod@4.3.6
------------------------------------------------------------------------------
MIT License
@@ -45776,44 +45848,25 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[642] Applies to: npm:zod-to-json-schema@3.25.2
-------------------------------------------------------------------------------
-ISC License
-
-Copyright (c) 2020, Stefan Terdell
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
------------------------------------------------------------------------------
Packages without a standalone license file (license per package.json):
------------------------------------------------------------------------------
- cargo:alloc-stdlib@0.2.4 (BSD-3-Clause)
- cargo:selectors@0.36.1 (MPL-2.0)
-- cargo:tauri@2.11.5 (Apache-2.0 OR MIT)
- cargo:tauri-codegen@2.6.3 (Apache-2.0 OR MIT)
- cargo:tauri-macros@2.6.3 (Apache-2.0 OR MIT)
-- cargo:tauri-runtime@2.11.3 (Apache-2.0 OR MIT)
- cargo:tauri-runtime-wry@2.11.4 (Apache-2.0 OR MIT)
+- cargo:tauri-runtime@2.11.3 (Apache-2.0 OR MIT)
- cargo:tauri-utils@2.9.3 (Apache-2.0 OR MIT)
+- cargo:tauri@2.11.5 (Apache-2.0 OR MIT)
- cargo:unic-char-property@0.9.0 (MIT OR Apache-2.0)
- cargo:unic-char-range@0.9.0 (MIT OR Apache-2.0)
- cargo:unic-common@0.9.0 (MIT OR Apache-2.0)
- cargo:unic-ucd-ident@0.9.0 (MIT OR Apache-2.0)
- cargo:unic-ucd-version@0.9.0 (MIT OR Apache-2.0)
-- cargo:webview2-com@0.38.2 (MIT)
- cargo:webview2-com-macros@0.8.1 (MIT)
- cargo:webview2-com-sys@0.38.2 (MIT)
+- cargo:webview2-com@0.38.2 (MIT)
- npm:@chinese-fonts/font-contours@1.0.0 (ISC)
- npm:@expo/devcert@1.2.1 (MIT)
- npm:@expo/sdk-runtime-versions@1.0.0 (MIT)
@@ -45839,13 +45892,13 @@ Packages without a standalone license file (license per package.json):
- npm:@napi-rs/canvas-linux-x64-gnu@0.1.100 (MIT)
- npm:@napi-rs/canvas-win32-arm64-msvc@0.1.100 (MIT)
- npm:@napi-rs/canvas-win32-x64-msvc@0.1.100 (MIT)
-- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@napi-rs/woff-build-darwin-arm64@0.2.2 (MIT)
- npm:@napi-rs/woff-build-darwin-x64@0.2.2 (MIT)
- npm:@napi-rs/woff-build-linux-arm64-gnu@0.2.2 (MIT)
- npm:@napi-rs/woff-build-linux-x64-gnu@0.2.2 (MIT)
- npm:@napi-rs/woff-build-win32-arm64-msvc@0.2.2 (MIT)
- npm:@napi-rs/woff-build-win32-x64-msvc@0.2.2 (MIT)
+- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@react-native/assets-registry@0.85.3 (MIT)
- npm:@react-native/babel-plugin-codegen@0.85.3 (MIT)
- npm:@react-native/codegen@0.85.3 (MIT)
@@ -45862,6 +45915,7 @@ Packages without a standalone license file (license per package.json):
- npm:@sapphire/snowflake@3.5.5 (MIT)
- npm:@simple-git/args-pathspec@1.0.3 (MIT)
- npm:@simple-git/argv-parser@1.1.1 (MIT)
+- npm:@wecom/aibot-node-sdk@1.0.7 (MIT)
- npm:agent-base@6.0.2 (MIT)
- npm:babel-plugin-react-compiler@1.0.0 (MIT)
- npm:badgin@1.2.3 (MIT)
@@ -45884,10 +45938,9 @@ Packages without a standalone license file (license per package.json):
- npm:https-proxy-agent@5.0.1 (MIT)
- npm:isarray@1.0.0 (MIT)
- npm:jimp-compact@0.16.1 (MIT)
-- npm:metro@0.84.4 (MIT)
- npm:metro-babel-transformer@0.84.4 (MIT)
-- npm:metro-cache@0.84.4 (MIT)
- npm:metro-cache-key@0.84.4 (MIT)
+- npm:metro-cache@0.84.4 (MIT)
- npm:metro-config@0.84.4 (MIT)
- npm:metro-core@0.84.4 (MIT)
- npm:metro-file-map@0.84.4 (MIT)
@@ -45898,6 +45951,7 @@ Packages without a standalone license file (license per package.json):
- npm:metro-symbolicate@0.84.4 (MIT)
- npm:metro-transform-plugins@0.84.4 (MIT)
- npm:metro-transform-worker@0.84.4 (MIT)
+- npm:metro@0.84.4 (MIT)
- npm:ob1@0.84.4 (MIT)
- npm:react-devtools-core@6.1.5 (MIT)
- npm:react-remove-scroll-bar@2.3.8 (MIT)
diff --git a/docs/legal/notices/desktop-linux.txt b/docs/legal/notices/desktop-linux.txt
index c88bacd8cbc..68b8bd4b1d5 100644
--- a/docs/legal/notices/desktop-linux.txt
+++ b/docs/legal/notices/desktop-linux.txt
@@ -1025,7 +1025,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================
-SECTION 2: npm packages (787 packages)
+SECTION 2: npm packages (790 packages)
==============================================================================
- @antfu/install-pkg@1.1.0 — MIT — https://github.com/antfu/install-pkg
@@ -1112,17 +1112,17 @@ SECTION 2: npm packages (787 packages)
- @mermaid-js/parser@1.2.0 — MIT — https://github.com/mermaid-js/mermaid
- @modelcontextprotocol/sdk@1.29.0 — MIT — https://github.com/modelcontextprotocol/typescript-sdk
- @monogrid/gainmap-js@3.4.0 — MIT — https://github.com/MONOGRID/gainmap-js
-- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-linux-arm64-gnu@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-linux-x64-gnu@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
-- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/woff-build-linux-arm64-gnu@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-linux-x64-gnu@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @noble/hashes@1.8.0 — MIT — https://github.com/paulmillr/noble-hashes
- @paralleldrive/cuid2@2.3.1 — MIT — https://github.com/ericelliott/cuid2
-- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-linux-arm64-glibc@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-linux-x64-glibc@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
+- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @pkgjs/parseargs@0.11.0 — MIT — https://github.com/pkgjs/parseargs
- @protobufjs/aspromise@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
- @protobufjs/base64@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
@@ -1186,7 +1186,6 @@ SECTION 2: npm packages (787 packages)
- @tiptap/extension-text@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/pm@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/react@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
-- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-array@3.2.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-axis@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-brush@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -1208,18 +1207,19 @@ SECTION 2: npm packages (787 packages)
- @types/d3-polygon@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-quadtree@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-random@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-scale-chromatic@3.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-selection@3.0.11 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-shape@3.1.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-time-format@4.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-timer@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-transition@3.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-zoom@3.0.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/debug@4.1.13 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/estree-jsx@1.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/geojson@7946.0.16 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/hast@3.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/katex@0.16.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -1234,6 +1234,7 @@ SECTION 2: npm packages (787 packages)
- @ungap/structured-clone@1.3.3 — ISC — https://github.com/ungap/structured-clone
- @upsetjs/venn.js@2.0.0 — MIT — https://github.com/upsetjs/venn.js
- @vladfrangu/async_event_emitter@2.4.7 — MIT — https://github.com/vladfrangu/async_event_emitter
+- @wecom/aibot-node-sdk@1.0.7 — MIT — https://github.com/WecomTeam/aibot-node-sdk
- @xterm/addon-clipboard@0.1.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-clipboard
- @xterm/addon-fit@0.10.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-fit
- @xterm/addon-web-links@0.11.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-web-links
@@ -1241,10 +1242,10 @@ SECTION 2: npm packages (787 packages)
- accepts@2.0.0 — MIT — https://github.com/jshttp/accepts
- agent-base@6.0.2 — MIT — https://github.com/TooTallNate/node-agent-base
- agent-base@7.1.4 — MIT — https://github.com/TooTallNate/proxy-agents
-- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
-- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ajv-formats@1.6.1 — MIT — https://github.com/ajv-validator/ajv-formats
- ajv-formats@3.0.1 — MIT — https://github.com/ajv-validator/ajv-formats
+- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
+- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ansi-regex@5.0.1 — MIT — https://github.com/chalk/ansi-regex
- ansi-regex@6.2.2 — MIT — https://github.com/chalk/ansi-regex
- ansi-styles@4.3.0 — MIT — https://github.com/chalk/ansi-styles
@@ -1266,8 +1267,8 @@ SECTION 2: npm packages (787 packages)
- bl@4.1.0 — MIT — https://github.com/rvagg/bl
- body-parser@2.3.0 — MIT — https://github.com/expressjs/body-parser
- brace-expansion@2.1.2 — MIT — https://github.com/juliangruber/brace-expansion
-- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buffer-equal-constant-time@1.0.1 — BSD-3-Clause — https://github.com/goinstant/buffer-equal-constant-time
+- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buildcheck@0.0.7 — MIT — http://github.com/mscdex/buildcheck
- byte-size@8.2.1 — MIT — https://github.com/75lb/byte-size
- bytes@3.1.2 — MIT — https://github.com/visionmedia/bytes.js
@@ -1275,9 +1276,9 @@ SECTION 2: npm packages (787 packages)
- call-bound@1.0.4 — MIT — https://github.com/ljharb/call-bound
- camelcase@5.3.1 — MIT — https://github.com/sindresorhus/camelcase
- ccount@2.0.1 — MIT — https://github.com/wooorm/ccount
-- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-entities-html4@2.1.0 — MIT — https://github.com/wooorm/character-entities-html4
- character-entities-legacy@3.0.0 — MIT — https://github.com/wooorm/character-entities-legacy
+- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-reference-invalid@2.0.1 — MIT — https://github.com/wooorm/character-reference-invalid
- charenc@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-charenc
- chownr@1.1.4 — ISC — https://github.com/isaacs/chownr
@@ -1294,9 +1295,9 @@ SECTION 2: npm packages (787 packages)
- content-disposition@1.1.0 — MIT — https://github.com/jshttp/content-disposition
- content-type@1.0.5 — MIT — https://github.com/jshttp/content-type
- content-type@2.0.0 — MIT — https://github.com/jshttp/content-type
+- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- cookie@0.7.2 — MIT — https://github.com/jshttp/cookie
- cookie@1.1.1 — MIT — https://github.com/jshttp/cookie
-- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- core-util-is@1.0.3 — MIT — https://github.com/isaacs/core-util-is
- cors@2.8.6 — MIT — https://github.com/expressjs/cors
- cose-base@1.0.3 — MIT — https://github.com/iVis-at-Bilkent/cose-base
@@ -1305,10 +1306,9 @@ SECTION 2: npm packages (787 packages)
- crelt@1.0.7 — MIT — https://code.haverbeke.berlin/marijn/crelt
- cross-spawn@7.0.6 — MIT — https://github.com/moxystudio/node-cross-spawn
- crypt@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-crypt
-- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- cytoscape-cose-bilkent@4.1.0 — MIT — https://github.com/cytoscape/cytoscape.js-cose-bilkent
- cytoscape-fcose@2.2.0 — MIT — https://github.com/iVis-at-Bilkent/cytoscape.js-fcose
-- d3@7.9.0 — ISC — https://github.com/d3/d3
+- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- d3-array@2.12.1 — BSD-3-Clause — https://github.com/d3/d3-array
- d3-array@3.2.4 — ISC — https://github.com/d3/d3-array
- d3-axis@3.0.0 — ISC — https://github.com/d3/d3-axis
@@ -1333,16 +1333,17 @@ SECTION 2: npm packages (787 packages)
- d3-quadtree@3.0.1 — ISC — https://github.com/d3/d3-quadtree
- d3-random@3.0.1 — ISC — https://github.com/d3/d3-random
- d3-sankey@0.12.3 — BSD-3-Clause — https://github.com/d3/d3-sankey
-- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-scale-chromatic@3.1.0 — ISC — https://github.com/d3/d3-scale-chromatic
+- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-selection@3.0.0 — ISC — https://github.com/d3/d3-selection
- d3-shape@1.3.7 — BSD-3-Clause — https://github.com/d3/d3-shape
- d3-shape@3.2.0 — ISC — https://github.com/d3/d3-shape
-- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-time-format@4.1.0 — ISC — https://github.com/d3/d3-time-format
+- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-timer@3.0.1 — ISC — https://github.com/d3/d3-timer
- d3-transition@3.0.1 — ISC — https://github.com/d3/d3-transition
- d3-zoom@3.0.0 — ISC — https://github.com/d3/d3-zoom
+- d3@7.9.0 — ISC — https://github.com/d3/d3
- dagre-d3-es@7.0.14 — MIT — https://github.com/tbo47/dagre-es
- data-uri-to-buffer@4.0.1 — MIT — https://github.com/TooTallNate/node-data-uri-to-buffer
- dayjs@1.11.21 — MIT — https://github.com/iamkun/dayjs
@@ -1363,6 +1364,7 @@ SECTION 2: npm packages (787 packages)
- devlop@1.1.0 — MIT — https://github.com/wooorm/devlop
- diff@8.0.4 — BSD-3-Clause — https://github.com/kpdecker/jsdiff
- dijkstrajs@1.0.3 — MIT — https://github.com/tcort/dijkstrajs
+- dingtalk-stream@v2.1.5 — MIT — https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs
- discord-api-types@0.38.50 — MIT — https://github.com/discordjs/discord-api-types
- discord.js@14.27.0 — Apache-2.0 — https://github.com/discordjs/discord.js
- dompurify@3.4.12 — (MPL-2.0 OR Apache-2.0) — https://github.com/cure53/DOMPurify
@@ -1391,15 +1393,16 @@ SECTION 2: npm packages (787 packages)
- esprima@4.0.1 — BSD-2-Clause — https://github.com/jquery/esprima
- estree-util-is-identifier-name@3.0.0 — MIT — https://github.com/syntax-tree/estree-util-is-identifier-name
- etag@1.8.1 — MIT — https://github.com/jshttp/etag
-- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
+- eventemitter3@5.0.4 — MIT — https://github.com/primus/eventemitter3
- eventsource-parser@3.1.0 — MIT — https://github.com/rexxars/eventsource-parser
+- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
- execa@4.1.0 — MIT — https://github.com/sindresorhus/execa
- execa@5.1.1 — MIT — https://github.com/sindresorhus/execa
- expand-template@2.0.3 — (MIT OR WTFPL) — https://github.com/ralphtheninja/expand-template
-- express@5.2.1 — MIT — https://github.com/expressjs/express
- express-rate-limit@8.5.2 — MIT — https://github.com/express-rate-limit/express-rate-limit
-- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
+- express@5.2.1 — MIT — https://github.com/expressjs/express
- extend-shallow@2.0.1 — MIT — https://github.com/jonschlinkert/extend-shallow
+- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
- fast-deep-equal@3.1.3 — MIT — https://github.com/epoberezkin/fast-deep-equal
- fast-equals@5.4.1 — MIT — https://github.com/planttheidea/fast-equals
- fast-uri@3.1.4 — BSD-3-Clause — https://github.com/fastify/fast-uri
@@ -1446,8 +1449,8 @@ SECTION 2: npm packages (787 packages)
- has-tostringtag@1.0.2 — MIT — https://github.com/inspect-js/has-tostringtag
- hasown@2.0.4 — MIT — https://github.com/inspect-js/hasOwn
- hast-util-from-dom@5.0.1 — ISC — https://github.com/syntax-tree/hast-util-from-dom
-- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-html-isomorphic@2.0.0 — MIT — https://github.com/syntax-tree/hast-util-from-html-isomorphic
+- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-parse5@8.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-parse5
- hast-util-heading-rank@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-heading-rank
- hast-util-is-element@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-is-element
@@ -1521,17 +1524,17 @@ SECTION 2: npm packages (787 packages)
- layout-base@2.0.1 — MIT — https://github.com/iVis-at-Bilkent/layout-base
- lcid@3.1.1 — MIT — https://github.com/sindresorhus/lcid
- lie@3.3.0 — MIT — https://github.com/calvinmetcalf/lie
-- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- lit-element@4.2.2 — BSD-3-Clause — https://github.com/lit/lit
- lit-html@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
+- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- locate-path@3.0.0 — MIT — https://github.com/sindresorhus/locate-path
- locate-path@5.0.0 — MIT — https://github.com/sindresorhus/locate-path
-- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash-es@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash.identity@3.0.0 — MIT — https://github.com/lodash/lodash
- lodash.merge@4.6.2 — MIT — https://github.com/lodash/lodash
- lodash.pickby@4.6.0 — MIT — https://github.com/lodash/lodash
- lodash.snakecase@4.1.1 — MIT — https://github.com/lodash/lodash
+- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- long@5.3.2 — Apache-2.0 — https://github.com/dcodeIO/long.js
- longest-streak@3.1.0 — MIT — https://github.com/wooorm/longest-streak
- loudness@0.4.2 — MIT — https://github.com/LinusU/node-loudness
@@ -1546,36 +1549,35 @@ SECTION 2: npm packages (787 packages)
- md5@2.3.0 — BSD-3-Clause — https://github.com/pvorb/node-md5
- mdast-util-find-and-replace@3.0.2 — MIT — https://github.com/syntax-tree/mdast-util-find-and-replace
- mdast-util-from-markdown@2.0.3 — MIT — https://github.com/syntax-tree/mdast-util-from-markdown
-- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-gfm-autolink-literal@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-gfm-autolink-literal
- mdast-util-gfm-footnote@2.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-footnote
- mdast-util-gfm-strikethrough@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-strikethrough
- mdast-util-gfm-table@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-table
- mdast-util-gfm-task-list-item@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-task-list-item
+- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-math@3.0.0 — MIT — https://github.com/syntax-tree/mdast-util-math
- mdast-util-mdx-expression@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdx-expression
- mdast-util-mdx-jsx@3.2.0 — MIT — https://github.com/syntax-tree/mdast-util-mdx-jsx
- mdast-util-mdxjs-esm@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdxjs-esm
- mdast-util-phrasing@4.1.0 — MIT — https://github.com/syntax-tree/mdast-util-phrasing
- mdast-util-to-hast@13.2.1 — MIT — https://github.com/syntax-tree/mdast-util-to-hast
-- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-markdown-cjk-friendly@1.0.0 — MIT — https://github.com/tats-u/markdown-cjk-friendly
+- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-string@4.0.0 — MIT — https://github.com/syntax-tree/mdast-util-to-string
- media-typer@1.1.0 — MIT — https://github.com/jshttp/media-typer
- merge-descriptors@2.0.0 — MIT — https://github.com/sindresorhus/merge-descriptors
- merge-stream@2.0.0 — MIT — https://github.com/grncdr/merge-stream
- mermaid@11.16.0 — MIT — https://github.com/mermaid-js/mermaid
-- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- micromark-core-commonmark@2.0.3 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark
-- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-cjk-friendly-util@3.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
-- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
+- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-gfm-autolink-literal@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-autolink-literal
- micromark-extension-gfm-footnote@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-footnote
- micromark-extension-gfm-strikethrough@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-strikethrough
- micromark-extension-gfm-table@2.1.1 — MIT — https://github.com/micromark/micromark-extension-gfm-table
- micromark-extension-gfm-tagfilter@2.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm-tagfilter
- micromark-extension-gfm-task-list-item@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-task-list-item
+- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
- micromark-extension-math@3.1.0 — MIT — https://github.com/micromark/micromark-extension-math
- micromark-factory-destination@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination
- micromark-factory-label@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label
@@ -1596,6 +1598,7 @@ SECTION 2: npm packages (787 packages)
- micromark-util-subtokenize@2.1.0 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize
- micromark-util-symbol@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol
- micromark-util-types@2.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-types
+- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- mime-db@1.52.0 — MIT — https://github.com/jshttp/mime-db
- mime-db@1.54.0 — MIT — https://github.com/jshttp/mime-db
- mime-types@2.1.35 — MIT — https://github.com/jshttp/mime-types
@@ -1606,8 +1609,8 @@ SECTION 2: npm packages (787 packages)
- minimatch@9.0.9 — ISC — https://github.com/isaacs/minimatch
- minimist@1.2.8 — MIT — https://github.com/minimistjs/minimist
- minipass@7.1.3 — BlueOak-1.0.0 — https://github.com/isaacs/minipass
-- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mkdirp-classic@0.5.3 — MIT — https://github.com/mafintosh/mkdirp-classic
+- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mri@1.2.0 — MIT — https://github.com/lukeed/mri
- ms@2.0.0 — MIT — https://github.com/zeit/ms
- ms@2.1.3 — MIT — https://github.com/vercel/ms
@@ -1679,15 +1682,15 @@ SECTION 2: npm packages (787 packages)
- range-parser@1.3.0 — MIT — https://github.com/jshttp/range-parser
- raw-body@3.0.2 — MIT — https://github.com/stream-utils/raw-body
- rc@1.2.8 — (BSD-2-Clause OR MIT OR Apache-2.0) — https://github.com/dominictarr/rc
-- react@19.2.3 — MIT — https://github.com/facebook/react
- react-dom@19.2.3 — MIT — https://github.com/facebook/react
- react-i18next@17.0.10 — MIT — https://github.com/i18next/react-i18next
- react-markdown@10.1.0 — MIT — https://github.com/remarkjs/react-markdown
-- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-remove-scroll-bar@2.3.8 — MIT — https://github.com/theKashey/react-remove-scroll-bar
-- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-router-dom@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
- react-style-singleton@2.2.3 — MIT — https://github.com/theKashey/react-style-singleton
+- react@19.2.3 — MIT — https://github.com/facebook/react
- readable-stream@2.3.8 — MIT — https://github.com/nodejs/readable-stream
- readable-stream@3.6.2 — MIT — https://github.com/nodejs/readable-stream
- rehype-highlight@7.0.2 — MIT — https://github.com/rehypejs/rehype-highlight
@@ -1726,10 +1729,10 @@ SECTION 2: npm packages (787 packages)
- shebang-regex@3.0.0 — MIT — https://github.com/sindresorhus/shebang-regex
- shell-env@4.0.3 — MIT — https://github.com/sindresorhus/shell-env
- shell-path@3.1.0 — MIT — https://github.com/sindresorhus/shell-path
-- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- side-channel-list@1.0.1 — MIT — https://github.com/ljharb/side-channel-list
- side-channel-map@1.0.1 — MIT — https://github.com/ljharb/side-channel-map
- side-channel-weakmap@1.0.2 — MIT — https://github.com/ljharb/side-channel-weakmap
+- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- signal-exit@3.0.7 — ISC — https://github.com/tapjs/signal-exit
- signal-exit@4.1.0 — ISC — https://github.com/tapjs/signal-exit
- silk-wasm@3.7.1 — MIT — https://github.com/idranme/silk-wasm
@@ -1773,17 +1776,17 @@ SECTION 2: npm packages (787 packages)
- type-fest@0.20.2 — (MIT OR CC0-1.0) — https://github.com/sindresorhus/type-fest
- type-is@2.1.0 — MIT — https://github.com/jshttp/type-is
- typebox@1.1.39 — MIT — https://github.com/sinclairzx81/typebox
+- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- undici@6.27.0 — MIT — https://github.com/nodejs/undici
- undici@8.7.0 — MIT — https://github.com/nodejs/undici
-- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- unified@11.0.5 — MIT — https://github.com/unifiedjs/unified
- unist-util-find-after@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-find-after
- unist-util-is@6.0.1 — MIT — https://github.com/syntax-tree/unist-util-is
- unist-util-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-position
- unist-util-remove-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-remove-position
- unist-util-stringify-position@4.0.0 — MIT — https://github.com/syntax-tree/unist-util-stringify-position
-- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- unist-util-visit-parents@6.0.2 — MIT — https://github.com/syntax-tree/unist-util-visit-parents
+- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- universalify@2.0.1 — MIT — https://github.com/RyanZim/universalify
- unpipe@1.0.0 — MIT — https://github.com/stream-utils/unpipe
- uri-js@4.4.1 — BSD-2-Clause — http://github.com/garycourt/uri-js
@@ -1794,15 +1797,15 @@ SECTION 2: npm packages (787 packages)
- util-deprecate@1.0.2 — MIT — https://github.com/TooTallNate/util-deprecate
- uuid@14.0.1 — MIT — https://github.com/uuidjs/uuid
- vary@1.1.2 — MIT — https://github.com/jshttp/vary
-- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- vfile-location@5.0.3 — MIT — https://github.com/vfile/vfile-location
- vfile-message@4.0.3 — MIT — https://github.com/vfile/vfile-message
+- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- void-elements@3.1.0 — MIT — https://github.com/pugjs/void-elements
- w3c-keyname@2.2.8 — MIT — https://github.com/marijnh/w3c-keyname
- web-namespaces@2.0.1 — MIT — https://github.com/wooorm/web-namespaces
- web-streams-polyfill@3.3.3 — MIT — https://github.com/MattiasBuelens/web-streams-polyfill
-- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- which-module@2.0.1 — ISC — https://github.com/nexdrew/which-module
+- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- workerpool@9.1.1 — Apache-2.0 — https://github.com/josdejong/workerpool
- wrap-ansi@6.2.0 — MIT — https://github.com/chalk/wrap-ansi
- wrap-ansi@7.0.0 — MIT — https://github.com/chalk/wrap-ansi
@@ -1810,10 +1813,10 @@ SECTION 2: npm packages (787 packages)
- wrappy@1.0.2 — ISC — https://github.com/npm/wrappy
- ws@8.21.1 — MIT — https://github.com/websockets/ws
- y18n@4.0.3 — ISC — https://github.com/yargs/y18n
-- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- yargs-parser@18.1.3 — ISC — https://github.com/yargs/yargs-parser
-- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
+- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- zod-to-json-schema@3.25.2 — ISC — https://github.com/StefanTerdell/zod-to-json-schema
+- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
- zwitch@2.0.4 — MIT — https://github.com/wooorm/zwitch
==============================================================================
@@ -3870,7 +3873,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[28] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit@3.3.3, npm:lit-element@4.2.2, npm:lit-html@3.3.3
+[28] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit-element@4.2.2, npm:lit-html@3.3.3, npm:lit@3.3.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -4077,7 +4080,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[36] Applies to: npm:@parcel/watcher@2.5.6, npm:@parcel/watcher-linux-arm64-glibc@2.5.6, npm:@parcel/watcher-linux-x64-glibc@2.5.6
+[36] Applies to: npm:@parcel/watcher-linux-arm64-glibc@2.5.6, npm:@parcel/watcher-linux-x64-glibc@2.5.6, npm:@parcel/watcher@2.5.6
------------------------------------------------------------------------------
MIT License
@@ -4260,7 +4263,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[43] Applies to: npm:@types/d3@7.4.3, npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale@4.0.9, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time@3.0.4, npm:@types/d3-time-format@4.0.3, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/debug@4.1.13, npm:@types/estree@1.0.9, npm:@types/estree-jsx@1.0.5, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
+[43] Applies to: npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-scale@4.0.9, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time-format@4.0.3, npm:@types/d3-time@3.0.4, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/d3@7.4.3, npm:@types/debug@4.1.13, npm:@types/estree-jsx@1.0.5, npm:@types/estree@1.0.9, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
------------------------------------------------------------------------------
MIT License
@@ -4505,11 +4508,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[53] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
+[53] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2015-2021 Evgeny Poberezkin
+Copyright (c) 2020 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -4530,11 +4533,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[54] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
+[54] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2020 Evgeny Poberezkin
+Copyright (c) 2015-2021 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -4973,7 +4976,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[64] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities@2.0.2, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
+[64] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-entities@2.0.2, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -5268,7 +5271,23 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[74] Applies to: npm:buffer@5.7.1
+[74] Applies to: npm:buffer-equal-constant-time@1.0.1
+------------------------------------------------------------------------------
+Copyright (c) 2013, GoInstant Inc., a salesforce.com company
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+------------------------------------------------------------------------------
+[75] Applies to: npm:buffer@5.7.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -5292,22 +5311,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-------------------------------------------------------------------------------
-[75] Applies to: npm:buffer-equal-constant-time@1.0.1
-------------------------------------------------------------------------------
-Copyright (c) 2013, GoInstant Inc., a salesforce.com company
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
-* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
------------------------------------------------------------------------------
[76] Applies to: npm:buildcheck@0.0.7, npm:cpu-features@0.0.10, npm:ssh2@1.17.0
------------------------------------------------------------------------------
@@ -5840,12 +5843,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[91] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
+[91] Applies to: npm:cookie-signature@1.2.2
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012-2014 Roman Shtylman
-Copyright (c) 2015 Douglas Christopher Wilson
+Copyright (c) 2012–2024 LearnBoost and other contributors;
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -5867,11 +5869,12 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[92] Applies to: npm:cookie-signature@1.2.2
+[92] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012–2024 LearnBoost and other contributors;
+Copyright (c) 2012-2014 Roman Shtylman
+Copyright (c) 2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -6015,9 +6018,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[98] Applies to: npm:cytoscape@3.34.0
+[98] Applies to: npm:cytoscape-cose-bilkent@4.1.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2026, The Cytoscape Consortium.
+Copyright (c) 2016-2018, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6037,18 +6040,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-import fs from 'fs';
-import path from 'path';
-
-import { fileURLToPath } from 'url';
-import { dirname } from 'path';
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = dirname(__filename);
-
-const year = (new Date()).getFullYear();
-
-const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
+------------------------------------------------------------------------------
+[99] Applies to: npm:cytoscape-fcose@2.2.0
+------------------------------------------------------------------------------
+Copyright (c) 2018 - present, iVis-at-Bilkent.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6066,14 +6061,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.`;
-
-fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
+SOFTWARE.
------------------------------------------------------------------------------
-[99] Applies to: npm:cytoscape-cose-bilkent@4.1.0
+[100] Applies to: npm:cytoscape@3.34.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2018, The Cytoscape Consortium.
+Copyright (c) 2016-2026, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6093,10 +6086,18 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[100] Applies to: npm:cytoscape-fcose@2.2.0
-------------------------------------------------------------------------------
-Copyright (c) 2018 - present, iVis-at-Bilkent.
+import fs from 'fs';
+import path from 'path';
+
+import { fileURLToPath } from 'url';
+import { dirname } from 'path';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const year = (new Date()).getFullYear();
+
+const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6114,27 +6115,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-------------------------------------------------------------------------------
-[101] Applies to: npm:d3@7.9.0, npm:d3-array@3.2.4
-------------------------------------------------------------------------------
-Copyright 2010-2023 Mike Bostock
-
-Permission to use, copy, modify, and/or distribute this software for any purpose
-with or without fee is hereby granted, provided that the above copyright notice
-and this permission notice appear in all copies.
+SOFTWARE.`;
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-THIS SOFTWARE.
+fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
------------------------------------------------------------------------------
-[102] Applies to: npm:d3-array@2.12.1
+[101] Applies to: npm:d3-array@2.12.1
------------------------------------------------------------------------------
Copyright 2010-2020 Mike Bostock
All rights reserved.
@@ -6164,6 +6150,23 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+------------------------------------------------------------------------------
+[102] Applies to: npm:d3-array@3.2.4, npm:d3@7.9.0
+------------------------------------------------------------------------------
+Copyright 2010-2023 Mike Bostock
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
------------------------------------------------------------------------------
[103] Applies to: npm:d3-axis@3.0.0, npm:d3-brush@3.0.0, npm:d3-chord@3.0.1, npm:d3-dispatch@3.0.1, npm:d3-drag@3.0.0, npm:d3-force@3.0.0, npm:d3-hierarchy@3.1.2, npm:d3-interpolate@3.0.1, npm:d3-polygon@3.0.1, npm:d3-quadtree@3.0.1, npm:d3-random@3.0.1, npm:d3-scale@4.0.2, npm:d3-selection@3.0.0, npm:d3-time-format@4.1.0, npm:d3-timer@3.0.1, npm:d3-transition@3.0.1, npm:d3-zoom@3.0.0
------------------------------------------------------------------------------
@@ -6619,7 +6622,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[122] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm@3.1.0, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark@4.0.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
+[122] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-gfm@3.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:micromark@4.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -7051,7 +7054,32 @@ THE SOFTWARE.
```
------------------------------------------------------------------------------
-[132] Applies to: npm:discord-api-types@0.38.50
+[132] Applies to: npm:dingtalk-stream@v2.1.5
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2023 钉钉开放平台团队
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[133] Applies to: npm:discord-api-types@0.38.50
------------------------------------------------------------------------------
MIT License
@@ -7076,7 +7104,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[133] Applies to: npm:dompurify@3.4.12
+[134] Applies to: npm:dompurify@3.4.12
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -7655,7 +7683,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[134] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
+[135] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -7680,7 +7708,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[135] Applies to: npm:ecdsa-sig-formatter@1.0.11
+[136] Applies to: npm:ecdsa-sig-formatter@1.0.11
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -7885,7 +7913,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[136] Applies to: npm:ee-first@1.1.1
+[137] Applies to: npm:ee-first@1.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -7910,7 +7938,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[137] Applies to: npm:electron-squirrel-startup@1.0.1
+[138] Applies to: npm:electron-squirrel-startup@1.0.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -8115,7 +8143,7 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[138] Applies to: npm:electron-window-state@5.0.3
+[139] Applies to: npm:electron-window-state@5.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8141,7 +8169,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[139] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
+[140] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
------------------------------------------------------------------------------
Copyright Mathias Bynens
@@ -8165,7 +8193,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[140] Applies to: npm:encodeurl@2.0.0
+[141] Applies to: npm:encodeurl@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8191,7 +8219,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[141] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
+[142] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8216,7 +8244,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[142] Applies to: npm:entities@6.0.1
+[143] Applies to: npm:entities@6.0.1
------------------------------------------------------------------------------
Copyright (c) Felix Böhm
All rights reserved.
@@ -8231,7 +8259,7 @@ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRE
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[143] Applies to: npm:es-set-tostringtag@2.1.0
+[144] Applies to: npm:es-set-tostringtag@2.1.0
------------------------------------------------------------------------------
MIT License
@@ -8256,7 +8284,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[144] Applies to: npm:es-toolkit@1.49.0
+[145] Applies to: npm:es-toolkit@1.49.0
------------------------------------------------------------------------------
MIT License
@@ -8281,7 +8309,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[145] Applies to: npm:escape-html@1.0.3
+[146] Applies to: npm:escape-html@1.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -8309,7 +8337,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[146] Applies to: npm:esprima@4.0.1
+[147] Applies to: npm:esprima@4.0.1
------------------------------------------------------------------------------
Copyright JS Foundation and other contributors, https://js.foundation/
@@ -8334,7 +8362,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[147] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-math@3.1.0
+[148] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-math@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8360,7 +8388,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[148] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
+[149] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
------------------------------------------------------------------------------
(The MIT License)
@@ -8386,37 +8414,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[149] Applies to: npm:eventsource@3.0.7
-------------------------------------------------------------------------------
-The MIT License
-
-Copyright (c) EventSource GitHub organisation
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[150] Applies to: npm:eventsource-parser@3.1.0
+[150] Applies to: npm:eventemitter3@5.0.4
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2026 Espen Hovlandsdal
+Copyright (c) 2014 Arnout Kazemier
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -8437,11 +8439,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[151] Applies to: npm:expand-template@2.0.3
+[151] Applies to: npm:eventsource-parser@3.1.0
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2018 Lars-Magnus Skog
+Copyright (c) 2026 Espen Hovlandsdal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -8450,29 +8452,27 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
------------------------------------------------------------------------------
-[152] Applies to: npm:express@5.2.1
+[152] Applies to: npm:eventsource@3.0.7
------------------------------------------------------------------------------
-(The MIT License)
+The MIT License
-Copyright (c) 2009-2014 TJ Holowaychuk
-Copyright (c) 2013-2014 Roman Shtylman
-Copyright (c) 2014-2015 Douglas Christopher Wilson
+Copyright (c) EventSource GitHub organisation
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
+"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
@@ -8481,16 +8481,41 @@ the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[153] Applies to: npm:expand-template@2.0.3
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright (c) 2018 Lars-Magnus Skog
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
------------------------------------------------------------------------------
-[153] Applies to: npm:express-rate-limit@8.5.2
+[154] Applies to: npm:express-rate-limit@8.5.2
------------------------------------------------------------------------------
# MIT License
@@ -8514,15 +8539,17 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[154] Applies to: npm:extend@3.0.2
+[155] Applies to: npm:express@5.2.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+(The MIT License)
-Copyright (c) 2014 Stefan Thomas
+Copyright (c) 2009-2014 TJ Holowaychuk
+Copyright (c) 2013-2014 Roman Shtylman
+Copyright (c) 2014-2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
+'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
@@ -8531,16 +8558,16 @@ the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[155] Applies to: npm:extend-shallow@2.0.1
+[156] Applies to: npm:extend-shallow@2.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8565,7 +8592,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[156] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
+[157] Applies to: npm:extend@3.0.2
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright (c) 2014 Stefan Thomas
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[158] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -8590,7 +8643,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[157] Applies to: npm:fast-equals@5.4.1
+[159] Applies to: npm:fast-equals@5.4.1
------------------------------------------------------------------------------
MIT License
@@ -8615,7 +8668,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[158] Applies to: npm:fast-uri@3.1.4
+[160] Applies to: npm:fast-uri@3.1.4
------------------------------------------------------------------------------
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
Copyright (c) 2021-present The Fastify team
@@ -8649,7 +8702,7 @@ The complete list of contributors can be found at:
- https://github.com/garycourt/uri-js/graphs/contributors
------------------------------------------------------------------------------
-[159] Applies to: npm:fetch-blob@3.2.0
+[161] Applies to: npm:fetch-blob@3.2.0
------------------------------------------------------------------------------
MIT License
@@ -8674,7 +8727,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[160] Applies to: npm:file-uri-to-path@1.0.0
+[162] Applies to: npm:file-uri-to-path@1.0.0
------------------------------------------------------------------------------
Copyright (c) 2014 Nathan Rajlich
@@ -8698,7 +8751,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[161] Applies to: npm:finalhandler@2.1.1
+[163] Applies to: npm:finalhandler@2.1.1
------------------------------------------------------------------------------
(The MIT License)
@@ -8724,7 +8777,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[162] Applies to: npm:follow-redirects@1.16.0
+[164] Applies to: npm:follow-redirects@1.16.0
------------------------------------------------------------------------------
Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh
@@ -8746,7 +8799,7 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[163] Applies to: npm:foreground-child@3.3.1
+[165] Applies to: npm:foreground-child@3.3.1
------------------------------------------------------------------------------
The ISC License
@@ -8765,7 +8818,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[164] Applies to: npm:form-data@4.0.6
+[166] Applies to: npm:form-data@4.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
@@ -8788,7 +8841,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
THE SOFTWARE.
------------------------------------------------------------------------------
-[165] Applies to: npm:formdata-polyfill@4.0.10
+[167] Applies to: npm:formdata-polyfill@4.0.10
------------------------------------------------------------------------------
MIT License
@@ -8813,7 +8866,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[166] Applies to: npm:fresh@2.0.0
+[168] Applies to: npm:fresh@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8840,7 +8893,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[167] Applies to: npm:fs-constants@1.0.0
+[169] Applies to: npm:fs-constants@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8865,7 +8918,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[168] Applies to: npm:fs-extra@11.3.6
+[170] Applies to: npm:fs-extra@11.3.6
------------------------------------------------------------------------------
(The MIT License)
@@ -8884,7 +8937,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[169] Applies to: npm:function-bind@1.1.2
+[171] Applies to: npm:function-bind@1.1.2
------------------------------------------------------------------------------
Copyright (c) 2013 Raynos.
@@ -8907,7 +8960,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[170] Applies to: npm:get-caller-file@2.0.5
+[172] Applies to: npm:get-caller-file@2.0.5
------------------------------------------------------------------------------
ISC License (ISC)
Copyright 2018 Stefan Penner
@@ -8917,7 +8970,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[171] Applies to: npm:get-intrinsic@1.3.0
+[173] Applies to: npm:get-intrinsic@1.3.0
------------------------------------------------------------------------------
MIT License
@@ -8942,7 +8995,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[172] Applies to: npm:get-nonce@1.0.1
+[174] Applies to: npm:get-nonce@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -8967,7 +9020,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[173] Applies to: npm:get-proto@1.0.1
+[175] Applies to: npm:get-proto@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -8992,7 +9045,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[174] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
+[176] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
------------------------------------------------------------------------------
This software is released under the MIT license:
@@ -9014,7 +9067,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[175] Applies to: npm:github-slugger@2.0.0
+[177] Applies to: npm:github-slugger@2.0.0
------------------------------------------------------------------------------
Copyright (c) 2015, Dan Flettre
@@ -9023,7 +9076,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[176] Applies to: npm:glob@10.5.0
+[178] Applies to: npm:glob@10.5.0
------------------------------------------------------------------------------
The ISC License
@@ -9042,7 +9095,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[177] Applies to: npm:gopd@1.2.0
+[179] Applies to: npm:gopd@1.2.0
------------------------------------------------------------------------------
MIT License
@@ -9067,7 +9120,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[178] Applies to: npm:graceful-fs@4.2.11
+[180] Applies to: npm:graceful-fs@4.2.11
------------------------------------------------------------------------------
The ISC License
@@ -9086,7 +9139,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[179] Applies to: npm:gray-matter@4.0.3
+[181] Applies to: npm:gray-matter@4.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9111,7 +9164,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[180] Applies to: npm:gtoken@8.0.0
+[182] Applies to: npm:gtoken@8.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9136,7 +9189,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[181] Applies to: npm:hachure-fill@0.5.2
+[183] Applies to: npm:hachure-fill@0.5.2
------------------------------------------------------------------------------
MIT License
@@ -9161,7 +9214,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[182] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
+[184] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -9189,7 +9242,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[183] Applies to: npm:has-symbols@1.1.0
+[185] Applies to: npm:has-symbols@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -9214,7 +9267,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[184] Applies to: npm:has-tostringtag@1.0.2
+[186] Applies to: npm:has-tostringtag@1.0.2
------------------------------------------------------------------------------
MIT License
@@ -9239,7 +9292,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[185] Applies to: npm:hasown@2.0.4
+[187] Applies to: npm:hasown@2.0.4
------------------------------------------------------------------------------
MIT License
@@ -9264,7 +9317,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[186] Applies to: npm:hast-util-from-dom@5.0.1
+[188] Applies to: npm:hast-util-from-dom@5.0.1
------------------------------------------------------------------------------
(ISC License)
@@ -9283,11 +9336,11 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[187] Applies to: npm:hast-util-from-html@2.0.3
+[189] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2022 Titus Wormer
+Copyright (c) 2023 Remco Haszing
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -9309,11 +9362,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[188] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
+[190] Applies to: npm:hast-util-from-html@2.0.3
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2023 Remco Haszing
+Copyright (c) 2022 Titus Wormer
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -9335,7 +9388,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[189] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
+[191] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -9360,7 +9413,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[190] Applies to: npm:hast-util-to-text@4.0.2
+[192] Applies to: npm:hast-util-to-text@4.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -9386,7 +9439,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[191] Applies to: npm:highlight.js@11.11.1
+[193] Applies to: npm:highlight.js@11.11.1
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -9419,7 +9472,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[192] Applies to: npm:hono@4.12.30
+[194] Applies to: npm:hono@4.12.30
------------------------------------------------------------------------------
MIT License
@@ -9444,7 +9497,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[193] Applies to: npm:html-to-image@1.11.13
+[195] Applies to: npm:html-to-image@1.11.13
------------------------------------------------------------------------------
MIT License
@@ -9469,7 +9522,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[194] Applies to: npm:http-errors@2.0.1
+[196] Applies to: npm:http-errors@2.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9495,7 +9548,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[195] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
+[197] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -9700,7 +9753,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[196] Applies to: npm:i18next@26.3.6
+[198] Applies to: npm:i18next@26.3.6
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9725,7 +9778,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[197] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
+[199] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
------------------------------------------------------------------------------
Copyright (c) 2011 Alexander Shtuchkin
@@ -9749,7 +9802,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[198] Applies to: npm:ieee754@1.2.1
+[200] Applies to: npm:ieee754@1.2.1
------------------------------------------------------------------------------
Copyright 2008 Fair Oaks Labs, Inc.
@@ -9764,7 +9817,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[199] Applies to: npm:ignore@7.0.6
+[201] Applies to: npm:ignore@7.0.6
------------------------------------------------------------------------------
Copyright (c) 2013 Kael Zhang , contributors
http://kael.me/
@@ -9789,7 +9842,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[200] Applies to: npm:immediate@3.0.6
+[202] Applies to: npm:immediate@3.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier
@@ -9813,7 +9866,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[201] Applies to: npm:import-meta-resolve@4.2.0
+[203] Applies to: npm:import-meta-resolve@4.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -9891,7 +9944,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[202] Applies to: npm:inherits@2.0.4
+[204] Applies to: npm:inherits@2.0.4
------------------------------------------------------------------------------
The ISC License
@@ -9910,7 +9963,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[203] Applies to: npm:inline-style-parser@0.2.7
+[205] Applies to: npm:inline-style-parser@0.2.7
------------------------------------------------------------------------------
(The MIT License)
@@ -9923,7 +9976,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[204] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
+[206] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
------------------------------------------------------------------------------
Copyright 2021 Mike Bostock
@@ -9940,7 +9993,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[205] Applies to: npm:ip-address@10.2.0
+[207] Applies to: npm:ip-address@10.2.0
------------------------------------------------------------------------------
Copyright (C) 2011 by Beau Gunderson
@@ -9963,7 +10016,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[206] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
+[208] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
------------------------------------------------------------------------------
Copyright (C) 2011-2017 whitequark
@@ -9986,7 +10039,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[207] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
+[209] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10011,7 +10064,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[208] Applies to: npm:is-extendable@0.1.1
+[210] Applies to: npm:is-extendable@0.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10036,7 +10089,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[209] Applies to: npm:is-extglob@2.1.1
+[211] Applies to: npm:is-extglob@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10061,7 +10114,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[210] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
+[212] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10086,7 +10139,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[211] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0
+[213] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0
------------------------------------------------------------------------------
Copyright (c) 2014 Forbes Lindesay
@@ -10109,7 +10162,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[212] Applies to: npm:jackspeak@3.4.3
+[214] Applies to: npm:jackspeak@3.4.3
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -10168,7 +10221,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim._**
------------------------------------------------------------------------------
-[213] Applies to: npm:jose@6.2.3
+[215] Applies to: npm:jose@6.2.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10193,7 +10246,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[214] Applies to: npm:js-base64@3.9.1
+[216] Applies to: npm:js-base64@3.9.1
------------------------------------------------------------------------------
Copyright (c) 2014, Dan Kogai
All rights reserved.
@@ -10224,7 +10277,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[215] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
+[217] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -10249,7 +10302,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[216] Applies to: npm:json-bigint@1.0.0
+[218] Applies to: npm:json-bigint@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10273,7 +10326,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[217] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
+[219] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -10298,7 +10351,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[218] Applies to: npm:json-schema-typed@7.0.3
+[220] Applies to: npm:json-schema-typed@7.0.3
------------------------------------------------------------------------------
BSD-2-Clause License
@@ -10328,7 +10381,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[219] Applies to: npm:json-schema-typed@8.0.2
+[221] Applies to: npm:json-schema-typed@8.0.2
------------------------------------------------------------------------------
BSD 2-Clause License
@@ -10389,7 +10442,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[220] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
+[222] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -10408,7 +10461,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[221] Applies to: npm:jszip@3.10.1
+[223] Applies to: npm:jszip@3.10.1
------------------------------------------------------------------------------
JSZip is dual licensed. At your choice you may use it under the MIT license *or* the GPLv3
license.
@@ -11063,7 +11116,7 @@ copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[222] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
+[224] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
------------------------------------------------------------------------------
Copyright (c) 2013 Brian J. Brennan
@@ -11084,7 +11137,7 @@ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TOR
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[223] Applies to: npm:katex@0.16.47
+[225] Applies to: npm:katex@0.16.47
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11109,7 +11162,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[224] Applies to: npm:khroma@2.1.0
+[226] Applies to: npm:khroma@2.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11134,7 +11187,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[225] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
+[227] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
------------------------------------------------------------------------------
MIT License
@@ -11159,7 +11212,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[226] Applies to: npm:lie@3.3.0
+[228] Applies to: npm:lie@3.3.0
------------------------------------------------------------------------------
#Copyright (c) 2014-2018 Calvin Metcalf, Jordan Harband
@@ -11170,7 +11223,7 @@ The above copyright notice and this permission notice shall be included in all c
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**
------------------------------------------------------------------------------
-[227] Applies to: npm:lodash@4.18.1, npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2
+[229] Applies to: npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2, npm:lodash@4.18.1
------------------------------------------------------------------------------
Copyright OpenJS Foundation and other contributors
@@ -11221,7 +11274,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[228] Applies to: npm:lodash.identity@3.0.0
+[230] Applies to: npm:lodash.identity@3.0.0
------------------------------------------------------------------------------
Copyright 2012-2015 The Dojo Foundation
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,
@@ -11247,7 +11300,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[229] Applies to: npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1
+[231] Applies to: npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1
------------------------------------------------------------------------------
Copyright jQuery Foundation and other contributors
@@ -11298,7 +11351,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[230] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
+[232] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -11324,7 +11377,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[231] Applies to: npm:loudness@0.4.2
+[233] Applies to: npm:loudness@0.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11348,7 +11401,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[232] Applies to: npm:lru-cache@10.4.3
+[234] Applies to: npm:lru-cache@10.4.3
------------------------------------------------------------------------------
The ISC License
@@ -11367,7 +11420,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[233] Applies to: npm:lucide-react@0.468.0
+[235] Applies to: npm:lucide-react@0.468.0
------------------------------------------------------------------------------
ISC License
@@ -11386,7 +11439,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[234] Applies to: npm:magic-bytes.js@1.13.0
+[236] Applies to: npm:magic-bytes.js@1.13.0
------------------------------------------------------------------------------
MIT License
@@ -11411,7 +11464,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[235] Applies to: npm:marked@16.4.2
+[237] Applies to: npm:marked@16.4.2
------------------------------------------------------------------------------
# License information
@@ -11459,7 +11512,7 @@ Redistribution and use in source and binary forms, with or without modification,
This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
------------------------------------------------------------------------------
-[236] Applies to: npm:md5@2.3.0
+[238] Applies to: npm:md5@2.3.0
------------------------------------------------------------------------------
Copyright © 2011-2012, Paul Vorbach.
Copyright © 2009, Jeff Mott.
@@ -11490,7 +11543,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[237] Applies to: npm:mdast-util-phrasing@4.1.0
+[239] Applies to: npm:mdast-util-phrasing@4.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11517,7 +11570,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[238] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
+[240] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
@@ -11549,7 +11602,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[239] Applies to: npm:merge-descriptors@2.0.0
+[241] Applies to: npm:merge-descriptors@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -11564,7 +11617,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[240] Applies to: npm:merge-stream@2.0.0
+[242] Applies to: npm:merge-stream@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11589,7 +11642,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[241] Applies to: npm:mermaid@11.16.0
+[243] Applies to: npm:mermaid@11.16.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11614,13 +11667,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[242] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
+[244] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark and micromark-core-commonmark
+Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
(The MIT License)
@@ -11646,13 +11699,13 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[243] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
+[245] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
+Based on micromark and micromark-core-commonmark
(The MIT License)
@@ -11678,7 +11731,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[244] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
+[246] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11704,7 +11757,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[245] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
+[247] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11731,7 +11784,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[246] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
+[248] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
------------------------------------------------------------------------------
The ISC License
@@ -11750,7 +11803,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[247] Applies to: npm:minipass@7.1.3, npm:path-scurry@1.11.1
+[249] Applies to: npm:minipass@7.1.3, npm:path-scurry@1.11.1
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -11809,11 +11862,11 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[248] Applies to: npm:mkdirp@0.5.6
+[250] Applies to: npm:mkdirp-classic@0.5.3
------------------------------------------------------------------------------
-Copyright 2010 James Halliday (mail@substack.net)
+The MIT License (MIT)
-This project is free software released under the MIT/X11 license:
+Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -11834,11 +11887,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[249] Applies to: npm:mkdirp-classic@0.5.3
+[251] Applies to: npm:mkdirp@0.5.6
------------------------------------------------------------------------------
-The MIT License (MIT)
+Copyright 2010 James Halliday (mail@substack.net)
-Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
+This project is free software released under the MIT/X11 license:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -11859,7 +11912,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[250] Applies to: npm:ms@2.0.0
+[252] Applies to: npm:ms@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11884,7 +11937,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[251] Applies to: npm:ms@2.1.3
+[253] Applies to: npm:ms@2.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11909,7 +11962,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[252] Applies to: npm:nan@2.28.0
+[254] Applies to: npm:nan@2.28.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11922,7 +11975,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[253] Applies to: npm:napi-build-utils@2.0.0
+[255] Applies to: npm:napi-build-utils@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -11947,7 +12000,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[254] Applies to: npm:negotiator@1.0.0
+[256] Applies to: npm:negotiator@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11975,7 +12028,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[255] Applies to: npm:node-abi@3.94.0
+[257] Applies to: npm:node-abi@3.94.0
------------------------------------------------------------------------------
MIT License
@@ -12000,7 +12053,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[256] Applies to: npm:node-addon-api@7.1.1
+[258] Applies to: npm:node-addon-api@7.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12013,7 +12066,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[257] Applies to: npm:node-domexception@1.0.0
+[259] Applies to: npm:node-domexception@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -12038,7 +12091,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[258] Applies to: npm:node-fetch@3.3.2
+[260] Applies to: npm:node-fetch@3.3.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12063,7 +12116,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[259] Applies to: npm:node-machine-id@1.1.12
+[261] Applies to: npm:node-machine-id@1.1.12
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12088,7 +12141,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[260] Applies to: npm:node-pty@1.1.0
+[262] Applies to: npm:node-pty@1.1.0
------------------------------------------------------------------------------
Copyright (c) 2012-2015, Christopher Jeffrey (https://github.com/chjj/)
@@ -12161,7 +12214,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[261] Applies to: npm:object-inspect@1.13.4
+[263] Applies to: npm:object-inspect@1.13.4
------------------------------------------------------------------------------
MIT License
@@ -12186,7 +12239,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[262] Applies to: npm:on-finished@2.4.1
+[264] Applies to: npm:on-finished@2.4.1
------------------------------------------------------------------------------
(The MIT License)
@@ -12213,7 +12266,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[263] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
+[265] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke and others
@@ -12236,7 +12289,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[264] Applies to: npm:package-json-from-dist@1.0.1
+[266] Applies to: npm:package-json-from-dist@1.0.1
------------------------------------------------------------------------------
All packages under `src/` are licensed according to the terms in
their respective `LICENSE` or `LICENSE.md` files.
@@ -12303,7 +12356,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[265] Applies to: npm:package-manager-detector@1.7.0
+[267] Applies to: npm:package-manager-detector@1.7.0
------------------------------------------------------------------------------
MIT License
@@ -12328,7 +12381,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[266] Applies to: npm:pako@1.0.11
+[268] Applies to: npm:pako@1.0.11
------------------------------------------------------------------------------
(The MIT License)
@@ -12353,7 +12406,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[267] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
+[269] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -12379,7 +12432,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[268] Applies to: npm:parse5@7.3.0
+[270] Applies to: npm:parse5@7.3.0
------------------------------------------------------------------------------
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
@@ -12402,7 +12455,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[269] Applies to: npm:parseurl@1.3.3
+[271] Applies to: npm:parseurl@1.3.3
------------------------------------------------------------------------------
(The MIT License)
@@ -12429,7 +12482,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[270] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
+[272] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
------------------------------------------------------------------------------
MIT License
@@ -12454,7 +12507,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[271] Applies to: npm:path-to-regexp@8.4.2
+[273] Applies to: npm:path-to-regexp@8.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12479,7 +12532,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[272] Applies to: npm:pdfjs-dist@5.7.284
+[274] Applies to: npm:pdfjs-dist@5.7.284
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -12659,7 +12712,7 @@ Apache License
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[273] Applies to: npm:picomatch@4.0.5
+[275] Applies to: npm:picomatch@4.0.5
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12684,7 +12737,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[274] Applies to: npm:pkce-challenge@5.0.1
+[276] Applies to: npm:pkce-challenge@5.0.1
------------------------------------------------------------------------------
MIT License
@@ -12709,7 +12762,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[275] Applies to: npm:playwright-core@1.60.0
+[277] Applies to: npm:playwright-core@1.60.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -12915,7 +12968,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[276] Applies to: npm:playwright-core@1.60.0 (NOTICE)
+[278] Applies to: npm:playwright-core@1.60.0 (NOTICE)
------------------------------------------------------------------------------
NOTICE for npm:playwright-core@1.60.0:
@@ -12926,7 +12979,7 @@ This software contains code derived from the Puppeteer project (https://github.c
available under the Apache 2.0 license (https://github.com/puppeteer/puppeteer/blob/master/LICENSE).
------------------------------------------------------------------------------
-[277] Applies to: npm:pngjs@5.0.0
+[279] Applies to: npm:pngjs@5.0.0
------------------------------------------------------------------------------
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
pngjs derived work Copyright (c) 2012 Kuba Niegowski
@@ -12950,7 +13003,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[278] Applies to: npm:points-on-path@0.2.1
+[280] Applies to: npm:points-on-path@0.2.1
------------------------------------------------------------------------------
MIT License
@@ -12975,7 +13028,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[279] Applies to: npm:prebuild-install@7.1.3
+[281] Applies to: npm:prebuild-install@7.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13000,7 +13053,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[280] Applies to: npm:process-nextick-args@2.0.1
+[282] Applies to: npm:process-nextick-args@2.0.1
------------------------------------------------------------------------------
# Copyright (c) 2015 Calvin Metcalf
@@ -13023,7 +13076,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.**
------------------------------------------------------------------------------
-[281] Applies to: npm:promise-worker-transferable@1.0.4
+[283] Applies to: npm:promise-worker-transferable@1.0.4
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -13228,7 +13281,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[282] Applies to: npm:prosemirror-changeset@2.4.1
+[284] Applies to: npm:prosemirror-changeset@2.4.1
------------------------------------------------------------------------------
Copyright (C) 2017 by Marijn Haverbeke and others
@@ -13251,7 +13304,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[283] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
+[285] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
------------------------------------------------------------------------------
Copyright (C) 2015-2017 by Marijn Haverbeke and others
@@ -13274,7 +13327,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[284] Applies to: npm:prosemirror-tables@1.8.5
+[286] Applies to: npm:prosemirror-tables@1.8.5
------------------------------------------------------------------------------
Copyright (C) 2015-2016 by Marijn Haverbeke and others
@@ -13297,7 +13350,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[285] Applies to: npm:protobufjs@7.6.5
+[287] Applies to: npm:protobufjs@7.6.5
------------------------------------------------------------------------------
This license applies to all parts of protobuf.js except those files
either explicitly including or referencing a different license or
@@ -13340,7 +13393,7 @@ standalone and requires a support library to be linked with it. This
support library is itself covered by the above license.
------------------------------------------------------------------------------
-[286] Applies to: npm:proxy-from-env@2.1.0
+[288] Applies to: npm:proxy-from-env@2.1.0
------------------------------------------------------------------------------
The MIT License
@@ -13364,7 +13417,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[287] Applies to: npm:qrcode@1.5.4
+[289] Applies to: npm:qrcode@1.5.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13377,7 +13430,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[288] Applies to: npm:qs@6.15.3
+[290] Applies to: npm:qs@6.15.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -13410,7 +13463,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[289] Applies to: npm:range-parser@1.3.0
+[291] Applies to: npm:range-parser@1.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13437,7 +13490,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[290] Applies to: npm:raw-body@3.0.2
+[292] Applies to: npm:raw-body@3.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13463,7 +13516,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[291] Applies to: npm:rc@1.2.8
+[293] Applies to: npm:rc@1.2.8
------------------------------------------------------------------------------
Apache License, Version 2.0
@@ -13534,7 +13587,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[292] Applies to: npm:react@19.2.3, npm:react-dom@19.2.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
+[294] Applies to: npm:react-dom@19.2.3, npm:react@19.2.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
------------------------------------------------------------------------------
MIT License
@@ -13559,7 +13612,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[293] Applies to: npm:react-i18next@17.0.10
+[295] Applies to: npm:react-i18next@17.0.10
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13584,7 +13637,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[294] Applies to: npm:react-markdown@10.1.0
+[296] Applies to: npm:react-markdown@10.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13609,7 +13662,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[295] Applies to: npm:react-router@7.18.1, npm:react-router-dom@7.18.1
+[297] Applies to: npm:react-router-dom@7.18.1, npm:react-router@7.18.1
------------------------------------------------------------------------------
MIT License
@@ -13636,7 +13689,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[296] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
+[298] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
------------------------------------------------------------------------------
Node.js is licensed for use as follows:
@@ -13687,7 +13740,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[297] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
+[299] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13712,7 +13765,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[298] Applies to: npm:require-directory@2.1.1
+[300] Applies to: npm:require-directory@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13738,7 +13791,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[299] Applies to: npm:require-from-string@2.0.2
+[301] Applies to: npm:require-from-string@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13763,7 +13816,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[300] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3
+[302] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -13781,7 +13834,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[301] Applies to: npm:robust-predicates@3.0.3, npm:tweetnacl@0.14.5
+[303] Applies to: npm:robust-predicates@3.0.3, npm:tweetnacl@0.14.5
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -13809,7 +13862,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[302] Applies to: npm:rope-sequence@1.3.4
+[304] Applies to: npm:rope-sequence@1.3.4
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke
@@ -13832,7 +13885,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[303] Applies to: npm:roughjs@4.6.6
+[305] Applies to: npm:roughjs@4.6.6
------------------------------------------------------------------------------
MIT License
@@ -13857,7 +13910,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[304] Applies to: npm:router@2.2.0
+[306] Applies to: npm:router@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13884,7 +13937,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[305] Applies to: npm:rw@1.3.3
+[307] Applies to: npm:rw@1.3.3
------------------------------------------------------------------------------
Copyright (c) 2014-2016, Michael Bostock
All rights reserved.
@@ -13914,7 +13967,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[306] Applies to: npm:safer-buffer@2.1.2
+[308] Applies to: npm:safer-buffer@2.1.2
------------------------------------------------------------------------------
MIT License
@@ -13939,7 +13992,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[307] Applies to: npm:section-matter@1.0.0
+[309] Applies to: npm:section-matter@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13964,7 +14017,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[308] Applies to: npm:send@1.2.1
+[310] Applies to: npm:send@1.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -13991,7 +14044,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[309] Applies to: npm:serve-static@2.2.1
+[311] Applies to: npm:serve-static@2.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -14020,7 +14073,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[310] Applies to: npm:set-cookie-parser@2.7.2
+[312] Applies to: npm:set-cookie-parser@2.7.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14045,7 +14098,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[311] Applies to: npm:setimmediate@1.0.5
+[313] Applies to: npm:setimmediate@1.0.5
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola
@@ -14069,7 +14122,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[312] Applies to: npm:setprototypeof@1.2.0
+[314] Applies to: npm:setprototypeof@1.2.0
------------------------------------------------------------------------------
Copyright (c) 2015, Wes Todd
@@ -14086,7 +14139,7 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[313] Applies to: npm:shebang-command@2.0.0
+[315] Applies to: npm:shebang-command@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -14099,7 +14152,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[314] Applies to: npm:side-channel@1.1.1, npm:side-channel-weakmap@1.0.2
+[316] Applies to: npm:side-channel-weakmap@1.0.2, npm:side-channel@1.1.1
------------------------------------------------------------------------------
MIT License
@@ -14124,7 +14177,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[315] Applies to: npm:signal-exit@3.0.7
+[317] Applies to: npm:signal-exit@3.0.7
------------------------------------------------------------------------------
The ISC License
@@ -14144,7 +14197,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[316] Applies to: npm:signal-exit@4.1.0
+[318] Applies to: npm:signal-exit@4.1.0
------------------------------------------------------------------------------
The ISC License
@@ -14164,7 +14217,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[317] Applies to: npm:silk-wasm@3.7.1
+[319] Applies to: npm:silk-wasm@3.7.1
------------------------------------------------------------------------------
MIT License
@@ -14189,7 +14242,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[318] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
+[320] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14213,7 +14266,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[319] Applies to: npm:smol-toml@1.7.0
+[321] Applies to: npm:smol-toml@1.7.0
------------------------------------------------------------------------------
Copyright (c) Squirrel Chat et al., All rights reserved.
@@ -14241,7 +14294,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[320] Applies to: npm:sortablejs@1.15.7
+[322] Applies to: npm:sortablejs@1.15.7
------------------------------------------------------------------------------
MIT License
@@ -14266,7 +14319,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[321] Applies to: npm:sprintf-js@1.0.3
+[323] Applies to: npm:sprintf-js@1.0.3
------------------------------------------------------------------------------
Copyright (c) 2007-2014, Alexandru Marasteanu
All rights reserved.
@@ -14294,7 +14347,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[322] Applies to: npm:ssh-config@5.2.0
+[324] Applies to: npm:ssh-config@5.2.0
------------------------------------------------------------------------------
MIT License
@@ -14319,7 +14372,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[323] Applies to: npm:statuses@2.0.2
+[325] Applies to: npm:statuses@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14345,7 +14398,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[324] Applies to: npm:strip-bom-string@1.0.0
+[326] Applies to: npm:strip-bom-string@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14370,7 +14423,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[325] Applies to: npm:style-mod@4.1.3
+[327] Applies to: npm:style-mod@4.1.3
------------------------------------------------------------------------------
Copyright (C) 2018 by Marijn Haverbeke and others
@@ -14393,7 +14446,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[326] Applies to: npm:style-to-js@1.1.21
+[328] Applies to: npm:style-to-js@1.1.21
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14419,7 +14472,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[327] Applies to: npm:style-to-object@1.0.14
+[329] Applies to: npm:style-to-object@1.0.14
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14445,7 +14498,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[328] Applies to: npm:stylis@4.4.0
+[330] Applies to: npm:stylis@4.4.0
------------------------------------------------------------------------------
MIT License
@@ -14470,7 +14523,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[329] Applies to: npm:tailwind-merge@2.6.1
+[331] Applies to: npm:tailwind-merge@2.6.1
------------------------------------------------------------------------------
MIT License
@@ -14495,7 +14548,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[330] Applies to: npm:tinyexec@1.2.4
+[332] Applies to: npm:tinyexec@1.2.4
------------------------------------------------------------------------------
MIT License
@@ -14520,7 +14573,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[331] Applies to: npm:toidentifier@1.0.1
+[333] Applies to: npm:toidentifier@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -14545,7 +14598,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[332] Applies to: npm:trough@2.2.0
+[334] Applies to: npm:trough@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -14570,7 +14623,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[333] Applies to: npm:ts-dedent@2.3.0
+[335] Applies to: npm:ts-dedent@2.3.0
------------------------------------------------------------------------------
MIT License
@@ -14595,7 +14648,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[334] Applies to: npm:ts-mixer@6.0.4
+[336] Applies to: npm:ts-mixer@6.0.4
------------------------------------------------------------------------------
MIT License
@@ -14620,7 +14673,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[335] Applies to: npm:tslib@2.8.1
+[337] Applies to: npm:tslib@2.8.1
------------------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
@@ -14636,7 +14689,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[336] Applies to: npm:tslog@4.11.0
+[338] Applies to: npm:tslog@4.11.0
------------------------------------------------------------------------------
MIT License
@@ -14661,7 +14714,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[337] Applies to: npm:tunnel-agent@0.6.0
+[339] Applies to: npm:tunnel-agent@0.6.0
------------------------------------------------------------------------------
Apache License
@@ -14720,7 +14773,7 @@ If the Work includes a "NOTICE" text file as part of its distribution, then any
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[338] Applies to: npm:type-fest@0.20.2
+[340] Applies to: npm:type-fest@0.20.2
------------------------------------------------------------------------------
MIT License
@@ -14733,7 +14786,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[339] Applies to: npm:typebox@1.1.39
+[341] Applies to: npm:typebox@1.1.39
------------------------------------------------------------------------------
TypeBox
@@ -14760,7 +14813,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[340] Applies to: npm:undici@6.27.0, npm:undici@8.7.0, npm:undici-types@7.24.6
+[342] Applies to: npm:undici-types@7.24.6, npm:undici@6.27.0, npm:undici@8.7.0
------------------------------------------------------------------------------
MIT License
@@ -14785,7 +14838,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[341] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
+[343] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -14810,7 +14863,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[342] Applies to: npm:unist-util-is@6.0.1
+[344] Applies to: npm:unist-util-is@6.0.1
------------------------------------------------------------------------------
(The MIT license)
@@ -14836,7 +14889,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[343] Applies to: npm:universalify@2.0.1
+[345] Applies to: npm:universalify@2.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -14860,7 +14913,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[344] Applies to: npm:unpipe@1.0.0
+[346] Applies to: npm:unpipe@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -14886,7 +14939,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[345] Applies to: npm:uri-js@4.4.1
+[347] Applies to: npm:uri-js@4.4.1
------------------------------------------------------------------------------
Copyright 2011 Gary Court. All rights reserved.
@@ -14901,7 +14954,7 @@ THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRA
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
------------------------------------------------------------------------------
-[346] Applies to: npm:url-template@2.0.8
+[348] Applies to: npm:url-template@2.0.8
------------------------------------------------------------------------------
Copyright (c) 2012-2014, Bram Stein
All rights reserved.
@@ -14930,7 +14983,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[347] Applies to: npm:util-deprecate@1.0.2
+[349] Applies to: npm:util-deprecate@1.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -14958,7 +15011,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[348] Applies to: npm:uuid@14.0.1
+[350] Applies to: npm:uuid@14.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14971,7 +15024,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[349] Applies to: npm:void-elements@3.1.0
+[351] Applies to: npm:void-elements@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -14997,7 +15050,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[350] Applies to: npm:web-streams-polyfill@3.3.3
+[352] Applies to: npm:web-streams-polyfill@3.3.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -15023,7 +15076,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[351] Applies to: npm:which-module@2.0.1
+[353] Applies to: npm:which-module@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -15040,7 +15093,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[352] Applies to: npm:workerpool@9.1.1
+[354] Applies to: npm:workerpool@9.1.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -15245,7 +15298,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[353] Applies to: npm:ws@8.21.1
+[355] Applies to: npm:ws@8.21.1
------------------------------------------------------------------------------
Copyright (c) 2011 Einar Otto Stangvik
Copyright (c) 2013 Arnout Kazemier and contributors
@@ -15269,7 +15322,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[354] Applies to: npm:y18n@4.0.3
+[356] Applies to: npm:y18n@4.0.3
------------------------------------------------------------------------------
Copyright (c) 2015, Contributors
@@ -15286,7 +15339,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[355] Applies to: npm:yargs@15.4.1
+[357] Applies to: npm:yargs@15.4.1
------------------------------------------------------------------------------
MIT License
@@ -15311,7 +15364,26 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[356] Applies to: npm:zod@4.3.6
+[358] Applies to: npm:zod-to-json-schema@3.25.2
+------------------------------------------------------------------------------
+ISC License
+
+Copyright (c) 2020, Stefan Terdell
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+------------------------------------------------------------------------------
+[359] Applies to: npm:zod@4.3.6
------------------------------------------------------------------------------
MIT License
@@ -15335,25 +15407,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[357] Applies to: npm:zod-to-json-schema@3.25.2
-------------------------------------------------------------------------------
-ISC License
-
-Copyright (c) 2020, Stefan Terdell
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
------------------------------------------------------------------------------
Packages without a standalone license file (license per package.json):
------------------------------------------------------------------------------
@@ -15369,11 +15422,12 @@ Packages without a standalone license file (license per package.json):
- npm:@lit-labs/ssr-dom-shim@1.6.0 (BSD-3-Clause)
- npm:@napi-rs/canvas-linux-arm64-gnu@0.1.100 (MIT)
- npm:@napi-rs/canvas-linux-x64-gnu@0.1.100 (MIT)
-- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@napi-rs/woff-build-linux-arm64-gnu@0.2.2 (MIT)
- npm:@napi-rs/woff-build-linux-x64-gnu@0.2.2 (MIT)
+- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@sapphire/async-queue@1.5.5 (MIT)
- npm:@sapphire/snowflake@3.5.5 (MIT)
+- npm:@wecom/aibot-node-sdk@1.0.7 (MIT)
- npm:agent-base@6.0.2 (MIT)
- npm:data-uri-to-buffer@4.0.1 (MIT)
- npm:drizzle-orm@0.45.2 (Apache-2.0)
diff --git a/docs/legal/notices/desktop-macos.txt b/docs/legal/notices/desktop-macos.txt
index 1d20aa2b373..8a366f427e3 100644
--- a/docs/legal/notices/desktop-macos.txt
+++ b/docs/legal/notices/desktop-macos.txt
@@ -1052,7 +1052,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================
-SECTION 2: npm packages (787 packages)
+SECTION 2: npm packages (790 packages)
==============================================================================
- @antfu/install-pkg@1.1.0 — MIT — https://github.com/antfu/install-pkg
@@ -1139,17 +1139,17 @@ SECTION 2: npm packages (787 packages)
- @mermaid-js/parser@1.2.0 — MIT — https://github.com/mermaid-js/mermaid
- @modelcontextprotocol/sdk@1.29.0 — MIT — https://github.com/modelcontextprotocol/typescript-sdk
- @monogrid/gainmap-js@3.4.0 — MIT — https://github.com/MONOGRID/gainmap-js
-- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-darwin-arm64@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-darwin-x64@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
-- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/woff-build-darwin-arm64@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @napi-rs/woff-build-darwin-x64@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @noble/hashes@1.8.0 — MIT — https://github.com/paulmillr/noble-hashes
- @paralleldrive/cuid2@2.3.1 — MIT — https://github.com/ericelliott/cuid2
-- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-darwin-arm64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-darwin-x64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
+- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @pkgjs/parseargs@0.11.0 — MIT — https://github.com/pkgjs/parseargs
- @protobufjs/aspromise@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
- @protobufjs/base64@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
@@ -1213,7 +1213,6 @@ SECTION 2: npm packages (787 packages)
- @tiptap/extension-text@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/pm@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/react@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
-- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-array@3.2.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-axis@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-brush@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -1235,18 +1234,19 @@ SECTION 2: npm packages (787 packages)
- @types/d3-polygon@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-quadtree@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-random@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-scale-chromatic@3.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-selection@3.0.11 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-shape@3.1.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-time-format@4.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-timer@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-transition@3.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-zoom@3.0.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/debug@4.1.13 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/estree-jsx@1.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/geojson@7946.0.16 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/hast@3.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/katex@0.16.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -1261,6 +1261,7 @@ SECTION 2: npm packages (787 packages)
- @ungap/structured-clone@1.3.3 — ISC — https://github.com/ungap/structured-clone
- @upsetjs/venn.js@2.0.0 — MIT — https://github.com/upsetjs/venn.js
- @vladfrangu/async_event_emitter@2.4.7 — MIT — https://github.com/vladfrangu/async_event_emitter
+- @wecom/aibot-node-sdk@1.0.7 — MIT — https://github.com/WecomTeam/aibot-node-sdk
- @xterm/addon-clipboard@0.1.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-clipboard
- @xterm/addon-fit@0.10.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-fit
- @xterm/addon-web-links@0.11.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-web-links
@@ -1268,10 +1269,10 @@ SECTION 2: npm packages (787 packages)
- accepts@2.0.0 — MIT — https://github.com/jshttp/accepts
- agent-base@6.0.2 — MIT — https://github.com/TooTallNate/node-agent-base
- agent-base@7.1.4 — MIT — https://github.com/TooTallNate/proxy-agents
-- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
-- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ajv-formats@1.6.1 — MIT — https://github.com/ajv-validator/ajv-formats
- ajv-formats@3.0.1 — MIT — https://github.com/ajv-validator/ajv-formats
+- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
+- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ansi-regex@5.0.1 — MIT — https://github.com/chalk/ansi-regex
- ansi-regex@6.2.2 — MIT — https://github.com/chalk/ansi-regex
- ansi-styles@4.3.0 — MIT — https://github.com/chalk/ansi-styles
@@ -1293,8 +1294,8 @@ SECTION 2: npm packages (787 packages)
- bl@4.1.0 — MIT — https://github.com/rvagg/bl
- body-parser@2.3.0 — MIT — https://github.com/expressjs/body-parser
- brace-expansion@2.1.2 — MIT — https://github.com/juliangruber/brace-expansion
-- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buffer-equal-constant-time@1.0.1 — BSD-3-Clause — https://github.com/goinstant/buffer-equal-constant-time
+- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buildcheck@0.0.7 — MIT — http://github.com/mscdex/buildcheck
- byte-size@8.2.1 — MIT — https://github.com/75lb/byte-size
- bytes@3.1.2 — MIT — https://github.com/visionmedia/bytes.js
@@ -1302,9 +1303,9 @@ SECTION 2: npm packages (787 packages)
- call-bound@1.0.4 — MIT — https://github.com/ljharb/call-bound
- camelcase@5.3.1 — MIT — https://github.com/sindresorhus/camelcase
- ccount@2.0.1 — MIT — https://github.com/wooorm/ccount
-- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-entities-html4@2.1.0 — MIT — https://github.com/wooorm/character-entities-html4
- character-entities-legacy@3.0.0 — MIT — https://github.com/wooorm/character-entities-legacy
+- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-reference-invalid@2.0.1 — MIT — https://github.com/wooorm/character-reference-invalid
- charenc@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-charenc
- chownr@1.1.4 — ISC — https://github.com/isaacs/chownr
@@ -1321,9 +1322,9 @@ SECTION 2: npm packages (787 packages)
- content-disposition@1.1.0 — MIT — https://github.com/jshttp/content-disposition
- content-type@1.0.5 — MIT — https://github.com/jshttp/content-type
- content-type@2.0.0 — MIT — https://github.com/jshttp/content-type
+- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- cookie@0.7.2 — MIT — https://github.com/jshttp/cookie
- cookie@1.1.1 — MIT — https://github.com/jshttp/cookie
-- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- core-util-is@1.0.3 — MIT — https://github.com/isaacs/core-util-is
- cors@2.8.6 — MIT — https://github.com/expressjs/cors
- cose-base@1.0.3 — MIT — https://github.com/iVis-at-Bilkent/cose-base
@@ -1332,10 +1333,9 @@ SECTION 2: npm packages (787 packages)
- crelt@1.0.7 — MIT — https://code.haverbeke.berlin/marijn/crelt
- cross-spawn@7.0.6 — MIT — https://github.com/moxystudio/node-cross-spawn
- crypt@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-crypt
-- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- cytoscape-cose-bilkent@4.1.0 — MIT — https://github.com/cytoscape/cytoscape.js-cose-bilkent
- cytoscape-fcose@2.2.0 — MIT — https://github.com/iVis-at-Bilkent/cytoscape.js-fcose
-- d3@7.9.0 — ISC — https://github.com/d3/d3
+- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- d3-array@2.12.1 — BSD-3-Clause — https://github.com/d3/d3-array
- d3-array@3.2.4 — ISC — https://github.com/d3/d3-array
- d3-axis@3.0.0 — ISC — https://github.com/d3/d3-axis
@@ -1360,16 +1360,17 @@ SECTION 2: npm packages (787 packages)
- d3-quadtree@3.0.1 — ISC — https://github.com/d3/d3-quadtree
- d3-random@3.0.1 — ISC — https://github.com/d3/d3-random
- d3-sankey@0.12.3 — BSD-3-Clause — https://github.com/d3/d3-sankey
-- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-scale-chromatic@3.1.0 — ISC — https://github.com/d3/d3-scale-chromatic
+- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-selection@3.0.0 — ISC — https://github.com/d3/d3-selection
- d3-shape@1.3.7 — BSD-3-Clause — https://github.com/d3/d3-shape
- d3-shape@3.2.0 — ISC — https://github.com/d3/d3-shape
-- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-time-format@4.1.0 — ISC — https://github.com/d3/d3-time-format
+- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-timer@3.0.1 — ISC — https://github.com/d3/d3-timer
- d3-transition@3.0.1 — ISC — https://github.com/d3/d3-transition
- d3-zoom@3.0.0 — ISC — https://github.com/d3/d3-zoom
+- d3@7.9.0 — ISC — https://github.com/d3/d3
- dagre-d3-es@7.0.14 — MIT — https://github.com/tbo47/dagre-es
- data-uri-to-buffer@4.0.1 — MIT — https://github.com/TooTallNate/node-data-uri-to-buffer
- dayjs@1.11.21 — MIT — https://github.com/iamkun/dayjs
@@ -1390,6 +1391,7 @@ SECTION 2: npm packages (787 packages)
- devlop@1.1.0 — MIT — https://github.com/wooorm/devlop
- diff@8.0.4 — BSD-3-Clause — https://github.com/kpdecker/jsdiff
- dijkstrajs@1.0.3 — MIT — https://github.com/tcort/dijkstrajs
+- dingtalk-stream@v2.1.5 — MIT — https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs
- discord-api-types@0.38.50 — MIT — https://github.com/discordjs/discord-api-types
- discord.js@14.27.0 — Apache-2.0 — https://github.com/discordjs/discord.js
- dompurify@3.4.12 — (MPL-2.0 OR Apache-2.0) — https://github.com/cure53/DOMPurify
@@ -1418,15 +1420,16 @@ SECTION 2: npm packages (787 packages)
- esprima@4.0.1 — BSD-2-Clause — https://github.com/jquery/esprima
- estree-util-is-identifier-name@3.0.0 — MIT — https://github.com/syntax-tree/estree-util-is-identifier-name
- etag@1.8.1 — MIT — https://github.com/jshttp/etag
-- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
+- eventemitter3@5.0.4 — MIT — https://github.com/primus/eventemitter3
- eventsource-parser@3.1.0 — MIT — https://github.com/rexxars/eventsource-parser
+- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
- execa@4.1.0 — MIT — https://github.com/sindresorhus/execa
- execa@5.1.1 — MIT — https://github.com/sindresorhus/execa
- expand-template@2.0.3 — (MIT OR WTFPL) — https://github.com/ralphtheninja/expand-template
-- express@5.2.1 — MIT — https://github.com/expressjs/express
- express-rate-limit@8.5.2 — MIT — https://github.com/express-rate-limit/express-rate-limit
-- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
+- express@5.2.1 — MIT — https://github.com/expressjs/express
- extend-shallow@2.0.1 — MIT — https://github.com/jonschlinkert/extend-shallow
+- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
- fast-deep-equal@3.1.3 — MIT — https://github.com/epoberezkin/fast-deep-equal
- fast-equals@5.4.1 — MIT — https://github.com/planttheidea/fast-equals
- fast-uri@3.1.4 — BSD-3-Clause — https://github.com/fastify/fast-uri
@@ -1473,8 +1476,8 @@ SECTION 2: npm packages (787 packages)
- has-tostringtag@1.0.2 — MIT — https://github.com/inspect-js/has-tostringtag
- hasown@2.0.4 — MIT — https://github.com/inspect-js/hasOwn
- hast-util-from-dom@5.0.1 — ISC — https://github.com/syntax-tree/hast-util-from-dom
-- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-html-isomorphic@2.0.0 — MIT — https://github.com/syntax-tree/hast-util-from-html-isomorphic
+- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-parse5@8.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-parse5
- hast-util-heading-rank@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-heading-rank
- hast-util-is-element@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-is-element
@@ -1548,17 +1551,17 @@ SECTION 2: npm packages (787 packages)
- layout-base@2.0.1 — MIT — https://github.com/iVis-at-Bilkent/layout-base
- lcid@3.1.1 — MIT — https://github.com/sindresorhus/lcid
- lie@3.3.0 — MIT — https://github.com/calvinmetcalf/lie
-- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- lit-element@4.2.2 — BSD-3-Clause — https://github.com/lit/lit
- lit-html@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
+- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- locate-path@3.0.0 — MIT — https://github.com/sindresorhus/locate-path
- locate-path@5.0.0 — MIT — https://github.com/sindresorhus/locate-path
-- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash-es@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash.identity@3.0.0 — MIT — https://github.com/lodash/lodash
- lodash.merge@4.6.2 — MIT — https://github.com/lodash/lodash
- lodash.pickby@4.6.0 — MIT — https://github.com/lodash/lodash
- lodash.snakecase@4.1.1 — MIT — https://github.com/lodash/lodash
+- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- long@5.3.2 — Apache-2.0 — https://github.com/dcodeIO/long.js
- longest-streak@3.1.0 — MIT — https://github.com/wooorm/longest-streak
- loudness@0.4.2 — MIT — https://github.com/LinusU/node-loudness
@@ -1573,36 +1576,35 @@ SECTION 2: npm packages (787 packages)
- md5@2.3.0 — BSD-3-Clause — https://github.com/pvorb/node-md5
- mdast-util-find-and-replace@3.0.2 — MIT — https://github.com/syntax-tree/mdast-util-find-and-replace
- mdast-util-from-markdown@2.0.3 — MIT — https://github.com/syntax-tree/mdast-util-from-markdown
-- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-gfm-autolink-literal@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-gfm-autolink-literal
- mdast-util-gfm-footnote@2.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-footnote
- mdast-util-gfm-strikethrough@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-strikethrough
- mdast-util-gfm-table@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-table
- mdast-util-gfm-task-list-item@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-task-list-item
+- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-math@3.0.0 — MIT — https://github.com/syntax-tree/mdast-util-math
- mdast-util-mdx-expression@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdx-expression
- mdast-util-mdx-jsx@3.2.0 — MIT — https://github.com/syntax-tree/mdast-util-mdx-jsx
- mdast-util-mdxjs-esm@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdxjs-esm
- mdast-util-phrasing@4.1.0 — MIT — https://github.com/syntax-tree/mdast-util-phrasing
- mdast-util-to-hast@13.2.1 — MIT — https://github.com/syntax-tree/mdast-util-to-hast
-- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-markdown-cjk-friendly@1.0.0 — MIT — https://github.com/tats-u/markdown-cjk-friendly
+- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-string@4.0.0 — MIT — https://github.com/syntax-tree/mdast-util-to-string
- media-typer@1.1.0 — MIT — https://github.com/jshttp/media-typer
- merge-descriptors@2.0.0 — MIT — https://github.com/sindresorhus/merge-descriptors
- merge-stream@2.0.0 — MIT — https://github.com/grncdr/merge-stream
- mermaid@11.16.0 — MIT — https://github.com/mermaid-js/mermaid
-- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- micromark-core-commonmark@2.0.3 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark
-- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-cjk-friendly-util@3.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
-- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
+- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-gfm-autolink-literal@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-autolink-literal
- micromark-extension-gfm-footnote@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-footnote
- micromark-extension-gfm-strikethrough@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-strikethrough
- micromark-extension-gfm-table@2.1.1 — MIT — https://github.com/micromark/micromark-extension-gfm-table
- micromark-extension-gfm-tagfilter@2.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm-tagfilter
- micromark-extension-gfm-task-list-item@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-task-list-item
+- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
- micromark-extension-math@3.1.0 — MIT — https://github.com/micromark/micromark-extension-math
- micromark-factory-destination@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination
- micromark-factory-label@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label
@@ -1623,6 +1625,7 @@ SECTION 2: npm packages (787 packages)
- micromark-util-subtokenize@2.1.0 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize
- micromark-util-symbol@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol
- micromark-util-types@2.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-types
+- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- mime-db@1.52.0 — MIT — https://github.com/jshttp/mime-db
- mime-db@1.54.0 — MIT — https://github.com/jshttp/mime-db
- mime-types@2.1.35 — MIT — https://github.com/jshttp/mime-types
@@ -1633,8 +1636,8 @@ SECTION 2: npm packages (787 packages)
- minimatch@9.0.9 — ISC — https://github.com/isaacs/minimatch
- minimist@1.2.8 — MIT — https://github.com/minimistjs/minimist
- minipass@7.1.3 — BlueOak-1.0.0 — https://github.com/isaacs/minipass
-- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mkdirp-classic@0.5.3 — MIT — https://github.com/mafintosh/mkdirp-classic
+- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mri@1.2.0 — MIT — https://github.com/lukeed/mri
- ms@2.0.0 — MIT — https://github.com/zeit/ms
- ms@2.1.3 — MIT — https://github.com/vercel/ms
@@ -1706,15 +1709,15 @@ SECTION 2: npm packages (787 packages)
- range-parser@1.3.0 — MIT — https://github.com/jshttp/range-parser
- raw-body@3.0.2 — MIT — https://github.com/stream-utils/raw-body
- rc@1.2.8 — (BSD-2-Clause OR MIT OR Apache-2.0) — https://github.com/dominictarr/rc
-- react@19.2.3 — MIT — https://github.com/facebook/react
- react-dom@19.2.3 — MIT — https://github.com/facebook/react
- react-i18next@17.0.10 — MIT — https://github.com/i18next/react-i18next
- react-markdown@10.1.0 — MIT — https://github.com/remarkjs/react-markdown
-- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-remove-scroll-bar@2.3.8 — MIT — https://github.com/theKashey/react-remove-scroll-bar
-- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-router-dom@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
- react-style-singleton@2.2.3 — MIT — https://github.com/theKashey/react-style-singleton
+- react@19.2.3 — MIT — https://github.com/facebook/react
- readable-stream@2.3.8 — MIT — https://github.com/nodejs/readable-stream
- readable-stream@3.6.2 — MIT — https://github.com/nodejs/readable-stream
- rehype-highlight@7.0.2 — MIT — https://github.com/rehypejs/rehype-highlight
@@ -1753,10 +1756,10 @@ SECTION 2: npm packages (787 packages)
- shebang-regex@3.0.0 — MIT — https://github.com/sindresorhus/shebang-regex
- shell-env@4.0.3 — MIT — https://github.com/sindresorhus/shell-env
- shell-path@3.1.0 — MIT — https://github.com/sindresorhus/shell-path
-- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- side-channel-list@1.0.1 — MIT — https://github.com/ljharb/side-channel-list
- side-channel-map@1.0.1 — MIT — https://github.com/ljharb/side-channel-map
- side-channel-weakmap@1.0.2 — MIT — https://github.com/ljharb/side-channel-weakmap
+- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- signal-exit@3.0.7 — ISC — https://github.com/tapjs/signal-exit
- signal-exit@4.1.0 — ISC — https://github.com/tapjs/signal-exit
- silk-wasm@3.7.1 — MIT — https://github.com/idranme/silk-wasm
@@ -1800,17 +1803,17 @@ SECTION 2: npm packages (787 packages)
- type-fest@0.20.2 — (MIT OR CC0-1.0) — https://github.com/sindresorhus/type-fest
- type-is@2.1.0 — MIT — https://github.com/jshttp/type-is
- typebox@1.1.39 — MIT — https://github.com/sinclairzx81/typebox
+- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- undici@6.27.0 — MIT — https://github.com/nodejs/undici
- undici@8.7.0 — MIT — https://github.com/nodejs/undici
-- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- unified@11.0.5 — MIT — https://github.com/unifiedjs/unified
- unist-util-find-after@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-find-after
- unist-util-is@6.0.1 — MIT — https://github.com/syntax-tree/unist-util-is
- unist-util-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-position
- unist-util-remove-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-remove-position
- unist-util-stringify-position@4.0.0 — MIT — https://github.com/syntax-tree/unist-util-stringify-position
-- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- unist-util-visit-parents@6.0.2 — MIT — https://github.com/syntax-tree/unist-util-visit-parents
+- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- universalify@2.0.1 — MIT — https://github.com/RyanZim/universalify
- unpipe@1.0.0 — MIT — https://github.com/stream-utils/unpipe
- uri-js@4.4.1 — BSD-2-Clause — http://github.com/garycourt/uri-js
@@ -1821,15 +1824,15 @@ SECTION 2: npm packages (787 packages)
- util-deprecate@1.0.2 — MIT — https://github.com/TooTallNate/util-deprecate
- uuid@14.0.1 — MIT — https://github.com/uuidjs/uuid
- vary@1.1.2 — MIT — https://github.com/jshttp/vary
-- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- vfile-location@5.0.3 — MIT — https://github.com/vfile/vfile-location
- vfile-message@4.0.3 — MIT — https://github.com/vfile/vfile-message
+- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- void-elements@3.1.0 — MIT — https://github.com/pugjs/void-elements
- w3c-keyname@2.2.8 — MIT — https://github.com/marijnh/w3c-keyname
- web-namespaces@2.0.1 — MIT — https://github.com/wooorm/web-namespaces
- web-streams-polyfill@3.3.3 — MIT — https://github.com/MattiasBuelens/web-streams-polyfill
-- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- which-module@2.0.1 — ISC — https://github.com/nexdrew/which-module
+- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- workerpool@9.1.1 — Apache-2.0 — https://github.com/josdejong/workerpool
- wrap-ansi@6.2.0 — MIT — https://github.com/chalk/wrap-ansi
- wrap-ansi@7.0.0 — MIT — https://github.com/chalk/wrap-ansi
@@ -1837,10 +1840,10 @@ SECTION 2: npm packages (787 packages)
- wrappy@1.0.2 — ISC — https://github.com/npm/wrappy
- ws@8.21.1 — MIT — https://github.com/websockets/ws
- y18n@4.0.3 — ISC — https://github.com/yargs/y18n
-- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- yargs-parser@18.1.3 — ISC — https://github.com/yargs/yargs-parser
-- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
+- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- zod-to-json-schema@3.25.2 — ISC — https://github.com/StefanTerdell/zod-to-json-schema
+- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
- zwitch@2.0.4 — MIT — https://github.com/wooorm/zwitch
==============================================================================
@@ -3897,7 +3900,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[28] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit@3.3.3, npm:lit-element@4.2.2, npm:lit-html@3.3.3
+[28] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit-element@4.2.2, npm:lit-html@3.3.3, npm:lit@3.3.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -4104,7 +4107,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[36] Applies to: npm:@parcel/watcher@2.5.6, npm:@parcel/watcher-darwin-arm64@2.5.6, npm:@parcel/watcher-darwin-x64@2.5.6
+[36] Applies to: npm:@parcel/watcher-darwin-arm64@2.5.6, npm:@parcel/watcher-darwin-x64@2.5.6, npm:@parcel/watcher@2.5.6
------------------------------------------------------------------------------
MIT License
@@ -4287,7 +4290,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[43] Applies to: npm:@types/d3@7.4.3, npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale@4.0.9, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time@3.0.4, npm:@types/d3-time-format@4.0.3, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/debug@4.1.13, npm:@types/estree@1.0.9, npm:@types/estree-jsx@1.0.5, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
+[43] Applies to: npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-scale@4.0.9, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time-format@4.0.3, npm:@types/d3-time@3.0.4, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/d3@7.4.3, npm:@types/debug@4.1.13, npm:@types/estree-jsx@1.0.5, npm:@types/estree@1.0.9, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
------------------------------------------------------------------------------
MIT License
@@ -4532,11 +4535,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[53] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
+[53] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2015-2021 Evgeny Poberezkin
+Copyright (c) 2020 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -4557,11 +4560,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[54] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
+[54] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2020 Evgeny Poberezkin
+Copyright (c) 2015-2021 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -5000,7 +5003,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[64] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities@2.0.2, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
+[64] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-entities@2.0.2, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -5295,7 +5298,23 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[74] Applies to: npm:buffer@5.7.1
+[74] Applies to: npm:buffer-equal-constant-time@1.0.1
+------------------------------------------------------------------------------
+Copyright (c) 2013, GoInstant Inc., a salesforce.com company
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+------------------------------------------------------------------------------
+[75] Applies to: npm:buffer@5.7.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -5319,22 +5338,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-------------------------------------------------------------------------------
-[75] Applies to: npm:buffer-equal-constant-time@1.0.1
-------------------------------------------------------------------------------
-Copyright (c) 2013, GoInstant Inc., a salesforce.com company
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
-* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
------------------------------------------------------------------------------
[76] Applies to: npm:buildcheck@0.0.7, npm:cpu-features@0.0.10, npm:ssh2@1.17.0
------------------------------------------------------------------------------
@@ -5867,12 +5870,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[91] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
+[91] Applies to: npm:cookie-signature@1.2.2
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012-2014 Roman Shtylman
-Copyright (c) 2015 Douglas Christopher Wilson
+Copyright (c) 2012–2024 LearnBoost and other contributors;
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -5894,11 +5896,12 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[92] Applies to: npm:cookie-signature@1.2.2
+[92] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012–2024 LearnBoost and other contributors;
+Copyright (c) 2012-2014 Roman Shtylman
+Copyright (c) 2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -6042,9 +6045,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[98] Applies to: npm:cytoscape@3.34.0
+[98] Applies to: npm:cytoscape-cose-bilkent@4.1.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2026, The Cytoscape Consortium.
+Copyright (c) 2016-2018, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6064,18 +6067,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-import fs from 'fs';
-import path from 'path';
-
-import { fileURLToPath } from 'url';
-import { dirname } from 'path';
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = dirname(__filename);
-
-const year = (new Date()).getFullYear();
-
-const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
+------------------------------------------------------------------------------
+[99] Applies to: npm:cytoscape-fcose@2.2.0
+------------------------------------------------------------------------------
+Copyright (c) 2018 - present, iVis-at-Bilkent.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6093,14 +6088,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.`;
-
-fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
+SOFTWARE.
------------------------------------------------------------------------------
-[99] Applies to: npm:cytoscape-cose-bilkent@4.1.0
+[100] Applies to: npm:cytoscape@3.34.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2018, The Cytoscape Consortium.
+Copyright (c) 2016-2026, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6120,10 +6113,18 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[100] Applies to: npm:cytoscape-fcose@2.2.0
-------------------------------------------------------------------------------
-Copyright (c) 2018 - present, iVis-at-Bilkent.
+import fs from 'fs';
+import path from 'path';
+
+import { fileURLToPath } from 'url';
+import { dirname } from 'path';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const year = (new Date()).getFullYear();
+
+const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -6141,27 +6142,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-------------------------------------------------------------------------------
-[101] Applies to: npm:d3@7.9.0, npm:d3-array@3.2.4
-------------------------------------------------------------------------------
-Copyright 2010-2023 Mike Bostock
-
-Permission to use, copy, modify, and/or distribute this software for any purpose
-with or without fee is hereby granted, provided that the above copyright notice
-and this permission notice appear in all copies.
+SOFTWARE.`;
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-THIS SOFTWARE.
+fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
------------------------------------------------------------------------------
-[102] Applies to: npm:d3-array@2.12.1
+[101] Applies to: npm:d3-array@2.12.1
------------------------------------------------------------------------------
Copyright 2010-2020 Mike Bostock
All rights reserved.
@@ -6191,6 +6177,23 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+------------------------------------------------------------------------------
+[102] Applies to: npm:d3-array@3.2.4, npm:d3@7.9.0
+------------------------------------------------------------------------------
+Copyright 2010-2023 Mike Bostock
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
------------------------------------------------------------------------------
[103] Applies to: npm:d3-axis@3.0.0, npm:d3-brush@3.0.0, npm:d3-chord@3.0.1, npm:d3-dispatch@3.0.1, npm:d3-drag@3.0.0, npm:d3-force@3.0.0, npm:d3-hierarchy@3.1.2, npm:d3-interpolate@3.0.1, npm:d3-polygon@3.0.1, npm:d3-quadtree@3.0.1, npm:d3-random@3.0.1, npm:d3-scale@4.0.2, npm:d3-selection@3.0.0, npm:d3-time-format@4.1.0, npm:d3-timer@3.0.1, npm:d3-transition@3.0.1, npm:d3-zoom@3.0.0
------------------------------------------------------------------------------
@@ -6646,7 +6649,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[122] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm@3.1.0, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark@4.0.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
+[122] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-gfm@3.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:micromark@4.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -7078,7 +7081,32 @@ THE SOFTWARE.
```
------------------------------------------------------------------------------
-[132] Applies to: npm:discord-api-types@0.38.50
+[132] Applies to: npm:dingtalk-stream@v2.1.5
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2023 钉钉开放平台团队
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[133] Applies to: npm:discord-api-types@0.38.50
------------------------------------------------------------------------------
MIT License
@@ -7103,7 +7131,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[133] Applies to: npm:dompurify@3.4.12
+[134] Applies to: npm:dompurify@3.4.12
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -7682,7 +7710,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[134] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
+[135] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -7707,7 +7735,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[135] Applies to: npm:ecdsa-sig-formatter@1.0.11
+[136] Applies to: npm:ecdsa-sig-formatter@1.0.11
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -7912,7 +7940,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[136] Applies to: npm:ee-first@1.1.1
+[137] Applies to: npm:ee-first@1.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -7937,7 +7965,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[137] Applies to: npm:electron-squirrel-startup@1.0.1
+[138] Applies to: npm:electron-squirrel-startup@1.0.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -8142,7 +8170,7 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[138] Applies to: npm:electron-window-state@5.0.3
+[139] Applies to: npm:electron-window-state@5.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8168,7 +8196,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[139] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
+[140] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
------------------------------------------------------------------------------
Copyright Mathias Bynens
@@ -8192,7 +8220,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[140] Applies to: npm:encodeurl@2.0.0
+[141] Applies to: npm:encodeurl@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8218,7 +8246,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[141] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
+[142] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8243,7 +8271,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[142] Applies to: npm:entities@6.0.1
+[143] Applies to: npm:entities@6.0.1
------------------------------------------------------------------------------
Copyright (c) Felix Böhm
All rights reserved.
@@ -8258,7 +8286,7 @@ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRE
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[143] Applies to: npm:es-set-tostringtag@2.1.0
+[144] Applies to: npm:es-set-tostringtag@2.1.0
------------------------------------------------------------------------------
MIT License
@@ -8283,7 +8311,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[144] Applies to: npm:es-toolkit@1.49.0
+[145] Applies to: npm:es-toolkit@1.49.0
------------------------------------------------------------------------------
MIT License
@@ -8308,7 +8336,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[145] Applies to: npm:escape-html@1.0.3
+[146] Applies to: npm:escape-html@1.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -8336,7 +8364,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[146] Applies to: npm:esprima@4.0.1
+[147] Applies to: npm:esprima@4.0.1
------------------------------------------------------------------------------
Copyright JS Foundation and other contributors, https://js.foundation/
@@ -8361,7 +8389,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[147] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-math@3.1.0
+[148] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-math@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8387,7 +8415,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[148] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
+[149] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
------------------------------------------------------------------------------
(The MIT License)
@@ -8413,37 +8441,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[149] Applies to: npm:eventsource@3.0.7
-------------------------------------------------------------------------------
-The MIT License
-
-Copyright (c) EventSource GitHub organisation
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[150] Applies to: npm:eventsource-parser@3.1.0
+[150] Applies to: npm:eventemitter3@5.0.4
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2026 Espen Hovlandsdal
+Copyright (c) 2014 Arnout Kazemier
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -8464,11 +8466,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[151] Applies to: npm:expand-template@2.0.3
+[151] Applies to: npm:eventsource-parser@3.1.0
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2018 Lars-Magnus Skog
+Copyright (c) 2026 Espen Hovlandsdal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -8477,29 +8479,27 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
------------------------------------------------------------------------------
-[152] Applies to: npm:express@5.2.1
+[152] Applies to: npm:eventsource@3.0.7
------------------------------------------------------------------------------
-(The MIT License)
+The MIT License
-Copyright (c) 2009-2014 TJ Holowaychuk
-Copyright (c) 2013-2014 Roman Shtylman
-Copyright (c) 2014-2015 Douglas Christopher Wilson
+Copyright (c) EventSource GitHub organisation
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
-'Software'), to deal in the Software without restriction, including
+"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
@@ -8508,16 +8508,41 @@ the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[153] Applies to: npm:expand-template@2.0.3
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright (c) 2018 Lars-Magnus Skog
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
------------------------------------------------------------------------------
-[153] Applies to: npm:express-rate-limit@8.5.2
+[154] Applies to: npm:express-rate-limit@8.5.2
------------------------------------------------------------------------------
# MIT License
@@ -8541,15 +8566,17 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[154] Applies to: npm:extend@3.0.2
+[155] Applies to: npm:express@5.2.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+(The MIT License)
-Copyright (c) 2014 Stefan Thomas
+Copyright (c) 2009-2014 TJ Holowaychuk
+Copyright (c) 2013-2014 Roman Shtylman
+Copyright (c) 2014-2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
+'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
@@ -8558,16 +8585,16 @@ the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[155] Applies to: npm:extend-shallow@2.0.1
+[156] Applies to: npm:extend-shallow@2.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8592,7 +8619,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[156] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
+[157] Applies to: npm:extend@3.0.2
+------------------------------------------------------------------------------
+The MIT License (MIT)
+
+Copyright (c) 2014 Stefan Thomas
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+------------------------------------------------------------------------------
+[158] Applies to: npm:fast-deep-equal@3.1.3, npm:json-schema-traverse@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -8617,7 +8670,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[157] Applies to: npm:fast-equals@5.4.1
+[159] Applies to: npm:fast-equals@5.4.1
------------------------------------------------------------------------------
MIT License
@@ -8642,7 +8695,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[158] Applies to: npm:fast-uri@3.1.4
+[160] Applies to: npm:fast-uri@3.1.4
------------------------------------------------------------------------------
Copyright (c) 2011-2021, Gary Court until https://github.com/garycourt/uri-js/commit/a1acf730b4bba3f1097c9f52e7d9d3aba8cdcaae
Copyright (c) 2021-present The Fastify team
@@ -8676,7 +8729,7 @@ The complete list of contributors can be found at:
- https://github.com/garycourt/uri-js/graphs/contributors
------------------------------------------------------------------------------
-[159] Applies to: npm:fetch-blob@3.2.0
+[161] Applies to: npm:fetch-blob@3.2.0
------------------------------------------------------------------------------
MIT License
@@ -8701,7 +8754,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[160] Applies to: npm:file-uri-to-path@1.0.0
+[162] Applies to: npm:file-uri-to-path@1.0.0
------------------------------------------------------------------------------
Copyright (c) 2014 Nathan Rajlich
@@ -8725,7 +8778,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[161] Applies to: npm:finalhandler@2.1.1
+[163] Applies to: npm:finalhandler@2.1.1
------------------------------------------------------------------------------
(The MIT License)
@@ -8751,7 +8804,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[162] Applies to: npm:follow-redirects@1.16.0
+[164] Applies to: npm:follow-redirects@1.16.0
------------------------------------------------------------------------------
Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh
@@ -8773,7 +8826,7 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[163] Applies to: npm:foreground-child@3.3.1
+[165] Applies to: npm:foreground-child@3.3.1
------------------------------------------------------------------------------
The ISC License
@@ -8792,7 +8845,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[164] Applies to: npm:form-data@4.0.6
+[166] Applies to: npm:form-data@4.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
@@ -8815,7 +8868,7 @@ Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
THE SOFTWARE.
------------------------------------------------------------------------------
-[165] Applies to: npm:formdata-polyfill@4.0.10
+[167] Applies to: npm:formdata-polyfill@4.0.10
------------------------------------------------------------------------------
MIT License
@@ -8840,7 +8893,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[166] Applies to: npm:fresh@2.0.0
+[168] Applies to: npm:fresh@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -8867,7 +8920,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[167] Applies to: npm:fs-constants@1.0.0
+[169] Applies to: npm:fs-constants@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -8892,7 +8945,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[168] Applies to: npm:fs-extra@11.3.6
+[170] Applies to: npm:fs-extra@11.3.6
------------------------------------------------------------------------------
(The MIT License)
@@ -8911,7 +8964,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[169] Applies to: npm:function-bind@1.1.2
+[171] Applies to: npm:function-bind@1.1.2
------------------------------------------------------------------------------
Copyright (c) 2013 Raynos.
@@ -8934,7 +8987,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[170] Applies to: npm:get-caller-file@2.0.5
+[172] Applies to: npm:get-caller-file@2.0.5
------------------------------------------------------------------------------
ISC License (ISC)
Copyright 2018 Stefan Penner
@@ -8944,7 +8997,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[171] Applies to: npm:get-intrinsic@1.3.0
+[173] Applies to: npm:get-intrinsic@1.3.0
------------------------------------------------------------------------------
MIT License
@@ -8969,7 +9022,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[172] Applies to: npm:get-nonce@1.0.1
+[174] Applies to: npm:get-nonce@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -8994,7 +9047,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[173] Applies to: npm:get-proto@1.0.1
+[175] Applies to: npm:get-proto@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -9019,7 +9072,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[174] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
+[176] Applies to: npm:github-from-package@0.0.0, npm:minimist@1.2.8
------------------------------------------------------------------------------
This software is released under the MIT license:
@@ -9041,7 +9094,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[175] Applies to: npm:github-slugger@2.0.0
+[177] Applies to: npm:github-slugger@2.0.0
------------------------------------------------------------------------------
Copyright (c) 2015, Dan Flettre
@@ -9050,7 +9103,7 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[176] Applies to: npm:glob@10.5.0
+[178] Applies to: npm:glob@10.5.0
------------------------------------------------------------------------------
The ISC License
@@ -9069,7 +9122,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[177] Applies to: npm:gopd@1.2.0
+[179] Applies to: npm:gopd@1.2.0
------------------------------------------------------------------------------
MIT License
@@ -9094,7 +9147,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[178] Applies to: npm:graceful-fs@4.2.11
+[180] Applies to: npm:graceful-fs@4.2.11
------------------------------------------------------------------------------
The ISC License
@@ -9113,7 +9166,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[179] Applies to: npm:gray-matter@4.0.3
+[181] Applies to: npm:gray-matter@4.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9138,7 +9191,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[180] Applies to: npm:gtoken@8.0.0
+[182] Applies to: npm:gtoken@8.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9163,7 +9216,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[181] Applies to: npm:hachure-fill@0.5.2
+[183] Applies to: npm:hachure-fill@0.5.2
------------------------------------------------------------------------------
MIT License
@@ -9188,7 +9241,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[182] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
+[184] Applies to: npm:harmonyos-sans-sc-webfont-splitted@1.1.0
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -9216,7 +9269,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[183] Applies to: npm:has-symbols@1.1.0
+[185] Applies to: npm:has-symbols@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -9241,7 +9294,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[184] Applies to: npm:has-tostringtag@1.0.2
+[186] Applies to: npm:has-tostringtag@1.0.2
------------------------------------------------------------------------------
MIT License
@@ -9266,7 +9319,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[185] Applies to: npm:hasown@2.0.4
+[187] Applies to: npm:hasown@2.0.4
------------------------------------------------------------------------------
MIT License
@@ -9291,7 +9344,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[186] Applies to: npm:hast-util-from-dom@5.0.1
+[188] Applies to: npm:hast-util-from-dom@5.0.1
------------------------------------------------------------------------------
(ISC License)
@@ -9310,11 +9363,11 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[187] Applies to: npm:hast-util-from-html@2.0.3
+[189] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2022 Titus Wormer
+Copyright (c) 2023 Remco Haszing
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -9336,11 +9389,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[188] Applies to: npm:hast-util-from-html-isomorphic@2.0.0
+[190] Applies to: npm:hast-util-from-html@2.0.3
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2023 Remco Haszing
+Copyright (c) 2022 Titus Wormer
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -9362,7 +9415,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[189] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
+[191] Applies to: npm:hast-util-to-string@3.0.1, npm:html-url-attributes@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -9387,7 +9440,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[190] Applies to: npm:hast-util-to-text@4.0.2
+[192] Applies to: npm:hast-util-to-text@4.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -9413,7 +9466,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[191] Applies to: npm:highlight.js@11.11.1
+[193] Applies to: npm:highlight.js@11.11.1
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -9446,7 +9499,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[192] Applies to: npm:hono@4.12.30
+[194] Applies to: npm:hono@4.12.30
------------------------------------------------------------------------------
MIT License
@@ -9471,7 +9524,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[193] Applies to: npm:html-to-image@1.11.13
+[195] Applies to: npm:html-to-image@1.11.13
------------------------------------------------------------------------------
MIT License
@@ -9496,7 +9549,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[194] Applies to: npm:http-errors@2.0.1
+[196] Applies to: npm:http-errors@2.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9522,7 +9575,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[195] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
+[197] Applies to: npm:human-signals@1.1.1, npm:human-signals@2.1.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -9727,7 +9780,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[196] Applies to: npm:i18next@26.3.6
+[198] Applies to: npm:i18next@26.3.6
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -9752,7 +9805,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[197] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
+[199] Applies to: npm:iconv-lite@0.6.3, npm:iconv-lite@0.7.3
------------------------------------------------------------------------------
Copyright (c) 2011 Alexander Shtuchkin
@@ -9776,7 +9829,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[198] Applies to: npm:ieee754@1.2.1
+[200] Applies to: npm:ieee754@1.2.1
------------------------------------------------------------------------------
Copyright 2008 Fair Oaks Labs, Inc.
@@ -9791,7 +9844,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[199] Applies to: npm:ignore@7.0.6
+[201] Applies to: npm:ignore@7.0.6
------------------------------------------------------------------------------
Copyright (c) 2013 Kael Zhang , contributors
http://kael.me/
@@ -9816,7 +9869,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[200] Applies to: npm:immediate@3.0.6
+[202] Applies to: npm:immediate@3.0.6
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier
@@ -9840,7 +9893,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[201] Applies to: npm:import-meta-resolve@4.2.0
+[203] Applies to: npm:import-meta-resolve@4.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -9918,7 +9971,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[202] Applies to: npm:inherits@2.0.4
+[204] Applies to: npm:inherits@2.0.4
------------------------------------------------------------------------------
The ISC License
@@ -9937,7 +9990,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[203] Applies to: npm:inline-style-parser@0.2.7
+[205] Applies to: npm:inline-style-parser@0.2.7
------------------------------------------------------------------------------
(The MIT License)
@@ -9950,7 +10003,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[204] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
+[206] Applies to: npm:internmap@1.0.1, npm:internmap@2.0.3
------------------------------------------------------------------------------
Copyright 2021 Mike Bostock
@@ -9967,7 +10020,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[205] Applies to: npm:ip-address@10.2.0
+[207] Applies to: npm:ip-address@10.2.0
------------------------------------------------------------------------------
Copyright (C) 2011 by Beau Gunderson
@@ -9990,7 +10043,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[206] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
+[208] Applies to: npm:ipaddr.js@1.9.1, npm:ipaddr.js@2.4.0
------------------------------------------------------------------------------
Copyright (C) 2011-2017 whitequark
@@ -10013,7 +10066,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[207] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
+[209] Applies to: npm:is-buffer@1.1.6, npm:safe-buffer@5.1.2, npm:safe-buffer@5.2.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10038,7 +10091,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[208] Applies to: npm:is-extendable@0.1.1
+[210] Applies to: npm:is-extendable@0.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10063,7 +10116,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[209] Applies to: npm:is-extglob@2.1.1
+[211] Applies to: npm:is-extglob@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10088,7 +10141,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[210] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
+[212] Applies to: npm:is-glob@4.0.3, npm:kind-of@6.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10113,7 +10166,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[211] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0
+[213] Applies to: npm:is-promise@2.2.2, npm:is-promise@4.0.0
------------------------------------------------------------------------------
Copyright (c) 2014 Forbes Lindesay
@@ -10136,7 +10189,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[212] Applies to: npm:jackspeak@3.4.3
+[214] Applies to: npm:jackspeak@3.4.3
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -10195,7 +10248,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim._**
------------------------------------------------------------------------------
-[213] Applies to: npm:jose@6.2.3
+[215] Applies to: npm:jose@6.2.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10220,7 +10273,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[214] Applies to: npm:js-base64@3.9.1
+[216] Applies to: npm:js-base64@3.9.1
------------------------------------------------------------------------------
Copyright (c) 2014, Dan Kogai
All rights reserved.
@@ -10251,7 +10304,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[215] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
+[217] Applies to: npm:js-yaml@3.15.0, npm:js-yaml@4.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -10276,7 +10329,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[216] Applies to: npm:json-bigint@1.0.0
+[218] Applies to: npm:json-bigint@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -10300,7 +10353,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[217] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
+[219] Applies to: npm:json-schema-to-ts@3.1.1, npm:ts-algebra@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -10325,7 +10378,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[218] Applies to: npm:json-schema-typed@7.0.3
+[220] Applies to: npm:json-schema-typed@7.0.3
------------------------------------------------------------------------------
BSD-2-Clause License
@@ -10355,7 +10408,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[219] Applies to: npm:json-schema-typed@8.0.2
+[221] Applies to: npm:json-schema-typed@8.0.2
------------------------------------------------------------------------------
BSD 2-Clause License
@@ -10416,7 +10469,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[220] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
+[222] Applies to: npm:jsonfile@4.0.0, npm:jsonfile@6.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -10435,7 +10488,7 @@ OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHE
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[221] Applies to: npm:jszip@3.10.1
+[223] Applies to: npm:jszip@3.10.1
------------------------------------------------------------------------------
JSZip is dual licensed. At your choice you may use it under the MIT license *or* the GPLv3
license.
@@ -11090,7 +11143,7 @@ copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[222] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
+[224] Applies to: npm:jwa@2.0.1, npm:jws@4.0.1
------------------------------------------------------------------------------
Copyright (c) 2013 Brian J. Brennan
@@ -11111,7 +11164,7 @@ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TOR
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[223] Applies to: npm:katex@0.16.47
+[225] Applies to: npm:katex@0.16.47
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11136,7 +11189,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[224] Applies to: npm:khroma@2.1.0
+[226] Applies to: npm:khroma@2.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11161,7 +11214,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[225] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
+[227] Applies to: npm:layout-base@1.0.2, npm:layout-base@2.0.1
------------------------------------------------------------------------------
MIT License
@@ -11186,7 +11239,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[226] Applies to: npm:lie@3.3.0
+[228] Applies to: npm:lie@3.3.0
------------------------------------------------------------------------------
#Copyright (c) 2014-2018 Calvin Metcalf, Jordan Harband
@@ -11197,7 +11250,7 @@ The above copyright notice and this permission notice shall be included in all c
**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**
------------------------------------------------------------------------------
-[227] Applies to: npm:lodash@4.18.1, npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2
+[229] Applies to: npm:lodash-es@4.18.1, npm:lodash.merge@4.6.2, npm:lodash@4.18.1
------------------------------------------------------------------------------
Copyright OpenJS Foundation and other contributors
@@ -11248,7 +11301,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[228] Applies to: npm:lodash.identity@3.0.0
+[230] Applies to: npm:lodash.identity@3.0.0
------------------------------------------------------------------------------
Copyright 2012-2015 The Dojo Foundation
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,
@@ -11274,7 +11327,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[229] Applies to: npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1
+[231] Applies to: npm:lodash.pickby@4.6.0, npm:lodash.snakecase@4.1.1
------------------------------------------------------------------------------
Copyright jQuery Foundation and other contributors
@@ -11325,7 +11378,7 @@ licenses; we recommend you read them, as their terms may differ from the
terms above.
------------------------------------------------------------------------------
-[230] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
+[232] Applies to: npm:longest-streak@3.1.0, npm:stringify-entities@4.0.4, npm:trim-lines@3.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -11351,7 +11404,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[231] Applies to: npm:loudness@0.4.2
+[233] Applies to: npm:loudness@0.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11375,7 +11428,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[232] Applies to: npm:lru-cache@10.4.3
+[234] Applies to: npm:lru-cache@10.4.3
------------------------------------------------------------------------------
The ISC License
@@ -11394,7 +11447,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[233] Applies to: npm:lucide-react@0.468.0
+[235] Applies to: npm:lucide-react@0.468.0
------------------------------------------------------------------------------
ISC License
@@ -11413,7 +11466,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[234] Applies to: npm:magic-bytes.js@1.13.0
+[236] Applies to: npm:magic-bytes.js@1.13.0
------------------------------------------------------------------------------
MIT License
@@ -11438,7 +11491,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[235] Applies to: npm:marked@16.4.2
+[237] Applies to: npm:marked@16.4.2
------------------------------------------------------------------------------
# License information
@@ -11486,7 +11539,7 @@ Redistribution and use in source and binary forms, with or without modification,
This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
------------------------------------------------------------------------------
-[236] Applies to: npm:md5@2.3.0
+[238] Applies to: npm:md5@2.3.0
------------------------------------------------------------------------------
Copyright © 2011-2012, Paul Vorbach.
Copyright © 2009, Jeff Mott.
@@ -11517,7 +11570,7 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[237] Applies to: npm:mdast-util-phrasing@4.1.0
+[239] Applies to: npm:mdast-util-phrasing@4.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11544,7 +11597,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[238] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
+[240] Applies to: npm:mdast-util-to-markdown-cjk-friendly@1.0.0, npm:remark-cjk-friendly@2.3.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
@@ -11576,7 +11629,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[239] Applies to: npm:merge-descriptors@2.0.0
+[241] Applies to: npm:merge-descriptors@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -11591,7 +11644,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[240] Applies to: npm:merge-stream@2.0.0
+[242] Applies to: npm:merge-stream@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11616,7 +11669,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[241] Applies to: npm:mermaid@11.16.0
+[243] Applies to: npm:mermaid@11.16.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11641,13 +11694,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[242] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
+[244] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark and micromark-core-commonmark
+Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
(The MIT License)
@@ -11673,13 +11726,13 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[243] Applies to: npm:micromark-extension-cjk-friendly-util@3.0.1
+[245] Applies to: npm:micromark-extension-cjk-friendly@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2025 Tatsunori Uchino
MIT LICENSE
-Based on micromark's sub-packages (micromark-util-character, micromark-util-symbol, and micromark-util-classify-character)
+Based on micromark and micromark-core-commonmark
(The MIT License)
@@ -11705,7 +11758,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[244] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
+[246] Applies to: npm:micromark-extension-gfm-footnote@2.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11731,7 +11784,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[245] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
+[247] Applies to: npm:mime-db@1.52.0, npm:mime-db@1.54.0
------------------------------------------------------------------------------
(The MIT License)
@@ -11758,7 +11811,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[246] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
+[248] Applies to: npm:minimatch@9.0.9, npm:rimraf@5.0.10
------------------------------------------------------------------------------
The ISC License
@@ -11777,7 +11830,7 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[247] Applies to: npm:minipass@7.1.3, npm:path-scurry@1.11.1
+[249] Applies to: npm:minipass@7.1.3, npm:path-scurry@1.11.1
------------------------------------------------------------------------------
# Blue Oak Model License
@@ -11836,11 +11889,11 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[248] Applies to: npm:mkdirp@0.5.6
+[250] Applies to: npm:mkdirp-classic@0.5.3
------------------------------------------------------------------------------
-Copyright 2010 James Halliday (mail@substack.net)
+The MIT License (MIT)
-This project is free software released under the MIT/X11 license:
+Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -11861,11 +11914,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[249] Applies to: npm:mkdirp-classic@0.5.3
+[251] Applies to: npm:mkdirp@0.5.6
------------------------------------------------------------------------------
-The MIT License (MIT)
+Copyright 2010 James Halliday (mail@substack.net)
-Copyright (c) 2020 James Halliday (mail@substack.net) and Mathias Buus
+This project is free software released under the MIT/X11 license:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -11886,7 +11939,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[250] Applies to: npm:ms@2.0.0
+[252] Applies to: npm:ms@2.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11911,7 +11964,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[251] Applies to: npm:ms@2.1.3
+[253] Applies to: npm:ms@2.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11936,7 +11989,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[252] Applies to: npm:nan@2.28.0
+[254] Applies to: npm:nan@2.28.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11949,7 +12002,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[253] Applies to: npm:napi-build-utils@2.0.0
+[255] Applies to: npm:napi-build-utils@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -11974,7 +12027,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[254] Applies to: npm:negotiator@1.0.0
+[256] Applies to: npm:negotiator@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -12002,7 +12055,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[255] Applies to: npm:node-abi@3.94.0
+[257] Applies to: npm:node-abi@3.94.0
------------------------------------------------------------------------------
MIT License
@@ -12027,7 +12080,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[256] Applies to: npm:node-addon-api@7.1.1
+[258] Applies to: npm:node-addon-api@7.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12040,7 +12093,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[257] Applies to: npm:node-domexception@1.0.0
+[259] Applies to: npm:node-domexception@1.0.0
------------------------------------------------------------------------------
MIT License
@@ -12065,7 +12118,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[258] Applies to: npm:node-fetch@3.3.2
+[260] Applies to: npm:node-fetch@3.3.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12090,7 +12143,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[259] Applies to: npm:node-machine-id@1.1.12
+[261] Applies to: npm:node-machine-id@1.1.12
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12115,7 +12168,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[260] Applies to: npm:node-pty@1.1.0
+[262] Applies to: npm:node-pty@1.1.0
------------------------------------------------------------------------------
Copyright (c) 2012-2015, Christopher Jeffrey (https://github.com/chjj/)
@@ -12188,7 +12241,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[261] Applies to: npm:object-inspect@1.13.4
+[263] Applies to: npm:object-inspect@1.13.4
------------------------------------------------------------------------------
MIT License
@@ -12213,7 +12266,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[262] Applies to: npm:on-finished@2.4.1
+[264] Applies to: npm:on-finished@2.4.1
------------------------------------------------------------------------------
(The MIT License)
@@ -12240,7 +12293,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[263] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
+[265] Applies to: npm:orderedmap@2.1.1, npm:w3c-keyname@2.2.8
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke and others
@@ -12263,7 +12316,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[264] Applies to: npm:package-json-from-dist@1.0.1
+[266] Applies to: npm:package-json-from-dist@1.0.1
------------------------------------------------------------------------------
All packages under `src/` are licensed according to the terms in
their respective `LICENSE` or `LICENSE.md` files.
@@ -12330,7 +12383,7 @@ will be liable to anyone for any damages related to this
software or this license, under any kind of legal claim.***
------------------------------------------------------------------------------
-[265] Applies to: npm:package-manager-detector@1.7.0
+[267] Applies to: npm:package-manager-detector@1.7.0
------------------------------------------------------------------------------
MIT License
@@ -12355,7 +12408,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[266] Applies to: npm:pako@1.0.11
+[268] Applies to: npm:pako@1.0.11
------------------------------------------------------------------------------
(The MIT License)
@@ -12380,7 +12433,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[267] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
+[269] Applies to: npm:parse-entities@4.0.2, npm:property-information@7.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -12406,7 +12459,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[268] Applies to: npm:parse5@7.3.0
+[270] Applies to: npm:parse5@7.3.0
------------------------------------------------------------------------------
Copyright (c) 2013-2019 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)
@@ -12429,7 +12482,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[269] Applies to: npm:parseurl@1.3.3
+[271] Applies to: npm:parseurl@1.3.3
------------------------------------------------------------------------------
(The MIT License)
@@ -12456,7 +12509,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[270] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
+[272] Applies to: npm:path-data-parser@0.1.0, npm:points-on-curve@0.2.0
------------------------------------------------------------------------------
MIT License
@@ -12481,7 +12534,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[271] Applies to: npm:path-to-regexp@8.4.2
+[273] Applies to: npm:path-to-regexp@8.4.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12506,7 +12559,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[272] Applies to: npm:pdfjs-dist@5.7.284
+[274] Applies to: npm:pdfjs-dist@5.7.284
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -12686,7 +12739,7 @@ Apache License
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[273] Applies to: npm:picomatch@4.0.5
+[275] Applies to: npm:picomatch@4.0.5
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -12711,7 +12764,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[274] Applies to: npm:pkce-challenge@5.0.1
+[276] Applies to: npm:pkce-challenge@5.0.1
------------------------------------------------------------------------------
MIT License
@@ -12736,7 +12789,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[275] Applies to: npm:playwright-core@1.60.0
+[277] Applies to: npm:playwright-core@1.60.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -12942,7 +12995,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[276] Applies to: npm:playwright-core@1.60.0 (NOTICE)
+[278] Applies to: npm:playwright-core@1.60.0 (NOTICE)
------------------------------------------------------------------------------
NOTICE for npm:playwright-core@1.60.0:
@@ -12953,7 +13006,7 @@ This software contains code derived from the Puppeteer project (https://github.c
available under the Apache 2.0 license (https://github.com/puppeteer/puppeteer/blob/master/LICENSE).
------------------------------------------------------------------------------
-[277] Applies to: npm:pngjs@5.0.0
+[279] Applies to: npm:pngjs@5.0.0
------------------------------------------------------------------------------
pngjs2 original work Copyright (c) 2015 Luke Page & Original Contributors
pngjs derived work Copyright (c) 2012 Kuba Niegowski
@@ -12977,7 +13030,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[278] Applies to: npm:points-on-path@0.2.1
+[280] Applies to: npm:points-on-path@0.2.1
------------------------------------------------------------------------------
MIT License
@@ -13002,7 +13055,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[279] Applies to: npm:prebuild-install@7.1.3
+[281] Applies to: npm:prebuild-install@7.1.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13027,7 +13080,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[280] Applies to: npm:process-nextick-args@2.0.1
+[282] Applies to: npm:process-nextick-args@2.0.1
------------------------------------------------------------------------------
# Copyright (c) 2015 Calvin Metcalf
@@ -13050,7 +13103,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.**
------------------------------------------------------------------------------
-[281] Applies to: npm:promise-worker-transferable@1.0.4
+[283] Applies to: npm:promise-worker-transferable@1.0.4
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -13255,7 +13308,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[282] Applies to: npm:prosemirror-changeset@2.4.1
+[284] Applies to: npm:prosemirror-changeset@2.4.1
------------------------------------------------------------------------------
Copyright (C) 2017 by Marijn Haverbeke and others
@@ -13278,7 +13331,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[283] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
+[285] Applies to: npm:prosemirror-commands@1.7.1, npm:prosemirror-dropcursor@1.8.3, npm:prosemirror-gapcursor@1.4.1, npm:prosemirror-history@1.5.0, npm:prosemirror-inputrules@1.5.1, npm:prosemirror-keymap@1.2.3, npm:prosemirror-model@1.25.11, npm:prosemirror-schema-list@1.5.1, npm:prosemirror-state@1.4.4, npm:prosemirror-transform@1.12.0, npm:prosemirror-view@1.42.1
------------------------------------------------------------------------------
Copyright (C) 2015-2017 by Marijn Haverbeke and others
@@ -13301,7 +13354,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[284] Applies to: npm:prosemirror-tables@1.8.5
+[286] Applies to: npm:prosemirror-tables@1.8.5
------------------------------------------------------------------------------
Copyright (C) 2015-2016 by Marijn Haverbeke and others
@@ -13324,7 +13377,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[285] Applies to: npm:protobufjs@7.6.5
+[287] Applies to: npm:protobufjs@7.6.5
------------------------------------------------------------------------------
This license applies to all parts of protobuf.js except those files
either explicitly including or referencing a different license or
@@ -13367,7 +13420,7 @@ standalone and requires a support library to be linked with it. This
support library is itself covered by the above license.
------------------------------------------------------------------------------
-[286] Applies to: npm:proxy-from-env@2.1.0
+[288] Applies to: npm:proxy-from-env@2.1.0
------------------------------------------------------------------------------
The MIT License
@@ -13391,7 +13444,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[287] Applies to: npm:qrcode@1.5.4
+[289] Applies to: npm:qrcode@1.5.4
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13404,7 +13457,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[288] Applies to: npm:qs@6.15.3
+[290] Applies to: npm:qs@6.15.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -13437,7 +13490,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[289] Applies to: npm:range-parser@1.3.0
+[291] Applies to: npm:range-parser@1.3.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13464,7 +13517,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[290] Applies to: npm:raw-body@3.0.2
+[292] Applies to: npm:raw-body@3.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13490,7 +13543,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[291] Applies to: npm:rc@1.2.8
+[293] Applies to: npm:rc@1.2.8
------------------------------------------------------------------------------
Apache License, Version 2.0
@@ -13561,7 +13614,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[292] Applies to: npm:react@19.2.3, npm:react-dom@19.2.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
+[294] Applies to: npm:react-dom@19.2.3, npm:react@19.2.3, npm:scheduler@0.27.0, npm:use-sync-external-store@1.6.0
------------------------------------------------------------------------------
MIT License
@@ -13586,7 +13639,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[293] Applies to: npm:react-i18next@17.0.10
+[295] Applies to: npm:react-i18next@17.0.10
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13611,7 +13664,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[294] Applies to: npm:react-markdown@10.1.0
+[296] Applies to: npm:react-markdown@10.1.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13636,7 +13689,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[295] Applies to: npm:react-router@7.18.1, npm:react-router-dom@7.18.1
+[297] Applies to: npm:react-router-dom@7.18.1, npm:react-router@7.18.1
------------------------------------------------------------------------------
MIT License
@@ -13663,7 +13716,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[296] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
+[298] Applies to: npm:readable-stream@2.3.8, npm:readable-stream@3.6.2, npm:string_decoder@1.1.1, npm:string_decoder@1.3.0
------------------------------------------------------------------------------
Node.js is licensed for use as follows:
@@ -13714,7 +13767,7 @@ IN THE SOFTWARE.
"""
------------------------------------------------------------------------------
-[297] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
+[299] Applies to: npm:remark-parse@11.0.0, npm:remark-stringify@11.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13739,7 +13792,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[298] Applies to: npm:require-directory@2.1.1
+[300] Applies to: npm:require-directory@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13765,7 +13818,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[299] Applies to: npm:require-from-string@2.0.2
+[301] Applies to: npm:require-from-string@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13790,7 +13843,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[300] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3
+[302] Applies to: npm:require-main-filename@2.0.0, npm:set-blocking@2.0.0, npm:yargs-parser@18.1.3
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -13808,7 +13861,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[301] Applies to: npm:robust-predicates@3.0.3, npm:tweetnacl@0.14.5
+[303] Applies to: npm:robust-predicates@3.0.3, npm:tweetnacl@0.14.5
------------------------------------------------------------------------------
This is free and unencumbered software released into the public domain.
@@ -13836,7 +13889,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[302] Applies to: npm:rope-sequence@1.3.4
+[304] Applies to: npm:rope-sequence@1.3.4
------------------------------------------------------------------------------
Copyright (C) 2016 by Marijn Haverbeke
@@ -13859,7 +13912,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[303] Applies to: npm:roughjs@4.6.6
+[305] Applies to: npm:roughjs@4.6.6
------------------------------------------------------------------------------
MIT License
@@ -13884,7 +13937,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[304] Applies to: npm:router@2.2.0
+[306] Applies to: npm:router@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -13911,7 +13964,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[305] Applies to: npm:rw@1.3.3
+[307] Applies to: npm:rw@1.3.3
------------------------------------------------------------------------------
Copyright (c) 2014-2016, Michael Bostock
All rights reserved.
@@ -13941,7 +13994,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[306] Applies to: npm:safer-buffer@2.1.2
+[308] Applies to: npm:safer-buffer@2.1.2
------------------------------------------------------------------------------
MIT License
@@ -13966,7 +14019,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[307] Applies to: npm:section-matter@1.0.0
+[309] Applies to: npm:section-matter@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -13991,7 +14044,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[308] Applies to: npm:send@1.2.1
+[310] Applies to: npm:send@1.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -14018,7 +14071,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[309] Applies to: npm:serve-static@2.2.1
+[311] Applies to: npm:serve-static@2.2.1
------------------------------------------------------------------------------
(The MIT License)
@@ -14047,7 +14100,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[310] Applies to: npm:set-cookie-parser@2.7.2
+[312] Applies to: npm:set-cookie-parser@2.7.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14072,7 +14125,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[311] Applies to: npm:setimmediate@1.0.5
+[313] Applies to: npm:setimmediate@1.0.5
------------------------------------------------------------------------------
Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola
@@ -14096,7 +14149,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[312] Applies to: npm:setprototypeof@1.2.0
+[314] Applies to: npm:setprototypeof@1.2.0
------------------------------------------------------------------------------
Copyright (c) 2015, Wes Todd
@@ -14113,7 +14166,7 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[313] Applies to: npm:shebang-command@2.0.0
+[315] Applies to: npm:shebang-command@2.0.0
------------------------------------------------------------------------------
MIT License
@@ -14126,7 +14179,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[314] Applies to: npm:side-channel@1.1.1, npm:side-channel-weakmap@1.0.2
+[316] Applies to: npm:side-channel-weakmap@1.0.2, npm:side-channel@1.1.1
------------------------------------------------------------------------------
MIT License
@@ -14151,7 +14204,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[315] Applies to: npm:signal-exit@3.0.7
+[317] Applies to: npm:signal-exit@3.0.7
------------------------------------------------------------------------------
The ISC License
@@ -14171,7 +14224,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[316] Applies to: npm:signal-exit@4.1.0
+[318] Applies to: npm:signal-exit@4.1.0
------------------------------------------------------------------------------
The ISC License
@@ -14191,7 +14244,7 @@ WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[317] Applies to: npm:silk-wasm@3.7.1
+[319] Applies to: npm:silk-wasm@3.7.1
------------------------------------------------------------------------------
MIT License
@@ -14216,7 +14269,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[318] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
+[320] Applies to: npm:simple-concat@1.0.1, npm:simple-get@4.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14240,7 +14293,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[319] Applies to: npm:smol-toml@1.7.0
+[321] Applies to: npm:smol-toml@1.7.0
------------------------------------------------------------------------------
Copyright (c) Squirrel Chat et al., All rights reserved.
@@ -14268,7 +14321,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[320] Applies to: npm:sortablejs@1.15.7
+[322] Applies to: npm:sortablejs@1.15.7
------------------------------------------------------------------------------
MIT License
@@ -14293,7 +14346,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[321] Applies to: npm:sprintf-js@1.0.3
+[323] Applies to: npm:sprintf-js@1.0.3
------------------------------------------------------------------------------
Copyright (c) 2007-2014, Alexandru Marasteanu
All rights reserved.
@@ -14321,7 +14374,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[322] Applies to: npm:ssh-config@5.2.0
+[324] Applies to: npm:ssh-config@5.2.0
------------------------------------------------------------------------------
MIT License
@@ -14346,7 +14399,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[323] Applies to: npm:statuses@2.0.2
+[325] Applies to: npm:statuses@2.0.2
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14372,7 +14425,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[324] Applies to: npm:strip-bom-string@1.0.0
+[326] Applies to: npm:strip-bom-string@1.0.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14397,7 +14450,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[325] Applies to: npm:style-mod@4.1.3
+[327] Applies to: npm:style-mod@4.1.3
------------------------------------------------------------------------------
Copyright (C) 2018 by Marijn Haverbeke and others
@@ -14420,7 +14473,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[326] Applies to: npm:style-to-js@1.1.21
+[328] Applies to: npm:style-to-js@1.1.21
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14446,7 +14499,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[327] Applies to: npm:style-to-object@1.0.14
+[329] Applies to: npm:style-to-object@1.0.14
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14472,7 +14525,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[328] Applies to: npm:stylis@4.4.0
+[330] Applies to: npm:stylis@4.4.0
------------------------------------------------------------------------------
MIT License
@@ -14497,7 +14550,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[329] Applies to: npm:tailwind-merge@2.6.1
+[331] Applies to: npm:tailwind-merge@2.6.1
------------------------------------------------------------------------------
MIT License
@@ -14522,7 +14575,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[330] Applies to: npm:tinyexec@1.2.4
+[332] Applies to: npm:tinyexec@1.2.4
------------------------------------------------------------------------------
MIT License
@@ -14547,7 +14600,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[331] Applies to: npm:toidentifier@1.0.1
+[333] Applies to: npm:toidentifier@1.0.1
------------------------------------------------------------------------------
MIT License
@@ -14572,7 +14625,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[332] Applies to: npm:trough@2.2.0
+[334] Applies to: npm:trough@2.2.0
------------------------------------------------------------------------------
(The MIT License)
@@ -14597,7 +14650,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[333] Applies to: npm:ts-dedent@2.3.0
+[335] Applies to: npm:ts-dedent@2.3.0
------------------------------------------------------------------------------
MIT License
@@ -14622,7 +14675,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[334] Applies to: npm:ts-mixer@6.0.4
+[336] Applies to: npm:ts-mixer@6.0.4
------------------------------------------------------------------------------
MIT License
@@ -14647,7 +14700,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[335] Applies to: npm:tslib@2.8.1
+[337] Applies to: npm:tslib@2.8.1
------------------------------------------------------------------------------
Copyright (c) Microsoft Corporation.
@@ -14663,7 +14716,7 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
------------------------------------------------------------------------------
-[336] Applies to: npm:tslog@4.11.0
+[338] Applies to: npm:tslog@4.11.0
------------------------------------------------------------------------------
MIT License
@@ -14688,7 +14741,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[337] Applies to: npm:tunnel-agent@0.6.0
+[339] Applies to: npm:tunnel-agent@0.6.0
------------------------------------------------------------------------------
Apache License
@@ -14747,7 +14800,7 @@ If the Work includes a "NOTICE" text file as part of its distribution, then any
END OF TERMS AND CONDITIONS
------------------------------------------------------------------------------
-[338] Applies to: npm:type-fest@0.20.2
+[340] Applies to: npm:type-fest@0.20.2
------------------------------------------------------------------------------
MIT License
@@ -14760,7 +14813,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[339] Applies to: npm:typebox@1.1.39
+[341] Applies to: npm:typebox@1.1.39
------------------------------------------------------------------------------
TypeBox
@@ -14787,7 +14840,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[340] Applies to: npm:undici@6.27.0, npm:undici@8.7.0, npm:undici-types@7.24.6
+[342] Applies to: npm:undici-types@7.24.6, npm:undici@6.27.0, npm:undici@8.7.0
------------------------------------------------------------------------------
MIT License
@@ -14812,7 +14865,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[341] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
+[343] Applies to: npm:unified@11.0.5, npm:vfile@6.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -14837,7 +14890,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[342] Applies to: npm:unist-util-is@6.0.1
+[344] Applies to: npm:unist-util-is@6.0.1
------------------------------------------------------------------------------
(The MIT license)
@@ -14863,7 +14916,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[343] Applies to: npm:universalify@2.0.1
+[345] Applies to: npm:universalify@2.0.1
------------------------------------------------------------------------------
(The MIT License)
@@ -14887,7 +14940,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[344] Applies to: npm:unpipe@1.0.0
+[346] Applies to: npm:unpipe@1.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -14913,7 +14966,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[345] Applies to: npm:uri-js@4.4.1
+[347] Applies to: npm:uri-js@4.4.1
------------------------------------------------------------------------------
Copyright 2011 Gary Court. All rights reserved.
@@ -14928,7 +14981,7 @@ THIS SOFTWARE IS PROVIDED BY GARY COURT "AS IS" AND ANY EXPRESS OR IMPLIED WARRA
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.
------------------------------------------------------------------------------
-[346] Applies to: npm:url-template@2.0.8
+[348] Applies to: npm:url-template@2.0.8
------------------------------------------------------------------------------
Copyright (c) 2012-2014, Bram Stein
All rights reserved.
@@ -14957,7 +15010,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[347] Applies to: npm:util-deprecate@1.0.2
+[349] Applies to: npm:util-deprecate@1.0.2
------------------------------------------------------------------------------
(The MIT License)
@@ -14985,7 +15038,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[348] Applies to: npm:uuid@14.0.1
+[350] Applies to: npm:uuid@14.0.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -14998,7 +15051,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[349] Applies to: npm:void-elements@3.1.0
+[351] Applies to: npm:void-elements@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -15024,7 +15077,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[350] Applies to: npm:web-streams-polyfill@3.3.3
+[352] Applies to: npm:web-streams-polyfill@3.3.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -15050,7 +15103,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[351] Applies to: npm:which-module@2.0.1
+[353] Applies to: npm:which-module@2.0.1
------------------------------------------------------------------------------
Copyright (c) 2016, Contributors
@@ -15067,7 +15120,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[352] Applies to: npm:workerpool@9.1.1
+[354] Applies to: npm:workerpool@9.1.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -15272,7 +15325,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[353] Applies to: npm:ws@8.21.1
+[355] Applies to: npm:ws@8.21.1
------------------------------------------------------------------------------
Copyright (c) 2011 Einar Otto Stangvik
Copyright (c) 2013 Arnout Kazemier and contributors
@@ -15296,7 +15349,7 @@ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[354] Applies to: npm:y18n@4.0.3
+[356] Applies to: npm:y18n@4.0.3
------------------------------------------------------------------------------
Copyright (c) 2015, Contributors
@@ -15313,7 +15366,7 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
------------------------------------------------------------------------------
-[355] Applies to: npm:yargs@15.4.1
+[357] Applies to: npm:yargs@15.4.1
------------------------------------------------------------------------------
MIT License
@@ -15338,7 +15391,26 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[356] Applies to: npm:zod@4.3.6
+[358] Applies to: npm:zod-to-json-schema@3.25.2
+------------------------------------------------------------------------------
+ISC License
+
+Copyright (c) 2020, Stefan Terdell
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+------------------------------------------------------------------------------
+[359] Applies to: npm:zod@4.3.6
------------------------------------------------------------------------------
MIT License
@@ -15362,25 +15434,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[357] Applies to: npm:zod-to-json-schema@3.25.2
-------------------------------------------------------------------------------
-ISC License
-
-Copyright (c) 2020, Stefan Terdell
-
-Permission to use, copy, modify, and/or distribute this software for any
-purpose with or without fee is hereby granted, provided that the above
-copyright notice and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
------------------------------------------------------------------------------
Packages without a standalone license file (license per package.json):
------------------------------------------------------------------------------
@@ -15396,11 +15449,12 @@ Packages without a standalone license file (license per package.json):
- npm:@lit-labs/ssr-dom-shim@1.6.0 (BSD-3-Clause)
- npm:@napi-rs/canvas-darwin-arm64@0.1.100 (MIT)
- npm:@napi-rs/canvas-darwin-x64@0.1.100 (MIT)
-- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@napi-rs/woff-build-darwin-arm64@0.2.2 (MIT)
- npm:@napi-rs/woff-build-darwin-x64@0.2.2 (MIT)
+- npm:@napi-rs/woff-build@0.2.2 (MIT)
- npm:@sapphire/async-queue@1.5.5 (MIT)
- npm:@sapphire/snowflake@3.5.5 (MIT)
+- npm:@wecom/aibot-node-sdk@1.0.7 (MIT)
- npm:agent-base@6.0.2 (MIT)
- npm:data-uri-to-buffer@4.0.1 (MIT)
- npm:drizzle-orm@0.45.2 (Apache-2.0)
diff --git a/docs/legal/notices/desktop-win.txt b/docs/legal/notices/desktop-win.txt
index aa61ecec7e9..e82255d6d53 100644
--- a/docs/legal/notices/desktop-win.txt
+++ b/docs/legal/notices/desktop-win.txt
@@ -3597,7 +3597,7 @@ necessary. Here is a sample; alter the names:
That's all there is to it!
==============================================================================
-SECTION 2: npm packages (778 packages)
+SECTION 2: npm packages (781 packages)
==============================================================================
- @antfu/install-pkg@1.1.0 — MIT — https://github.com/antfu/install-pkg
@@ -3678,14 +3678,14 @@ SECTION 2: npm packages (778 packages)
- @mermaid-js/parser@1.2.0 — MIT — https://github.com/mermaid-js/mermaid
- @modelcontextprotocol/sdk@1.29.0 — MIT — https://github.com/modelcontextprotocol/typescript-sdk
- @monogrid/gainmap-js@3.4.0 — MIT — https://github.com/MONOGRID/gainmap-js
-- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/canvas-win32-x64-msvc@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
-- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/canvas@0.1.100 — MIT — https://github.com/Brooooooklyn/canvas
- @napi-rs/woff-build-win32-x64-msvc@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
+- @napi-rs/woff-build@0.2.2 — MIT — https://github.com/Brooooooklyn/woff-build
- @noble/hashes@1.8.0 — MIT — https://github.com/paulmillr/noble-hashes
- @paralleldrive/cuid2@2.3.1 — MIT — https://github.com/ericelliott/cuid2
-- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @parcel/watcher-win32-x64@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
+- @parcel/watcher@2.5.6 — MIT — https://github.com/parcel-bundler/watcher
- @pkgjs/parseargs@0.11.0 — MIT — https://github.com/pkgjs/parseargs
- @protobufjs/aspromise@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
- @protobufjs/base64@1.1.2 — BSD-3-Clause — https://github.com/dcodeIO/protobuf.js
@@ -3749,7 +3749,6 @@ SECTION 2: npm packages (778 packages)
- @tiptap/extension-text@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/pm@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
- @tiptap/react@3.28.0 — MIT — https://github.com/ueberdosis/tiptap
-- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-array@3.2.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-axis@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-brush@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -3771,18 +3770,19 @@ SECTION 2: npm packages (778 packages)
- @types/d3-polygon@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-quadtree@3.0.6 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-random@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-scale-chromatic@3.1.0 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-scale@4.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-selection@3.0.11 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-shape@3.1.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-time-format@4.0.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3-time@3.0.4 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-timer@3.0.2 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-transition@3.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/d3-zoom@3.0.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/d3@7.4.3 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/debug@4.1.13 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
-- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/estree-jsx@1.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
+- @types/estree@1.0.9 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/geojson@7946.0.16 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/hast@3.0.5 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
- @types/katex@0.16.8 — MIT — https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -3797,6 +3797,7 @@ SECTION 2: npm packages (778 packages)
- @ungap/structured-clone@1.3.3 — ISC — https://github.com/ungap/structured-clone
- @upsetjs/venn.js@2.0.0 — MIT — https://github.com/upsetjs/venn.js
- @vladfrangu/async_event_emitter@2.4.7 — MIT — https://github.com/vladfrangu/async_event_emitter
+- @wecom/aibot-node-sdk@1.0.7 — MIT — https://github.com/WecomTeam/aibot-node-sdk
- @xterm/addon-clipboard@0.1.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-clipboard
- @xterm/addon-fit@0.10.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-fit
- @xterm/addon-web-links@0.11.0 — MIT — https://github.com/xtermjs/xterm.js/tree/master/addons/addon-web-links
@@ -3804,10 +3805,10 @@ SECTION 2: npm packages (778 packages)
- accepts@2.0.0 — MIT — https://github.com/jshttp/accepts
- agent-base@6.0.2 — MIT — https://github.com/TooTallNate/node-agent-base
- agent-base@7.1.4 — MIT — https://github.com/TooTallNate/proxy-agents
-- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
-- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ajv-formats@1.6.1 — MIT — https://github.com/ajv-validator/ajv-formats
- ajv-formats@3.0.1 — MIT — https://github.com/ajv-validator/ajv-formats
+- ajv@7.2.4 — MIT — https://github.com/ajv-validator/ajv
+- ajv@8.20.0 — MIT — https://github.com/ajv-validator/ajv
- ansi-regex@5.0.1 — MIT — https://github.com/chalk/ansi-regex
- ansi-regex@6.2.2 — MIT — https://github.com/chalk/ansi-regex
- ansi-styles@4.3.0 — MIT — https://github.com/chalk/ansi-styles
@@ -3829,8 +3830,8 @@ SECTION 2: npm packages (778 packages)
- bl@4.1.0 — MIT — https://github.com/rvagg/bl
- body-parser@2.3.0 — MIT — https://github.com/expressjs/body-parser
- brace-expansion@2.1.2 — MIT — https://github.com/juliangruber/brace-expansion
-- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buffer-equal-constant-time@1.0.1 — BSD-3-Clause — https://github.com/goinstant/buffer-equal-constant-time
+- buffer@5.7.1 — MIT — https://github.com/feross/buffer
- buildcheck@0.0.7 — MIT — http://github.com/mscdex/buildcheck
- byte-size@8.2.1 — MIT — https://github.com/75lb/byte-size
- bytes@3.1.2 — MIT — https://github.com/visionmedia/bytes.js
@@ -3838,9 +3839,9 @@ SECTION 2: npm packages (778 packages)
- call-bound@1.0.4 — MIT — https://github.com/ljharb/call-bound
- camelcase@5.3.1 — MIT — https://github.com/sindresorhus/camelcase
- ccount@2.0.1 — MIT — https://github.com/wooorm/ccount
-- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-entities-html4@2.1.0 — MIT — https://github.com/wooorm/character-entities-html4
- character-entities-legacy@3.0.0 — MIT — https://github.com/wooorm/character-entities-legacy
+- character-entities@2.0.2 — MIT — https://github.com/wooorm/character-entities
- character-reference-invalid@2.0.1 — MIT — https://github.com/wooorm/character-reference-invalid
- charenc@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-charenc
- chownr@1.1.4 — ISC — https://github.com/isaacs/chownr
@@ -3857,9 +3858,9 @@ SECTION 2: npm packages (778 packages)
- content-disposition@1.1.0 — MIT — https://github.com/jshttp/content-disposition
- content-type@1.0.5 — MIT — https://github.com/jshttp/content-type
- content-type@2.0.0 — MIT — https://github.com/jshttp/content-type
+- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- cookie@0.7.2 — MIT — https://github.com/jshttp/cookie
- cookie@1.1.1 — MIT — https://github.com/jshttp/cookie
-- cookie-signature@1.2.2 — MIT — https://github.com/visionmedia/node-cookie-signature
- core-util-is@1.0.3 — MIT — https://github.com/isaacs/core-util-is
- cors@2.8.6 — MIT — https://github.com/expressjs/cors
- cose-base@1.0.3 — MIT — https://github.com/iVis-at-Bilkent/cose-base
@@ -3868,10 +3869,9 @@ SECTION 2: npm packages (778 packages)
- crelt@1.0.7 — MIT — https://code.haverbeke.berlin/marijn/crelt
- cross-spawn@7.0.6 — MIT — https://github.com/moxystudio/node-cross-spawn
- crypt@0.0.2 — BSD-3-Clause — https://github.com/pvorb/node-crypt
-- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- cytoscape-cose-bilkent@4.1.0 — MIT — https://github.com/cytoscape/cytoscape.js-cose-bilkent
- cytoscape-fcose@2.2.0 — MIT — https://github.com/iVis-at-Bilkent/cytoscape.js-fcose
-- d3@7.9.0 — ISC — https://github.com/d3/d3
+- cytoscape@3.34.0 — MIT — https://github.com/cytoscape/cytoscape.js
- d3-array@2.12.1 — BSD-3-Clause — https://github.com/d3/d3-array
- d3-array@3.2.4 — ISC — https://github.com/d3/d3-array
- d3-axis@3.0.0 — ISC — https://github.com/d3/d3-axis
@@ -3896,16 +3896,17 @@ SECTION 2: npm packages (778 packages)
- d3-quadtree@3.0.1 — ISC — https://github.com/d3/d3-quadtree
- d3-random@3.0.1 — ISC — https://github.com/d3/d3-random
- d3-sankey@0.12.3 — BSD-3-Clause — https://github.com/d3/d3-sankey
-- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-scale-chromatic@3.1.0 — ISC — https://github.com/d3/d3-scale-chromatic
+- d3-scale@4.0.2 — ISC — https://github.com/d3/d3-scale
- d3-selection@3.0.0 — ISC — https://github.com/d3/d3-selection
- d3-shape@1.3.7 — BSD-3-Clause — https://github.com/d3/d3-shape
- d3-shape@3.2.0 — ISC — https://github.com/d3/d3-shape
-- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-time-format@4.1.0 — ISC — https://github.com/d3/d3-time-format
+- d3-time@3.1.0 — ISC — https://github.com/d3/d3-time
- d3-timer@3.0.1 — ISC — https://github.com/d3/d3-timer
- d3-transition@3.0.1 — ISC — https://github.com/d3/d3-transition
- d3-zoom@3.0.0 — ISC — https://github.com/d3/d3-zoom
+- d3@7.9.0 — ISC — https://github.com/d3/d3
- dagre-d3-es@7.0.14 — MIT — https://github.com/tbo47/dagre-es
- data-uri-to-buffer@4.0.1 — MIT — https://github.com/TooTallNate/node-data-uri-to-buffer
- dayjs@1.11.21 — MIT — https://github.com/iamkun/dayjs
@@ -3926,6 +3927,7 @@ SECTION 2: npm packages (778 packages)
- devlop@1.1.0 — MIT — https://github.com/wooorm/devlop
- diff@8.0.4 — BSD-3-Clause — https://github.com/kpdecker/jsdiff
- dijkstrajs@1.0.3 — MIT — https://github.com/tcort/dijkstrajs
+- dingtalk-stream@v2.1.5 — MIT — https://github.com/open-dingtalk/dingtalk-stream-sdk-nodejs
- discord-api-types@0.38.50 — MIT — https://github.com/discordjs/discord-api-types
- discord.js@14.27.0 — Apache-2.0 — https://github.com/discordjs/discord.js
- dompurify@3.4.12 — (MPL-2.0 OR Apache-2.0) — https://github.com/cure53/DOMPurify
@@ -3954,15 +3956,16 @@ SECTION 2: npm packages (778 packages)
- esprima@4.0.1 — BSD-2-Clause — https://github.com/jquery/esprima
- estree-util-is-identifier-name@3.0.0 — MIT — https://github.com/syntax-tree/estree-util-is-identifier-name
- etag@1.8.1 — MIT — https://github.com/jshttp/etag
-- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
+- eventemitter3@5.0.4 — MIT — https://github.com/primus/eventemitter3
- eventsource-parser@3.1.0 — MIT — https://github.com/rexxars/eventsource-parser
+- eventsource@3.0.7 — MIT — https://git@github.com/EventSource/eventsource
- execa@4.1.0 — MIT — https://github.com/sindresorhus/execa
- execa@5.1.1 — MIT — https://github.com/sindresorhus/execa
- expand-template@2.0.3 — (MIT OR WTFPL) — https://github.com/ralphtheninja/expand-template
-- express@5.2.1 — MIT — https://github.com/expressjs/express
- express-rate-limit@8.5.2 — MIT — https://github.com/express-rate-limit/express-rate-limit
-- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
+- express@5.2.1 — MIT — https://github.com/expressjs/express
- extend-shallow@2.0.1 — MIT — https://github.com/jonschlinkert/extend-shallow
+- extend@3.0.2 — MIT — https://github.com/justmoon/node-extend
- fast-deep-equal@3.1.3 — MIT — https://github.com/epoberezkin/fast-deep-equal
- fast-equals@5.4.1 — MIT — https://github.com/planttheidea/fast-equals
- fast-uri@3.1.4 — BSD-3-Clause — https://github.com/fastify/fast-uri
@@ -4009,8 +4012,8 @@ SECTION 2: npm packages (778 packages)
- has-tostringtag@1.0.2 — MIT — https://github.com/inspect-js/has-tostringtag
- hasown@2.0.4 — MIT — https://github.com/inspect-js/hasOwn
- hast-util-from-dom@5.0.1 — ISC — https://github.com/syntax-tree/hast-util-from-dom
-- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-html-isomorphic@2.0.0 — MIT — https://github.com/syntax-tree/hast-util-from-html-isomorphic
+- hast-util-from-html@2.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-html
- hast-util-from-parse5@8.0.3 — MIT — https://github.com/syntax-tree/hast-util-from-parse5
- hast-util-heading-rank@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-heading-rank
- hast-util-is-element@3.0.0 — MIT — https://github.com/syntax-tree/hast-util-is-element
@@ -4084,17 +4087,17 @@ SECTION 2: npm packages (778 packages)
- layout-base@2.0.1 — MIT — https://github.com/iVis-at-Bilkent/layout-base
- lcid@3.1.1 — MIT — https://github.com/sindresorhus/lcid
- lie@3.3.0 — MIT — https://github.com/calvinmetcalf/lie
-- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- lit-element@4.2.2 — BSD-3-Clause — https://github.com/lit/lit
- lit-html@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
+- lit@3.3.3 — BSD-3-Clause — https://github.com/lit/lit
- locate-path@3.0.0 — MIT — https://github.com/sindresorhus/locate-path
- locate-path@5.0.0 — MIT — https://github.com/sindresorhus/locate-path
-- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash-es@4.18.1 — MIT — https://github.com/lodash/lodash
- lodash.identity@3.0.0 — MIT — https://github.com/lodash/lodash
- lodash.merge@4.6.2 — MIT — https://github.com/lodash/lodash
- lodash.pickby@4.6.0 — MIT — https://github.com/lodash/lodash
- lodash.snakecase@4.1.1 — MIT — https://github.com/lodash/lodash
+- lodash@4.18.1 — MIT — https://github.com/lodash/lodash
- long@5.3.2 — Apache-2.0 — https://github.com/dcodeIO/long.js
- longest-streak@3.1.0 — MIT — https://github.com/wooorm/longest-streak
- loudness@0.4.2 — MIT — https://github.com/LinusU/node-loudness
@@ -4109,36 +4112,35 @@ SECTION 2: npm packages (778 packages)
- md5@2.3.0 — BSD-3-Clause — https://github.com/pvorb/node-md5
- mdast-util-find-and-replace@3.0.2 — MIT — https://github.com/syntax-tree/mdast-util-find-and-replace
- mdast-util-from-markdown@2.0.3 — MIT — https://github.com/syntax-tree/mdast-util-from-markdown
-- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-gfm-autolink-literal@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-gfm-autolink-literal
- mdast-util-gfm-footnote@2.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-footnote
- mdast-util-gfm-strikethrough@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-strikethrough
- mdast-util-gfm-table@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-table
- mdast-util-gfm-task-list-item@2.0.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm-task-list-item
+- mdast-util-gfm@3.1.0 — MIT — https://github.com/syntax-tree/mdast-util-gfm
- mdast-util-math@3.0.0 — MIT — https://github.com/syntax-tree/mdast-util-math
- mdast-util-mdx-expression@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdx-expression
- mdast-util-mdx-jsx@3.2.0 — MIT — https://github.com/syntax-tree/mdast-util-mdx-jsx
- mdast-util-mdxjs-esm@2.0.1 — MIT — https://github.com/syntax-tree/mdast-util-mdxjs-esm
- mdast-util-phrasing@4.1.0 — MIT — https://github.com/syntax-tree/mdast-util-phrasing
- mdast-util-to-hast@13.2.1 — MIT — https://github.com/syntax-tree/mdast-util-to-hast
-- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-markdown-cjk-friendly@1.0.0 — MIT — https://github.com/tats-u/markdown-cjk-friendly
+- mdast-util-to-markdown@2.1.2 — MIT — https://github.com/syntax-tree/mdast-util-to-markdown
- mdast-util-to-string@4.0.0 — MIT — https://github.com/syntax-tree/mdast-util-to-string
- media-typer@1.1.0 — MIT — https://github.com/jshttp/media-typer
- merge-descriptors@2.0.0 — MIT — https://github.com/sindresorhus/merge-descriptors
- merge-stream@2.0.0 — MIT — https://github.com/grncdr/merge-stream
- mermaid@11.16.0 — MIT — https://github.com/mermaid-js/mermaid
-- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- micromark-core-commonmark@2.0.3 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark
-- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-cjk-friendly-util@3.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
-- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
+- micromark-extension-cjk-friendly@2.0.1 — MIT — https://github.com/tats-u/markdown-cjk-friendly
- micromark-extension-gfm-autolink-literal@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-autolink-literal
- micromark-extension-gfm-footnote@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-footnote
- micromark-extension-gfm-strikethrough@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-strikethrough
- micromark-extension-gfm-table@2.1.1 — MIT — https://github.com/micromark/micromark-extension-gfm-table
- micromark-extension-gfm-tagfilter@2.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm-tagfilter
- micromark-extension-gfm-task-list-item@2.1.0 — MIT — https://github.com/micromark/micromark-extension-gfm-task-list-item
+- micromark-extension-gfm@3.0.0 — MIT — https://github.com/micromark/micromark-extension-gfm
- micromark-extension-math@3.1.0 — MIT — https://github.com/micromark/micromark-extension-math
- micromark-factory-destination@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination
- micromark-factory-label@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label
@@ -4159,6 +4161,7 @@ SECTION 2: npm packages (778 packages)
- micromark-util-subtokenize@2.1.0 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize
- micromark-util-symbol@2.0.1 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol
- micromark-util-types@2.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark-util-types
+- micromark@4.0.2 — MIT — https://github.com/micromark/micromark/tree/main/packages/micromark
- mime-db@1.52.0 — MIT — https://github.com/jshttp/mime-db
- mime-db@1.54.0 — MIT — https://github.com/jshttp/mime-db
- mime-types@2.1.35 — MIT — https://github.com/jshttp/mime-types
@@ -4169,8 +4172,8 @@ SECTION 2: npm packages (778 packages)
- minimatch@9.0.9 — ISC — https://github.com/isaacs/minimatch
- minimist@1.2.8 — MIT — https://github.com/minimistjs/minimist
- minipass@7.1.3 — BlueOak-1.0.0 — https://github.com/isaacs/minipass
-- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mkdirp-classic@0.5.3 — MIT — https://github.com/mafintosh/mkdirp-classic
+- mkdirp@0.5.6 — MIT — https://github.com/substack/node-mkdirp
- mri@1.2.0 — MIT — https://github.com/lukeed/mri
- ms@2.0.0 — MIT — https://github.com/zeit/ms
- ms@2.1.3 — MIT — https://github.com/vercel/ms
@@ -4242,15 +4245,15 @@ SECTION 2: npm packages (778 packages)
- range-parser@1.3.0 — MIT — https://github.com/jshttp/range-parser
- raw-body@3.0.2 — MIT — https://github.com/stream-utils/raw-body
- rc@1.2.8 — (BSD-2-Clause OR MIT OR Apache-2.0) — https://github.com/dominictarr/rc
-- react@19.2.3 — MIT — https://github.com/facebook/react
- react-dom@19.2.3 — MIT — https://github.com/facebook/react
- react-i18next@17.0.10 — MIT — https://github.com/i18next/react-i18next
- react-markdown@10.1.0 — MIT — https://github.com/remarkjs/react-markdown
-- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-remove-scroll-bar@2.3.8 — MIT — https://github.com/theKashey/react-remove-scroll-bar
-- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-remove-scroll@2.7.2 — MIT — https://github.com/theKashey/react-remove-scroll
- react-router-dom@7.18.1 — MIT — https://github.com/remix-run/react-router
+- react-router@7.18.1 — MIT — https://github.com/remix-run/react-router
- react-style-singleton@2.2.3 — MIT — https://github.com/theKashey/react-style-singleton
+- react@19.2.3 — MIT — https://github.com/facebook/react
- readable-stream@2.3.8 — MIT — https://github.com/nodejs/readable-stream
- readable-stream@3.6.2 — MIT — https://github.com/nodejs/readable-stream
- rehype-highlight@7.0.2 — MIT — https://github.com/rehypejs/rehype-highlight
@@ -4289,10 +4292,10 @@ SECTION 2: npm packages (778 packages)
- shebang-regex@3.0.0 — MIT — https://github.com/sindresorhus/shebang-regex
- shell-env@4.0.3 — MIT — https://github.com/sindresorhus/shell-env
- shell-path@3.1.0 — MIT — https://github.com/sindresorhus/shell-path
-- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- side-channel-list@1.0.1 — MIT — https://github.com/ljharb/side-channel-list
- side-channel-map@1.0.1 — MIT — https://github.com/ljharb/side-channel-map
- side-channel-weakmap@1.0.2 — MIT — https://github.com/ljharb/side-channel-weakmap
+- side-channel@1.1.1 — MIT — https://github.com/ljharb/side-channel
- signal-exit@3.0.7 — ISC — https://github.com/tapjs/signal-exit
- signal-exit@4.1.0 — ISC — https://github.com/tapjs/signal-exit
- silk-wasm@3.7.1 — MIT — https://github.com/idranme/silk-wasm
@@ -4336,17 +4339,17 @@ SECTION 2: npm packages (778 packages)
- type-fest@0.20.2 — (MIT OR CC0-1.0) — https://github.com/sindresorhus/type-fest
- type-is@2.1.0 — MIT — https://github.com/jshttp/type-is
- typebox@1.1.39 — MIT — https://github.com/sinclairzx81/typebox
+- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- undici@6.27.0 — MIT — https://github.com/nodejs/undici
- undici@8.7.0 — MIT — https://github.com/nodejs/undici
-- undici-types@7.24.6 — MIT — https://github.com/nodejs/undici
- unified@11.0.5 — MIT — https://github.com/unifiedjs/unified
- unist-util-find-after@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-find-after
- unist-util-is@6.0.1 — MIT — https://github.com/syntax-tree/unist-util-is
- unist-util-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-position
- unist-util-remove-position@5.0.0 — MIT — https://github.com/syntax-tree/unist-util-remove-position
- unist-util-stringify-position@4.0.0 — MIT — https://github.com/syntax-tree/unist-util-stringify-position
-- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- unist-util-visit-parents@6.0.2 — MIT — https://github.com/syntax-tree/unist-util-visit-parents
+- unist-util-visit@5.1.0 — MIT — https://github.com/syntax-tree/unist-util-visit
- universalify@2.0.1 — MIT — https://github.com/RyanZim/universalify
- unpipe@1.0.0 — MIT — https://github.com/stream-utils/unpipe
- uri-js@4.4.1 — BSD-2-Clause — http://github.com/garycourt/uri-js
@@ -4357,15 +4360,15 @@ SECTION 2: npm packages (778 packages)
- util-deprecate@1.0.2 — MIT — https://github.com/TooTallNate/util-deprecate
- uuid@14.0.1 — MIT — https://github.com/uuidjs/uuid
- vary@1.1.2 — MIT — https://github.com/jshttp/vary
-- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- vfile-location@5.0.3 — MIT — https://github.com/vfile/vfile-location
- vfile-message@4.0.3 — MIT — https://github.com/vfile/vfile-message
+- vfile@6.0.3 — MIT — https://github.com/vfile/vfile
- void-elements@3.1.0 — MIT — https://github.com/pugjs/void-elements
- w3c-keyname@2.2.8 — MIT — https://github.com/marijnh/w3c-keyname
- web-namespaces@2.0.1 — MIT — https://github.com/wooorm/web-namespaces
- web-streams-polyfill@3.3.3 — MIT — https://github.com/MattiasBuelens/web-streams-polyfill
-- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- which-module@2.0.1 — ISC — https://github.com/nexdrew/which-module
+- which@2.0.2 — ISC — https://github.com/isaacs/node-which
- workerpool@9.1.1 — Apache-2.0 — https://github.com/josdejong/workerpool
- wrap-ansi@6.2.0 — MIT — https://github.com/chalk/wrap-ansi
- wrap-ansi@7.0.0 — MIT — https://github.com/chalk/wrap-ansi
@@ -4373,10 +4376,10 @@ SECTION 2: npm packages (778 packages)
- wrappy@1.0.2 — ISC — https://github.com/npm/wrappy
- ws@8.21.1 — MIT — https://github.com/websockets/ws
- y18n@4.0.3 — ISC — https://github.com/yargs/y18n
-- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- yargs-parser@18.1.3 — ISC — https://github.com/yargs/yargs-parser
-- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
+- yargs@15.4.1 — MIT — https://github.com/yargs/yargs
- zod-to-json-schema@3.25.2 — ISC — https://github.com/StefanTerdell/zod-to-json-schema
+- zod@4.3.6 — MIT — https://github.com/colinhacks/zod
- zwitch@2.0.4 — MIT — https://github.com/wooorm/zwitch
==============================================================================
@@ -4970,7 +4973,7 @@ Redistribution and use in source and binary forms, with or without modification,
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[4] Applies to: cargo:anstream@1.0.0, cargo:anstyle@1.0.14, cargo:anstyle-parse@1.0.0, cargo:anstyle-query@1.1.5, cargo:anstyle-wincon@3.0.11, cargo:clap@4.6.1, cargo:clap_builder@4.6.0, cargo:clap_derive@4.6.1, cargo:clap_lex@1.1.0, cargo:colorchoice@1.0.5, cargo:is_terminal_polyfill@1.70.2, cargo:once_cell_polyfill@1.70.2, cargo:serde_spanned@1.1.1, cargo:toml@1.1.2+spec-1.1.0, cargo:toml_datetime@1.1.1+spec-1.1.0, cargo:toml_parser@1.1.2+spec-1.1.0, cargo:toml_writer@1.1.1+spec-1.1.0
+[4] Applies to: cargo:anstream@1.0.0, cargo:anstyle-parse@1.0.0, cargo:anstyle-query@1.1.5, cargo:anstyle-wincon@3.0.11, cargo:anstyle@1.0.14, cargo:clap_builder@4.6.0, cargo:clap_derive@4.6.1, cargo:clap_lex@1.1.0, cargo:clap@4.6.1, cargo:colorchoice@1.0.5, cargo:is_terminal_polyfill@1.70.2, cargo:once_cell_polyfill@1.70.2, cargo:serde_spanned@1.1.1, cargo:toml_datetime@1.1.1+spec-1.1.0, cargo:toml_parser@1.1.2+spec-1.1.0, cargo:toml_writer@1.1.1+spec-1.1.0, cargo:toml@1.1.2+spec-1.1.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -5195,7 +5198,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[5] Applies to: cargo:anyhow@1.0.103, cargo:dtoa@1.0.11, cargo:dyn-clone@1.0.20, cargo:erased-serde@0.4.10, cargo:itoa@1.0.18, cargo:proc-macro2@1.0.106, cargo:quote@1.0.46, cargo:ref-cast@1.0.25, cargo:ref-cast-impl@1.0.25, cargo:rustc-hash@2.1.3, cargo:semver@1.0.28, cargo:serde@1.0.228, cargo:serde_core@1.0.228, cargo:serde_derive@1.0.228, cargo:serde_derive_internals@0.29.1, cargo:serde_json@1.0.150, cargo:serde_repr@0.1.20, cargo:serde-untagged@0.1.9, cargo:syn@2.0.118, cargo:thiserror@1.0.69, cargo:thiserror@2.0.18, cargo:thiserror-impl@1.0.69, cargo:thiserror-impl@2.0.18, cargo:typeid@1.0.3
+[5] Applies to: cargo:anyhow@1.0.103, cargo:dtoa@1.0.11, cargo:dyn-clone@1.0.20, cargo:erased-serde@0.4.10, cargo:itoa@1.0.18, cargo:proc-macro2@1.0.106, cargo:quote@1.0.46, cargo:ref-cast-impl@1.0.25, cargo:ref-cast@1.0.25, cargo:rustc-hash@2.1.3, cargo:semver@1.0.28, cargo:serde_core@1.0.228, cargo:serde_derive_internals@0.29.1, cargo:serde_derive@1.0.228, cargo:serde_json@1.0.150, cargo:serde_repr@0.1.20, cargo:serde-untagged@0.1.9, cargo:serde@1.0.228, cargo:syn@2.0.118, cargo:thiserror-impl@1.0.69, cargo:thiserror-impl@2.0.18, cargo:thiserror@1.0.69, cargo:thiserror@2.0.18, cargo:typeid@1.0.3
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -5857,7 +5860,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[8] Applies to: cargo:bitflags@1.3.2, cargo:bitflags@2.13.0, cargo:glob@0.3.3, cargo:log@0.4.33, cargo:num-traits@0.2.19, cargo:regex@1.13.0, cargo:regex-automata@0.4.15, cargo:regex-syntax@0.8.11
+[8] Applies to: cargo:bitflags@1.3.2, cargo:bitflags@2.13.0, cargo:glob@0.3.3, cargo:log@0.4.33, cargo:num-traits@0.2.19, cargo:regex-automata@0.4.15, cargo:regex-syntax@0.8.11, cargo:regex@1.13.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -9944,7 +9947,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[28] Applies to: cargo:cssparser@0.36.0, cargo:cssparser-macros@0.6.1, cargo:dtoa-short@0.3.5
+[28] Applies to: cargo:cssparser-macros@0.6.1, cargo:cssparser@0.36.0, cargo:dtoa-short@0.3.5
------------------------------------------------------------------------------
Mozilla Public License Version 2.0
==================================
@@ -10321,7 +10324,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[29] Applies to: cargo:ctor@0.8.0, cargo:ctor-proc-macro@0.0.7, cargo:dtor@0.3.0, cargo:dtor-proc-macro@0.0.6
+[29] Applies to: cargo:ctor-proc-macro@0.0.7, cargo:ctor@0.8.0, cargo:dtor-proc-macro@0.0.6, cargo:dtor@0.3.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -10532,7 +10535,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[30] Applies to: cargo:darling@0.23.0, cargo:darling_core@0.23.0, cargo:darling_macro@0.23.0
+[30] Applies to: cargo:darling_core@0.23.0, cargo:darling_macro@0.23.0, cargo:darling@0.23.0
------------------------------------------------------------------------------
MIT License
@@ -10782,7 +10785,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[32] Applies to: cargo:derive_more@2.1.1, cargo:derive_more-impl@2.1.1
+[32] Applies to: cargo:derive_more-impl@2.1.1, cargo:derive_more@2.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -11038,7 +11041,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[34] Applies to: cargo:dirs@6.0.0, cargo:dirs-sys@0.5.0
+[34] Applies to: cargo:dirs-sys@0.5.0, cargo:dirs@6.0.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -11649,7 +11652,7 @@ express Statement of Purpose.
this CC0 or use of the Work.
------------------------------------------------------------------------------
-[38] Applies to: cargo:either@1.16.0, cargo:serde_with@3.21.0, cargo:serde_with_macros@3.21.0
+[38] Applies to: cargo:either@1.16.0, cargo:serde_with_macros@3.21.0, cargo:serde_with@3.21.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -14697,7 +14700,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[54] Applies to: cargo:icu_collections@2.2.0, cargo:icu_locale_core@2.2.0, cargo:icu_normalizer@2.2.0, cargo:icu_normalizer_data@2.2.0, cargo:icu_properties@2.2.0, cargo:icu_properties_data@2.2.0, cargo:icu_provider@2.2.0, cargo:litemap@0.8.2, cargo:potential_utf@0.1.5, cargo:tinystr@0.8.3, cargo:writeable@0.6.3, cargo:yoke@0.8.3, cargo:yoke-derive@0.8.2, cargo:zerofrom@0.1.8, cargo:zerofrom-derive@0.1.7, cargo:zerotrie@0.2.4, cargo:zerovec@0.11.6, cargo:zerovec-derive@0.11.3
+[54] Applies to: cargo:icu_collections@2.2.0, cargo:icu_locale_core@2.2.0, cargo:icu_normalizer_data@2.2.0, cargo:icu_normalizer@2.2.0, cargo:icu_properties_data@2.2.0, cargo:icu_properties@2.2.0, cargo:icu_provider@2.2.0, cargo:litemap@0.8.2, cargo:potential_utf@0.1.5, cargo:tinystr@0.8.3, cargo:writeable@0.6.3, cargo:yoke-derive@0.8.2, cargo:yoke@0.8.3, cargo:zerofrom-derive@0.1.7, cargo:zerofrom@0.1.8, cargo:zerotrie@0.2.4, cargo:zerovec-derive@0.11.3, cargo:zerovec@0.11.6
------------------------------------------------------------------------------
UNICODE LICENSE V3
@@ -14770,7 +14773,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[56] Applies to: cargo:idna@1.1.0, cargo:percent-encoding@2.3.2, cargo:url@2.5.8
+[56] Applies to: cargo:idna_adapter@1.2.2
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -14974,7 +14977,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-Copyright (c) 2013-2025 The rust-url developers
+Copyright (c) The rust-url developers
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
@@ -15001,7 +15004,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[57] Applies to: cargo:idna_adapter@1.2.2
+[57] Applies to: cargo:idna@1.1.0, cargo:percent-encoding@2.3.2, cargo:url@2.5.8
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -15205,7 +15208,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-Copyright (c) The rust-url developers
+Copyright (c) 2013-2025 The rust-url developers
Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
@@ -16373,7 +16376,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[64] Applies to: cargo:lock_api@0.4.14, cargo:parking_lot@0.12.5, cargo:parking_lot_core@0.9.12
+[64] Applies to: cargo:lock_api@0.4.14, cargo:parking_lot_core@0.9.12, cargo:parking_lot@0.12.5
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -18435,7 +18438,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[75] Applies to: cargo:phf@0.13.1, cargo:phf_generator@0.13.1, cargo:phf_macros@0.13.1, cargo:phf_shared@0.13.1
+[75] Applies to: cargo:phf_generator@0.13.1, cargo:phf_macros@0.13.1, cargo:phf_shared@0.13.1, cargo:phf@0.13.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -19408,7 +19411,7 @@ Permission is granted to anyone to use this software for any purpose, including
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
-[83] Applies to: cargo:rayon@1.12.0, cargo:rayon-core@1.13.0
+[83] Applies to: cargo:rayon-core@1.13.0, cargo:rayon@1.12.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -19693,7 +19696,7 @@ OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
------------------------------------------------------------------------------
-[85] Applies to: cargo:schemars@0.8.22, cargo:schemars@0.9.0, cargo:schemars@1.2.1, cargo:schemars_derive@0.8.22
+[85] Applies to: cargo:schemars_derive@0.8.22, cargo:schemars@0.8.22, cargo:schemars@0.9.0, cargo:schemars@1.2.1
------------------------------------------------------------------------------
MIT License
@@ -19949,7 +19952,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[87] Applies to: cargo:serialize-to-javascript@0.1.2, cargo:serialize-to-javascript-impl@0.1.2
+[87] Applies to: cargo:serialize-to-javascript-impl@0.1.2, cargo:serialize-to-javascript@0.1.2
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -21881,7 +21884,7 @@ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[100] Applies to: cargo:time@0.3.53, cargo:time-core@0.1.9, cargo:time-macros@0.2.31
+[100] Applies to: cargo:time-core@0.1.9, cargo:time-macros@0.2.31, cargo:time@0.3.53
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -22081,7 +22084,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[101] Applies to: cargo:tinyvec@1.12.0
+[101] Applies to: cargo:tinyvec_macros@0.1.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -22271,7 +22274,7 @@ Apache License
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright [yyyy] [name of copyright owner]
+ Copyright 2020 Tomasz "Soveu" Marx
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -22285,26 +22288,50 @@ Apache License
See the License for the specific language governing permissions and
limitations under the License.
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+MIT License
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+Copyright (c) 2020 Soveu
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
-Copyright (c) 2019 Daniel "Lokathor" Gee.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
-This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
-Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
+zlib License
-1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
+(C) 2020 Tomasz "Soveu" Marx
-2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
-[102] Applies to: cargo:tinyvec_macros@0.1.1
+[102] Applies to: cargo:tinyvec@1.12.0
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -22494,7 +22521,7 @@ Apache License
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright 2020 Tomasz "Soveu" Marx
+ Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -22508,46 +22535,22 @@ Apache License
See the License for the specific language governing permissions and
limitations under the License.
-MIT License
-
-Copyright (c) 2020 Soveu
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+Copyright (c) 2019 Daniel "Lokathor" Gee.
-zlib License
+This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
-(C) 2020 Tomasz "Soveu" Marx
+Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
+1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
+2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
-1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
-2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
------------------------------------------------------------------------------
@@ -22576,7 +22579,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[104] Applies to: cargo:tracing@0.1.44, cargo:tracing-core@0.1.36
+[104] Applies to: cargo:tracing-core@0.1.36, cargo:tracing@0.1.44
------------------------------------------------------------------------------
Copyright (c) 2019 Tokio Contributors
@@ -24491,7 +24494,7 @@ PackageDownloadLocation: git+ssh://github.com/tauri-apps/window-vibrancy.git
Creator: Person: Daniel Thompson-Yvetot
------------------------------------------------------------------------------
-[114] Applies to: cargo:windows@0.57.0, cargo:windows@0.61.3, cargo:windows_x86_64_msvc@0.52.6, cargo:windows-collections@0.2.0, cargo:windows-core@0.57.0, cargo:windows-core@0.61.2, cargo:windows-future@0.2.1, cargo:windows-implement@0.57.0, cargo:windows-implement@0.60.2, cargo:windows-interface@0.57.0, cargo:windows-interface@0.59.3, cargo:windows-link@0.1.3, cargo:windows-link@0.2.1, cargo:windows-numerics@0.2.0, cargo:windows-result@0.1.2, cargo:windows-result@0.3.4, cargo:windows-strings@0.4.2, cargo:windows-sys@0.59.0, cargo:windows-sys@0.61.2, cargo:windows-targets@0.52.6, cargo:windows-threading@0.1.0, cargo:windows-version@0.1.7
+[114] Applies to: cargo:windows_x86_64_msvc@0.52.6, cargo:windows-collections@0.2.0, cargo:windows-core@0.57.0, cargo:windows-core@0.61.2, cargo:windows-future@0.2.1, cargo:windows-implement@0.57.0, cargo:windows-implement@0.60.2, cargo:windows-interface@0.57.0, cargo:windows-interface@0.59.3, cargo:windows-link@0.1.3, cargo:windows-link@0.2.1, cargo:windows-numerics@0.2.0, cargo:windows-result@0.1.2, cargo:windows-result@0.3.4, cargo:windows-strings@0.4.2, cargo:windows-sys@0.59.0, cargo:windows-sys@0.61.2, cargo:windows-targets@0.52.6, cargo:windows-threading@0.1.0, cargo:windows-version@0.1.7, cargo:windows@0.57.0, cargo:windows@0.61.3
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -27267,7 +27270,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[146] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit@3.3.3, npm:lit-element@4.2.2, npm:lit-html@3.3.3
+[146] Applies to: npm:@lit/reactive-element@2.1.2, npm:lit-element@4.2.2, npm:lit-html@3.3.3, npm:lit@3.3.3
------------------------------------------------------------------------------
BSD 3-Clause License
@@ -27474,7 +27477,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[154] Applies to: npm:@parcel/watcher@2.5.6, npm:@parcel/watcher-win32-x64@2.5.6
+[154] Applies to: npm:@parcel/watcher-win32-x64@2.5.6, npm:@parcel/watcher@2.5.6
------------------------------------------------------------------------------
MIT License
@@ -27657,7 +27660,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[161] Applies to: npm:@types/d3@7.4.3, npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale@4.0.9, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time@3.0.4, npm:@types/d3-time-format@4.0.3, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/debug@4.1.13, npm:@types/estree@1.0.9, npm:@types/estree-jsx@1.0.5, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
+[161] Applies to: npm:@types/d3-array@3.2.2, npm:@types/d3-axis@3.0.6, npm:@types/d3-brush@3.0.6, npm:@types/d3-chord@3.0.6, npm:@types/d3-color@3.1.3, npm:@types/d3-contour@3.0.6, npm:@types/d3-delaunay@6.0.4, npm:@types/d3-dispatch@3.0.7, npm:@types/d3-drag@3.0.7, npm:@types/d3-dsv@3.0.7, npm:@types/d3-ease@3.0.2, npm:@types/d3-fetch@3.0.7, npm:@types/d3-force@3.0.10, npm:@types/d3-format@3.0.4, npm:@types/d3-geo@3.1.0, npm:@types/d3-hierarchy@3.1.7, npm:@types/d3-interpolate@3.0.4, npm:@types/d3-path@3.1.1, npm:@types/d3-polygon@3.0.2, npm:@types/d3-quadtree@3.0.6, npm:@types/d3-random@3.0.4, npm:@types/d3-scale-chromatic@3.1.0, npm:@types/d3-scale@4.0.9, npm:@types/d3-selection@3.0.11, npm:@types/d3-shape@3.1.8, npm:@types/d3-time-format@4.0.3, npm:@types/d3-time@3.0.4, npm:@types/d3-timer@3.0.2, npm:@types/d3-transition@3.0.9, npm:@types/d3-zoom@3.0.8, npm:@types/d3@7.4.3, npm:@types/debug@4.1.13, npm:@types/estree-jsx@1.0.5, npm:@types/estree@1.0.9, npm:@types/geojson@7946.0.16, npm:@types/hast@3.0.5, npm:@types/katex@0.16.8, npm:@types/mdast@4.0.4, npm:@types/ms@2.1.0, npm:@types/node@25.9.5, npm:@types/trusted-types@2.0.7, npm:@types/unist@2.0.11, npm:@types/unist@3.0.3, npm:@types/use-sync-external-store@0.0.6, npm:@types/ws@8.18.1
------------------------------------------------------------------------------
MIT License
@@ -27902,11 +27905,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[171] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
+[171] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2015-2021 Evgeny Poberezkin
+Copyright (c) 2020 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -27927,11 +27930,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[172] Applies to: npm:ajv-formats@1.6.1, npm:ajv-formats@3.0.1
+[172] Applies to: npm:ajv@7.2.4, npm:ajv@8.20.0
------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2020 Evgeny Poberezkin
+Copyright (c) 2015-2021 Evgeny Poberezkin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -28370,7 +28373,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[182] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities@2.0.2, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
+[182] Applies to: npm:bail@2.0.2, npm:ccount@2.0.1, npm:character-entities-html4@2.1.0, npm:character-entities-legacy@3.0.0, npm:character-entities@2.0.2, npm:character-reference-invalid@2.0.1, npm:mdast-util-to-string@4.0.0, npm:unist-util-find-after@5.0.0, npm:unist-util-position@5.0.0, npm:unist-util-visit@5.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -28665,7 +28668,23 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[192] Applies to: npm:buffer@5.7.1
+[192] Applies to: npm:buffer-equal-constant-time@1.0.1
+------------------------------------------------------------------------------
+Copyright (c) 2013, GoInstant Inc., a salesforce.com company
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+------------------------------------------------------------------------------
+[193] Applies to: npm:buffer@5.7.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -28689,22 +28708,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-------------------------------------------------------------------------------
-[193] Applies to: npm:buffer-equal-constant-time@1.0.1
-------------------------------------------------------------------------------
-Copyright (c) 2013, GoInstant Inc., a salesforce.com company
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
-* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
-* Neither the name of salesforce.com, nor GoInstant, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
------------------------------------------------------------------------------
[194] Applies to: npm:buildcheck@0.0.7, npm:cpu-features@0.0.10, npm:ssh2@1.17.0
------------------------------------------------------------------------------
@@ -29237,12 +29240,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[209] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
+[209] Applies to: npm:cookie-signature@1.2.2
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012-2014 Roman Shtylman
-Copyright (c) 2015 Douglas Christopher Wilson
+Copyright (c) 2012–2024 LearnBoost and other contributors;
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -29264,11 +29266,12 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[210] Applies to: npm:cookie-signature@1.2.2
+[210] Applies to: npm:cookie@0.7.2, npm:cookie@1.1.1
------------------------------------------------------------------------------
(The MIT License)
-Copyright (c) 2012–2024 LearnBoost and other contributors;
+Copyright (c) 2012-2014 Roman Shtylman
+Copyright (c) 2015 Douglas Christopher Wilson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -29412,9 +29415,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[216] Applies to: npm:cytoscape@3.34.0
+[216] Applies to: npm:cytoscape-cose-bilkent@4.1.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2026, The Cytoscape Consortium.
+Copyright (c) 2016-2018, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -29434,18 +29437,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-import fs from 'fs';
-import path from 'path';
-
-import { fileURLToPath } from 'url';
-import { dirname } from 'path';
-
-const __filename = fileURLToPath(import.meta.url);
-const __dirname = dirname(__filename);
-
-const year = (new Date()).getFullYear();
-
-const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
+------------------------------------------------------------------------------
+[217] Applies to: npm:cytoscape-fcose@2.2.0
+------------------------------------------------------------------------------
+Copyright (c) 2018 - present, iVis-at-Bilkent.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -29463,14 +29458,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.`;
-
-fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
+SOFTWARE.
------------------------------------------------------------------------------
-[217] Applies to: npm:cytoscape-cose-bilkent@4.1.0
+[218] Applies to: npm:cytoscape@3.34.0
------------------------------------------------------------------------------
-Copyright (c) 2016-2018, The Cytoscape Consortium.
+Copyright (c) 2016-2026, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -29490,10 +29483,18 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------------
-[218] Applies to: npm:cytoscape-fcose@2.2.0
-------------------------------------------------------------------------------
-Copyright (c) 2018 - present, iVis-at-Bilkent.
+import fs from 'fs';
+import path from 'path';
+
+import { fileURLToPath } from 'url';
+import { dirname } from 'path';
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = dirname(__filename);
+
+const year = (new Date()).getFullYear();
+
+const license = `Copyright (c) 2016-${year}, The Cytoscape Consortium.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
@@ -29511,27 +29512,12 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-------------------------------------------------------------------------------
-[219] Applies to: npm:d3@7.9.0, npm:d3-array@3.2.4
-------------------------------------------------------------------------------
-Copyright 2010-2023 Mike Bostock
-
-Permission to use, copy, modify, and/or distribute this software for any purpose
-with or without fee is hereby granted, provided that the above copyright notice
-and this permission notice appear in all copies.
+SOFTWARE.`;
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-THIS SOFTWARE.
+fs.writeFileSync(path.join(__dirname, 'LICENSE'), license);
------------------------------------------------------------------------------
-[220] Applies to: npm:d3-array@2.12.1
+[219] Applies to: npm:d3-array@2.12.1
------------------------------------------------------------------------------
Copyright 2010-2020 Mike Bostock
All rights reserved.
@@ -29561,6 +29547,23 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+------------------------------------------------------------------------------
+[220] Applies to: npm:d3-array@3.2.4, npm:d3@7.9.0
+------------------------------------------------------------------------------
+Copyright 2010-2023 Mike Bostock
+
+Permission to use, copy, modify, and/or distribute this software for any purpose
+with or without fee is hereby granted, provided that the above copyright notice
+and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
+REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
+INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
+THIS SOFTWARE.
+
------------------------------------------------------------------------------
[221] Applies to: npm:d3-axis@3.0.0, npm:d3-brush@3.0.0, npm:d3-chord@3.0.1, npm:d3-dispatch@3.0.1, npm:d3-drag@3.0.0, npm:d3-force@3.0.0, npm:d3-hierarchy@3.1.2, npm:d3-interpolate@3.0.1, npm:d3-polygon@3.0.1, npm:d3-quadtree@3.0.1, npm:d3-random@3.0.1, npm:d3-scale@4.0.2, npm:d3-selection@3.0.0, npm:d3-time-format@4.1.0, npm:d3-timer@3.0.1, npm:d3-transition@3.0.1, npm:d3-zoom@3.0.0
------------------------------------------------------------------------------
@@ -30016,7 +30019,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[240] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm@3.1.0, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark@4.0.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
+[240] Applies to: npm:decode-named-character-reference@1.3.0, npm:hast-util-from-parse5@8.0.3, npm:hast-util-to-jsx-runtime@2.3.6, npm:hastscript@9.0.1, npm:lowlight@3.3.0, npm:markdown-table@3.0.4, npm:mdast-util-find-and-replace@3.0.2, npm:mdast-util-from-markdown@2.0.3, npm:mdast-util-gfm-footnote@2.1.0, npm:mdast-util-gfm@3.1.0, npm:mdast-util-to-markdown@2.1.2, npm:micromark-core-commonmark@2.0.3, npm:micromark-extension-gfm-table@2.1.1, npm:micromark-factory-destination@2.0.1, npm:micromark-factory-label@2.0.1, npm:micromark-factory-space@2.0.1, npm:micromark-factory-title@2.0.1, npm:micromark-factory-whitespace@2.0.1, npm:micromark-util-character@2.1.1, npm:micromark-util-chunked@2.0.1, npm:micromark-util-classify-character@2.0.1, npm:micromark-util-combine-extensions@2.0.1, npm:micromark-util-decode-numeric-character-reference@2.0.2, npm:micromark-util-decode-string@2.0.1, npm:micromark-util-encode@2.0.1, npm:micromark-util-html-tag-name@2.0.1, npm:micromark-util-normalize-identifier@2.0.1, npm:micromark-util-resolve-all@2.0.1, npm:micromark-util-sanitize-uri@2.0.1, npm:micromark-util-subtokenize@2.1.0, npm:micromark-util-symbol@2.0.1, npm:micromark-util-types@2.0.2, npm:micromark@4.0.2, npm:rehype-highlight@7.0.2, npm:remark-gfm@4.0.1, npm:remark-rehype@11.1.2, npm:vfile-message@4.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -30448,7 +30451,32 @@ THE SOFTWARE.
```
------------------------------------------------------------------------------
-[250] Applies to: npm:discord-api-types@0.38.50
+[250] Applies to: npm:dingtalk-stream@v2.1.5
+------------------------------------------------------------------------------
+MIT License
+
+Copyright (c) 2023 钉钉开放平台团队
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+------------------------------------------------------------------------------
+[251] Applies to: npm:discord-api-types@0.38.50
------------------------------------------------------------------------------
MIT License
@@ -30473,7 +30501,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[251] Applies to: npm:dompurify@3.4.12
+[252] Applies to: npm:dompurify@3.4.12
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -31052,7 +31080,7 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice
defined by the Mozilla Public License, v. 2.0.
------------------------------------------------------------------------------
-[252] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
+[253] Applies to: npm:dunder-proto@1.0.1, npm:math-intrinsics@1.1.0
------------------------------------------------------------------------------
MIT License
@@ -31077,7 +31105,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[253] Applies to: npm:ecdsa-sig-formatter@1.0.11
+[254] Applies to: npm:ecdsa-sig-formatter@1.0.11
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -31282,7 +31310,7 @@ Apache License
limitations under the License.
------------------------------------------------------------------------------
-[254] Applies to: npm:ee-first@1.1.1
+[255] Applies to: npm:ee-first@1.1.1
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -31307,7 +31335,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[255] Applies to: npm:electron-squirrel-startup@1.0.1
+[256] Applies to: npm:electron-squirrel-startup@1.0.1
------------------------------------------------------------------------------
Apache License
Version 2.0, January 2004
@@ -31512,7 +31540,7 @@ See the License for the specific language governing permissions and
limitations under the License.
------------------------------------------------------------------------------
-[256] Applies to: npm:electron-window-state@5.0.3
+[257] Applies to: npm:electron-window-state@5.0.3
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -31538,7 +31566,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[257] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
+[258] Applies to: npm:emoji-regex@8.0.0, npm:emoji-regex@9.2.2, npm:punycode@2.3.1
------------------------------------------------------------------------------
Copyright Mathias Bynens
@@ -31562,7 +31590,7 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[258] Applies to: npm:encodeurl@2.0.0
+[259] Applies to: npm:encodeurl@2.0.0
------------------------------------------------------------------------------
(The MIT License)
@@ -31588,7 +31616,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[259] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
+[260] Applies to: npm:end-of-stream@1.4.5, npm:pump@3.0.4, npm:tar-fs@2.1.5, npm:tar-stream@2.2.0
------------------------------------------------------------------------------
The MIT License (MIT)
@@ -31613,7 +31641,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
------------------------------------------------------------------------------
-[260] Applies to: npm:entities@6.0.1
+[261] Applies to: npm:entities@6.0.1
------------------------------------------------------------------------------
Copyright (c) Felix Böhm
All rights reserved.
@@ -31628,7 +31656,7 @@ THIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRE
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[261] Applies to: npm:es-set-tostringtag@2.1.0
+[262] Applies to: npm:es-set-tostringtag@2.1.0
------------------------------------------------------------------------------
MIT License
@@ -31653,7 +31681,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[262] Applies to: npm:es-toolkit@1.49.0
+[263] Applies to: npm:es-toolkit@1.49.0
------------------------------------------------------------------------------
MIT License
@@ -31678,7 +31706,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[263] Applies to: npm:escape-html@1.0.3
+[264] Applies to: npm:escape-html@1.0.3
------------------------------------------------------------------------------
(The MIT License)
@@ -31706,7 +31734,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[264] Applies to: npm:esprima@4.0.1
+[265] Applies to: npm:esprima@4.0.1
------------------------------------------------------------------------------
Copyright JS Foundation and other contributors, https://js.foundation/
@@ -31731,7 +31759,7 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
-[265] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-math@3.1.0
+[266] Applies to: npm:estree-util-is-identifier-name@3.0.0, npm:hast-util-heading-rank@3.0.0, npm:mdast-util-gfm-autolink-literal@2.0.1, npm:mdast-util-gfm-strikethrough@2.0.0, npm:mdast-util-gfm-table@2.0.0, npm:mdast-util-gfm-task-list-item@2.0.0, npm:mdast-util-math@3.0.0, npm:mdast-util-mdx-expression@2.0.1, npm:mdast-util-mdx-jsx@3.2.0, npm:mdast-util-mdxjs-esm@2.0.1, npm:micromark-extension-gfm-autolink-literal@2.1.0, npm:micromark-extension-gfm-strikethrough@2.1.0, npm:micromark-extension-gfm-tagfilter@2.0.0, npm:micromark-extension-gfm-task-list-item@2.1.0, npm:micromark-extension-gfm@3.0.0, npm:micromark-extension-math@3.1.0
------------------------------------------------------------------------------
(The MIT License)
@@ -31757,7 +31785,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[266] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
+[267] Applies to: npm:etag@1.8.1, npm:proxy-addr@2.0.7
------------------------------------------------------------------------------
(The MIT License)
@@ -31783,37 +31811,11 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------------------------------------------------------------------------------
-[267] Applies to: npm:eventsource@3.0.7
+[268] Applies to: npm:eventemitter3@5.0.4
------------------------------------------------------------------------------
-The MIT License
-
-Copyright (c) EventSource GitHub organisation
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-------------------------------------------------------------------------------
-[268] Applies to: npm:eventsource-parser@3.1.0
-------------------------------------------------------------------------------
-MIT License
+The MIT License (MIT)
-Copyright (c) 2026 Espen Hovlandsdal
+Copyright (c) 2014 Arnout Kazemier
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -31834,11 +31836,11 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
------------------------------------------------------------------------------
-[269] Applies to: npm:expand-template@2.0.3
+[269] Applies to: npm:eventsource-parser@3.1.0
------------------------------------------------------------------------------
-The MIT License (MIT)
+MIT License
-Copyright (c) 2018 Lars-Magnus Skog
+Copyright (c) 2026 Espen Hovlandsdal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -31847,29 +31849,27 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
------------------------------------------------------------------------------
-[270] Applies to: npm:express@5.2.1
+[270] Applies to: npm:eventsource@3.0.7
------------------------------------------------------------------------------
-(The MIT License)
+The MIT License
-Copyright (c) 2009-2014 TJ Holowaychuk
-Copyright (c) 2013-2014 Roman Shtylman
-Copyright (c) 2014-2015 Douglas Christopher Wilson