'"
);
- expect(mermaidAPI.defaultConfig['logLevel']).toBe(5);
+ expect(mermaidAPI.defaultConfig.logLevel).toBe(5);
});
});
@@ -649,7 +648,7 @@ describe('mermaidAPI', () => {
it('allows dompurify config to be set', () => {
mermaidAPI.initialize({ dompurifyConfig: { ADD_ATTR: ['onclick'] } });
- expect(mermaidAPI!.getConfig()!.dompurifyConfig!.ADD_ATTR).toEqual(['onclick']);
+ expect(mermaidAPI.getConfig().dompurifyConfig!.ADD_ATTR).toEqual(['onclick']);
});
});
diff --git a/packages/mermaid/src/mermaidAPI.ts b/packages/mermaid/src/mermaidAPI.ts
index ee6696af9..7bca4d995 100644
--- a/packages/mermaid/src/mermaidAPI.ts
+++ b/packages/mermaid/src/mermaidAPI.ts
@@ -1,14 +1,6 @@
/**
- * This is the API to be used when optionally handling the integration with the web page, instead of
- * using the default integration provided by mermaid.js.
- *
- * The core of this api is the [**render**](Setup.md?id=render) function which, given a graph
- * definition as text, renders the graph/diagram and returns an svg element for the graph.
- *
- * It is then up to the user of the API to make use of the svg, either insert it somewhere in the
- * page or do something completely different.
- *
- * In addition to the render function, a number of behavioral configuration options are available.
+ * This file contains functions that are used internally by mermaid
+ * and is not intended to be used by the end user.
*/
// @ts-ignore TODO: Investigate D3 issue
import { select } from 'd3';
@@ -32,6 +24,7 @@ import type { DiagramMetadata, DiagramStyleClassDef } from './diagram-api/types.
import { preprocessDiagram } from './preprocess.js';
import { decodeEntities } from './utils.js';
import { toBase64 } from './utils/base64.js';
+import type { D3Element, ParseOptions, ParseResult, RenderResult } from './types.js';
const MAX_TEXTLENGTH = 50_000;
const MAX_TEXTLENGTH_EXCEEDED_MSG =
@@ -57,44 +50,6 @@ const IFRAME_NOT_SUPPORTED_MSG = 'The "iframe" tag is not supported by your brow
const DOMPURIFY_TAGS = ['foreignobject'];
const DOMPURIFY_ATTR = ['dominant-baseline'];
-export interface ParseOptions {
- /**
- * If `true`, parse will return `false` instead of throwing error when the diagram is invalid.
- * The `parseError` function will not be called.
- */
- suppressErrors?: boolean;
-}
-
-export interface ParseResult {
- /**
- * The diagram type, e.g. 'flowchart', 'sequence', etc.
- */
- diagramType: string;
-}
-// This makes it clear that we're working with a d3 selected element of some kind, even though it's hard to specify the exact type.
-export type D3Element = any;
-
-export interface RenderResult {
- /**
- * The svg code for the rendered graph.
- */
- svg: string;
- /**
- * The diagram type, e.g. 'flowchart', 'sequence', etc.
- */
- diagramType: string;
- /**
- * Bind function to be called after the svg has been inserted into the DOM.
- * This is necessary for adding event listeners to the elements in the svg.
- * ```js
- * const { svg, bindFunctions } = mermaidAPI.render('id1', 'graph TD;A-->B');
- * div.innerHTML = svg;
- * bindFunctions?.(div); // To call bindFunctions only if it's present.
- * ```
- */
- bindFunctions?: (element: Element) => void;
-}
-
function processAndSetConfigs(text: string) {
const processed = preprocessDiagram(text);
configApi.reset();
@@ -173,7 +128,7 @@ export const createCssStyles = (
// classDefs defined in the diagram text
if (classDefs instanceof Map) {
- const htmlLabels = config.htmlLabels || config.flowchart?.htmlLabels; // TODO why specifically check the Flowchart diagram config?
+ const htmlLabels = config.htmlLabels ?? config.flowchart?.htmlLabels; // TODO why specifically check the Flowchart diagram config?
const cssHtmlElements = ['> *', 'span']; // TODO make a constant
const cssShapeElements = ['rect', 'polygon', 'ellipse', 'circle', 'path']; // TODO make a constant
@@ -568,69 +523,8 @@ function addA11yInfo(
}
/**
- * ## mermaidAPI configuration defaults
- *
- * ```ts
- * const config = {
- * theme: 'default',
- * logLevel: 'fatal',
- * securityLevel: 'strict',
- * startOnLoad: true,
- * arrowMarkerAbsolute: false,
- * suppressErrorRendering: false,
- *
- * er: {
- * diagramPadding: 20,
- * layoutDirection: 'TB',
- * minEntityWidth: 100,
- * minEntityHeight: 75,
- * entityPadding: 15,
- * stroke: 'gray',
- * fill: 'honeydew',
- * fontSize: 12,
- * useMaxWidth: true,
- * },
- * flowchart: {
- * diagramPadding: 8,
- * htmlLabels: true,
- * curve: 'basis',
- * },
- * sequence: {
- * diagramMarginX: 50,
- * diagramMarginY: 10,
- * actorMargin: 50,
- * width: 150,
- * height: 65,
- * boxMargin: 10,
- * boxTextMargin: 5,
- * noteMargin: 10,
- * messageMargin: 35,
- * messageAlign: 'center',
- * mirrorActors: true,
- * bottomMarginAdj: 1,
- * useMaxWidth: true,
- * rightAngles: false,
- * showSequenceNumbers: false,
- * },
- * gantt: {
- * titleTopMargin: 25,
- * barHeight: 20,
- * barGap: 4,
- * topPadding: 50,
- * leftPadding: 75,
- * gridLineStartPadding: 35,
- * fontSize: 11,
- * fontFamily: '"Open Sans", sans-serif',
- * numberSectionStyles: 4,
- * axisFormat: '%Y-%m-%d',
- * topAxis: false,
- * displayMode: '',
- * },
- * };
- * mermaid.initialize(config);
- * ```
+ * @internal - Use mermaid.function instead of mermaid.mermaidAPI.function
*/
-
export const mermaidAPI = Object.freeze({
render,
parse,
diff --git a/packages/mermaid/src/preprocess.ts b/packages/mermaid/src/preprocess.ts
index 6e386e744..10bc0adea 100644
--- a/packages/mermaid/src/preprocess.ts
+++ b/packages/mermaid/src/preprocess.ts
@@ -33,9 +33,7 @@ const processDirectives = (code: string) => {
const initDirective = utils.detectInit(code) ?? {};
const wrapDirectives = utils.detectDirective(code, 'wrap');
if (Array.isArray(wrapDirectives)) {
- initDirective.wrap = wrapDirectives.some(({ type }) => {
- type === 'wrap';
- });
+ initDirective.wrap = wrapDirectives.some(({ type }) => type === 'wrap');
} else if (wrapDirectives?.type === 'wrap') {
initDirective.wrap = true;
}
diff --git a/packages/mermaid/src/rendering-util/createText.ts b/packages/mermaid/src/rendering-util/createText.ts
index 0a7e3bbb0..462a4834f 100644
--- a/packages/mermaid/src/rendering-util/createText.ts
+++ b/packages/mermaid/src/rendering-util/createText.ts
@@ -21,13 +21,10 @@ function addHtmlSpan(element, node, width, classes, addBackground = false) {
const label = node.label;
const labelClass = node.isNode ? 'nodeLabel' : 'edgeLabel';
- div.html(
- `' +
- label +
- ' '
- );
+ const span = div.append('span');
+ span.html(label);
+ applyStyle(span, node.labelStyle);
+ span.attr('class', `${labelClass} ${classes}`);
applyStyle(div, node.labelStyle);
div.style('display', 'table-cell');
@@ -156,7 +153,7 @@ function updateTextContentAndStyles(tspan: any, wrappedLine: MarkdownWord[]) {
wrappedLine.forEach((word, index) => {
const innerTspan = tspan
.append('tspan')
- .attr('font-style', word.type === 'emphasis' ? 'italic' : 'normal')
+ .attr('font-style', word.type === 'em' ? 'italic' : 'normal')
.attr('class', 'text-inner-tspan')
.attr('font-weight', word.type === 'strong' ? 'bold' : 'normal');
if (index === 0) {
diff --git a/packages/mermaid/src/rendering-util/handle-markdown-text.spec.ts b/packages/mermaid/src/rendering-util/handle-markdown-text.spec.ts
index 7362e6f70..3ab4167a2 100644
--- a/packages/mermaid/src/rendering-util/handle-markdown-text.spec.ts
+++ b/packages/mermaid/src/rendering-util/handle-markdown-text.spec.ts
@@ -1,4 +1,3 @@
-/* eslint-disable no-irregular-whitespace */
import { markdownToLines, markdownToHTML } from './handle-markdown-text.js';
import { test, expect } from 'vitest';
@@ -37,9 +36,9 @@ Here is a line *with an italic* section`;
{ content: 'is', type: 'normal' },
{ content: 'a', type: 'normal' },
{ content: 'line', type: 'normal' },
- { content: 'with', type: 'emphasis' },
- { content: 'an', type: 'emphasis' },
- { content: 'italic', type: 'emphasis' },
+ { content: 'with', type: 'em' },
+ { content: 'an', type: 'em' },
+ { content: 'italic', type: 'em' },
{ content: 'section', type: 'normal' },
],
];
@@ -143,7 +142,7 @@ test('markdownToLines - Only italic formatting', () => {
{ content: 'This', type: 'normal' },
{ content: 'is', type: 'normal' },
{ content: 'an', type: 'normal' },
- { content: 'italic', type: 'emphasis' },
+ { content: 'italic', type: 'em' },
{ content: 'test', type: 'normal' },
],
];
@@ -156,7 +155,7 @@ it('markdownToLines - Mixed formatting', () => {
let input = `*Italic* and **bold** formatting`;
let expected = [
[
- { content: 'Italic', type: 'emphasis' },
+ { content: 'Italic', type: 'em' },
{ content: 'and', type: 'normal' },
{ content: 'bold', type: 'strong' },
{ content: 'formatting', type: 'normal' },
@@ -167,9 +166,9 @@ it('markdownToLines - Mixed formatting', () => {
input = `*Italic with space* and **bold ws** formatting`;
expected = [
[
- { content: 'Italic', type: 'emphasis' },
- { content: 'with', type: 'emphasis' },
- { content: 'space', type: 'emphasis' },
+ { content: 'Italic', type: 'em' },
+ { content: 'with', type: 'em' },
+ { content: 'space', type: 'em' },
{ content: 'and', type: 'normal' },
{ content: 'bold', type: 'strong' },
{ content: 'ws', type: 'strong' },
@@ -191,9 +190,9 @@ Word!`;
{ content: 'the', type: 'strong' },
{ content: 'hog...', type: 'normal' },
{ content: 'a', type: 'normal' },
- { content: 'very', type: 'emphasis' },
- { content: 'long', type: 'emphasis' },
- { content: 'text', type: 'emphasis' },
+ { content: 'very', type: 'em' },
+ { content: 'long', type: 'em' },
+ { content: 'text', type: 'em' },
{ content: 'about', type: 'normal' },
{ content: 'it', type: 'normal' },
],
@@ -215,13 +214,13 @@ test('markdownToLines - No auto wrapping', () => {
[
[
{
- "content": "Hello, how do",
+ "content": "Hello, how do",
"type": "normal",
},
],
[
{
- "content": "you do?",
+ "content": "you do?",
"type": "normal",
},
],
@@ -298,3 +297,13 @@ test('markdownToHTML - no auto wrapping', () => {
)
).toMatchInlineSnapshot('"Hello, how do you do?
"');
});
+
+test('markdownToHTML - auto wrapping', () => {
+ expect(
+ markdownToHTML(
+ `Hello, how do
+ you do?`,
+ { markdownAutoWrap: true }
+ )
+ ).toMatchInlineSnapshot('"Hello, how do you do?
"');
+});
diff --git a/packages/mermaid/src/rendering-util/handle-markdown-text.ts b/packages/mermaid/src/rendering-util/handle-markdown-text.ts
index c539f7268..3846e7f37 100644
--- a/packages/mermaid/src/rendering-util/handle-markdown-text.ts
+++ b/packages/mermaid/src/rendering-util/handle-markdown-text.ts
@@ -1,5 +1,5 @@
-import type { Content } from 'mdast';
-import { fromMarkdown } from 'mdast-util-from-markdown';
+import type { MarkedToken, Token } from 'marked';
+import { marked } from 'marked';
import { dedent } from 'ts-dedent';
import type { MarkdownLine, MarkdownWordType } from './types.js';
import type { MermaidConfig } from '../config.type.js';
@@ -24,13 +24,13 @@ function preprocessMarkdown(markdown: string, { markdownAutoWrap }: MermaidConfi
*/
export function markdownToLines(markdown: string, config: MermaidConfig = {}): MarkdownLine[] {
const preprocessedMarkdown = preprocessMarkdown(markdown, config);
- const { children } = fromMarkdown(preprocessedMarkdown);
+ const nodes = marked.lexer(preprocessedMarkdown);
const lines: MarkdownLine[] = [[]];
let currentLine = 0;
- function processNode(node: Content, parentType: MarkdownWordType = 'normal') {
+ function processNode(node: MarkedToken, parentType: MarkdownWordType = 'normal') {
if (node.type === 'text') {
- const textLines = node.value.split('\n');
+ const textLines = node.text.split('\n');
textLines.forEach((textLine, index) => {
if (index !== 0) {
currentLine++;
@@ -42,17 +42,17 @@ export function markdownToLines(markdown: string, config: MermaidConfig = {}): M
}
});
});
- } else if (node.type === 'strong' || node.type === 'emphasis') {
- node.children.forEach((contentNode) => {
- processNode(contentNode, node.type);
+ } else if (node.type === 'strong' || node.type === 'em') {
+ node.tokens.forEach((contentNode) => {
+ processNode(contentNode as MarkedToken, node.type);
});
}
}
- children.forEach((treeNode) => {
+ nodes.forEach((treeNode) => {
if (treeNode.type === 'paragraph') {
- treeNode.children.forEach((contentNode) => {
- processNode(contentNode);
+ treeNode.tokens?.forEach((contentNode) => {
+ processNode(contentNode as MarkedToken);
});
}
});
@@ -61,23 +61,23 @@ export function markdownToLines(markdown: string, config: MermaidConfig = {}): M
}
export function markdownToHTML(markdown: string, { markdownAutoWrap }: MermaidConfig = {}) {
- const { children } = fromMarkdown(markdown);
+ const nodes = marked.lexer(markdown);
- function output(node: Content): string {
+ function output(node: Token): string {
if (node.type === 'text') {
if (markdownAutoWrap === false) {
- return node.value.replace(/\n/g, ' ').replace(/ /g, ' ');
+ return node.text.replace(/\n */g, ' ').replace(/ /g, ' ');
}
- return node.value.replace(/\n/g, ' ');
+ return node.text.replace(/\n */g, ' ');
} else if (node.type === 'strong') {
- return `${node.children.map(output).join('')} `;
- } else if (node.type === 'emphasis') {
- return `${node.children.map(output).join('')} `;
+ return `${node.tokens?.map(output).join('')} `;
+ } else if (node.type === 'em') {
+ return `${node.tokens?.map(output).join('')} `;
} else if (node.type === 'paragraph') {
- return `${node.children.map(output).join('')}
`;
+ return `${node.tokens?.map(output).join('')}
`;
}
return `Unsupported markdown: ${node.type}`;
}
- return children.map(output).join('');
+ return nodes.map(output).join('');
}
diff --git a/packages/mermaid/src/rendering-util/types.d.ts b/packages/mermaid/src/rendering-util/types.d.ts
index 6dabb476d..d7a06a8fd 100644
--- a/packages/mermaid/src/rendering-util/types.d.ts
+++ b/packages/mermaid/src/rendering-util/types.d.ts
@@ -1,4 +1,4 @@
-export type MarkdownWordType = 'normal' | 'strong' | 'emphasis';
+export type MarkdownWordType = 'normal' | 'strong' | 'em';
export interface MarkdownWord {
content: string;
type: MarkdownWordType;
diff --git a/packages/mermaid/src/schemas/config.schema.yaml b/packages/mermaid/src/schemas/config.schema.yaml
index 68da484e0..d798ec63b 100644
--- a/packages/mermaid/src/schemas/config.schema.yaml
+++ b/packages/mermaid/src/schemas/config.schema.yaml
@@ -154,10 +154,7 @@ properties:
secure:
description: |
This option controls which `currentConfig` keys are considered secure and
- can only be changed via call to `mermaidAPI.initialize`.
- Calls to `mermaidAPI.reinitialize` cannot make changes to the secure keys
- in the current `currentConfig`.
-
+ can only be changed via call to `mermaid.initialize`.
This prevents malicious graph directives from overriding a site's default security.
default:
[
diff --git a/packages/mermaid/src/styles.spec.ts b/packages/mermaid/src/styles.spec.ts
index 698b2beaf..70e9e7ec5 100644
--- a/packages/mermaid/src/styles.spec.ts
+++ b/packages/mermaid/src/styles.spec.ts
@@ -31,7 +31,7 @@ import packet from './diagrams/packet/styles.js';
import block from './diagrams/block/styles.js';
import themes from './themes/index.js';
-async function checkValidStylisCSSStyleSheet(stylisString: string) {
+function checkValidStylisCSSStyleSheet(stylisString: string) {
const cssString = serialize(compile(`#my-svg-id{${stylisString}}`), stringify);
const errors = validate(cssString, 'this-file-was-created-by-tests.css') as Error[];
@@ -51,6 +51,7 @@ async function checkValidStylisCSSStyleSheet(stylisString: string) {
if (unexpectedErrors.length > 0) {
throw new Error(
+ // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
`The given CSS string was invalid: ${errors}.\n\n` +
'Copy the below CSS into https://jigsaw.w3.org/css-validator/validator to help debug where the invalid CSS is:\n\n' +
`Original CSS value was ${cssString}`
@@ -75,7 +76,7 @@ describe('styles', () => {
const styles = getStyles(diagramType, '', getConfig().themeVariables);
- await checkValidStylisCSSStyleSheet(styles);
+ checkValidStylisCSSStyleSheet(styles);
});
/**
@@ -110,7 +111,7 @@ describe('styles', () => {
themes[themeId].getThemeVariables()
);
- await checkValidStylisCSSStyleSheet(styles);
+ checkValidStylisCSSStyleSheet(styles);
});
}
}
diff --git a/packages/mermaid/src/styles.ts b/packages/mermaid/src/styles.ts
index fde079450..50d502bac 100644
--- a/packages/mermaid/src/styles.ts
+++ b/packages/mermaid/src/styles.ts
@@ -17,8 +17,8 @@ const getStyles = (
} & FlowChartStyleOptions
) => {
let diagramStyles = '';
- if (type in themes && themes[type as keyof typeof themes]) {
- diagramStyles = themes[type as keyof typeof themes](options);
+ if (type in themes && themes[type]) {
+ diagramStyles = themes[type](options);
} else {
log.warn(`No theme found for ${type}`);
}
diff --git a/packages/mermaid/src/tests/MockedD3.ts b/packages/mermaid/src/tests/MockedD3.ts
index 2f00e4924..35871f14e 100644
--- a/packages/mermaid/src/tests/MockedD3.ts
+++ b/packages/mermaid/src/tests/MockedD3.ts
@@ -60,7 +60,7 @@ export class MockedD3 {
if (beforeSelector === undefined) {
this._children.push(newMock);
} else {
- const idOnly = beforeSelector[0] == '#' ? beforeSelector.substring(1) : beforeSelector;
+ const idOnly = beforeSelector.startsWith('#') ? beforeSelector.substring(1) : beforeSelector;
const foundIndex = this._children.findIndex((child) => child.id === idOnly);
if (foundIndex < 0) {
this._children.push(newMock);
diff --git a/packages/mermaid/src/themes/theme-base.js b/packages/mermaid/src/themes/theme-base.js
index dde3b9ecf..a92bd9e20 100644
--- a/packages/mermaid/src/themes/theme-base.js
+++ b/packages/mermaid/src/themes/theme-base.js
@@ -1,9 +1,9 @@
-import { darken, lighten, adjust, invert, isDark, toRgba } from 'khroma';
-import { mkBorder } from './theme-helpers.js';
+import { adjust, darken, invert, isDark, lighten } from 'khroma';
import {
oldAttributeBackgroundColorEven,
oldAttributeBackgroundColorOdd,
} from './erDiagram-oldHardcodedValues.js';
+import { mkBorder } from './theme-helpers.js';
class Theme {
constructor() {
diff --git a/packages/mermaid/src/themes/theme-neutral.js b/packages/mermaid/src/themes/theme-neutral.js
index 4134a985b..40963839e 100644
--- a/packages/mermaid/src/themes/theme-neutral.js
+++ b/packages/mermaid/src/themes/theme-neutral.js
@@ -156,8 +156,8 @@ class Theme {
// Setup the label color for the set
this.scaleLabelColor = this.scaleLabelColor || (this.darkMode ? 'black' : this.labelTextColor);
- this['cScaleLabel0'] = this['cScaleLabel0'] || this.cScale1;
- this['cScaleLabel2'] = this['cScaleLabel2'] || this.cScale1;
+ this.cScaleLabel0 = this.cScaleLabel0 || this.cScale1;
+ this.cScaleLabel2 = this.cScaleLabel2 || this.cScale1;
for (let i = 0; i < this.THEME_COLOR_LIMIT; i++) {
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
}
diff --git a/packages/mermaid/src/types.ts b/packages/mermaid/src/types.ts
index 487e089dc..9f4d77225 100644
--- a/packages/mermaid/src/types.ts
+++ b/packages/mermaid/src/types.ts
@@ -34,3 +34,41 @@ export interface EdgeData {
}
export type ArrayElement = A extends readonly (infer T)[] ? T : never;
+
+export interface ParseOptions {
+ /**
+ * If `true`, parse will return `false` instead of throwing error when the diagram is invalid.
+ * The `parseError` function will not be called.
+ */
+ suppressErrors?: boolean;
+}
+
+export interface ParseResult {
+ /**
+ * The diagram type, e.g. 'flowchart', 'sequence', etc.
+ */
+ diagramType: string;
+}
+// This makes it clear that we're working with a d3 selected element of some kind, even though it's hard to specify the exact type.
+export type D3Element = any;
+
+export interface RenderResult {
+ /**
+ * The svg code for the rendered graph.
+ */
+ svg: string;
+ /**
+ * The diagram type, e.g. 'flowchart', 'sequence', etc.
+ */
+ diagramType: string;
+ /**
+ * Bind function to be called after the svg has been inserted into the DOM.
+ * This is necessary for adding event listeners to the elements in the svg.
+ * ```js
+ * const { svg, bindFunctions } = await mermaid.render('id1', 'graph TD;A-->B');
+ * div.innerHTML = svg;
+ * bindFunctions?.(div); // To call bindFunctions only if it's present.
+ * ```
+ */
+ bindFunctions?: (element: Element) => void;
+}
diff --git a/packages/mermaid/src/utils.ts b/packages/mermaid/src/utils.ts
index 99283f359..631b6dd85 100644
--- a/packages/mermaid/src/utils.ts
+++ b/packages/mermaid/src/utils.ts
@@ -32,8 +32,7 @@ import type { MermaidConfig } from './config.type.js';
import memoize from 'lodash-es/memoize.js';
import merge from 'lodash-es/merge.js';
import { directiveRegex } from './diagram-api/regexes.js';
-import type { D3Element } from './mermaidAPI.js';
-import type { Point, TextDimensionConfig, TextDimensions } from './types.js';
+import type { D3Element, Point, TextDimensionConfig, TextDimensions } from './types.js';
export const ZERO_WIDTH_SPACE = '\u200b';
@@ -178,11 +177,7 @@ export const detectDirective = function (
if (match.index === directiveRegex.lastIndex) {
directiveRegex.lastIndex++;
}
- if (
- (match && !type) ||
- (type && match[1] && match[1].match(type)) ||
- (type && match[2] && match[2].match(type))
- ) {
+ if ((match && !type) || (type && match[1]?.match(type)) || (type && match[2]?.match(type))) {
const type = match[1] ? match[1] : match[2];
const args = match[3] ? match[3].trim() : match[4] ? JSON.parse(match[4].trim()) : null;
result.push({ type, args });
@@ -572,7 +567,7 @@ export const wrapLabel: (label: string, maxWidth: number, config: WrapLabelConfi
if (common.lineBreakRegex.test(label)) {
return label;
}
- const words = label.split(' ');
+ const words = label.split(' ').filter(Boolean);
const completedLines: string[] = [];
let nextLine = '';
words.forEach((word, index) => {
@@ -778,7 +773,7 @@ export const entityDecode = function (html: string): string {
// Escape HTML before decoding for HTML Entities
html = escape(html).replace(/%26/g, '&').replace(/%23/g, '#').replace(/%3B/g, ';');
decoder.innerHTML = html;
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
+
return unescape(decoder.textContent!);
};
diff --git a/packages/mermaid/src/utils/lineWithOffset.ts b/packages/mermaid/src/utils/lineWithOffset.ts
index af0cd3b46..114dda2bd 100644
--- a/packages/mermaid/src/utils/lineWithOffset.ts
+++ b/packages/mermaid/src/utils/lineWithOffset.ts
@@ -45,7 +45,12 @@ export const getLineFunctionsWithOffset = (
edge: Pick
) => {
return {
- x: function (d: Point | [number, number], i: number, data: (Point | [number, number])[]) {
+ x: function (
+ this: void,
+ d: Point | [number, number],
+ i: number,
+ data: (Point | [number, number])[]
+ ) {
let offset = 0;
if (i === 0 && Object.hasOwn(markerOffsets, edge.arrowTypeStart)) {
// Handle first point
@@ -70,7 +75,12 @@ export const getLineFunctionsWithOffset = (
}
return pointTransformer(d).x + offset;
},
- y: function (d: Point | [number, number], i: number, data: (Point | [number, number])[]) {
+ y: function (
+ this: void,
+ d: Point | [number, number],
+ i: number,
+ data: (Point | [number, number])[]
+ ) {
// Same handling as X above
let offset = 0;
if (i === 0 && Object.hasOwn(markerOffsets, edge.arrowTypeStart)) {
diff --git a/packages/mermaid/tsconfig.eslint.json b/packages/mermaid/tsconfig.eslint.json
new file mode 100644
index 000000000..9df160d20
--- /dev/null
+++ b/packages/mermaid/tsconfig.eslint.json
@@ -0,0 +1,13 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "extends": ["./tsconfig.json"],
+ "compilerOptions": {
+ "noEmit": true
+ },
+ "include": [
+ "./src/**/*.spec.js",
+ "./src/**/*.spec.ts", // test files
+ "./scripts",
+ "./.lintstagedrc.mjs"
+ ]
+}
diff --git a/packages/parser/src/language/common/tokenBuilder.ts b/packages/parser/src/language/common/tokenBuilder.ts
index f99763454..1511dd390 100644
--- a/packages/parser/src/language/common/tokenBuilder.ts
+++ b/packages/parser/src/language/common/tokenBuilder.ts
@@ -20,6 +20,7 @@ export abstract class AbstractMermaidTokenBuilder extends DefaultTokenBuilder {
// to restrict users, they mustn't have any non-whitespace characters after the keyword.
tokenTypes.forEach((tokenType: TokenType): void => {
if (this.keywords.has(tokenType.name) && tokenType.PATTERN !== undefined) {
+ // eslint-disable-next-line @typescript-eslint/no-base-to-string
tokenType.PATTERN = new RegExp(tokenType.PATTERN.toString() + '(?:(?=%%)|(?!\\S))');
}
});
diff --git a/packages/parser/src/language/common/valueConverter.ts b/packages/parser/src/language/common/valueConverter.ts
index 624cc67a5..740ef527f 100644
--- a/packages/parser/src/language/common/valueConverter.ts
+++ b/packages/parser/src/language/common/valueConverter.ts
@@ -1,4 +1,3 @@
-/* eslint-disable @typescript-eslint/no-unused-vars */
import type { CstNode, GrammarAST, ValueType } from 'langium';
import { DefaultValueConverter } from 'langium';
diff --git a/packages/parser/src/language/pie/valueConverter.ts b/packages/parser/src/language/pie/valueConverter.ts
index b0ae18c0b..6e312e172 100644
--- a/packages/parser/src/language/pie/valueConverter.ts
+++ b/packages/parser/src/language/pie/valueConverter.ts
@@ -6,7 +6,7 @@ export class PieValueConverter extends AbstractMermaidValueConverter {
protected runCustomConverter(
rule: GrammarAST.AbstractRule,
input: string,
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
+
_cstNode: CstNode
): ValueType | undefined {
if (rule.name !== 'PIE_SECTION_LABEL') {
diff --git a/packages/parser/src/parse.ts b/packages/parser/src/parse.ts
index 577a1cea6..992b96506 100644
--- a/packages/parser/src/parse.ts
+++ b/packages/parser/src/parse.ts
@@ -9,17 +9,17 @@ const initializers = {
info: async () => {
const { createInfoServices } = await import('./language/info/index.js');
const parser = createInfoServices().Info.parser.LangiumParser;
- parsers['info'] = parser;
+ parsers.info = parser;
},
packet: async () => {
const { createPacketServices } = await import('./language/packet/index.js');
const parser = createPacketServices().Packet.parser.LangiumParser;
- parsers['packet'] = parser;
+ parsers.packet = parser;
},
pie: async () => {
const { createPieServices } = await import('./language/pie/index.js');
const parser = createPieServices().Pie.parser.LangiumParser;
- parsers['pie'] = parser;
+ parsers.pie = parser;
},
} as const;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c34ce3fcd..20475ea93 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -12,23 +12,23 @@ importers:
specifier: ^3.42.3
version: 3.43.1(encoding@0.1.13)(typescript@5.4.5)
'@argos-ci/cypress':
- specifier: ^2.0.5
- version: 2.0.5(cypress@13.7.3)
+ specifier: ^2.1.0
+ version: 2.1.0(cypress@13.7.3)
'@cspell/eslint-plugin':
- specifier: ^8.6.0
- version: 8.7.0(eslint@8.57.0)
+ specifier: ^8.8.4
+ version: 8.10.4(eslint@9.7.0)
'@cypress/code-coverage':
specifier: ^3.12.30
- version: 3.12.39(@babel/core@7.24.4)(@babel/preset-env@7.24.7(@babel/core@7.24.4))(babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)))(cypress@13.7.3)(webpack@5.91.0(esbuild@0.20.2))
+ version: 3.12.41(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5)))(cypress@13.7.3)(webpack@5.91.0(esbuild@0.21.5))
+ '@eslint/js':
+ specifier: ^9.4.0
+ version: 9.7.0
'@rollup/plugin-typescript':
specifier: ^11.1.6
- version: 11.1.6(rollup@4.18.0)(tslib@2.6.2)(typescript@5.4.5)
+ version: 11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5)
'@types/cors':
specifier: ^2.8.17
version: 2.8.17
- '@types/eslint':
- specifier: ^8.56.6
- version: 8.56.10
'@types/express':
specifier: ^4.17.21
version: 4.17.21
@@ -40,7 +40,7 @@ importers:
version: 21.1.7
'@types/lodash':
specifier: ^4.17.0
- version: 4.17.5
+ version: 4.17.6
'@types/mdast':
specifier: ^4.0.3
version: 4.0.4
@@ -50,15 +50,9 @@ importers:
'@types/rollup-plugin-visualizer':
specifier: ^4.2.4
version: 4.2.4
- '@typescript-eslint/eslint-plugin':
- specifier: ^7.3.1
- version: 7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser':
- specifier: ^7.3.1
- version: 7.6.0(eslint@8.57.0)(typescript@5.4.5)
'@vitest/coverage-v8':
specifier: ^1.4.0
- version: 1.5.3(vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1))
+ version: 1.5.3(vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2))
'@vitest/spy':
specifier: ^1.4.0
version: 1.5.3
@@ -90,50 +84,53 @@ importers:
specifier: ^4.0.1
version: 4.0.1(cypress@13.7.3)(jest@29.7.0(@types/node@20.12.14))
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.5
+ version: 0.21.5
eslint:
- specifier: ^8.57.0
- version: 8.57.0
+ specifier: ^9.4.0
+ version: 9.7.0
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@8.57.0)
+ version: 9.1.0(eslint@9.7.0)
eslint-plugin-cypress:
- specifier: ^2.15.1
- version: 2.15.2(eslint@8.57.0)
+ specifier: ^3.3.0
+ version: 3.3.0(eslint@9.7.0)
eslint-plugin-html:
- specifier: ^8.0.0
+ specifier: ^8.1.1
version: 8.1.1
eslint-plugin-jest:
- specifier: ^27.9.0
- version: 27.9.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(jest@29.7.0(@types/node@20.12.14))(typescript@5.4.5)
+ specifier: ^28.6.0
+ version: 28.6.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(jest@29.7.0(@types/node@20.12.14))(typescript@5.4.5)
eslint-plugin-jsdoc:
- specifier: ^48.2.1
- version: 48.2.12(eslint@8.57.0)
+ specifier: ^48.2.9
+ version: 48.7.0(eslint@9.7.0)
eslint-plugin-json:
- specifier: ^3.1.0
- version: 3.1.0
+ specifier: ^4.0.0
+ version: 4.0.0
eslint-plugin-lodash:
- specifier: ^7.4.0
- version: 7.4.0(eslint@8.57.0)
+ specifier: ^8.0.0
+ version: 8.0.0(eslint@9.7.0)
eslint-plugin-markdown:
- specifier: ^4.0.1
- version: 4.0.1(eslint@8.57.0)
+ specifier: ^5.0.0
+ version: 5.1.0(eslint@9.7.0)
eslint-plugin-no-only-tests:
specifier: ^3.1.0
version: 3.1.0
eslint-plugin-tsdoc:
- specifier: ^0.2.17
- version: 0.2.17
+ specifier: ^0.3.0
+ version: 0.3.0
eslint-plugin-unicorn:
- specifier: ^51.0.1
- version: 51.0.1(eslint@8.57.0)
+ specifier: ^54.0.0
+ version: 54.0.0(eslint@9.7.0)
express:
specifier: ^4.19.1
version: 4.19.2
+ globals:
+ specifier: ^15.4.0
+ version: 15.6.0
globby:
specifier: ^14.0.1
- version: 14.0.1
+ version: 14.0.2
husky:
specifier: ^9.0.11
version: 9.0.11
@@ -175,7 +172,7 @@ importers:
version: 1.3.0(prettier@3.2.5)
rimraf:
specifier: ^5.0.5
- version: 5.0.7
+ version: 5.0.8
rollup-plugin-visualizer:
specifier: ^5.12.0
version: 5.12.0(rollup@4.18.0)
@@ -186,32 +183,35 @@ importers:
specifier: ^4.7.1
version: 4.7.3
typescript:
- specifier: ^5.4.3
+ specifier: ~5.4.5
version: 5.4.5
+ typescript-eslint:
+ specifier: ^8.0.0-alpha.34
+ version: 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
vite:
specifier: ^5.2.3
- version: 5.2.13(@types/node@20.12.14)(terser@5.31.1)
+ version: 5.2.13(@types/node@20.12.14)(terser@5.31.2)
vite-plugin-istanbul:
specifier: ^6.0.0
- version: 6.0.2(vite@5.2.13(@types/node@20.12.14)(terser@5.31.1))
+ version: 6.0.2(vite@5.2.13(@types/node@20.12.14)(terser@5.31.2))
vitest:
specifier: ^1.4.0
- version: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1)
+ version: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2)
packages/mermaid:
dependencies:
'@braintree/sanitize-url':
specifier: ^7.0.1
- version: 7.0.3
+ version: 7.0.4
'@mermaid-js/parser':
specifier: workspace:^
version: link:../parser
cytoscape:
specifier: ^3.29.2
- version: 3.29.2
+ version: 3.29.3
cytoscape-cose-bilkent:
specifier: ^4.1.0
- version: 4.1.0(cytoscape@3.29.2)
+ version: 4.1.0(cytoscape@3.29.3)
d3:
specifier: ^7.9.0
version: 7.9.0
@@ -226,22 +226,22 @@ importers:
version: 1.11.11
dompurify:
specifier: ^3.0.11
- version: 3.1.5
+ version: 3.1.6
elkjs:
specifier: ^0.9.2
version: 0.9.3
katex:
specifier: ^0.16.9
- version: 0.16.10
+ version: 0.16.11
khroma:
specifier: ^2.1.0
version: 2.1.0
lodash-es:
specifier: ^4.17.21
version: 4.17.21
- mdast-util-from-markdown:
- specifier: ^2.0.0
- version: 2.0.1
+ marked:
+ specifier: ^13.0.2
+ version: 13.0.2
stylis:
specifier: ^4.3.1
version: 4.3.2
@@ -290,7 +290,7 @@ importers:
version: 4.17.12
'@types/micromatch':
specifier: ^4.0.6
- version: 4.0.7
+ version: 4.0.9
'@types/prettier':
specifier: ^3.0.0
version: 3.0.0
@@ -300,12 +300,6 @@ importers:
'@types/uuid':
specifier: ^9.0.8
version: 9.0.8
- '@typescript-eslint/eslint-plugin':
- specifier: ^7.3.1
- version: 7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser':
- specifier: ^7.3.1
- version: 7.6.0(eslint@8.57.0)(typescript@5.4.5)
ajv:
specifier: ^8.12.0
version: 8.12.0
@@ -323,7 +317,7 @@ importers:
version: 3.0.0
globby:
specifier: ^14.0.1
- version: 14.0.1
+ version: 14.0.2
jison:
specifier: ^0.4.18
version: 0.4.18
@@ -356,7 +350,7 @@ importers:
version: 4.0.0
rimraf:
specifier: ^5.0.5
- version: 5.0.7
+ version: 5.0.8
start-server-and-test:
specifier: ^2.0.3
version: 2.0.4
@@ -370,7 +364,7 @@ importers:
specifier: ^3.17.1
version: 3.17.1(typedoc@0.25.13(typescript@5.4.5))
typescript:
- specifier: ^5.4.3
+ specifier: ~5.4.3
version: 5.4.5
unist-util-flatmap:
specifier: ^1.0.0
@@ -380,16 +374,16 @@ importers:
version: 5.0.0
vitepress:
specifier: ^1.0.1
- version: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5)
+ version: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5)
vitepress-plugin-search:
specifier: 1.0.4-alpha.22
- version: 1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5))(vue@3.4.26(typescript@5.4.5))
+ version: 1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5))(vue@3.4.30(typescript@5.4.5))
packages/mermaid-example-diagram:
dependencies:
'@braintree/sanitize-url':
specifier: ^7.0.0
- version: 7.0.3
+ version: 7.0.4
d3:
specifier: ^7.9.0
version: 7.9.0
@@ -405,7 +399,7 @@ importers:
version: link:../mermaid
rimraf:
specifier: ^5.0.5
- version: 5.0.7
+ version: 5.0.8
packages/mermaid-flowchart-elk:
dependencies:
@@ -430,13 +424,13 @@ importers:
version: link:../mermaid
rimraf:
specifier: ^5.0.5
- version: 5.0.7
+ version: 5.0.8
packages/mermaid-zenuml:
dependencies:
'@zenuml/core':
- specifier: ^3.19.2
- version: 3.21.2(typescript@5.4.5)
+ specifier: ^3.23.27
+ version: 3.23.28(typescript@5.4.5)
devDependencies:
mermaid:
specifier: workspace:^
@@ -449,7 +443,7 @@ importers:
version: 7.4.47
'@vueuse/core':
specifier: ^10.9.0
- version: 10.9.0(vue@3.4.29(typescript@5.4.5))
+ version: 10.9.0(vue@3.4.31(typescript@5.4.5))
font-awesome:
specifier: ^4.7.0
version: 4.7.0
@@ -461,7 +455,7 @@ importers:
version: link:../..
vue:
specifier: ^3.4.21
- version: 3.4.29(typescript@5.4.5)
+ version: 3.4.31(typescript@5.4.5)
devDependencies:
'@iconify-json/carbon':
specifier: ^1.1.31
@@ -471,10 +465,10 @@ importers:
version: 0.59.4
'@vite-pwa/vitepress':
specifier: ^0.4.0
- version: 0.4.0(vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0))
+ version: 0.4.0(vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0))
'@vitejs/plugin-vue':
specifier: ^5.0.0
- version: 5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.29(typescript@5.4.5))
+ version: 5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(vue@3.4.31(typescript@5.4.5))
fast-glob:
specifier: ^3.3.2
version: 3.3.2
@@ -486,19 +480,19 @@ importers:
version: 1.1.2
unocss:
specifier: ^0.59.0
- version: 0.59.4(postcss@8.4.38)(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))
+ version: 0.59.4(postcss@8.4.39)(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))
unplugin-vue-components:
specifier: ^0.26.0
- version: 0.26.0(@babel/parser@7.24.7)(rollup@2.79.1)(vue@3.4.29(typescript@5.4.5))
+ version: 0.26.0(@babel/parser@7.24.8)(rollup@2.79.1)(vue@3.4.31(typescript@5.4.5))
vite:
specifier: ^5.0.0
- version: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ version: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
vite-plugin-pwa:
specifier: ^0.19.7
- version: 0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
+ version: 0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
vitepress:
specifier: 1.1.4
- version: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5)
+ version: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.2)(typescript@5.4.5)
workbox-window:
specifier: ^7.0.0
version: 7.0.0
@@ -524,7 +518,7 @@ importers:
devDependencies:
webpack:
specifier: ^5.91.0
- version: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ version: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
webpack-cli:
specifier: ^4.10.0
version: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)
@@ -534,10 +528,6 @@ importers:
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@adobe/jsonschema2md@8.0.2':
resolution: {integrity: sha512-g90Rtz1Xghp9HTfbtBH2Pf5IpuUY1Ry9Wps5NNuNmxucbtmnCY4/1KXmtwe0yKxnknPF7nt5/Y8TOekMh450tQ==}
engines: {node: ^18.0.0 || >= 20.0.0}
@@ -750,18 +740,18 @@ packages:
resolution: {integrity: sha512-4dpz76kW0KnXCYdxtkcdiaYUM4owmKtT9zPqrd1yPo+VuSNCNULyCZJ4mdy0aXWT716JLMMmIZ3AnQSkyaqvaA==}
engines: {node: '>=18.0.0'}
- '@argos-ci/core@2.3.0':
- resolution: {integrity: sha512-0mHncBeOD7GFYfGZYUEcDgLyzsvPyxK/L1MROfAurFeWcw89ODG24JEdPsECtZBSCZMmMcK8XqeJIJkZsnDGZA==}
+ '@argos-ci/core@2.4.0':
+ resolution: {integrity: sha512-CY8IQsc71cuIeF2U47aePzH8+YWK4ePG1j+gK5aQ0r744Wc467U4xej7gChMVrAaGlZKsgoIIeXE1ezF+rCryw==}
engines: {node: '>=18.0.0'}
- '@argos-ci/cypress@2.0.5':
- resolution: {integrity: sha512-pMM2+hGT8IE2XfWQpk4Mnf73K1B+97x0f1tkHrEpsopZBWmZy5nMZ0iqNLafJsRfo1LtZA8171oftPl5nEAz8g==}
+ '@argos-ci/cypress@2.1.0':
+ resolution: {integrity: sha512-EvzoWrX9owK40aeOcP3k3pMdML3m1PynLjDOGBtxWUG87gAGjsVd0rvVMTHQJTrCwhF4TRlqDv3vAllMWdZIAA==}
engines: {node: '>=18.0.0'}
peerDependencies:
cypress: ^12.0.0 || ^13.0.0
- '@argos-ci/util@2.0.0':
- resolution: {integrity: sha512-wnsNQOjcNfxOi8cHWSv8+GhzUeIitDJgjhuSNR9zrfHB0Y3nDVI57S/mHRo+EMAaWwghfbrxW1ypRCXVseN0GA==}
+ '@argos-ci/util@2.1.0':
+ resolution: {integrity: sha512-/78zJjZJCh3i7Eh3/lo7ybXK2pzXFGUNHbK3SgJNKNbFiBDllNRfy+x0kccjvN2gCCDz877jnFOlSoZZuMK56A==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.24.2':
@@ -780,6 +770,10 @@ packages:
resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.24.8':
+ resolution: {integrity: sha512-c4IM7OTg6k1Q+AJ153e2mc2QVTezTwnb4VzquwcyiEzGnW0Kedv4do/TrkU98qPeC5LNiMt/QXwIjzYXLBpyZg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.24.4':
resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
engines: {node: '>=6.9.0'}
@@ -792,6 +786,10 @@ packages:
resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.24.8':
+ resolution: {integrity: sha512-6AWcmZC/MZCO0yKys4uhg5NlxL0ESF3K6IAaoQ+xSXvPyPyxNWRafP+GDbI88Oh68O7QkJgmEtedWPM9U0pZNg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.24.5':
resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
@@ -800,6 +798,10 @@ packages:
resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.24.8':
+ resolution: {integrity: sha512-47DG+6F5SzOi0uEvK4wMShmn5yY0mVjVJoWTphdY2B4Rx9wHgjK7Yhtr0ru6nE+sn0v38mzrWOlah0p/YlHHOQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
@@ -820,14 +822,18 @@ packages:
resolution: {integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.24.8':
+ resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.24.5':
resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.24.7':
- resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ '@babel/helper-create-class-features-plugin@7.24.8':
+ resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -871,8 +877,8 @@ packages:
resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.7':
- resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
+ '@babel/helper-member-expression-to-functions@7.24.8':
+ resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.3':
@@ -895,6 +901,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.24.8':
+ resolution: {integrity: sha512-m4vWKVqvkVAWLXfHCCfff2luJj86U+J0/x+0N3ArG/tP0Fq7zky2dYwMbtPmkc/oulkkbjdL3uWzuoBwQ8R00Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -907,8 +919,8 @@ packages:
resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.7':
- resolution: {integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==}
+ '@babel/helper-plugin-utils@7.24.8':
+ resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.24.7':
@@ -961,12 +973,8 @@ packages:
resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.24.5':
- resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
+ '@babel/helper-string-parser@7.24.8':
+ resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.7':
@@ -981,6 +989,10 @@ packages:
resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.24.8':
+ resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-wrap-function@7.24.7':
resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
@@ -993,6 +1005,10 @@ packages:
resolution: {integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.24.8':
+ resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.24.2':
resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
engines: {node: '>=6.9.0'}
@@ -1011,6 +1027,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.24.8':
+ resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
engines: {node: '>=6.9.0'}
@@ -1196,8 +1217,8 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.7':
- resolution: {integrity: sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==}
+ '@babel/plugin-transform-classes@7.24.8':
+ resolution: {integrity: sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1208,8 +1229,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.7':
- resolution: {integrity: sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==}
+ '@babel/plugin-transform-destructuring@7.24.8':
+ resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1292,8 +1313,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.7':
- resolution: {integrity: sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==}
+ '@babel/plugin-transform-modules-commonjs@7.24.8':
+ resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1352,8 +1373,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.7':
- resolution: {integrity: sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==}
+ '@babel/plugin-transform-optional-chaining@7.24.8':
+ resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1418,8 +1439,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.7':
- resolution: {integrity: sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==}
+ '@babel/plugin-transform-typeof-symbol@7.24.8':
+ resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1460,6 +1481,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.24.8':
+ resolution: {integrity: sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1482,8 +1509,8 @@ packages:
resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.24.7':
- resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
+ '@babel/runtime@7.24.8':
+ resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
engines: {node: '>=6.9.0'}
'@babel/template@7.24.0':
@@ -1502,6 +1529,10 @@ packages:
resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.24.8':
+ resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.24.5':
resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
@@ -1510,6 +1541,10 @@ packages:
resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.24.8':
+ resolution: {integrity: sha512-SkSBEHwwJRU52QEVZBmMBnE5Ux2/6WU1grdYyOhpbCNxbmJrDuDCphBzKZSO3taf0zztp+qkWlymE5tVL5l0TA==}
+ engines: {node: '>=6.9.0'}
+
'@bcherny/json-schema-ref-parser@10.0.5-fork':
resolution: {integrity: sha512-E/jKbPoca1tfUPj3iSbitDZTGnq6FUFjkH6L8U2oDwSuwK1WhnnVtCG7oFOTg/DDnyoXbQYUiUiGOibHqaGVnw==}
engines: {node: '>= 16'}
@@ -1517,8 +1552,8 @@ packages:
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@braintree/sanitize-url@7.0.3':
- resolution: {integrity: sha512-NFSRlcnXOS+VdopYWQyzlaFYRRqaf75bbqidO/c7PBakT+3C0Fm287hyZwvc11HVRSUj1QXl+rb4u1pemh57yA==}
+ '@braintree/sanitize-url@7.0.4':
+ resolution: {integrity: sha512-hPYRrKFoI+nuckPgDJfyYAkybFvheo4usS0Vw0HNAe+fmGBQA5Az37b/yStO284atBoqqdOUhKJ3d9Zw3PQkcQ==}
'@chevrotain/cst-dts-gen@11.0.3':
resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==}
@@ -1539,6 +1574,10 @@ packages:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
+ '@cspell/cspell-bundled-dicts@8.10.4':
+ resolution: {integrity: sha512-QmgvIp9/NM60Jj6ft5oaiCFidwPwKYS9FfpfABrDLw/Jx6wwcTdy9cVbuPxT8n4LwkHpswkmIzOf4zSlnrd4MQ==}
+ engines: {node: '>=18'}
+
'@cspell/cspell-bundled-dicts@8.7.0':
resolution: {integrity: sha512-B5YQI7Dd9m0JHTmHgs7PiyP4BWXzl8ixpK+HGOwhxzh7GyfFt1Eo/gxMxBDX/9SaewEzeb2OjRpRKEFtEsto3A==}
engines: {node: '>=18'}
@@ -1547,18 +1586,34 @@ packages:
resolution: {integrity: sha512-LTQPEvXvCqnc+ok9WXpSISZyt4/nGse9fVEM430g0BpGzKpt3RMx49B8uasvvnanzCuikaW9+wFLmwgvraERhA==}
engines: {node: '>=18'}
+ '@cspell/cspell-pipe@8.10.4':
+ resolution: {integrity: sha512-yN+A9EIgdSkNiQnrFgsy5dzFl879ddMRHw/u38Zw4HdHIGr+xLpw5UVSKK6OacPMro853engM3dTJJDzRzh+rA==}
+ engines: {node: '>=18'}
+
'@cspell/cspell-pipe@8.7.0':
resolution: {integrity: sha512-ePqddIQ4arqPQgOkC146SkZxvZb9/jL7xIM5Igy2n3tiWTC5ijrX/mbHpPZ1VGcFck+1M0cJUuyhuJk+vMj3rg==}
engines: {node: '>=18'}
+ '@cspell/cspell-resolver@8.10.4':
+ resolution: {integrity: sha512-f0Y+Tol1aqrj9LsDT1oQOoj0P9uJ0ZW5PbhVlKqFeIDhrA5rYLy0ffnFESLNBRxWXaB/cznzpgMUyNfpVCXJpg==}
+ engines: {node: '>=18'}
+
'@cspell/cspell-resolver@8.7.0':
resolution: {integrity: sha512-grZwDFYqcBYQDaz4AkUtdyqc4UUH2J3/7yWVkBbYDPE+FQHa9ofFXzXxyjs56GJlPfi9ULpe5/Wz6uVLg8rQkQ==}
engines: {node: '>=18'}
+ '@cspell/cspell-service-bus@8.10.4':
+ resolution: {integrity: sha512-bXIllG6C1rKjWGlKdrAfs0AKrs/iQ6ZL6kSXrzHh5NB8oyBzX8tf5v4BX3Bnh5yrjBzkT2qhL+teEcvWjjvu2w==}
+ engines: {node: '>=18'}
+
'@cspell/cspell-service-bus@8.7.0':
resolution: {integrity: sha512-KW48iu0nTDzbedixc7iB7K7mlAZQ7QeMLuM/akxigOlvtOdVJrRa9Pfn44lwejts1ANb/IXil3GH8YylkVi76Q==}
engines: {node: '>=18'}
+ '@cspell/cspell-types@8.10.4':
+ resolution: {integrity: sha512-K/7JALR417KYHoovk18LTJCnKXF8ToNraWX4P3NFkYZNffc62fPn0y7nV9kphdK/biLM7np9gWtHq22MhX4qgw==}
+ engines: {node: '>=18'}
+
'@cspell/cspell-types@8.7.0':
resolution: {integrity: sha512-Rb+LCE5I9JEb/LE8nSViVSF8z1CWv/z4mPBIG37VMa7aUx2gAQa6gJekNfpY9YZiMzx4Tv3gDujN80ytks4pGA==}
engines: {node: '>=18'}
@@ -1569,12 +1624,21 @@ packages:
'@cspell/dict-aws@4.0.1':
resolution: {integrity: sha512-NXO+kTPQGqaaJKa4kO92NAXoqS+i99dQzf3/L1BxxWVSBS3/k1f3uhmqIh7Crb/n22W793lOm0D9x952BFga3Q==}
+ '@cspell/dict-aws@4.0.3':
+ resolution: {integrity: sha512-0C0RQ4EM29fH0tIYv+EgDQEum0QI6OrmjENC9u98pB8UcnYxGG/SqinuPxo+TgcEuInj0Q73MsBpJ1l5xUnrsw==}
+
'@cspell/dict-bash@4.1.3':
resolution: {integrity: sha512-tOdI3QVJDbQSwPjUkOiQFhYcu2eedmX/PtEpVWg0aFps/r6AyjUQINtTgpqMYnYuq8O1QUIQqnpx21aovcgZCw==}
'@cspell/dict-companies@3.0.31':
resolution: {integrity: sha512-hKVpV/lcGKP4/DpEPS8P4osPvFH/YVLJaDn9cBIOH6/HSmL5LbFgJNKpMGaYRbhm2FEX56MKE3yn/MNeNYuesQ==}
+ '@cspell/dict-companies@3.1.2':
+ resolution: {integrity: sha512-OwR5i1xbYuJX7FtHQySmTy3iJtPV1rZQ3jFCxFGwrA1xRQ4rtRcDQ+sTXBCIAoJHkXa84f9J3zsngOKmMGyS/w==}
+
+ '@cspell/dict-cpp@5.1.10':
+ resolution: {integrity: sha512-BmIF0sAz2BgGEOwzYIeEm9ALneDjd1tcTbFbo+A1Hcq3zOKP8yViSgxS9CEN30KOZIyph6Tldp531UPEpoEl0Q==}
+
'@cspell/dict-cpp@5.1.3':
resolution: {integrity: sha512-sqnriXRAInZH9W75C+APBh6dtben9filPqVbIsiRMUXGg+s02ekz0z6LbS7kXeJ5mD2qXoMLBrv13qH2eIwutQ==}
@@ -1593,6 +1657,9 @@ packages:
'@cspell/dict-data-science@1.0.11':
resolution: {integrity: sha512-TaHAZRVe0Zlcc3C23StZqqbzC0NrodRwoSAc8dis+5qLeLLnOCtagYQeROQvDlcDg3X/VVEO9Whh4W/z4PAmYQ==}
+ '@cspell/dict-data-science@2.0.1':
+ resolution: {integrity: sha512-xeutkzK0eBe+LFXOFU2kJeAYO6IuFUc1g7iRLr7HeCmlC4rsdGclwGHh61KmttL3+YHQytYStxaRBdGAXWC8Lw==}
+
'@cspell/dict-django@4.1.0':
resolution: {integrity: sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==}
@@ -1602,21 +1669,33 @@ packages:
'@cspell/dict-dotnet@5.0.0':
resolution: {integrity: sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==}
+ '@cspell/dict-dotnet@5.0.2':
+ resolution: {integrity: sha512-UD/pO2A2zia/YZJ8Kck/F6YyDSpCMq0YvItpd4YbtDVzPREfTZ48FjZsbYi4Jhzwfvc6o8R56JusAE58P+4sNQ==}
+
'@cspell/dict-elixir@4.0.3':
resolution: {integrity: sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==}
'@cspell/dict-en-common-misspellings@2.0.0':
resolution: {integrity: sha512-NOg8dlv37/YqLkCfBs5OXeJm/Wcfb/CzeOmOZJ2ZXRuxwsNuolb4TREUce0yAXRqMhawahY5TSDRJJBgKjBOdw==}
+ '@cspell/dict-en-common-misspellings@2.0.3':
+ resolution: {integrity: sha512-8nF1z9nUiSgMyikL66HTbDO7jCGtB24TxKBasXIBwkBKMDZgA2M883iXdeByy6m1JJUcCGFkSftVYp2W0bUgjw==}
+
'@cspell/dict-en-gb@1.1.33':
resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==}
'@cspell/dict-en_us@4.3.18':
resolution: {integrity: sha512-D8jGT7Zi3+e8zIpT0NqGKvvzehcvUETFlOA0NxcRStkw7H7mgouHxKFU+u7t3tvCoGNwh2gwjCqZQlK8ZXwQHw==}
+ '@cspell/dict-en_us@4.3.23':
+ resolution: {integrity: sha512-l0SoEQBsi3zDSl3OuL4/apBkxjuj4hLIg/oy6+gZ7LWh03rKdF6VNtSZNXWAmMY+pmb1cGA3ouleTiJIglbsIg==}
+
'@cspell/dict-filetypes@3.0.3':
resolution: {integrity: sha512-J9UP+qwwBLfOQ8Qg9tAsKtSY/WWmjj21uj6zXTI9hRLD1eG1uUOLcfVovAmtmVqUWziPSKMr87F6SXI3xmJXgw==}
+ '@cspell/dict-filetypes@3.0.4':
+ resolution: {integrity: sha512-IBi8eIVdykoGgIv5wQhOURi5lmCNJq0we6DvqKoPQJHthXbgsuO1qrHSiUVydMiQl/XvcnUWTMeAlVUlUClnVg==}
+
'@cspell/dict-fonts@4.0.0':
resolution: {integrity: sha512-t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q==}
@@ -1626,6 +1705,9 @@ packages:
'@cspell/dict-fullstack@3.1.5':
resolution: {integrity: sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==}
+ '@cspell/dict-fullstack@3.1.8':
+ resolution: {integrity: sha512-YRlZupL7uqMCtEBK0bDP9BrcPnjDhz7m4GBqCc1EYqfXauHbLmDT8ELha7T/E7wsFKniHSjzwDZzhNXo2lusRQ==}
+
'@cspell/dict-gaming-terms@1.0.5':
resolution: {integrity: sha512-C3riccZDD3d9caJQQs1+MPfrUrQ+0KHdlj9iUR1QD92FgTOF6UxoBpvHUUZ9YSezslcmpFQK4xQQ5FUGS7uWfw==}
@@ -1635,6 +1717,12 @@ packages:
'@cspell/dict-golang@6.0.5':
resolution: {integrity: sha512-w4mEqGz4/wV+BBljLxduFNkMrd3rstBNDXmoX5kD4UTzIb4Sy0QybWCtg2iVT+R0KWiRRA56QKOvBsgXiddksA==}
+ '@cspell/dict-golang@6.0.9':
+ resolution: {integrity: sha512-etDt2WQauyEQDA+qPS5QtkYTb2I9l5IfQftAllVoB1aOrT6bxxpHvMEpJ0Hsn/vezxrCqa/BmtUbRxllIxIuSg==}
+
+ '@cspell/dict-google@1.0.1':
+ resolution: {integrity: sha512-dQr4M3n95uOhtloNSgB9tYYGXGGEGEykkFyRtfcp5pFuEecYUa0BSgtlGKx9RXVtJtKgR+yFT/a5uQSlt8WjqQ==}
+
'@cspell/dict-haskell@4.0.1':
resolution: {integrity: sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==}
@@ -1647,12 +1735,18 @@ packages:
'@cspell/dict-java@5.0.6':
resolution: {integrity: sha512-kdE4AHHHrixyZ5p6zyms1SLoYpaJarPxrz8Tveo6gddszBVVwIUZ+JkQE1bWNLK740GWzIXdkznpUfw1hP9nXw==}
+ '@cspell/dict-java@5.0.7':
+ resolution: {integrity: sha512-ejQ9iJXYIq7R09BScU2y5OUGrSqwcD+J5mHFOKbduuQ5s/Eh/duz45KOzykeMLI6KHPVxhBKpUPBWIsfewECpQ==}
+
'@cspell/dict-julia@1.0.1':
resolution: {integrity: sha512-4JsCLCRhhLMLiaHpmR7zHFjj1qOauzDI5ZzCNQS31TUMfsOo26jAKDfo0jljFAKgw5M2fEG7sKr8IlPpQAYrmQ==}
'@cspell/dict-k8s@1.0.2':
resolution: {integrity: sha512-tLT7gZpNPnGa+IIFvK9SP1LrSpPpJ94a/DulzAPOb1Q2UBFwdpFd82UWhio0RNShduvKG/WiMZf/wGl98pn+VQ==}
+ '@cspell/dict-k8s@1.0.5':
+ resolution: {integrity: sha512-Cj+/ZV4S+MKlwfocSJZqe/2UAd/sY8YtlZjbK25VN1nCnrsKrBjfkX29vclwSj1U9aJg4Z9jw/uMjoaKu9ZrpQ==}
+
'@cspell/dict-latex@4.0.0':
resolution: {integrity: sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==}
@@ -1671,21 +1765,39 @@ packages:
'@cspell/dict-node@4.0.3':
resolution: {integrity: sha512-sFlUNI5kOogy49KtPg8SMQYirDGIAoKBO3+cDLIwD4MLdsWy1q0upc7pzGht3mrjuyMiPRUV14Bb0rkVLrxOhg==}
+ '@cspell/dict-node@5.0.1':
+ resolution: {integrity: sha512-lax/jGz9h3Dv83v8LHa5G0bf6wm8YVRMzbjJPG/9rp7cAGPtdrga+XANFq+B7bY5+jiSA3zvj10LUFCFjnnCCg==}
+
'@cspell/dict-npm@5.0.15':
resolution: {integrity: sha512-sX0X5YWNW54F4baW7b5JJB6705OCBIZtUqjOghlJNORS5No7QY1IX1zc5FxNNu4gsaCZITAmfMi4ityXEsEThA==}
+ '@cspell/dict-npm@5.0.16':
+ resolution: {integrity: sha512-ZWPnLAziEcSCvV0c8k9Qj88pfMu+wZwM5Qks87ShsfBgI8uLZ9tGHravA7gmjH1Gd7Bgxy2ulvXtSqIWPh1lew==}
+
'@cspell/dict-php@4.0.6':
resolution: {integrity: sha512-ySAXisf7twoVFZqBV2o/DKiCLIDTHNqfnj0EfH9OoOUR7HL3rb6zJkm0viLUFDO2G/8SyIi6YrN/6KX+Scjjjg==}
+ '@cspell/dict-php@4.0.8':
+ resolution: {integrity: sha512-TBw3won4MCBQ2wdu7kvgOCR3dY2Tb+LJHgDUpuquy3WnzGiSDJ4AVelrZdE1xu7mjFJUr4q48aB21YT5uQqPZA==}
+
'@cspell/dict-powershell@5.0.3':
resolution: {integrity: sha512-lEdzrcyau6mgzu1ie98GjOEegwVHvoaWtzQnm1ie4DyZgMr+N6D0Iyj1lzvtmt0snvsDFa5F2bsYzf3IMKcpcA==}
+ '@cspell/dict-powershell@5.0.4':
+ resolution: {integrity: sha512-eosDShapDgBWN9ULF7+sRNdUtzRnUdsfEdBSchDm8FZA4HOqxUSZy3b/cX/Rdw0Fnw0AKgk0kzgXw7tS6vwJMQ==}
+
'@cspell/dict-public-licenses@2.0.6':
resolution: {integrity: sha512-bHqpSpJvLCUcWxj1ov/Ki8WjmESpYwRpQlqfdchekOTc93Huhvjm/RXVN1R4fVf4Hspyem1QVkCGqAmjJMj6sw==}
+ '@cspell/dict-public-licenses@2.0.7':
+ resolution: {integrity: sha512-KlBXuGcN3LE7tQi/GEqKiDewWGGuopiAD0zRK1QilOx5Co8XAvs044gk4MNIQftc8r0nHeUI+irJKLGcR36DIQ==}
+
'@cspell/dict-python@4.1.11':
resolution: {integrity: sha512-XG+v3PumfzUW38huSbfT15Vqt3ihNb462ulfXifpQllPok5OWynhszCLCRQjQReV+dgz784ST4ggRxW452/kVg==}
+ '@cspell/dict-python@4.2.1':
+ resolution: {integrity: sha512-9X2jRgyM0cxBoFQRo4Zc8oacyWnXi+0/bMI5FGibZNZV4y/o9UoFEr6agjU260/cXHTjIdkX233nN7eb7dtyRg==}
+
'@cspell/dict-r@2.0.1':
resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==}
@@ -1695,12 +1807,21 @@ packages:
'@cspell/dict-rust@4.0.2':
resolution: {integrity: sha512-RhziKDrklzOntxAbY3AvNR58wnFGIo3YS8+dNeLY36GFuWOvXDHFStYw5Pod4f/VXbO/+1tXtywCC4zWfB2p1w==}
+ '@cspell/dict-rust@4.0.4':
+ resolution: {integrity: sha512-v9/LcZknt/Xq7m1jdTWiQEtmkVVKdE1etAfGL2sgcWpZYewEa459HeWndNA0gfzQrpWX9sYay18mt7pqClJEdA==}
+
'@cspell/dict-scala@5.0.0':
resolution: {integrity: sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==}
+ '@cspell/dict-scala@5.0.2':
+ resolution: {integrity: sha512-v97ClgidZt99JUm7OjhQugDHmhx4U8fcgunHvD/BsXWjXNj4cTr0m0YjofyZoL44WpICsNuFV9F/sv9OM5HUEw==}
+
'@cspell/dict-software-terms@3.3.18':
resolution: {integrity: sha512-LJZGGMGqS8KzgXJrSMs3T+6GoqHG9z8Bc+rqLzLzbtoR3FbsMasE9U8oP2PmS3q7jJLFjQkzmg508DrcuZuo2g==}
+ '@cspell/dict-software-terms@3.4.10':
+ resolution: {integrity: sha512-S5S2sz98v4GWJ9TMo62Vp4L5RM/329e5UQfFn7yJfieTcrfXRH4IweVdz34rZcK9o5coGptgBUIv/Jcrd4cMpg==}
+
'@cspell/dict-sql@2.1.3':
resolution: {integrity: sha512-SEyTNKJrjqD6PAzZ9WpdSu6P7wgdNtGV2RV8Kpuw1x6bV+YsSptuClYG+JSdRExBTE6LwIe1bTklejUp3ZP8TQ==}
@@ -1716,25 +1837,40 @@ packages:
'@cspell/dict-typescript@3.1.3':
resolution: {integrity: sha512-TdD789OWwOImH/IMyz/QRA6LJz7ScI/qbn1YOkcAW3AROvgbc0oKAxzp08+Xu8tj4GROrJ9UqZdh0t9xQCPkPg==}
+ '@cspell/dict-typescript@3.1.5':
+ resolution: {integrity: sha512-EkIwwNV/xqEoBPJml2S16RXj65h1kvly8dfDLgXerrKw6puybZdvAHerAph6/uPTYdtLcsPyJYkPt5ISOJYrtw==}
+
'@cspell/dict-vue@3.0.0':
resolution: {integrity: sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==}
+ '@cspell/dynamic-import@8.10.4':
+ resolution: {integrity: sha512-YxpzOgrP/u0nxEMR4hUfV+4z3b0rLWnKsKIv6pLpRez7ACvrMeb53FedSMZW/YaF3NjWTpUEdqFHaemPkmwnRA==}
+ engines: {node: '>=18.0'}
+
'@cspell/dynamic-import@8.7.0':
resolution: {integrity: sha512-xlEPdiHVDu+4xYkvwjL9MgklxOi9XB+Pr1H9s3Ww9WEq+q6BA3xOHxLIU/k8mhqFTMZGFZRCsdy/EwMu6SyRhQ==}
engines: {node: '>=18.0'}
- '@cspell/eslint-plugin@8.7.0':
- resolution: {integrity: sha512-ZITI9ybL5vsOukUzMyyBc5eKndEag7Pe4Z19br2w92xyNCZtHeAoDzp1eo1OeRilT7zBXCdXEDzvvNiNAHhg9A==}
+ '@cspell/eslint-plugin@8.10.4':
+ resolution: {integrity: sha512-OeaD8oM/wTk1y6Fz+Rz7WgUCfDctUPMYr3zVIVNZqQxZhU73st9ZpNMkz6uE+IXSROkyPiuxYSLzMje1W8p0rQ==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7 || ^8 || ^9
+ '@cspell/strong-weak-map@8.10.4':
+ resolution: {integrity: sha512-QyL8mvv8HDnIHU/wKqWf04yMHCHv3icakZF4UdAk181tl8gymzrtyXSSbMaVlySlK9p+7OQlEG/KUF8R0LR75Q==}
+ engines: {node: '>=18'}
+
'@cspell/strong-weak-map@8.7.0':
resolution: {integrity: sha512-0bo0WwDr2lzGoCP7vbpWbDpPyuOrHKK+218txnUpx6Pn1EDBLfcDQsiZED5B6zlpwgbGi6y3vc0rWtJbjKvwzg==}
engines: {node: '>=18'}
- '@cypress/code-coverage@3.12.39':
- resolution: {integrity: sha512-ja7I/GRmkSAW9e3O7pideWcNUEHao0WT6sRyXQEURoxkJUASJssJ7Kb/bd3eMYmkUCiD5CRFqWR5BGF4mWVaUw==}
+ '@cspell/url@8.10.4':
+ resolution: {integrity: sha512-4+Bxm43py50W872FjUvKoT9+EQoK9pqOblxu7GRfFx7CjEgYJB03Cb4rHiKYzLuJakUk6IyAlgPD2vNZO37Vzg==}
+ engines: {node: '>=18.0'}
+
+ '@cypress/code-coverage@3.12.41':
+ resolution: {integrity: sha512-82ndoXij1t1jlUC7id9MV2u+TB4qQds7BnNxYk+Bnz8879lj4wFIpqE3TnI9w+0Y0qayaJh7ZBJnwBbht6Ib2A==}
peerDependencies:
'@babel/core': ^7.0.1
'@babel/preset-env': ^7.0.0
@@ -1787,8 +1923,8 @@ packages:
'@emnapi/runtime@1.2.0':
resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
- '@es-joy/jsdoccomment@0.43.1':
- resolution: {integrity: sha512-I238eDtOolvCuvtxrnqtlBaw0BwdQuYqK7eA6XIonicMdOOOb75mqdIzkGDUbS04+1Di007rgm9snFRNeVrOog==}
+ '@es-joy/jsdoccomment@0.46.0':
+ resolution: {integrity: sha512-C3Axuq1xd/9VqFZpW4YAzOx5O9q/LP46uIQy/iNDpHG3fmPa6TBtvfglMCs3RBiBxAIi0Go97r8+jvTt55XMyQ==}
engines: {node: '>=16'}
'@esbuild/aix-ppc64@0.19.12':
@@ -1803,6 +1939,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.19.12':
resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
@@ -1815,6 +1957,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.19.12':
resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
@@ -1827,6 +1975,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.19.12':
resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
@@ -1839,6 +1993,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.19.12':
resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
@@ -1851,6 +2011,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.19.12':
resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
@@ -1863,6 +2029,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.19.12':
resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
@@ -1875,6 +2047,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.19.12':
resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
@@ -1887,6 +2065,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.19.12':
resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
@@ -1899,6 +2083,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.19.12':
resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
@@ -1911,6 +2101,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.19.12':
resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
@@ -1923,6 +2119,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.19.12':
resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
@@ -1935,6 +2137,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.19.12':
resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
@@ -1947,6 +2155,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.19.12':
resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
@@ -1959,6 +2173,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.19.12':
resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
@@ -1971,6 +2191,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.19.12':
resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
@@ -1983,6 +2209,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.19.12':
resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
@@ -1995,6 +2227,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.19.12':
resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
@@ -2007,6 +2245,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-x64@0.19.12':
resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
@@ -2019,6 +2263,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.19.12':
resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
@@ -2031,6 +2281,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.19.12':
resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
@@ -2043,6 +2299,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.19.12':
resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
@@ -2055,6 +2317,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.19.12':
resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
engines: {node: '>=12'}
@@ -2067,23 +2335,37 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.11.0':
+ resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/eslintrc@2.1.4':
- resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-array@0.17.0':
+ resolution: {integrity: sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.57.0':
- resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/eslintrc@3.1.0':
+ resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.7.0':
+ resolution: {integrity: sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.4':
+ resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@fastify/ajv-compiler@1.1.0':
resolution: {integrity: sha512-gvCOUNpXsWrIQ3A4aXCLIdblL0tDq42BG/2Xw7oxbil9h11uow10ztS2GuFazNBfjbrsZ5nl+nPl5jDSjj5TSg==}
@@ -2091,23 +2373,17 @@ packages:
'@fastify/error@2.0.0':
resolution: {integrity: sha512-wI3fpfDT0t7p8E6dA2eTECzzOd+bZsZCJ2Hcv+Onn2b7ZwK3RwD27uW2QDaMtQhAfWQQP+WNK7nKf0twLsBf9w==}
- '@floating-ui/core@1.6.0':
- resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
+ '@floating-ui/core@1.6.4':
+ resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==}
- '@floating-ui/dom@1.6.3':
- resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==}
+ '@floating-ui/dom@1.6.7':
+ resolution: {integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==}
- '@floating-ui/utils@0.2.1':
- resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
+ '@floating-ui/utils@0.2.4':
+ resolution: {integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==}
- '@floating-ui/vue@0.2.1':
- resolution: {integrity: sha512-HE+EIeakID7wI6vUwF0yMpaW48bNaPj8QtnQaRMkaQFhQReVBA4bY6fmJ3J7X+dqVgDbMhyfCG0fBJfdQMdWxQ==}
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^2.0.0 || >=3.0.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
+ '@floating-ui/vue@1.1.1':
+ resolution: {integrity: sha512-cyawjk9etPZPl/RVtMRnWrwtAhWbPVSrRVYARgOzhLIqxr0k2up1APrrFjqP9QwRQ0AwjKSvbWg4YC6jESutow==}
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -2115,35 +2391,31 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- '@headlessui-float/vue@0.11.4':
- resolution: {integrity: sha512-hNGQTT3trknSB78ZI3usvnJACLyEUmacvk5Q8JQizJ8k+8GYLvhKklGIhJVO1E3litEzW6yyjPgfg6aEJ+1p6g==}
+ '@headlessui-float/vue@0.14.0':
+ resolution: {integrity: sha512-hx0IkJ7JPcwDeimco6fe0+IknknL1gUYIGu11OCn0JWlOoSAmO6sx2DxPwSEz1Wsq34X6Z8BwCwcPVuphZ1zMg==}
peerDependencies:
+ '@headlessui/vue': ^1.0.0
vue: ^3.0.0
- '@headlessui/tailwindcss@0.2.0':
- resolution: {integrity: sha512-fpL830Fln1SykOCboExsWr3JIVeQKieLJ3XytLe/tt1A0XzqUthOftDmjcCYLW62w7mQI7wXcoPXr3tZ9QfGxw==}
+ '@headlessui/tailwindcss@0.2.1':
+ resolution: {integrity: sha512-2+5+NZ+RzMyrVeCZOxdbvkUSssSxGvcUxphkIfSVLpRiKsj+/63T2TOL9dBYMXVfj/CGr6hMxSRInzXv6YY7sA==}
engines: {node: '>=10'}
peerDependencies:
tailwindcss: ^3.0
- '@headlessui/vue@1.7.19':
- resolution: {integrity: sha512-VFjKPybogux/5/QYGSq4zgG/x3RcxId15W8uguAJAjPBxelI23dwjOjTx/mIiMkM/Hd3rzFxcf2aIp56eEWRcA==}
+ '@headlessui/vue@1.7.22':
+ resolution: {integrity: sha512-Hoffjoolq1rY+LOfJ+B/OvkhuBXXBFgd8oBlN+l1TApma2dB0En0ucFZrwQtb33SmcCqd32EQd0y07oziXWNYg==}
engines: {node: '>=10'}
peerDependencies:
vue: ^3.2.0
- '@humanwhocodes/config-array@0.11.14':
- resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
-
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.2':
- resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
- deprecated: Use @eslint/object-schema instead
+ '@humanwhocodes/retry@0.3.0':
+ resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ engines: {node: '>=18.18'}
'@iconify-json/carbon@1.1.36':
resolution: {integrity: sha512-NC3VcqLtwLZpi7+LeXj+99/byv+asrnCQxiDNCZV6hKr9WcNh6C25kJguJYfN+dV54kOkw78e+6PitQi2Bppnw==}
@@ -2375,11 +2647,11 @@ packages:
'@mdi/font@7.4.47':
resolution: {integrity: sha512-43MtGpd585SNzHZPcYowu/84Vz2a2g31TvPMTm9uTiCSWzaheQySUcSyUH/46fPnuPQWof2yd0pGBtzee/IQWw==}
- '@microsoft/tsdoc-config@0.16.2':
- resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
+ '@microsoft/tsdoc-config@0.17.0':
+ resolution: {integrity: sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg==}
- '@microsoft/tsdoc@0.14.2':
- resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
+ '@microsoft/tsdoc@0.15.0':
+ resolution: {integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -2466,161 +2738,81 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.17.2':
- resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm-eabi@4.18.0':
resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.17.2':
- resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
- cpu: [arm64]
- os: [android]
-
'@rollup/rollup-android-arm64@4.18.0':
resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.17.2':
- resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
- cpu: [arm64]
- os: [darwin]
-
'@rollup/rollup-darwin-arm64@4.18.0':
resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.17.2':
- resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
- cpu: [x64]
- os: [darwin]
-
'@rollup/rollup-darwin-x64@4.18.0':
resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
- resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.17.2':
- resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.17.2':
- resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-gnu@4.18.0':
resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.17.2':
- resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-musl@4.18.0':
resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
- resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
- cpu: [ppc64]
- os: [linux]
-
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.17.2':
- resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.17.2':
- resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
- cpu: [s390x]
- os: [linux]
-
'@rollup/rollup-linux-s390x-gnu@4.18.0':
resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.17.2':
- resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-gnu@4.18.0':
resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.17.2':
- resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-musl@4.18.0':
resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.17.2':
- resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
- cpu: [arm64]
- os: [win32]
-
'@rollup/rollup-win32-arm64-msvc@4.18.0':
resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.17.2':
- resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
- cpu: [ia32]
- os: [win32]
-
'@rollup/rollup-win32-ia32-msvc@4.18.0':
resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.17.2':
- resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
- cpu: [x64]
- os: [win32]
-
'@rollup/rollup-win32-x64-msvc@4.18.0':
resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
cpu: [x64]
@@ -2665,11 +2857,11 @@ packages:
resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
engines: {node: '>=10'}
- '@tanstack/virtual-core@3.2.1':
- resolution: {integrity: sha512-nO0d4vRzsmpBQCJYyClNHPPoUMI4nXNfrm6IcCRL33ncWMoNVpURh9YebEHPw8KrtsP2VSJIHE4gf4XFGk1OGg==}
+ '@tanstack/virtual-core@3.8.1':
+ resolution: {integrity: sha512-uNtAwenT276M9QYCjTBoHZ8X3MUeCRoGK59zPi92hMIxdfS9AyHjkDWJ94WroDxnv48UE+hIeo21BU84jKc8aQ==}
- '@tanstack/vue-virtual@3.2.1':
- resolution: {integrity: sha512-NWJL8zJ4kwCkUzWd2jLKN9NTxj9RjYyaJwtA16j9urfbnMIdKe2g2HNymq0jGj+fmX/9nd58d6h78LrZ7I/J+A==}
+ '@tanstack/vue-virtual@3.8.1':
+ resolution: {integrity: sha512-uhty1LzUbbcVc5zdMMSUjUt/ECTlMCtK49Ww7dH2m4lNNLGYwkj5SbfrAD8uCZxV1VeV7DRMXqhwUTELyR5rrA==}
peerDependencies:
vue: ^2.7.0 || ^3.0.0
@@ -2899,8 +3091,8 @@ packages:
'@types/lodash@4.17.0':
resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
- '@types/lodash@4.17.5':
- resolution: {integrity: sha512-MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==}
+ '@types/lodash@4.17.6':
+ resolution: {integrity: sha512-OpXEVoCKSS3lQqjx9GGGOapBeuW5eUboYHRlHP9urXPX25IKZ6AnP5ZRxtVf63iieUbsHxLn8NQ5Nlftc6yzAA==}
'@types/markdown-it@12.2.3':
resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==}
@@ -2920,8 +3112,8 @@ packages:
'@types/mdurl@1.0.5':
resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
- '@types/micromatch@4.0.7':
- resolution: {integrity: sha512-C/FMQ8HJAZhTsDpl4wDKZdMeeW5USjgzOczUwTGbRc1ZopPgOhIEnxY2ZgUrsuyy4DwK1JVOJZKFakv3TbCKiA==}
+ '@types/micromatch@4.0.9':
+ resolution: {integrity: sha512-7V+8ncr22h4UoYRLnLXSpTxjQrNUXtWHGeMPRJt1nULXI57G9bIcpyrHlmrQ7QK24EyyuXvYcSSWAM8GA9nqCg==}
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
@@ -3046,24 +3238,35 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.6.0':
- resolution: {integrity: sha512-usPMPHcwX3ZoPWnBnhhorc14NJw9J4HpSXQX4urF2TPKG0au0XhJoZyX62fmvdHONUkmyUe74Hzm1//XA+BoYg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/eslint-plugin@8.0.0-alpha.39':
+ resolution: {integrity: sha512-ILv1vDA8M9ah1vzYpnOs4UOLRdB63Ki/rsxedVikjMLq68hFfpsDR25bdMZ4RyUkzLJwOhcg3Jujm/C1nupXKA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@typescript-eslint/scope-manager@5.62.0':
- resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@typescript-eslint/parser@8.0.0-alpha.39':
+ resolution: {integrity: sha512-5k+pwV91plJojHgZkWlq4/TQdOrnEaeSvt48V0m8iEwdMJqX/63BXYxy8BUOSghWcjp05s73vy9HJjovAKmHkQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
'@typescript-eslint/scope-manager@7.6.0':
resolution: {integrity: sha512-ngttyfExA5PsHSx0rdFgnADMYQi+Zkeiv4/ZxGYUWd0nLs63Ha0ksmp8VMxAIC0wtCFxMos7Lt3PszJssG/E6w==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/scope-manager@8.0.0-alpha.39':
+ resolution: {integrity: sha512-HCBlKQROY+JIgWolucdFMj1W3VUnnIQTdxAhxJTAj3ix2nASmvKIFgrdo5KQMrXxQj6tC4l3zva10L+s0dUIIw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/type-utils@7.6.0':
resolution: {integrity: sha512-NxAfqAPNLG6LTmy7uZgpK8KcuiS2NZD/HlThPXQRGwz6u7MDBWRVliEEl1Gj6U7++kVJTpehkhZzCJLMK66Scw==}
engines: {node: ^18.18.0 || >=20.0.0}
@@ -3074,27 +3277,23 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@5.62.0':
- resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
- '@typescript-eslint/types@7.13.1':
- resolution: {integrity: sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/types@7.6.0':
- resolution: {integrity: sha512-h02rYQn8J+MureCvHVVzhl69/GAfQGPQZmOMjG1KfCl7o3HtMSlPaPUAPu6lLctXI5ySRGIYk94clD/AUMCUgQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/typescript-estree@5.62.0':
- resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@typescript-eslint/type-utils@8.0.0-alpha.39':
+ resolution: {integrity: sha512-alO13fRU6yVeJbwl9ESI3AYhq5dQdz3Dpd0I5B4uezs2lvgYp44dZsj5hWyPz/kL7JFEsjbn+4b/CZA0OQJzjA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
+ '@typescript-eslint/types@7.6.0':
+ resolution: {integrity: sha512-h02rYQn8J+MureCvHVVzhl69/GAfQGPQZmOMjG1KfCl7o3HtMSlPaPUAPu6lLctXI5ySRGIYk94clD/AUMCUgQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/types@8.0.0-alpha.39':
+ resolution: {integrity: sha512-yINN7j0/+S1VGSp0IgH52oQvUx49vkOug6xbrDA/9o+U55yCAQKSvYWvzYjNa+SZE3hXI0zwvYtMVsIAAMmKIQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@7.6.0':
resolution: {integrity: sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==}
engines: {node: ^18.18.0 || >=20.0.0}
@@ -3104,11 +3303,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@5.62.0':
- resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@typescript-eslint/typescript-estree@8.0.0-alpha.39':
+ resolution: {integrity: sha512-S8gREuP8r8PCxGegeojeXntx0P50ul9YH7c7JYpbLIIsEPNr5f7UHlm+I1NUbL04CBin4kvZ60TG4eWr/KKN9A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
'@typescript-eslint/utils@7.6.0':
resolution: {integrity: sha512-x54gaSsRRI+Nwz59TXpCsr6harB98qjXYzsRxGqvA5Ue3kQH+FxS7FYU81g/omn22ML2pZJkisy6Q+ElK8pBCA==}
@@ -3116,16 +3318,19 @@ packages:
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/visitor-keys@5.62.0':
- resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@typescript-eslint/utils@8.0.0-alpha.39':
+ resolution: {integrity: sha512-Nr2PrlfNhrNQTlFHlD7XJdTGw/Vt8qY44irk6bfjn9LxGdSG5e4c1R2UN6kvGMhhx20DBPbM7q3Z3r+huzmL1w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
'@typescript-eslint/visitor-keys@7.6.0':
resolution: {integrity: sha512-4eLB7t+LlNUmXzfOu1VAIAdkjbu5xNSerURS9X/S5TUKWFRpXRQZbmtPqgKmYx8bj3J0irtQXSiWAOY82v+cgw==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ '@typescript-eslint/visitor-keys@8.0.0-alpha.39':
+ resolution: {integrity: sha512-DVJ0UdhucZy+/1GlIy7FX2+CFhCeNAi4VwaEAe7u2UDenQr9/kGqvzx00UlpWibmEVDw4KsPOI7Aqa1+2Vqfmw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@unocss/astro@0.59.4':
resolution: {integrity: sha512-DU3OR5MMR1Uvvec4/wB9EetDASHRg19Moy6z/MiIhn8JWJ0QzWYgSeJcfUX8exomMYv6WUEQJL+CyLI34Wmn8w==}
@@ -3222,13 +3427,6 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- '@vitejs/plugin-vue@5.0.4':
- resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0
- vue: ^3.2.25
-
'@vitejs/plugin-vue@5.0.5':
resolution: {integrity: sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -3261,49 +3459,37 @@ packages:
'@vitest/utils@1.5.3':
resolution: {integrity: sha512-rE9DTN1BRhzkzqNQO+kw8ZgfeEBCLXiHJwetk668shmNBpSagQxneT5eSqEBLP+cqSiAeecvQmbpFfdMyLcIQA==}
- '@vue/compat@3.4.21':
- resolution: {integrity: sha512-hKM6C5tTqduZcNOwp4oBa6qplAQ0NsMvGtLCTKmkhjVqrFzUfS9CyLN6ktzEfPwbgeC/wYYd7PtH+H8jNGvTjQ==}
+ '@vue/compat@3.4.31':
+ resolution: {integrity: sha512-ZmtZNZD881gtwLphxfaRo4y1+Ym4gHmxJlEpsnUHwlsZzKRXdlSE/7qkAxFe+pc5bC6rZU14GUDqqXueljZ9Qg==}
peerDependencies:
- vue: 3.4.21
+ vue: 3.4.31
- '@vue/compiler-core@3.4.21':
- resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
+ '@vue/compiler-core@3.4.30':
+ resolution: {integrity: sha512-ZL8y4Xxdh8O6PSwfdZ1IpQ24PjTAieOz3jXb/MDTfDtANcKBMxg1KLm6OX2jofsaQGYfIVzd3BAG22i56/cF1w==}
- '@vue/compiler-core@3.4.26':
- resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==}
+ '@vue/compiler-core@3.4.31':
+ resolution: {integrity: sha512-skOiodXWTV3DxfDhB4rOf3OGalpITLlgCeOwb+Y9GJpfQ8ErigdBUHomBzvG78JoVE8MJoQsb+qhZiHfKeNeEg==}
- '@vue/compiler-core@3.4.29':
- resolution: {integrity: sha512-TFKiRkKKsRCKvg/jTSSKK7mYLJEQdUiUfykbG49rubC9SfDyvT2JrzTReopWlz2MxqeLyxh9UZhvxEIBgAhtrg==}
+ '@vue/compiler-dom@3.4.30':
+ resolution: {integrity: sha512-+16Sd8lYr5j/owCbr9dowcNfrHd+pz+w2/b5Lt26Oz/kB90C9yNbxQ3bYOvt7rI2bxk0nqda39hVcwDFw85c2Q==}
- '@vue/compiler-dom@3.4.21':
- resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
+ '@vue/compiler-dom@3.4.31':
+ resolution: {integrity: sha512-wK424WMXsG1IGMyDGyLqB+TbmEBFM78hIsOJ9QwUVLGrcSk0ak6zYty7Pj8ftm7nEtdU/DGQxAXp0/lM/2cEpQ==}
- '@vue/compiler-dom@3.4.26':
- resolution: {integrity: sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==}
+ '@vue/compiler-sfc@3.4.30':
+ resolution: {integrity: sha512-8vElKklHn/UY8+FgUFlQrYAPbtiSB2zcgeRKW7HkpSRn/JjMRmZvuOtwDx036D1aqKNSTtXkWRfqx53Qb+HmMg==}
- '@vue/compiler-dom@3.4.29':
- resolution: {integrity: sha512-A6+iZ2fKIEGnfPJejdB7b1FlJzgiD+Y/sxxKwJWg1EbJu6ZPgzaPQQ51ESGNv0CP6jm6Z7/pO6Ia8Ze6IKrX7w==}
+ '@vue/compiler-sfc@3.4.31':
+ resolution: {integrity: sha512-einJxqEw8IIJxzmnxmJBuK2usI+lJonl53foq+9etB2HAzlPjAS/wa7r0uUpXw5ByX3/0uswVSrjNb17vJm1kQ==}
- '@vue/compiler-sfc@3.4.21':
- resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
+ '@vue/compiler-ssr@3.4.30':
+ resolution: {integrity: sha512-ZJ56YZGXJDd6jky4mmM0rNaNP6kIbQu9LTKZDhcpddGe/3QIalB1WHHmZ6iZfFNyj5mSypTa4+qDJa5VIuxMSg==}
- '@vue/compiler-sfc@3.4.26':
- resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==}
+ '@vue/compiler-ssr@3.4.31':
+ resolution: {integrity: sha512-RtefmITAje3fJ8FSg1gwgDhdKhZVntIVbwupdyZDSifZTRMiWxWehAOTCc8/KZDnBOcYQ4/9VWxsTbd3wT0hAA==}
- '@vue/compiler-sfc@3.4.29':
- resolution: {integrity: sha512-zygDcEtn8ZimDlrEQyLUovoWgKQic6aEQqRXce2WXBvSeHbEbcAsXyCk9oG33ZkyWH4sl9D3tkYc1idoOkdqZQ==}
-
- '@vue/compiler-ssr@3.4.21':
- resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
-
- '@vue/compiler-ssr@3.4.26':
- resolution: {integrity: sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==}
-
- '@vue/compiler-ssr@3.4.29':
- resolution: {integrity: sha512-rFbwCmxJ16tDp3N8XCx5xSQzjhidYjXllvEcqX/lopkoznlNPz3jyy0WGJCyhAaVQK677WWFt3YO/WUEkMMUFQ==}
-
- '@vue/devtools-api@6.6.1':
- resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
+ '@vue/devtools-api@6.6.3':
+ resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
'@vue/devtools-api@7.1.3':
resolution: {integrity: sha512-W8IwFJ/o5iUk78jpqhvScbgCsPiOp2uileDVC0NDtW38gCWhsnu9SeBTjcdu3lbwLdsjc+H1c5Msd/x9ApbcFA==}
@@ -3316,56 +3502,39 @@ packages:
'@vue/devtools-shared@7.1.3':
resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}
- '@vue/reactivity@3.4.21':
- resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
+ '@vue/reactivity@3.4.30':
+ resolution: {integrity: sha512-bVJurnCe3LS0JII8PPoAA63Zd2MBzcKrEzwdQl92eHCcxtIbxD2fhNwJpa+KkM3Y/A4T5FUnmdhgKwOf6BfbcA==}
- '@vue/reactivity@3.4.26':
- resolution: {integrity: sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==}
+ '@vue/reactivity@3.4.31':
+ resolution: {integrity: sha512-VGkTani8SOoVkZNds1PfJ/T1SlAIOf8E58PGAhIOUDYPC4GAmFA2u/E14TDAFcf3vVDKunc4QqCe/SHr8xC65Q==}
- '@vue/reactivity@3.4.29':
- resolution: {integrity: sha512-w8+KV+mb1a8ornnGQitnMdLfE0kXmteaxLdccm2XwdFxXst4q/Z7SEboCV5SqJNpZbKFeaRBBJBhW24aJyGINg==}
+ '@vue/runtime-core@3.4.30':
+ resolution: {integrity: sha512-qaFEbnNpGz+tlnkaualomogzN8vBLkgzK55uuWjYXbYn039eOBZrWxyXWq/7qh9Bz2FPifZqGjVDl/FXiq9L2g==}
- '@vue/runtime-core@3.4.21':
- resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
+ '@vue/runtime-core@3.4.31':
+ resolution: {integrity: sha512-LDkztxeUPazxG/p8c5JDDKPfkCDBkkiNLVNf7XZIUnJ+66GVGkP+TIh34+8LtPisZ+HMWl2zqhIw0xN5MwU1cw==}
- '@vue/runtime-core@3.4.26':
- resolution: {integrity: sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==}
+ '@vue/runtime-dom@3.4.30':
+ resolution: {integrity: sha512-tV6B4YiZRj5QsaJgw2THCy5C1H+2UeywO9tqgWEc21tn85qHEERndHN/CxlyXvSBFrpmlexCIdnqPuR9RM9thw==}
- '@vue/runtime-core@3.4.29':
- resolution: {integrity: sha512-s8fmX3YVR/Rk5ig0ic0NuzTNjK2M7iLuVSZyMmCzN/+Mjuqqif1JasCtEtmtoJWF32pAtUjyuT2ljNKNLeOmnQ==}
+ '@vue/runtime-dom@3.4.31':
+ resolution: {integrity: sha512-2Auws3mB7+lHhTFCg8E9ZWopA6Q6L455EcU7bzcQ4x6Dn4cCPuqj6S2oBZgN2a8vJRS/LSYYxwFFq2Hlx3Fsaw==}
- '@vue/runtime-dom@3.4.21':
- resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
-
- '@vue/runtime-dom@3.4.26':
- resolution: {integrity: sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==}
-
- '@vue/runtime-dom@3.4.29':
- resolution: {integrity: sha512-gI10atCrtOLf/2MPPMM+dpz3NGulo9ZZR9d1dWo4fYvm+xkfvRrw1ZmJ7mkWtiJVXSsdmPbcK1p5dZzOCKDN0g==}
-
- '@vue/server-renderer@3.4.21':
- resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==}
+ '@vue/server-renderer@3.4.30':
+ resolution: {integrity: sha512-TBD3eqR1DeDc0cMrXS/vEs/PWzq1uXxnvjoqQuDGFIEHFIwuDTX/KWAQKIBjyMWLFHEeTDGYVsYci85z2UbTDg==}
peerDependencies:
- vue: 3.4.21
+ vue: 3.4.30
- '@vue/server-renderer@3.4.26':
- resolution: {integrity: sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==}
+ '@vue/server-renderer@3.4.31':
+ resolution: {integrity: sha512-D5BLbdvrlR9PE3by9GaUp1gQXlCNadIZytMIb8H2h3FMWJd4oUfkUTEH2wAr3qxoRz25uxbTcbqd3WKlm9EHQA==}
peerDependencies:
- vue: 3.4.26
+ vue: 3.4.31
- '@vue/server-renderer@3.4.29':
- resolution: {integrity: sha512-HMLCmPI2j/k8PVkSBysrA2RxcxC5DgBiCdj7n7H2QtR8bQQPqKAe8qoaxLcInzouBmzwJ+J0x20ygN/B5mYBng==}
- peerDependencies:
- vue: 3.4.29
+ '@vue/shared@3.4.30':
+ resolution: {integrity: sha512-CLg+f8RQCHQnKvuHY9adMsMaQOcqclh6Z5V9TaoMgy0ut0tz848joZ7/CYFFyF/yZ5i2yaw7Fn498C+CNZVHIg==}
- '@vue/shared@3.4.21':
- resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
-
- '@vue/shared@3.4.26':
- resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==}
-
- '@vue/shared@3.4.29':
- resolution: {integrity: sha512-hQ2gAQcBO/CDpC82DCrinJNgOHI2v+FA7BDW4lMSPeBpQ7sRe2OLHWe5cph1s7D8DUQAwRt18dBDfJJ220APEA==}
+ '@vue/shared@3.4.31':
+ resolution: {integrity: sha512-Yp3wtJk//8cO4NItOPpi3QkLExAr/aLBGZMmTtW9WpdwBCJpRM6zj9WgWktXAl8IDIozwNMByT45JP3tO3ACWA==}
'@vueuse/core@10.9.0':
resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==}
@@ -3517,8 +3686,8 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- '@zenuml/core@3.21.2':
- resolution: {integrity: sha512-e63W3sb+cSafRaN+g2l2sYMdFMxDC0bRMqo+spRW48LoK0/7MQsSf6f9xEtSly/iTaXUGedw1TpvktzAxeKFjA==}
+ '@zenuml/core@3.23.28':
+ resolution: {integrity: sha512-RmgHwFei9pM+7uad34Wh7oTS3doLGIg/NLKWvBzWle1jCc+YglFs4KdPpsmFUvBD4UxopIUY7N6/aZEXNXxEpw==}
engines: {node: '>=12.0.0'}
JSONSelect@0.4.0:
@@ -3558,8 +3727,8 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.0:
- resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -3603,8 +3772,8 @@ packages:
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- ajv@8.16.0:
- resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
algoliasearch@4.23.3:
resolution: {integrity: sha512-Le/3YgNvjW9zxIQMRhUHuhiUjAlKY/zsdZpfq4dlLqg6mEm0nL6yk+7f2hDOtLpxsgE4jSzDmvHL7nXdBp5feg==}
@@ -4207,6 +4376,10 @@ packages:
resolution: {integrity: sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==}
engines: {node: '>= 6'}
+ comment-json@4.2.4:
+ resolution: {integrity: sha512-E5AjpSW+O+N5T2GsOQMHLLsJvrYw6G/AFt9GvU6NguEAfzKShh7hRiLtVo6S9KbRpFMGqE5ojo0/hE+sdteWvQ==}
+ engines: {node: '>= 6'}
+
comment-parser@1.4.1:
resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
@@ -4281,9 +4454,6 @@ packages:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
- core-js-compat@3.36.0:
- resolution: {integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw==}
-
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
@@ -4339,10 +4509,18 @@ packages:
resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
engines: {node: '>=12'}
+ cspell-config-lib@8.10.4:
+ resolution: {integrity: sha512-0VgnDEU4/+PWG+8x0FBN0QPun14sox9n7DBMvKGwAORhfiuYJ9w8kdrS/QqHdpHsRRQhXP1SWR8Nfg/5dUxsPg==}
+ engines: {node: '>=18'}
+
cspell-config-lib@8.7.0:
resolution: {integrity: sha512-depsd01GbLBo71/tfRrL5iECWQLS4CjCxA9C01dVkFAJqVB0s+K9KLKjTlq5aHOhcvo9Z3dHV+bGQCf5/Q7bfw==}
engines: {node: '>=18'}
+ cspell-dictionary@8.10.4:
+ resolution: {integrity: sha512-9Hg2eTYbTKMoPy0r/IjGwcIII7PLGpeZlG1XzCDP4MW/bV4TGB6EfY8RAmhUt8cTwo7f6fxqu53WLaR3YPEozg==}
+ engines: {node: '>=18'}
+
cspell-dictionary@8.7.0:
resolution: {integrity: sha512-S6IpZSzIMxlOO/33NgCOuP0TPH2mZbw8d5CP44z5jajflloq8l74MeJLkeDzYfCRcm0Rtk0A5drBeMg+Ai34OA==}
engines: {node: '>=18'}
@@ -4352,23 +4530,44 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ cspell-glob@8.10.4:
+ resolution: {integrity: sha512-HPRK6ZtHBzY/zGMhajzJ2MOgHMgY74/FijtaZkYc09QTEjONhIO4VWcrxrr1/qoM/qAp2Y/CKcBM/OOiHls7+A==}
+ engines: {node: '>=18'}
+
cspell-glob@8.7.0:
resolution: {integrity: sha512-AMdfx0gvROA/aIL8t8b5Y5NtMgscGZELFj6WhCSZiQSuWRxXUKiLGGLUFjx2y0hgXN9LUYOo6aBjvhnxI/v71g==}
engines: {node: '>=18'}
+ cspell-grammar@8.10.4:
+ resolution: {integrity: sha512-AW9JqEmMJLrbBwN/3BAwpHgOz5WFyb4syS+pjFRdZGx/w9e9ZSn4xyfnQ3mjNaFc/oZUcXy+q032bNZQppjGXA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
cspell-grammar@8.7.0:
resolution: {integrity: sha512-SGcXc7322wU2WNRi7vtpToWDXTqZHhxqvR+aIXHT2kkxlMSWp3Rvfpshd0ckgY54nZtgw7R/JtKND2jeACRpwQ==}
engines: {node: '>=18'}
hasBin: true
+ cspell-io@8.10.4:
+ resolution: {integrity: sha512-IU+w0hNUQSR99ftC5Jr5D3Vtg70AOUSvdFXHO13qVf3GBnfYxbltQirbY5afLFUWDY6ayNO3GsZisCMdywmlwg==}
+ engines: {node: '>=18'}
+
cspell-io@8.7.0:
resolution: {integrity: sha512-o7OltyyvVkRG1gQrIqGpN5pUkHNnv6rvihb7Qu6cJ8jITinLGuWJuEQpgt0eF5yIr624jDbFwSzAxsFox8riQg==}
engines: {node: '>=18'}
+ cspell-lib@8.10.4:
+ resolution: {integrity: sha512-u1Edp5p2zwnBuQ9pBFg+YfAWB1c1uERWSZkteD5uClVz21zY5Aiikl41gOLi6Qm5+oWCWW+nP1HcC6B6wlFLHQ==}
+ engines: {node: '>=18'}
+
cspell-lib@8.7.0:
resolution: {integrity: sha512-qDSHZGekwiDmouYRECTQokE+hgAuPqREm+Hb+G3DoIo3ZK5H47TtEUo8fNCw22XsKefcF8X28LiyoZwiYHVpSg==}
engines: {node: '>=18'}
+ cspell-trie-lib@8.10.4:
+ resolution: {integrity: sha512-PQDwEYI10sp9nwnUA8HFFZr1c5j1Zrk9p8oqk7KUy+QUF3XcJn3ayLenPNUG95U/ysg3RBHc7/Vmh7unvXNRlQ==}
+ engines: {node: '>=18'}
+
cspell-trie-lib@8.7.0:
resolution: {integrity: sha512-W3Nh2cO7gMV91r+hLqyTMgKlvRl4W5diKs5YiyOxjZumRkMBy42IzcNYtgIIacOxghklv96F5Bd1Vx/zY6ylGA==}
engines: {node: '>=18'}
@@ -4421,8 +4620,8 @@ packages:
peerDependencies:
cytoscape: ^3.2.0
- cytoscape@3.29.2:
- resolution: {integrity: sha512-2G1ycU28Nh7OHT9rkXRLpCDP30MKH1dXJORZuBhtEhEW7pKwgPi77ImqlCWinouyE1PNepIOGZBOrE84DG7LyQ==}
+ cytoscape@3.29.3:
+ resolution: {integrity: sha512-ffoRk1p1G0TcKeLJMrtYbEYomU1ZLP3pA6wGRU0AmPomNPXOaKC8u6hiw9SltlNuOmjbiF6DIs7HH15YgHNlnA==}
engines: {node: '>=0.10'}
d3-array@2.12.1:
@@ -4769,10 +4968,6 @@ packages:
resolution: {integrity: sha512-rza3UH1LwdHh9qyPXp8lkwpjSNk/AMD3dPytUoRoqnypDUhY0xvbdmVhWOfxO68frEfV9BU8V12Ez7ZsHGZpCQ==}
engines: {node: '>=6'}
- doctrine@3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
-
dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
@@ -4786,8 +4981,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.1.5:
- resolution: {integrity: sha512-lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==}
+ dompurify@3.1.6:
+ resolution: {integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==}
domutils@3.1.0:
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
@@ -4868,6 +5063,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ env-paths@3.0.0:
+ resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
envinfo@7.10.0:
resolution: {integrity: sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==}
engines: {node: '>=4'}
@@ -4891,6 +5090,9 @@ packages:
es-module-lexer@1.4.1:
resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
@@ -4934,6 +5136,11 @@ packages:
engines: {node: '>=12'}
hasBin: true
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -4968,21 +5175,21 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-plugin-cypress@2.15.2:
- resolution: {integrity: sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ==}
+ eslint-plugin-cypress@3.3.0:
+ resolution: {integrity: sha512-HPHMPzYBIshzJM8wqgKSKHG2p/8R0Gbg4Pb3tcdC9WrmkuqxiKxSKbjunUrajhV5l7gCIFrh1P7C7GuBqH6YuQ==}
peerDependencies:
- eslint: '>= 3.2.1'
+ eslint: '>=7'
eslint-plugin-html@8.1.1:
resolution: {integrity: sha512-6qmlJsc40D2m3Dn9oEH+0PAOkJhxVu0f5sVItqpCE0YWgYnyP4xCjBc3UWTHaJcY9ARkWOLIIuXLq0ndRnQOHw==}
engines: {node: '>=16.0.0'}
- eslint-plugin-jest@27.9.0:
- resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ eslint-plugin-jest@28.6.0:
+ resolution: {integrity: sha512-YG28E1/MIKwnz+e2H7VwYPzHUYU4aMa19w0yGcwXnnmJH6EfgHahTJ2un3IyraUxNfnz/KUhJAFXNNwWPo12tg==}
+ engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0}
peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
- eslint: ^7.0.0 || ^8.0.0
+ '@typescript-eslint/eslint-plugin': ^6.0.0 || ^7.0.0
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
jest: '*'
peerDependenciesMeta:
'@typescript-eslint/eslint-plugin':
@@ -4990,24 +5197,24 @@ packages:
jest:
optional: true
- eslint-plugin-jsdoc@48.2.12:
- resolution: {integrity: sha512-sO9sKkJx5ovWoRk9hV0YiNzXQ4Z6j27CqE/po2E3wddZVuy9wvKPSTiIhpxMTrP/qURvKayJIDB2+o9kyCW1Fw==}
+ eslint-plugin-jsdoc@48.7.0:
+ resolution: {integrity: sha512-5oiVf7Y+ZxGYQTlLq81X72n+S+hjvS/u0upAdbpPEeaIZILK3MKN8lm/6QqKioBjm/qZ0B5XpMQUtc2fUkqXAg==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-json@3.1.0:
- resolution: {integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==}
- engines: {node: '>=12.0'}
+ eslint-plugin-json@4.0.0:
+ resolution: {integrity: sha512-l/P3WTzl2HI8PbwsbDIrZ+6jvwQI4TGuz20ReJkG3Y+gZS5ZurTgx+gBmuLpOgiqMyDJWyJ7+GCjevWtNYQcUg==}
+ engines: {node: '>=18.0'}
- eslint-plugin-lodash@7.4.0:
- resolution: {integrity: sha512-Tl83UwVXqe1OVeBRKUeWcfg6/pCW1GTRObbdnbEJgYwjxp5Q92MEWQaH9+dmzbRt6kvYU1Mp893E79nJiCSM8A==}
+ eslint-plugin-lodash@8.0.0:
+ resolution: {integrity: sha512-7DA8485FolmWRzh+8t4S8Pzin2TTuWfb0ZW3j/2fYElgk82ZanFz8vDcvc4BBPceYdX1p/za+tkbO68maDBGGw==}
engines: {node: '>=10'}
peerDependencies:
- eslint: '>=2'
+ eslint: '>=9.0.0'
- eslint-plugin-markdown@4.0.1:
- resolution: {integrity: sha512-5/MnGvYU0i8MbHH5cg8S+Vl3DL+bqRNYshk1xUO86DilNBaxtTkhH+5FD0/yO03AmlI6+lfNFdk2yOw72EPzpA==}
+ eslint-plugin-markdown@5.1.0:
+ resolution: {integrity: sha512-SJeyKko1K6GwI0AN6xeCDToXDkfKZfXcexA6B+O2Wr2btUS9GrC+YgwSyVli5DJnctUHjFXcQ2cqTaAmVoLi2A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8'
@@ -5016,12 +5223,12 @@ packages:
resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==}
engines: {node: '>=5.0.0'}
- eslint-plugin-tsdoc@0.2.17:
- resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==}
+ eslint-plugin-tsdoc@0.3.0:
+ resolution: {integrity: sha512-0MuFdBrrJVBjT/gyhkP2BqpD0np1NxNLfQ38xXDlSs/KVVpKI2A6vN7jx2Rve/CyUsvOsMGwp9KKrinv7q9g3A==}
- eslint-plugin-unicorn@51.0.1:
- resolution: {integrity: sha512-MuR/+9VuB0fydoI0nIn2RDA5WISRn4AsJyNSaNKLVwie9/ONvQhxOBbkfSICBPnzKrB77Fh6CZZXjgTt/4Latw==}
- engines: {node: '>=16'}
+ eslint-plugin-unicorn@54.0.0:
+ resolution: {integrity: sha512-XxYLRiYtAWiAjPv6z4JREby1TAE2byBC7wlh0V4vWDCpccOSU1KovWV//jqPXF6bq3WKxqX9rdjoRQ1EhdmNdQ==}
+ engines: {node: '>=18.18'}
peerDependencies:
eslint: '>=8.56.0'
@@ -5029,9 +5236,9 @@ packages:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@8.0.2:
+ resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
@@ -5041,9 +5248,9 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@8.57.0:
- resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint@9.7.0:
+ resolution: {integrity: sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
esniff@2.0.1:
@@ -5054,10 +5261,6 @@ packages:
resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
-
esprima@1.1.1:
resolution: {integrity: sha512-qxxB994/7NtERxgXdFgLHIs9M6bhLXc6qtUmWZ3L8+gTQ9qaoyki2887P2IqAYsoENyr8SUbTutStDniOHSDHg==}
engines: {node: '>=0.4.0'}
@@ -5072,6 +5275,10 @@ packages:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ engines: {node: '>=0.10'}
+
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -5217,6 +5424,9 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+ fast-uri@3.0.1:
+ resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
+
fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
engines: {node: '>= 4.9.1'}
@@ -5260,10 +5470,6 @@ packages:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
- file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
-
file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
@@ -5322,10 +5528,6 @@ packages:
resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -5536,9 +5738,9 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.2:
- resolution: {integrity: sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==}
- engines: {node: '>=16 || 14 >=14.18'}
+ glob@10.4.3:
+ resolution: {integrity: sha512-Q38SGlYRpVtDBPSWEylRyctn7uDeTp4NQERTLiCT1FqA9JXPYWqAVmQU6qh4r/zMM5ehxTcbaO8EjhWnvEhmyg==}
+ engines: {node: '>=18'}
hasBin: true
glob@7.2.3:
@@ -5566,6 +5768,14 @@ packages:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ globals@15.6.0:
+ resolution: {integrity: sha512-UzcJi88Hw//CurUIRa9Jxb0vgOCcuD/MNjwmXp633cyaRKkCWACkoqHCtfZv43b1kqXGg/fpOa8bwgacCeXsVg==}
+ engines: {node: '>=18'}
+
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
@@ -5578,8 +5788,8 @@ packages:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- globby@14.0.1:
- resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
+ globby@14.0.2:
+ resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
glur@1.1.2:
@@ -5789,6 +5999,9 @@ packages:
import-meta-resolve@4.0.0:
resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==}
+ import-meta-resolve@4.1.0:
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -6109,9 +6322,9 @@ packages:
resolution: {integrity: sha512-IoiNVk4SMPu6uTcK+1nA5QaHNok2BMDLjSl5UomrOixe5g4GkylhPwuiGdw00ysSCrXAKNMfFTu+u/Lk5f6OLQ==}
engines: {node: '>=8'}
- jackspeak@3.4.0:
- resolution: {integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==}
- engines: {node: '>=14'}
+ jackspeak@3.4.1:
+ resolution: {integrity: sha512-U23pQPDnmYybVkYjObcuYMk43VRlMLLqLI+RdZy8s8WV8WsxO9SnqSroKaluuvcNOdCAlauKszDwd+umbot5Mg==}
+ engines: {node: '>=18'}
jake@10.9.1:
resolution: {integrity: sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==}
@@ -6387,8 +6600,8 @@ packages:
resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==}
engines: {node: '>=12.20'}
- katex@0.16.10:
- resolution: {integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==}
+ katex@0.16.11:
+ resolution: {integrity: sha512-RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==}
hasBin: true
keyv@4.5.4:
@@ -6564,9 +6777,9 @@ packages:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
- lru-cache@10.2.2:
- resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
- engines: {node: 14 || >=16.14}
+ lru-cache@10.4.0:
+ resolution: {integrity: sha512-bfJaPTuEiTYBu+ulDaeQ0F+uLmlfFkMgXj4cbwfuMSjgObGMzb55FMMbDvbRU0fAHZ4sLGkz2mKwcMg8Dvm8Ww==}
+ engines: {node: '>=18'}
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -6618,6 +6831,11 @@ packages:
markdown-table@3.0.3:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ marked@13.0.2:
+ resolution: {integrity: sha512-J6CPjP8pS5sgrRqxVRvkCIkZ6MFdRIjDkwUwgJ9nL2fbmM6qGQeB2C16hi8Cc9BOzj6xXzy0jyi0iPIfnMHYzA==}
+ engines: {node: '>= 18'}
+ hasBin: true
+
marked@4.3.0:
resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
engines: {node: '>= 12'}
@@ -6851,6 +7069,10 @@ packages:
resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
@@ -7003,6 +7225,10 @@ packages:
object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
+ engines: {node: '>= 0.4'}
+
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -7047,8 +7273,8 @@ packages:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
ospath@1.2.2:
@@ -7155,6 +7381,10 @@ packages:
parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
+ parse-imports@2.1.1:
+ resolution: {integrity: sha512-TDT4HqzUiTMO1wJRwg/t/hYk8Wdp3iF/ToMIlAoVQfL1Xs/sTxq1dKWSMjMbQmIarfWKymOyly40+zmPHXMqCA==}
+ engines: {node: '>= 18'}
+
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -7252,8 +7482,8 @@ packages:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- pino-abstract-transport@1.1.0:
- resolution: {integrity: sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==}
+ pino-abstract-transport@1.2.0:
+ resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==}
pino-std-serializers@3.2.0:
resolution: {integrity: sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg==}
@@ -7265,8 +7495,8 @@ packages:
resolution: {integrity: sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg==}
hasBin: true
- pino@8.20.0:
- resolution: {integrity: sha512-uhIfMj5TVp+WynVASaVEJFTncTUe4dHBq6CWplu/vBgvGHhvBvQfxz+vcOrnnBQdORH3izaGEurLfNlq3YxdFQ==}
+ pino@8.21.0:
+ resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==}
hasBin: true
pirates@4.0.6:
@@ -7350,8 +7580,8 @@ packages:
peerDependencies:
postcss: ^8.2.14
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.0:
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
@@ -7361,6 +7591,10 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.39:
+ resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==}
+ engines: {node: ^10 || ^12 || >=14}
+
preact@10.21.0:
resolution: {integrity: sha512-aQAIxtzWEwH8ou+OovWVSVNlFImL7xUCwJX3YMqA3U8iKCNC34999fFOnWjYNsylgfPgMexpbk7WYOLtKr/mxg==}
@@ -7615,9 +7849,6 @@ packages:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
- resolve@1.19.0:
- resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
-
resolve@1.22.4:
resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
hasBin: true
@@ -7665,9 +7896,9 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rimraf@5.0.7:
- resolution: {integrity: sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==}
- engines: {node: '>=14.18'}
+ rimraf@5.0.8:
+ resolution: {integrity: sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw==}
+ engines: {node: '>=18'}
hasBin: true
robust-predicates@3.0.2:
@@ -7688,11 +7919,6 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.17.2:
- resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
rollup@4.18.0:
resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -7889,6 +8115,9 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
+ slashes@3.0.12:
+ resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==}
+
slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
@@ -8155,15 +8384,15 @@ packages:
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- synckit@0.9.0:
- resolution: {integrity: sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==}
+ synckit@0.9.1:
+ resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
engines: {node: ^14.18.0 || >=16.0.0}
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
- tailwindcss@3.4.3:
- resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
+ tailwindcss@3.4.4:
+ resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -8213,6 +8442,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ terser@5.31.2:
+ resolution: {integrity: sha512-LGyRZVFm/QElZHy/CPr/O4eNZOZIzsrQ92y4v9UJe/pFJjypje2yI3C2FmPtvUEnhadlSbmG2nXtdcjHOjCfxw==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -8227,8 +8461,8 @@ packages:
thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
- thread-stream@2.4.1:
- resolution: {integrity: sha512-d/Ex2iWd1whipbT681JmTINKw0ZwOUBZm7+Gjs64DHuX34mmw8vJL2bFAaNacaW72zYiTJxSHi5abUuOi5nsfg==}
+ thread-stream@2.7.0:
+ resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==}
throat@6.0.2:
resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==}
@@ -8323,17 +8557,11 @@ packages:
ts-toolbelt@6.15.5:
resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==}
- tslib@1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
-
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tsutils@3.21.0:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ tslib@2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
tsx@4.7.3:
resolution: {integrity: sha512-+fQnMqIp/jxZEXLcj6WzYy9FhcS5/Dfk8y4AtzJ6ejKcKqmfTF8Gso/jtrzDggCF2zTU20gJa6n8XqPYwDAUYQ==}
@@ -8420,6 +8648,15 @@ packages:
peerDependencies:
typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x
+ typescript-eslint@8.0.0-alpha.39:
+ resolution: {integrity: sha512-bsuR1BVJfHr7sBh7Cca962VPIcP+5UWaIa/+6PpnFZ+qtASjGTxKWIF5dG2o73BX9NsyqQfvRWujb3M9CIoRXA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
typescript@5.4.5:
resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
engines: {node: '>=14.17'}
@@ -8628,34 +8865,6 @@ packages:
'@vite-pwa/assets-generator':
optional: true
- vite@5.2.10:
- resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}
- engines: {node: ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
-
vite@5.2.13:
resolution: {integrity: sha512-SSq1noJfY9pR3I1TUENL3rQYDQCFqgD+lM6fTRAM8Nv6Lsg5hDLaXkjETVeBt+7vZBCMoibD+6IWnT2mJ+Zb/A==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -8742,9 +8951,6 @@ packages:
vscode-languageserver-textdocument@1.0.11:
resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==}
- vscode-languageserver-types@3.17.3:
- resolution: {integrity: sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==}
-
vscode-languageserver-types@3.17.5:
resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
@@ -8764,17 +8970,6 @@ packages:
vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- vue-demi@0.13.11:
- resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==}
- engines: {node: '>=12'}
- hasBin: true
- peerDependencies:
- '@vue/composition-api': ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- '@vue/composition-api':
- optional: true
-
vue-demi@0.14.7:
resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
engines: {node: '>=12'}
@@ -8786,24 +8981,27 @@ packages:
'@vue/composition-api':
optional: true
- vue@3.4.21:
- resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
+ vue-demi@0.14.8:
+ resolution: {integrity: sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==}
+ engines: {node: '>=12'}
+ hasBin: true
+ peerDependencies:
+ '@vue/composition-api': ^1.0.0-rc.1
+ vue: ^3.0.0-0 || ^2.6.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+
+ vue@3.4.30:
+ resolution: {integrity: sha512-NcxtKCwkdf1zPsr7Y8+QlDBCGqxvjLXF2EX+yi76rV5rrz90Y6gK1cq0olIhdWGgrlhs9ElHuhi9t3+W5sG5Xw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- vue@3.4.26:
- resolution: {integrity: sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- vue@3.4.29:
- resolution: {integrity: sha512-8QUYfRcYzNlYuzKPfge1UWC6nF9ym0lx7mpGVPJYNhddxEf3DD0+kU07NTL0sXuiT2HuJuKr/iEO8WvXvT0RSQ==}
+ vue@3.4.31:
+ resolution: {integrity: sha512-njqRrOy7W3YLAlVqSKpBebtZpDVg21FPoaq1I7f/+qqBThK9ChAIjkRWgeP6Eat+8C+iia4P3OYqpATP21BCoQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -8969,6 +9167,10 @@ packages:
wildcard@2.0.1:
resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
@@ -9156,13 +9358,15 @@ packages:
resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
engines: {node: '>=12.20'}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+ engines: {node: '>=12.20'}
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
'@adobe/jsonschema2md@8.0.2':
dependencies:
'@types/json-schema': 7.0.15
@@ -9305,9 +9509,9 @@ snapshots:
'@antfu/utils@0.7.7': {}
- '@apideck/better-ajv-errors@0.3.6(ajv@8.16.0)':
+ '@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)':
dependencies:
- ajv: 8.16.0
+ ajv: 8.17.1
json-schema: 0.4.0
jsonpointer: 5.0.1
leven: 3.1.0
@@ -9558,9 +9762,9 @@ snapshots:
'@argos-ci/browser@2.1.2': {}
- '@argos-ci/core@2.3.0':
+ '@argos-ci/core@2.4.0':
dependencies:
- '@argos-ci/util': 2.0.0
+ '@argos-ci/util': 2.1.0
axios: 1.7.2(debug@4.3.5)
convict: 6.2.4
debug: 4.3.5
@@ -9570,17 +9774,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@argos-ci/cypress@2.0.5(cypress@13.7.3)':
+ '@argos-ci/cypress@2.1.0(cypress@13.7.3)':
dependencies:
'@argos-ci/browser': 2.1.2
- '@argos-ci/core': 2.3.0
- '@argos-ci/util': 2.0.0
+ '@argos-ci/core': 2.4.0
+ '@argos-ci/util': 2.1.0
cypress: 13.7.3
cypress-wait-until: 3.0.1
transitivePeerDependencies:
- supports-color
- '@argos-ci/util@2.0.0': {}
+ '@argos-ci/util@2.1.0': {}
'@babel/code-frame@7.24.2':
dependencies:
@@ -9596,6 +9800,8 @@ snapshots:
'@babel/compat-data@7.24.7': {}
+ '@babel/compat-data@7.24.8': {}
+
'@babel/core@7.24.4':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -9656,6 +9862,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.24.8':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.8
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
+ '@babel/helpers': 7.24.8
+ '@babel/parser': 7.24.8
+ '@babel/template': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.8
+ convert-source-map: 2.0.0
+ debug: 4.3.5
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/generator@7.24.5':
dependencies:
'@babel/types': 7.24.5
@@ -9670,18 +9896,25 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
+ '@babel/generator@7.24.8':
+ dependencies:
+ '@babel/types': 7.24.8
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
'@babel/helper-annotate-as-pure@7.22.5':
dependencies:
'@babel/types': 7.24.7
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.24.8
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -9689,7 +9922,7 @@ snapshots:
dependencies:
'@babel/compat-data': 7.24.4
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ browserslist: 4.23.1
lru-cache: 5.1.1
semver: 6.3.1
@@ -9701,6 +9934,14 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
+ '@babel/helper-compilation-targets@7.24.8':
+ dependencies:
+ '@babel/compat-data': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
@@ -9714,28 +9955,13 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
@@ -9744,12 +9970,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.4)':
+ '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.7)':
dependencies:
@@ -9758,22 +9992,29 @@ snapshots:
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.4)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-annotate-as-pure': 7.24.7
+ regexpu-core: 5.3.2
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
+ dependencies:
+ '@babel/core': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.7)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
debug: 4.3.5
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -9808,10 +10049,10 @@ snapshots:
dependencies:
'@babel/types': 7.24.7
- '@babel/helper-member-expression-to-functions@7.24.7':
+ '@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -9833,7 +10074,7 @@ snapshots:
'@babel/helper-module-imports': 7.24.3
'@babel/helper-simple-access': 7.24.5
'@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.7
'@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)':
dependencies:
@@ -9842,11 +10083,11 @@ snapshots:
'@babel/helper-module-imports': 7.24.3
'@babel/helper-simple-access': 7.24.5
'@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.7
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.4)':
+ '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
@@ -9855,7 +10096,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-module-transforms@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
@@ -9866,30 +10107,41 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.24.8(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
'@babel/types': 7.24.7
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.24.8
'@babel/helper-plugin-utils@7.24.5': {}
- '@babel/helper-plugin-utils@7.24.7': {}
+ '@babel/helper-plugin-utils@7.24.8': {}
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.4)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.7)':
+ '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.8
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-wrap-function': 7.24.7
@@ -9903,20 +10155,20 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
+ '@babel/helper-optimise-call-expression': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -9938,8 +10190,8 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -9955,9 +10207,7 @@ snapshots:
'@babel/helper-string-parser@7.24.7': {}
- '@babel/helper-validator-identifier@7.22.20': {}
-
- '@babel/helper-validator-identifier@7.24.5': {}
+ '@babel/helper-string-parser@7.24.8': {}
'@babel/helper-validator-identifier@7.24.7': {}
@@ -9965,12 +10215,14 @@ snapshots:
'@babel/helper-validator-option@7.24.7': {}
+ '@babel/helper-validator-option@7.24.8': {}
+
'@babel/helper-wrap-function@7.24.7':
dependencies:
'@babel/helper-function-name': 7.24.7
'@babel/template': 7.24.7
- '@babel/traverse': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/traverse': 7.24.8
+ '@babel/types': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -9987,6 +10239,11 @@ snapshots:
'@babel/template': 7.24.7
'@babel/types': 7.24.7
+ '@babel/helpers@7.24.8':
+ dependencies:
+ '@babel/template': 7.24.7
+ '@babel/types': 7.24.8
+
'@babel/highlight@7.24.2':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
@@ -10009,154 +10266,153 @@ snapshots:
dependencies:
'@babel/types': 7.24.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.4)':
+ '@babel/parser@7.24.8':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/types': 7.24.8
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.24.8
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.5
+
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.5
-
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.7)':
@@ -10164,6 +10420,11 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.5
+
'@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
@@ -10174,19 +10435,14 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.5
-
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.7)':
@@ -10194,9 +10450,9 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.7)':
@@ -10204,9 +10460,9 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.7)':
@@ -10214,9 +10470,9 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.7)':
@@ -10224,9 +10480,9 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.8
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.7)':
@@ -10234,26 +10490,31 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.5
+
'@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
@@ -10264,54 +10525,45 @@ snapshots:
'@babel/core': 7.24.7
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.8)
transitivePeerDependencies:
- supports-color
@@ -10319,264 +10571,273 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-split-export-declaration': 7.24.7
- globals: 11.12.0
+ '@babel/core': 7.24.8
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.8)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-classes@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
'@babel/helper-split-export-declaration': 7.24.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-classes@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/template': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-split-export-declaration': 7.24.7
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/template': 7.24.7
- '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/template': 7.24.7
- '@babel/plugin-transform-destructuring@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.8)
'@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.8)
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
'@babel/helper-function-name': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.8)
'@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.8)
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -10587,31 +10848,21 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-simple-access': 7.24.5
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
@@ -10619,169 +10870,169 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-module-transforms': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-module-transforms': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8)
'@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7)
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.8)
'@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.8)
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.8)
- '@babel/plugin-transform-optional-chaining@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -10789,99 +11040,109 @@ snapshots:
dependencies:
'@babel/core': 7.24.7
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.7)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- regenerator-transform: 0.15.2
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ regenerator-transform: 0.15.2
'@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typeof-symbol@7.24.7(@babel/core@7.24.7)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.5)':
dependencies:
@@ -10891,146 +11152,59 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.5
'@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.4)':
- dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
-
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
'@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.7)
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
- '@babel/preset-env@7.24.7(@babel/core@7.24.4)':
+ '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.8)':
dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/core': 7.24.4
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.4)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.4)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.4)
- core-js-compat: 3.37.1
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.24.8
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.8)
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/preset-env@7.24.7(@babel/core@7.24.7)':
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.24.8
'@babel/core': 7.24.7
- '@babel/helper-compilation-targets': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/helper-validator-option': 7.24.7
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.7)
@@ -11061,9 +11235,9 @@ snapshots:
'@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-classes': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.24.7)
'@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-destructuring': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.7)
'@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.7)
@@ -11076,7 +11250,7 @@ snapshots:
'@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.7)
'@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.7)
@@ -11086,7 +11260,7 @@ snapshots:
'@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-optional-chaining': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.7)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.7)
@@ -11097,7 +11271,7 @@ snapshots:
'@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.7)
- '@babel/plugin-transform-typeof-symbol': 7.24.7(@babel/core@7.24.7)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.7)
'@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.7)
'@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.7)
@@ -11111,18 +11285,105 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)':
+ '@babel/preset-env@7.24.8(@babel/core@7.24.8)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
- esutils: 2.0.3
+ '@babel/compat-data': 7.24.8
+ '@babel/core': 7.24.8
+ '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-validator-option': 7.24.8
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.8)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.8)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.8)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.8)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.8)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.8)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.8)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.8)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.8)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.8)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.8)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.24.8)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.8)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.8)
+ '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.8)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.8)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.8)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.8)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.8)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.8)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.8)
+ core-js-compat: 3.37.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
- '@babel/types': 7.24.7
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/types': 7.24.8
+ esutils: 2.0.3
+
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.8)':
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/types': 7.24.8
esutils: 2.0.3
'@babel/preset-typescript@7.24.1(@babel/core@7.24.5)':
@@ -11144,7 +11405,7 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.24.7':
+ '@babel/runtime@7.24.8':
dependencies:
regenerator-runtime: 0.14.1
@@ -11190,10 +11451,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.24.8':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.24.8
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-function-name': 7.24.7
+ '@babel/helper-hoist-variables': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/parser': 7.24.8
+ '@babel/types': 7.24.8
+ debug: 4.3.5
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.24.5':
dependencies:
'@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
'@babel/types@7.24.7':
@@ -11202,6 +11478,12 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
+ '@babel/types@7.24.8':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
'@bcherny/json-schema-ref-parser@10.0.5-fork':
dependencies:
'@jsdevtools/ono': 7.1.3
@@ -11211,7 +11493,7 @@ snapshots:
'@bcoe/v8-coverage@0.2.3': {}
- '@braintree/sanitize-url@7.0.3': {}
+ '@braintree/sanitize-url@7.0.4': {}
'@chevrotain/cst-dts-gen@11.0.3':
dependencies:
@@ -11233,6 +11515,61 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
+ '@cspell/cspell-bundled-dicts@8.10.4':
+ dependencies:
+ '@cspell/dict-ada': 4.0.2
+ '@cspell/dict-aws': 4.0.3
+ '@cspell/dict-bash': 4.1.3
+ '@cspell/dict-companies': 3.1.2
+ '@cspell/dict-cpp': 5.1.10
+ '@cspell/dict-cryptocurrencies': 5.0.0
+ '@cspell/dict-csharp': 4.0.2
+ '@cspell/dict-css': 4.0.12
+ '@cspell/dict-dart': 2.0.3
+ '@cspell/dict-django': 4.1.0
+ '@cspell/dict-docker': 1.1.7
+ '@cspell/dict-dotnet': 5.0.2
+ '@cspell/dict-elixir': 4.0.3
+ '@cspell/dict-en-common-misspellings': 2.0.3
+ '@cspell/dict-en-gb': 1.1.33
+ '@cspell/dict-en_us': 4.3.23
+ '@cspell/dict-filetypes': 3.0.4
+ '@cspell/dict-fonts': 4.0.0
+ '@cspell/dict-fsharp': 1.0.1
+ '@cspell/dict-fullstack': 3.1.8
+ '@cspell/dict-gaming-terms': 1.0.5
+ '@cspell/dict-git': 3.0.0
+ '@cspell/dict-golang': 6.0.9
+ '@cspell/dict-google': 1.0.1
+ '@cspell/dict-haskell': 4.0.1
+ '@cspell/dict-html': 4.0.5
+ '@cspell/dict-html-symbol-entities': 4.0.0
+ '@cspell/dict-java': 5.0.7
+ '@cspell/dict-julia': 1.0.1
+ '@cspell/dict-k8s': 1.0.5
+ '@cspell/dict-latex': 4.0.0
+ '@cspell/dict-lorem-ipsum': 4.0.0
+ '@cspell/dict-lua': 4.0.3
+ '@cspell/dict-makefile': 1.0.0
+ '@cspell/dict-monkeyc': 1.0.6
+ '@cspell/dict-node': 5.0.1
+ '@cspell/dict-npm': 5.0.16
+ '@cspell/dict-php': 4.0.8
+ '@cspell/dict-powershell': 5.0.4
+ '@cspell/dict-public-licenses': 2.0.7
+ '@cspell/dict-python': 4.2.1
+ '@cspell/dict-r': 2.0.1
+ '@cspell/dict-ruby': 5.0.2
+ '@cspell/dict-rust': 4.0.4
+ '@cspell/dict-scala': 5.0.2
+ '@cspell/dict-software-terms': 3.4.10
+ '@cspell/dict-sql': 2.1.3
+ '@cspell/dict-svelte': 1.0.2
+ '@cspell/dict-swift': 2.0.1
+ '@cspell/dict-terraform': 1.0.0
+ '@cspell/dict-typescript': 3.1.5
+ '@cspell/dict-vue': 3.0.0
+
'@cspell/cspell-bundled-dicts@8.7.0':
dependencies:
'@cspell/dict-ada': 4.0.2
@@ -11291,24 +11628,40 @@ snapshots:
dependencies:
'@cspell/cspell-types': 8.7.0
+ '@cspell/cspell-pipe@8.10.4': {}
+
'@cspell/cspell-pipe@8.7.0': {}
+ '@cspell/cspell-resolver@8.10.4':
+ dependencies:
+ global-directory: 4.0.1
+
'@cspell/cspell-resolver@8.7.0':
dependencies:
global-directory: 4.0.1
+ '@cspell/cspell-service-bus@8.10.4': {}
+
'@cspell/cspell-service-bus@8.7.0': {}
+ '@cspell/cspell-types@8.10.4': {}
+
'@cspell/cspell-types@8.7.0': {}
'@cspell/dict-ada@4.0.2': {}
'@cspell/dict-aws@4.0.1': {}
+ '@cspell/dict-aws@4.0.3': {}
+
'@cspell/dict-bash@4.1.3': {}
'@cspell/dict-companies@3.0.31': {}
+ '@cspell/dict-companies@3.1.2': {}
+
+ '@cspell/dict-cpp@5.1.10': {}
+
'@cspell/dict-cpp@5.1.3': {}
'@cspell/dict-cryptocurrencies@5.0.0': {}
@@ -11321,34 +11674,50 @@ snapshots:
'@cspell/dict-data-science@1.0.11': {}
+ '@cspell/dict-data-science@2.0.1': {}
+
'@cspell/dict-django@4.1.0': {}
'@cspell/dict-docker@1.1.7': {}
'@cspell/dict-dotnet@5.0.0': {}
+ '@cspell/dict-dotnet@5.0.2': {}
+
'@cspell/dict-elixir@4.0.3': {}
'@cspell/dict-en-common-misspellings@2.0.0': {}
+ '@cspell/dict-en-common-misspellings@2.0.3': {}
+
'@cspell/dict-en-gb@1.1.33': {}
'@cspell/dict-en_us@4.3.18': {}
+ '@cspell/dict-en_us@4.3.23': {}
+
'@cspell/dict-filetypes@3.0.3': {}
+ '@cspell/dict-filetypes@3.0.4': {}
+
'@cspell/dict-fonts@4.0.0': {}
'@cspell/dict-fsharp@1.0.1': {}
'@cspell/dict-fullstack@3.1.5': {}
+ '@cspell/dict-fullstack@3.1.8': {}
+
'@cspell/dict-gaming-terms@1.0.5': {}
'@cspell/dict-git@3.0.0': {}
'@cspell/dict-golang@6.0.5': {}
+ '@cspell/dict-golang@6.0.9': {}
+
+ '@cspell/dict-google@1.0.1': {}
+
'@cspell/dict-haskell@4.0.1': {}
'@cspell/dict-html-symbol-entities@4.0.0': {}
@@ -11357,10 +11726,14 @@ snapshots:
'@cspell/dict-java@5.0.6': {}
+ '@cspell/dict-java@5.0.7': {}
+
'@cspell/dict-julia@1.0.1': {}
'@cspell/dict-k8s@1.0.2': {}
+ '@cspell/dict-k8s@1.0.5': {}
+
'@cspell/dict-latex@4.0.0': {}
'@cspell/dict-lorem-ipsum@4.0.0': {}
@@ -11373,28 +11746,48 @@ snapshots:
'@cspell/dict-node@4.0.3': {}
+ '@cspell/dict-node@5.0.1': {}
+
'@cspell/dict-npm@5.0.15': {}
+ '@cspell/dict-npm@5.0.16': {}
+
'@cspell/dict-php@4.0.6': {}
+ '@cspell/dict-php@4.0.8': {}
+
'@cspell/dict-powershell@5.0.3': {}
+ '@cspell/dict-powershell@5.0.4': {}
+
'@cspell/dict-public-licenses@2.0.6': {}
+ '@cspell/dict-public-licenses@2.0.7': {}
+
'@cspell/dict-python@4.1.11':
dependencies:
'@cspell/dict-data-science': 1.0.11
+ '@cspell/dict-python@4.2.1':
+ dependencies:
+ '@cspell/dict-data-science': 2.0.1
+
'@cspell/dict-r@2.0.1': {}
'@cspell/dict-ruby@5.0.2': {}
'@cspell/dict-rust@4.0.2': {}
+ '@cspell/dict-rust@4.0.4': {}
+
'@cspell/dict-scala@5.0.0': {}
+ '@cspell/dict-scala@5.0.2': {}
+
'@cspell/dict-software-terms@3.3.18': {}
+ '@cspell/dict-software-terms@3.4.10': {}
+
'@cspell/dict-sql@2.1.3': {}
'@cspell/dict-svelte@1.0.2': {}
@@ -11405,28 +11798,38 @@ snapshots:
'@cspell/dict-typescript@3.1.3': {}
+ '@cspell/dict-typescript@3.1.5': {}
+
'@cspell/dict-vue@3.0.0': {}
+ '@cspell/dynamic-import@8.10.4':
+ dependencies:
+ import-meta-resolve: 4.1.0
+
'@cspell/dynamic-import@8.7.0':
dependencies:
import-meta-resolve: 4.0.0
- '@cspell/eslint-plugin@8.7.0(eslint@8.57.0)':
+ '@cspell/eslint-plugin@8.10.4(eslint@9.7.0)':
dependencies:
- '@cspell/cspell-types': 8.7.0
- cspell-lib: 8.7.0
- eslint: 8.57.0
- estree-walker: 3.0.3
- synckit: 0.9.0
+ '@cspell/cspell-types': 8.10.4
+ '@cspell/url': 8.10.4
+ cspell-lib: 8.10.4
+ eslint: 9.7.0
+ synckit: 0.9.1
+
+ '@cspell/strong-weak-map@8.10.4': {}
'@cspell/strong-weak-map@8.7.0': {}
- '@cypress/code-coverage@3.12.39(@babel/core@7.24.4)(@babel/preset-env@7.24.7(@babel/core@7.24.4))(babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)))(cypress@13.7.3)(webpack@5.91.0(esbuild@0.20.2))':
+ '@cspell/url@8.10.4': {}
+
+ '@cypress/code-coverage@3.12.41(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5)))(cypress@13.7.3)(webpack@5.91.0(esbuild@0.21.5))':
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.7(@babel/core@7.24.4)
- '@cypress/webpack-preprocessor': 6.0.2(@babel/core@7.24.4)(@babel/preset-env@7.24.7(@babel/core@7.24.4))(babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)))(webpack@5.91.0(esbuild@0.20.2))
- babel-loader: 9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2))
+ '@babel/core': 7.24.7
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ '@cypress/webpack-preprocessor': 6.0.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5)))(webpack@5.91.0(esbuild@0.21.5))
+ babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5))
chalk: 4.1.2
cypress: 13.7.3
dayjs: 1.11.10
@@ -11436,7 +11839,7 @@ snapshots:
istanbul-lib-coverage: 3.2.2
js-yaml: 4.1.0
nyc: 15.1.0
- webpack: 5.91.0(esbuild@0.20.2)
+ webpack: 5.91.0(esbuild@0.21.5)
transitivePeerDependencies:
- supports-color
@@ -11461,15 +11864,15 @@ snapshots:
tunnel-agent: 0.6.0
uuid: 8.3.2
- '@cypress/webpack-preprocessor@6.0.2(@babel/core@7.24.4)(@babel/preset-env@7.24.7(@babel/core@7.24.4))(babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)))(webpack@5.91.0(esbuild@0.20.2))':
+ '@cypress/webpack-preprocessor@6.0.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5)))(webpack@5.91.0(esbuild@0.21.5))':
dependencies:
- '@babel/core': 7.24.4
- '@babel/preset-env': 7.24.7(@babel/core@7.24.4)
- babel-loader: 9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2))
+ '@babel/core': 7.24.7
+ '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
+ babel-loader: 9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5))
bluebird: 3.7.1
debug: 4.3.4(supports-color@8.1.1)
lodash: 4.17.21
- webpack: 5.91.0(esbuild@0.20.2)
+ webpack: 5.91.0(esbuild@0.21.5)
transitivePeerDependencies:
- supports-color
@@ -11508,16 +11911,13 @@ snapshots:
'@emnapi/runtime@1.2.0':
dependencies:
- tslib: 2.6.2
+ tslib: 2.6.3
optional: true
- '@es-joy/jsdoccomment@0.43.1':
+ '@es-joy/jsdoccomment@0.46.0':
dependencies:
- '@types/eslint': 8.56.10
- '@types/estree': 1.0.5
- '@typescript-eslint/types': 7.13.1
comment-parser: 1.4.1
- esquery: 1.5.0
+ esquery: 1.6.0
jsdoc-type-pratt-parser: 4.0.0
'@esbuild/aix-ppc64@0.19.12':
@@ -11526,151 +11926,228 @@ snapshots:
'@esbuild/aix-ppc64@0.20.2':
optional: true
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
'@esbuild/android-arm64@0.19.12':
optional: true
'@esbuild/android-arm64@0.20.2':
optional: true
+ '@esbuild/android-arm64@0.21.5':
+ optional: true
+
'@esbuild/android-arm@0.19.12':
optional: true
'@esbuild/android-arm@0.20.2':
optional: true
+ '@esbuild/android-arm@0.21.5':
+ optional: true
+
'@esbuild/android-x64@0.19.12':
optional: true
'@esbuild/android-x64@0.20.2':
optional: true
+ '@esbuild/android-x64@0.21.5':
+ optional: true
+
'@esbuild/darwin-arm64@0.19.12':
optional: true
'@esbuild/darwin-arm64@0.20.2':
optional: true
+ '@esbuild/darwin-arm64@0.21.5':
+ optional: true
+
'@esbuild/darwin-x64@0.19.12':
optional: true
'@esbuild/darwin-x64@0.20.2':
optional: true
+ '@esbuild/darwin-x64@0.21.5':
+ optional: true
+
'@esbuild/freebsd-arm64@0.19.12':
optional: true
'@esbuild/freebsd-arm64@0.20.2':
optional: true
+ '@esbuild/freebsd-arm64@0.21.5':
+ optional: true
+
'@esbuild/freebsd-x64@0.19.12':
optional: true
'@esbuild/freebsd-x64@0.20.2':
optional: true
+ '@esbuild/freebsd-x64@0.21.5':
+ optional: true
+
'@esbuild/linux-arm64@0.19.12':
optional: true
'@esbuild/linux-arm64@0.20.2':
optional: true
+ '@esbuild/linux-arm64@0.21.5':
+ optional: true
+
'@esbuild/linux-arm@0.19.12':
optional: true
'@esbuild/linux-arm@0.20.2':
optional: true
+ '@esbuild/linux-arm@0.21.5':
+ optional: true
+
'@esbuild/linux-ia32@0.19.12':
optional: true
'@esbuild/linux-ia32@0.20.2':
optional: true
+ '@esbuild/linux-ia32@0.21.5':
+ optional: true
+
'@esbuild/linux-loong64@0.19.12':
optional: true
'@esbuild/linux-loong64@0.20.2':
optional: true
+ '@esbuild/linux-loong64@0.21.5':
+ optional: true
+
'@esbuild/linux-mips64el@0.19.12':
optional: true
'@esbuild/linux-mips64el@0.20.2':
optional: true
+ '@esbuild/linux-mips64el@0.21.5':
+ optional: true
+
'@esbuild/linux-ppc64@0.19.12':
optional: true
'@esbuild/linux-ppc64@0.20.2':
optional: true
+ '@esbuild/linux-ppc64@0.21.5':
+ optional: true
+
'@esbuild/linux-riscv64@0.19.12':
optional: true
'@esbuild/linux-riscv64@0.20.2':
optional: true
+ '@esbuild/linux-riscv64@0.21.5':
+ optional: true
+
'@esbuild/linux-s390x@0.19.12':
optional: true
'@esbuild/linux-s390x@0.20.2':
optional: true
+ '@esbuild/linux-s390x@0.21.5':
+ optional: true
+
'@esbuild/linux-x64@0.19.12':
optional: true
'@esbuild/linux-x64@0.20.2':
optional: true
+ '@esbuild/linux-x64@0.21.5':
+ optional: true
+
'@esbuild/netbsd-x64@0.19.12':
optional: true
'@esbuild/netbsd-x64@0.20.2':
optional: true
+ '@esbuild/netbsd-x64@0.21.5':
+ optional: true
+
'@esbuild/openbsd-x64@0.19.12':
optional: true
'@esbuild/openbsd-x64@0.20.2':
optional: true
+ '@esbuild/openbsd-x64@0.21.5':
+ optional: true
+
'@esbuild/sunos-x64@0.19.12':
optional: true
'@esbuild/sunos-x64@0.20.2':
optional: true
+ '@esbuild/sunos-x64@0.21.5':
+ optional: true
+
'@esbuild/win32-arm64@0.19.12':
optional: true
'@esbuild/win32-arm64@0.20.2':
optional: true
+ '@esbuild/win32-arm64@0.21.5':
+ optional: true
+
'@esbuild/win32-ia32@0.19.12':
optional: true
'@esbuild/win32-ia32@0.20.2':
optional: true
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
'@esbuild/win32-x64@0.19.12':
optional: true
'@esbuild/win32-x64@0.20.2':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.7.0)':
dependencies:
- eslint: 8.57.0
+ eslint: 9.7.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.11.0': {}
- '@eslint/eslintrc@2.1.4':
+ '@eslint/config-array@0.17.0':
+ dependencies:
+ '@eslint/object-schema': 2.1.4
+ debug: 4.3.5
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
- espree: 9.6.1
- globals: 13.24.0
+ debug: 4.3.5
+ espree: 10.1.0
+ globals: 14.0.0
ignore: 5.3.1
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -11679,7 +12156,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.0': {}
+ '@eslint/js@9.7.0': {}
+
+ '@eslint/object-schema@2.1.4': {}
'@fastify/ajv-compiler@1.1.0':
dependencies:
@@ -11687,22 +12166,25 @@ snapshots:
'@fastify/error@2.0.0': {}
- '@floating-ui/core@1.6.0':
+ '@floating-ui/core@1.6.4':
dependencies:
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/utils': 0.2.4
- '@floating-ui/dom@1.6.3':
+ '@floating-ui/dom@1.6.7':
dependencies:
- '@floating-ui/core': 1.6.0
- '@floating-ui/utils': 0.2.1
+ '@floating-ui/core': 1.6.4
+ '@floating-ui/utils': 0.2.4
- '@floating-ui/utils@0.2.1': {}
+ '@floating-ui/utils@0.2.4': {}
- '@floating-ui/vue@0.2.1(vue@3.4.21(typescript@5.4.5))':
+ '@floating-ui/vue@1.1.1(vue@3.4.31(typescript@5.4.5))':
dependencies:
- '@floating-ui/dom': 1.6.3
- vue: 3.4.21(typescript@5.4.5)
- vue-demi: 0.13.11(vue@3.4.21(typescript@5.4.5))
+ '@floating-ui/dom': 1.6.7
+ '@floating-ui/utils': 0.2.4
+ vue-demi: 0.14.8(vue@3.4.31(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
'@hapi/hoek@9.3.0': {}
@@ -11710,35 +12192,28 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@headlessui-float/vue@0.11.4(vue@3.4.21(typescript@5.4.5))':
+ '@headlessui-float/vue@0.14.0(@headlessui/vue@1.7.22(vue@3.4.31(typescript@5.4.5)))(vue@3.4.31(typescript@5.4.5))':
dependencies:
- '@floating-ui/core': 1.6.0
- '@floating-ui/dom': 1.6.3
- '@floating-ui/vue': 0.2.1(vue@3.4.21(typescript@5.4.5))
- vue: 3.4.21(typescript@5.4.5)
+ '@floating-ui/core': 1.6.4
+ '@floating-ui/dom': 1.6.7
+ '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.4.5))
+ '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.4.5))
+ vue: 3.4.31(typescript@5.4.5)
transitivePeerDependencies:
- '@vue/composition-api'
- '@headlessui/tailwindcss@0.2.0(tailwindcss@3.4.3)':
+ '@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.4)':
dependencies:
- tailwindcss: 3.4.3
+ tailwindcss: 3.4.4
- '@headlessui/vue@1.7.19(vue@3.4.21(typescript@5.4.5))':
+ '@headlessui/vue@1.7.22(vue@3.4.31(typescript@5.4.5))':
dependencies:
- '@tanstack/vue-virtual': 3.2.1(vue@3.4.21(typescript@5.4.5))
- vue: 3.4.21(typescript@5.4.5)
-
- '@humanwhocodes/config-array@0.11.14':
- dependencies:
- '@humanwhocodes/object-schema': 2.0.2
- debug: 4.3.4(supports-color@8.1.1)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@tanstack/vue-virtual': 3.8.1(vue@3.4.31(typescript@5.4.5))
+ vue: 3.4.31(typescript@5.4.5)
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.2': {}
+ '@humanwhocodes/retry@0.3.0': {}
'@iconify-json/carbon@1.1.36':
dependencies:
@@ -12042,14 +12517,14 @@ snapshots:
'@mdi/font@7.4.47': {}
- '@microsoft/tsdoc-config@0.16.2':
+ '@microsoft/tsdoc-config@0.17.0':
dependencies:
- '@microsoft/tsdoc': 0.14.2
- ajv: 6.12.6
+ '@microsoft/tsdoc': 0.15.0
+ ajv: 8.12.0
jju: 1.4.0
- resolve: 1.19.0
+ resolve: 1.22.8
- '@microsoft/tsdoc@0.14.2': {}
+ '@microsoft/tsdoc@0.15.0': {}
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -12070,9 +12545,9 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
- '@rollup/plugin-babel@5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)':
+ '@rollup/plugin-babel@5.3.1(@babel/core@7.24.8)(@types/babel__core@7.20.5)(rollup@2.79.1)':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.24.8
'@babel/helper-module-imports': 7.24.7
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
@@ -12102,18 +12577,18 @@ snapshots:
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.31.1
+ terser: 5.31.2
optionalDependencies:
rollup: 2.79.1
- '@rollup/plugin-typescript@11.1.6(rollup@4.18.0)(tslib@2.6.2)(typescript@5.4.5)':
+ '@rollup/plugin-typescript@11.1.6(rollup@4.18.0)(tslib@2.6.3)(typescript@5.4.5)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.18.0)
resolve: 1.22.8
typescript: 5.4.5
optionalDependencies:
rollup: 4.18.0
- tslib: 2.6.2
+ tslib: 2.6.3
'@rollup/pluginutils@3.1.0(rollup@2.79.1)':
dependencies:
@@ -12138,99 +12613,51 @@ snapshots:
optionalDependencies:
rollup: 4.18.0
- '@rollup/rollup-android-arm-eabi@4.17.2':
- optional: true
-
'@rollup/rollup-android-arm-eabi@4.18.0':
optional: true
- '@rollup/rollup-android-arm64@4.17.2':
- optional: true
-
'@rollup/rollup-android-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.17.2':
- optional: true
-
'@rollup/rollup-darwin-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-x64@4.17.2':
- optional: true
-
'@rollup/rollup-darwin-x64@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
- optional: true
-
'@rollup/rollup-linux-arm-gnueabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.17.2':
- optional: true
-
'@rollup/rollup-linux-arm-musleabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.17.2':
- optional: true
-
'@rollup/rollup-linux-arm64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.17.2':
- optional: true
-
'@rollup/rollup-linux-arm64-musl@4.18.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
- optional: true
-
'@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.17.2':
- optional: true
-
'@rollup/rollup-linux-riscv64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.17.2':
- optional: true
-
'@rollup/rollup-linux-s390x-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.17.2':
- optional: true
-
'@rollup/rollup-linux-x64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.17.2':
- optional: true
-
'@rollup/rollup-linux-x64-musl@4.18.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.17.2':
- optional: true
-
'@rollup/rollup-win32-arm64-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.17.2':
- optional: true
-
'@rollup/rollup-win32-ia32-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.17.2':
- optional: true
-
'@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
@@ -12273,12 +12700,12 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tanstack/virtual-core@3.2.1': {}
+ '@tanstack/virtual-core@3.8.1': {}
- '@tanstack/vue-virtual@3.2.1(vue@3.4.21(typescript@5.4.5))':
+ '@tanstack/vue-virtual@3.8.1(vue@3.4.31(typescript@5.4.5))':
dependencies:
- '@tanstack/virtual-core': 3.2.1
- vue: 3.4.21(typescript@5.4.5)
+ '@tanstack/virtual-core': 3.8.1
+ vue: 3.4.31(typescript@5.4.5)
'@tootallnate/once@2.0.0': {}
@@ -12561,7 +12988,7 @@ snapshots:
'@types/lodash@4.17.0': {}
- '@types/lodash@4.17.5': {}
+ '@types/lodash@4.17.6': {}
'@types/markdown-it@12.2.3':
dependencies:
@@ -12587,7 +13014,7 @@ snapshots:
'@types/mdurl@1.0.5': {}
- '@types/micromatch@4.0.7':
+ '@types/micromatch@4.0.9':
dependencies:
'@types/braces': 3.0.4
@@ -12697,89 +13124,105 @@ snapshots:
'@types/node': 20.12.14
optional: true
- '@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
'@typescript-eslint/scope-manager': 7.6.0
- '@typescript-eslint/type-utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/type-utils': 7.6.0(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.6.0(eslint@9.7.0)(typescript@5.4.5)
'@typescript-eslint/visitor-keys': 7.6.0
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ debug: 4.3.5
+ eslint: 9.7.0
+ graphemer: 1.4.0
+ ignore: 5.3.1
+ natural-compare: 1.4.0
+ semver: 7.6.2
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ optionalDependencies:
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@typescript-eslint/eslint-plugin@8.0.0-alpha.39(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 8.0.0-alpha.39
+ '@typescript-eslint/type-utils': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.39
+ eslint: 9.7.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/scope-manager': 7.6.0
- '@typescript-eslint/types': 7.6.0
- '@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.6.0
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ '@typescript-eslint/scope-manager': 8.0.0-alpha.39
+ '@typescript-eslint/types': 8.0.0-alpha.39
+ '@typescript-eslint/typescript-estree': 8.0.0-alpha.39(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.39
+ debug: 4.3.5
+ eslint: 9.7.0
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@5.62.0':
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
-
'@typescript-eslint/scope-manager@7.6.0':
dependencies:
'@typescript-eslint/types': 7.6.0
'@typescript-eslint/visitor-keys': 7.6.0
- '@typescript-eslint/type-utils@7.6.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/scope-manager@8.0.0-alpha.39':
+ dependencies:
+ '@typescript-eslint/types': 8.0.0-alpha.39
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.39
+
+ '@typescript-eslint/type-utils@7.6.0(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
'@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.6.0(eslint@8.57.0)(typescript@5.4.5)
- debug: 4.3.4(supports-color@8.1.1)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 7.6.0(eslint@9.7.0)(typescript@5.4.5)
+ debug: 4.3.5
+ eslint: 9.7.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
+ optional: true
- '@typescript-eslint/types@5.62.0': {}
-
- '@typescript-eslint/types@7.13.1': {}
-
- '@typescript-eslint/types@7.6.0': {}
-
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)':
+ '@typescript-eslint/type-utils@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
+ '@typescript-eslint/typescript-estree': 8.0.0-alpha.39(typescript@5.4.5)
+ '@typescript-eslint/utils': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
debug: 4.3.5
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.2
- tsutils: 3.21.0(typescript@5.4.5)
+ ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
+ - eslint
- supports-color
+ '@typescript-eslint/types@7.6.0': {}
+
+ '@typescript-eslint/types@8.0.0-alpha.39': {}
+
'@typescript-eslint/typescript-estree@7.6.0(typescript@5.4.5)':
dependencies:
'@typescript-eslint/types': 7.6.0
'@typescript-eslint/visitor-keys': 7.6.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.5
semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
@@ -12787,54 +13230,63 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@8.0.0-alpha.39(typescript@5.4.5)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
- eslint: 8.57.0
- eslint-scope: 5.1.1
+ '@typescript-eslint/types': 8.0.0-alpha.39
+ '@typescript-eslint/visitor-keys': 8.0.0-alpha.39
+ debug: 4.3.5
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
semver: 7.6.2
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ optionalDependencies:
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- - typescript
- '@typescript-eslint/utils@7.6.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/utils@7.6.0(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 7.6.0
'@typescript-eslint/types': 7.6.0
'@typescript-eslint/typescript-estree': 7.6.0(typescript@5.4.5)
- eslint: 8.57.0
- semver: 7.6.0
+ eslint: 9.7.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@5.62.0':
+ '@typescript-eslint/utils@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@typescript-eslint/scope-manager': 8.0.0-alpha.39
+ '@typescript-eslint/types': 8.0.0-alpha.39
+ '@typescript-eslint/typescript-estree': 8.0.0-alpha.39(typescript@5.4.5)
+ eslint: 9.7.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
'@typescript-eslint/visitor-keys@7.6.0':
dependencies:
'@typescript-eslint/types': 7.6.0
eslint-visitor-keys: 3.4.3
- '@ungap/structured-clone@1.2.0': {}
+ '@typescript-eslint/visitor-keys@8.0.0-alpha.39':
+ dependencies:
+ '@typescript-eslint/types': 8.0.0-alpha.39
+ eslint-visitor-keys: 3.4.3
- '@unocss/astro@0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))':
+ '@unocss/astro@0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))':
dependencies:
'@unocss/core': 0.59.4
'@unocss/reset': 0.59.4
- '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))
+ '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))
optionalDependencies:
- vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
transitivePeerDependencies:
- rollup
@@ -12874,7 +13326,7 @@ snapshots:
gzip-size: 6.0.0
sirv: 2.0.4
- '@unocss/postcss@0.59.4(postcss@8.4.38)':
+ '@unocss/postcss@0.59.4(postcss@8.4.39)':
dependencies:
'@unocss/config': 0.59.4
'@unocss/core': 0.59.4
@@ -12882,7 +13334,7 @@ snapshots:
css-tree: 2.3.1
fast-glob: 3.3.2
magic-string: 0.30.10
- postcss: 8.4.38
+ postcss: 8.4.39
'@unocss/preset-attributify@0.59.4':
dependencies:
@@ -12965,7 +13417,7 @@ snapshots:
dependencies:
'@unocss/core': 0.59.4
- '@unocss/vite@0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))':
+ '@unocss/vite@0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
@@ -12977,25 +13429,30 @@ snapshots:
chokidar: 3.6.0
fast-glob: 3.3.2
magic-string: 0.30.10
- vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
transitivePeerDependencies:
- rollup
- '@vite-pwa/vitepress@0.4.0(vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0))':
+ '@vite-pwa/vitepress@0.4.0(vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0))':
dependencies:
- vite-plugin-pwa: 0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
+ vite-plugin-pwa: 0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0)
- '@vitejs/plugin-vue@5.0.4(vite@5.2.10(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.26(typescript@5.4.5))':
- dependencies:
- vite: 5.2.10(@types/node@20.14.7)(terser@5.31.1)
- vue: 3.4.26(typescript@5.4.5)
-
- '@vitejs/plugin-vue@5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.29(typescript@5.4.5))':
+ '@vitejs/plugin-vue@5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.30(typescript@5.4.5))':
dependencies:
vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
- vue: 3.4.29(typescript@5.4.5)
+ vue: 3.4.30(typescript@5.4.5)
- '@vitest/coverage-v8@1.5.3(vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1))':
+ '@vitejs/plugin-vue@5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(vue@3.4.30(typescript@5.4.5))':
+ dependencies:
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
+ vue: 3.4.30(typescript@5.4.5)
+
+ '@vitejs/plugin-vue@5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(vue@3.4.31(typescript@5.4.5))':
+ dependencies:
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
+ vue: 3.4.31(typescript@5.4.5)
+
+ '@vitest/coverage-v8@1.5.3(vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -13010,7 +13467,7 @@ snapshots:
std-env: 3.7.0
strip-literal: 2.1.0
test-exclude: 6.0.0
- vitest: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1)
+ vitest: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2)
transitivePeerDependencies:
- supports-color
@@ -13045,7 +13502,7 @@ snapshots:
pathe: 1.1.2
picocolors: 1.0.0
sirv: 2.0.4
- vitest: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1)
+ vitest: 1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2)
'@vitest/utils@1.5.3':
dependencies:
@@ -13054,219 +13511,167 @@ snapshots:
loupe: 2.3.7
pretty-format: 29.7.0
- '@vue/compat@3.4.21(vue@3.4.21(typescript@5.4.5))':
- dependencies:
- '@babel/parser': 7.24.5
- estree-walker: 2.0.2
- source-map-js: 1.2.0
- vue: 3.4.21(typescript@5.4.5)
-
- '@vue/compiler-core@3.4.21':
+ '@vue/compat@3.4.31(vue@3.4.31(typescript@5.4.5))':
dependencies:
'@babel/parser': 7.24.7
- '@vue/shared': 3.4.21
+ estree-walker: 2.0.2
+ source-map-js: 1.2.0
+ vue: 3.4.31(typescript@5.4.5)
+
+ '@vue/compiler-core@3.4.30':
+ dependencies:
+ '@babel/parser': 7.24.7
+ '@vue/shared': 3.4.30
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-core@3.4.26':
+ '@vue/compiler-core@3.4.31':
dependencies:
'@babel/parser': 7.24.7
- '@vue/shared': 3.4.26
+ '@vue/shared': 3.4.31
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-core@3.4.29':
+ '@vue/compiler-dom@3.4.30':
+ dependencies:
+ '@vue/compiler-core': 3.4.30
+ '@vue/shared': 3.4.30
+
+ '@vue/compiler-dom@3.4.31':
+ dependencies:
+ '@vue/compiler-core': 3.4.31
+ '@vue/shared': 3.4.31
+
+ '@vue/compiler-sfc@3.4.30':
dependencies:
'@babel/parser': 7.24.7
- '@vue/shared': 3.4.29
- entities: 4.5.0
+ '@vue/compiler-core': 3.4.30
+ '@vue/compiler-dom': 3.4.30
+ '@vue/compiler-ssr': 3.4.30
+ '@vue/shared': 3.4.30
estree-walker: 2.0.2
+ magic-string: 0.30.10
+ postcss: 8.4.39
source-map-js: 1.2.0
- '@vue/compiler-dom@3.4.21':
- dependencies:
- '@vue/compiler-core': 3.4.21
- '@vue/shared': 3.4.21
-
- '@vue/compiler-dom@3.4.26':
- dependencies:
- '@vue/compiler-core': 3.4.26
- '@vue/shared': 3.4.26
-
- '@vue/compiler-dom@3.4.29':
- dependencies:
- '@vue/compiler-core': 3.4.29
- '@vue/shared': 3.4.29
-
- '@vue/compiler-sfc@3.4.21':
+ '@vue/compiler-sfc@3.4.31':
dependencies:
'@babel/parser': 7.24.7
- '@vue/compiler-core': 3.4.21
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/compiler-core': 3.4.31
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
estree-walker: 2.0.2
magic-string: 0.30.10
- postcss: 8.4.38
+ postcss: 8.4.39
source-map-js: 1.2.0
- '@vue/compiler-sfc@3.4.26':
+ '@vue/compiler-ssr@3.4.30':
dependencies:
- '@babel/parser': 7.24.5
- '@vue/compiler-core': 3.4.26
- '@vue/compiler-dom': 3.4.26
- '@vue/compiler-ssr': 3.4.26
- '@vue/shared': 3.4.26
- estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.38
- source-map-js: 1.2.0
+ '@vue/compiler-dom': 3.4.30
+ '@vue/shared': 3.4.30
- '@vue/compiler-sfc@3.4.29':
+ '@vue/compiler-ssr@3.4.31':
dependencies:
- '@babel/parser': 7.24.7
- '@vue/compiler-core': 3.4.29
- '@vue/compiler-dom': 3.4.29
- '@vue/compiler-ssr': 3.4.29
- '@vue/shared': 3.4.29
- estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.38
- source-map-js: 1.2.0
+ '@vue/compiler-dom': 3.4.31
+ '@vue/shared': 3.4.31
- '@vue/compiler-ssr@3.4.21':
+ '@vue/devtools-api@6.6.3': {}
+
+ '@vue/devtools-api@7.1.3(vue@3.4.30(typescript@5.4.5))':
dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
-
- '@vue/compiler-ssr@3.4.26':
- dependencies:
- '@vue/compiler-dom': 3.4.26
- '@vue/shared': 3.4.26
-
- '@vue/compiler-ssr@3.4.29':
- dependencies:
- '@vue/compiler-dom': 3.4.29
- '@vue/shared': 3.4.29
-
- '@vue/devtools-api@6.6.1': {}
-
- '@vue/devtools-api@7.1.3(vue@3.4.26(typescript@5.4.5))':
- dependencies:
- '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5))
+ '@vue/devtools-kit': 7.1.3(vue@3.4.30(typescript@5.4.5))
transitivePeerDependencies:
- vue
- '@vue/devtools-kit@7.1.3(vue@3.4.26(typescript@5.4.5))':
+ '@vue/devtools-kit@7.1.3(vue@3.4.30(typescript@5.4.5))':
dependencies:
'@vue/devtools-shared': 7.1.3
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
- vue: 3.4.26(typescript@5.4.5)
+ vue: 3.4.30(typescript@5.4.5)
'@vue/devtools-shared@7.1.3':
dependencies:
rfdc: 1.4.1
- '@vue/reactivity@3.4.21':
+ '@vue/reactivity@3.4.30':
dependencies:
- '@vue/shared': 3.4.21
+ '@vue/shared': 3.4.30
- '@vue/reactivity@3.4.26':
+ '@vue/reactivity@3.4.31':
dependencies:
- '@vue/shared': 3.4.26
+ '@vue/shared': 3.4.31
- '@vue/reactivity@3.4.29':
+ '@vue/runtime-core@3.4.30':
dependencies:
- '@vue/shared': 3.4.29
+ '@vue/reactivity': 3.4.30
+ '@vue/shared': 3.4.30
- '@vue/runtime-core@3.4.21':
+ '@vue/runtime-core@3.4.31':
dependencies:
- '@vue/reactivity': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/reactivity': 3.4.31
+ '@vue/shared': 3.4.31
- '@vue/runtime-core@3.4.26':
+ '@vue/runtime-dom@3.4.30':
dependencies:
- '@vue/reactivity': 3.4.26
- '@vue/shared': 3.4.26
-
- '@vue/runtime-core@3.4.29':
- dependencies:
- '@vue/reactivity': 3.4.29
- '@vue/shared': 3.4.29
-
- '@vue/runtime-dom@3.4.21':
- dependencies:
- '@vue/runtime-core': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/reactivity': 3.4.30
+ '@vue/runtime-core': 3.4.30
+ '@vue/shared': 3.4.30
csstype: 3.1.3
- '@vue/runtime-dom@3.4.26':
+ '@vue/runtime-dom@3.4.31':
dependencies:
- '@vue/runtime-core': 3.4.26
- '@vue/shared': 3.4.26
+ '@vue/reactivity': 3.4.31
+ '@vue/runtime-core': 3.4.31
+ '@vue/shared': 3.4.31
csstype: 3.1.3
- '@vue/runtime-dom@3.4.29':
+ '@vue/server-renderer@3.4.30(vue@3.4.30(typescript@5.4.5))':
dependencies:
- '@vue/reactivity': 3.4.29
- '@vue/runtime-core': 3.4.29
- '@vue/shared': 3.4.29
- csstype: 3.1.3
+ '@vue/compiler-ssr': 3.4.30
+ '@vue/shared': 3.4.30
+ vue: 3.4.30(typescript@5.4.5)
- '@vue/server-renderer@3.4.21(vue@3.4.21(typescript@5.4.5))':
+ '@vue/server-renderer@3.4.31(vue@3.4.31(typescript@5.4.5))':
dependencies:
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
- vue: 3.4.21(typescript@5.4.5)
+ '@vue/compiler-ssr': 3.4.31
+ '@vue/shared': 3.4.31
+ vue: 3.4.31(typescript@5.4.5)
- '@vue/server-renderer@3.4.26(vue@3.4.26(typescript@5.4.5))':
- dependencies:
- '@vue/compiler-ssr': 3.4.26
- '@vue/shared': 3.4.26
- vue: 3.4.26(typescript@5.4.5)
+ '@vue/shared@3.4.30': {}
- '@vue/server-renderer@3.4.29(vue@3.4.29(typescript@5.4.5))':
- dependencies:
- '@vue/compiler-ssr': 3.4.29
- '@vue/shared': 3.4.29
- vue: 3.4.29(typescript@5.4.5)
+ '@vue/shared@3.4.31': {}
- '@vue/shared@3.4.21': {}
-
- '@vue/shared@3.4.26': {}
-
- '@vue/shared@3.4.29': {}
-
- '@vueuse/core@10.9.0(vue@3.4.26(typescript@5.4.5))':
+ '@vueuse/core@10.9.0(vue@3.4.30(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.9.0
- '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
+ '@vueuse/shared': 10.9.0(vue@3.4.30(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.30(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@10.9.0(vue@3.4.29(typescript@5.4.5))':
+ '@vueuse/core@10.9.0(vue@3.4.31(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.9.0
- '@vueuse/shared': 10.9.0(vue@3.4.29(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.29(typescript@5.4.5))
+ '@vueuse/shared': 10.9.0(vue@3.4.31(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.31(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.9.0(axios@1.7.2)(focus-trap@7.5.4)(vue@3.4.26(typescript@5.4.5))':
+ '@vueuse/integrations@10.9.0(axios@1.7.2)(focus-trap@7.5.4)(vue@3.4.30(typescript@5.4.5))':
dependencies:
- '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5))
- '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
+ '@vueuse/core': 10.9.0(vue@3.4.30(typescript@5.4.5))
+ '@vueuse/shared': 10.9.0(vue@3.4.30(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.30(typescript@5.4.5))
optionalDependencies:
axios: 1.7.2(debug@4.3.5)
focus-trap: 7.5.4
@@ -13276,16 +13681,16 @@ snapshots:
'@vueuse/metadata@10.9.0': {}
- '@vueuse/shared@10.9.0(vue@3.4.26(typescript@5.4.5))':
+ '@vueuse/shared@10.9.0(vue@3.4.30(typescript@5.4.5))':
dependencies:
- vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.30(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@10.9.0(vue@3.4.29(typescript@5.4.5))':
+ '@vueuse/shared@10.9.0(vue@3.4.31(typescript@5.4.5))':
dependencies:
- vue-demi: 0.14.7(vue@3.4.29(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.31(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -13401,9 +13806,9 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
- '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0))':
+ '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0))':
dependencies:
- webpack: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ webpack: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)
'@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))':
@@ -13423,28 +13828,29 @@ snapshots:
'@xtuc/long@4.2.2': {}
- '@zenuml/core@3.21.2(typescript@5.4.5)':
+ '@zenuml/core@3.23.28(typescript@5.4.5)':
dependencies:
- '@headlessui-float/vue': 0.11.4(vue@3.4.21(typescript@5.4.5))
- '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.3)
- '@headlessui/vue': 1.7.19(vue@3.4.21(typescript@5.4.5))
+ '@headlessui-float/vue': 0.14.0(@headlessui/vue@1.7.22(vue@3.4.31(typescript@5.4.5)))(vue@3.4.31(typescript@5.4.5))
+ '@headlessui/tailwindcss': 0.2.1(tailwindcss@3.4.4)
+ '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.4.5))
'@types/assert': 1.5.10
'@types/ramda': 0.28.25
- '@vue/compat': 3.4.21(vue@3.4.21(typescript@5.4.5))
+ '@vue/compat': 3.4.31(vue@3.4.31(typescript@5.4.5))
antlr4: 4.11.0
color-string: 1.9.1
dom-to-image-more: 2.16.0
+ dompurify: 3.1.6
file-saver: 2.0.5
highlight.js: 10.7.3
html-to-image: 1.11.11
lodash: 4.17.21
marked: 4.3.0
- pino: 8.20.0
- postcss: 8.4.38
+ pino: 8.21.0
+ postcss: 8.4.39
ramda: 0.28.0
- tailwindcss: 3.4.3
- vue: 3.4.21(typescript@5.4.5)
- vuex: 4.1.0(vue@3.4.21(typescript@5.4.5))
+ tailwindcss: 3.4.4
+ vue: 3.4.31(typescript@5.4.5)
+ vuex: 4.1.0(vue@3.4.31(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- ts-node
@@ -13469,19 +13875,15 @@ snapshots:
dependencies:
acorn: 8.11.3
- acorn-jsx@5.3.2(acorn@8.11.3):
+ acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
- acorn: 8.11.3
-
- acorn-jsx@5.3.2(acorn@8.12.0):
- dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
acorn-walk@8.3.2: {}
acorn@8.11.3: {}
- acorn@8.12.0: {}
+ acorn@8.12.1: {}
agent-base@6.0.2:
dependencies:
@@ -13532,12 +13934,12 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- ajv@8.16.0:
+ ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
+ fast-uri: 3.0.1
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- uri-js: 4.4.1
algoliasearch@4.23.3:
dependencies:
@@ -13711,12 +14113,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)):
+ babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.21.5)):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.7
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.91.0(esbuild@0.20.2)
+ webpack: 5.91.0(esbuild@0.21.5)
babel-plugin-istanbul@6.1.1:
dependencies:
@@ -13735,29 +14137,21 @@ snapshots:
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.4):
- dependencies:
- '@babel/compat-data': 7.24.7
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7):
dependencies:
- '@babel/compat-data': 7.24.7
+ '@babel/compat-data': 7.24.8
'@babel/core': 7.24.7
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.8):
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
- core-js-compat: 3.37.1
+ '@babel/compat-data': 7.24.8
+ '@babel/core': 7.24.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.8)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -13769,10 +14163,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.8):
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
+ '@babel/core': 7.24.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.8)
+ core-js-compat: 3.37.1
transitivePeerDependencies:
- supports-color
@@ -13783,6 +14178,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.8):
+ dependencies:
+ '@babel/core': 7.24.8
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.8)
+ transitivePeerDependencies:
+ - supports-color
+
babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.7):
dependencies:
'@babel/core': 7.24.7
@@ -14208,6 +14610,14 @@ snapshots:
has-own-prop: 2.0.0
repeat-string: 1.6.1
+ comment-json@4.2.4:
+ dependencies:
+ array-timsort: 1.0.3
+ core-util-is: 1.0.3
+ esprima: 4.0.1
+ has-own-prop: 2.0.0
+ repeat-string: 1.6.1
+
comment-parser@1.4.1: {}
common-path-prefix@3.0.0: {}
@@ -14281,10 +14691,6 @@ snapshots:
cookie@0.6.0: {}
- core-js-compat@3.36.0:
- dependencies:
- browserslist: 4.23.0
-
core-js-compat@3.37.1:
dependencies:
browserslist: 4.23.1
@@ -14363,12 +14769,26 @@ snapshots:
dependencies:
type-fest: 1.4.0
+ cspell-config-lib@8.10.4:
+ dependencies:
+ '@cspell/cspell-types': 8.10.4
+ comment-json: 4.2.4
+ yaml: 2.4.5
+
cspell-config-lib@8.7.0:
dependencies:
'@cspell/cspell-types': 8.7.0
comment-json: 4.2.3
yaml: 2.4.5
+ cspell-dictionary@8.10.4:
+ dependencies:
+ '@cspell/cspell-pipe': 8.10.4
+ '@cspell/cspell-types': 8.10.4
+ cspell-trie-lib: 8.10.4
+ fast-equals: 5.0.1
+ gensequence: 7.0.0
+
cspell-dictionary@8.7.0:
dependencies:
'@cspell/cspell-pipe': 8.7.0
@@ -14382,19 +14802,60 @@ snapshots:
cspell-glob: 8.7.0
find-up-simple: 1.0.0
+ cspell-glob@8.10.4:
+ dependencies:
+ '@cspell/url': 8.10.4
+ micromatch: 4.0.7
+
cspell-glob@8.7.0:
dependencies:
micromatch: 4.0.7
+ cspell-grammar@8.10.4:
+ dependencies:
+ '@cspell/cspell-pipe': 8.10.4
+ '@cspell/cspell-types': 8.10.4
+
cspell-grammar@8.7.0:
dependencies:
'@cspell/cspell-pipe': 8.7.0
'@cspell/cspell-types': 8.7.0
+ cspell-io@8.10.4:
+ dependencies:
+ '@cspell/cspell-service-bus': 8.10.4
+ '@cspell/url': 8.10.4
+
cspell-io@8.7.0:
dependencies:
'@cspell/cspell-service-bus': 8.7.0
+ cspell-lib@8.10.4:
+ dependencies:
+ '@cspell/cspell-bundled-dicts': 8.10.4
+ '@cspell/cspell-pipe': 8.10.4
+ '@cspell/cspell-resolver': 8.10.4
+ '@cspell/cspell-types': 8.10.4
+ '@cspell/dynamic-import': 8.10.4
+ '@cspell/strong-weak-map': 8.10.4
+ '@cspell/url': 8.10.4
+ clear-module: 4.1.2
+ comment-json: 4.2.4
+ cspell-config-lib: 8.10.4
+ cspell-dictionary: 8.10.4
+ cspell-glob: 8.10.4
+ cspell-grammar: 8.10.4
+ cspell-io: 8.10.4
+ cspell-trie-lib: 8.10.4
+ env-paths: 3.0.0
+ fast-equals: 5.0.1
+ gensequence: 7.0.0
+ import-fresh: 3.3.0
+ resolve-from: 5.0.0
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-uri: 3.0.8
+ xdg-basedir: 5.1.0
+
cspell-lib@8.7.0:
dependencies:
'@cspell/cspell-bundled-dicts': 8.7.0
@@ -14419,6 +14880,12 @@ snapshots:
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
+ cspell-trie-lib@8.10.4:
+ dependencies:
+ '@cspell/cspell-pipe': 8.10.4
+ '@cspell/cspell-types': 8.10.4
+ gensequence: 7.0.0
+
cspell-trie-lib@8.7.0:
dependencies:
'@cspell/cspell-pipe': 8.7.0
@@ -14526,12 +14993,12 @@ snapshots:
untildify: 4.0.0
yauzl: 2.10.0
- cytoscape-cose-bilkent@4.1.0(cytoscape@3.29.2):
+ cytoscape-cose-bilkent@4.1.0(cytoscape@3.29.3):
dependencies:
cose-base: 1.0.3
- cytoscape: 3.29.2
+ cytoscape: 3.29.3
- cytoscape@3.29.2: {}
+ cytoscape@3.29.3: {}
d3-array@2.12.1:
dependencies:
@@ -14861,10 +15328,6 @@ snapshots:
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
- doctrine@3.0.0:
- dependencies:
- esutils: 2.0.3
-
dom-serializer@2.0.0:
dependencies:
domelementtype: 2.3.0
@@ -14879,7 +15342,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.1.5: {}
+ dompurify@3.1.6: {}
domutils@3.1.0:
dependencies:
@@ -14948,6 +15411,8 @@ snapshots:
entities@4.5.0: {}
+ env-paths@3.0.0: {}
+
envinfo@7.10.0: {}
error-ex@1.3.2:
@@ -14987,7 +15452,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.1
+ object-inspect: 1.13.2
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.2
@@ -15011,6 +15476,8 @@ snapshots:
es-module-lexer@1.4.1: {}
+ es-module-lexer@1.5.4: {}
+
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
@@ -15108,6 +15575,32 @@ snapshots:
'@esbuild/win32-ia32': 0.20.2
'@esbuild/win32-x64': 0.20.2
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
escalade@3.1.2: {}
escape-html@1.0.3: {}
@@ -15128,77 +15621,79 @@ snapshots:
optionalDependencies:
source-map: 0.1.43
- eslint-config-prettier@9.1.0(eslint@8.57.0):
+ eslint-config-prettier@9.1.0(eslint@9.7.0):
dependencies:
- eslint: 8.57.0
+ eslint: 9.7.0
- eslint-plugin-cypress@2.15.2(eslint@8.57.0):
+ eslint-plugin-cypress@3.3.0(eslint@9.7.0):
dependencies:
- eslint: 8.57.0
+ eslint: 9.7.0
globals: 13.24.0
eslint-plugin-html@8.1.1:
dependencies:
htmlparser2: 9.1.0
- eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(jest@29.7.0(@types/node@20.12.14))(typescript@5.4.5):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.6.0(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(jest@29.7.0(@types/node@20.12.14))(typescript@5.4.5):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
- eslint: 8.57.0
+ '@typescript-eslint/utils': 7.6.0(eslint@9.7.0)(typescript@5.4.5)
+ eslint: 9.7.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@7.6.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/eslint-plugin': 7.6.0(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5)
jest: 29.7.0(@types/node@20.12.14)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsdoc@48.2.12(eslint@8.57.0):
+ eslint-plugin-jsdoc@48.7.0(eslint@9.7.0):
dependencies:
- '@es-joy/jsdoccomment': 0.43.1
+ '@es-joy/jsdoccomment': 0.46.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.3.5
escape-string-regexp: 4.0.0
- eslint: 8.57.0
- esquery: 1.5.0
+ eslint: 9.7.0
+ esquery: 1.6.0
+ parse-imports: 2.1.1
semver: 7.6.2
spdx-expression-parse: 4.0.0
+ synckit: 0.9.1
transitivePeerDependencies:
- supports-color
- eslint-plugin-json@3.1.0:
+ eslint-plugin-json@4.0.0:
dependencies:
lodash: 4.17.21
vscode-json-languageservice: 4.2.1
- eslint-plugin-lodash@7.4.0(eslint@8.57.0):
+ eslint-plugin-lodash@8.0.0(eslint@9.7.0):
dependencies:
- eslint: 8.57.0
+ eslint: 9.7.0
lodash: 4.17.21
- eslint-plugin-markdown@4.0.1(eslint@8.57.0):
+ eslint-plugin-markdown@5.1.0(eslint@9.7.0):
dependencies:
- eslint: 8.57.0
+ eslint: 9.7.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
eslint-plugin-no-only-tests@3.1.0: {}
- eslint-plugin-tsdoc@0.2.17:
+ eslint-plugin-tsdoc@0.3.0:
dependencies:
- '@microsoft/tsdoc': 0.14.2
- '@microsoft/tsdoc-config': 0.16.2
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
- eslint-plugin-unicorn@51.0.1(eslint@8.57.0):
+ eslint-plugin-unicorn@54.0.0(eslint@9.7.0):
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint/eslintrc': 2.1.4
+ '@babel/helper-validator-identifier': 7.24.7
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint/eslintrc': 3.1.0
ci-info: 4.0.0
clean-regexp: 1.0.0
- core-js-compat: 3.36.0
- eslint: 8.57.0
+ core-js-compat: 3.37.1
+ eslint: 9.7.0
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -15207,7 +15702,7 @@ snapshots:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.6.0
+ semver: 7.6.2
strip-indent: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -15217,7 +15712,7 @@ snapshots:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.2.2:
+ eslint-scope@8.0.2:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
@@ -15226,44 +15721,40 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@8.57.0:
+ eslint@9.7.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
- '@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.0
- '@humanwhocodes/config-array': 0.11.14
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/regexpp': 4.11.0
+ '@eslint/config-array': 0.17.0
+ '@eslint/eslintrc': 3.1.0
+ '@eslint/js': 9.7.0
'@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.3.0
'@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@8.1.1)
- doctrine: 3.0.0
+ debug: 4.3.5
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.5.0
+ eslint-scope: 8.0.2
+ eslint-visitor-keys: 4.0.0
+ espree: 10.1.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
@@ -15278,16 +15769,10 @@ snapshots:
espree@10.1.0:
dependencies:
- acorn: 8.12.0
- acorn-jsx: 5.3.2(acorn@8.12.0)
+ acorn: 8.12.1
+ acorn-jsx: 5.3.2(acorn@8.12.1)
eslint-visitor-keys: 4.0.0
- espree@9.6.1:
- dependencies:
- acorn: 8.11.3
- acorn-jsx: 5.3.2(acorn@8.11.3)
- eslint-visitor-keys: 3.4.3
-
esprima@1.1.1: {}
esprima@4.0.1: {}
@@ -15296,6 +15781,10 @@ snapshots:
dependencies:
estraverse: 5.3.0
+ esquery@1.6.0:
+ dependencies:
+ estraverse: 5.3.0
+
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -15526,6 +16015,8 @@ snapshots:
fast-safe-stringify@2.1.1: {}
+ fast-uri@3.0.1: {}
+
fastest-levenshtein@1.0.16: {}
fastestsmallesttextencoderdecoder@1.0.22: {}
@@ -15590,10 +16081,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- file-entry-cache@6.0.1:
- dependencies:
- flat-cache: 3.2.0
-
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
@@ -15671,12 +16158,6 @@ snapshots:
locate-path: 7.2.0
path-exists: 5.0.0
- flat-cache@3.2.0:
- dependencies:
- flatted: 3.3.1
- keyv: 4.5.4
- rimraf: 3.0.2
-
flat-cache@4.0.1:
dependencies:
flatted: 3.3.1
@@ -15860,11 +16341,11 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.2:
+ glob@10.4.3:
dependencies:
foreground-child: 3.2.1
- jackspeak: 3.4.0
- minimatch: 9.0.4
+ jackspeak: 3.4.1
+ minimatch: 9.0.5
minipass: 7.1.2
package-json-from-dist: 1.0.0
path-scurry: 1.11.1
@@ -15900,6 +16381,10 @@ snapshots:
dependencies:
type-fest: 0.20.2
+ globals@14.0.0: {}
+
+ globals@15.6.0: {}
+
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
@@ -15922,7 +16407,7 @@ snapshots:
merge2: 1.4.1
slash: 4.0.0
- globby@14.0.1:
+ globby@14.0.2:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
@@ -16163,6 +16648,8 @@ snapshots:
import-meta-resolve@4.0.0: {}
+ import-meta-resolve@4.1.0: {}
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -16448,7 +16935,7 @@ snapshots:
app-path: 3.3.0
plist: 3.1.0
- jackspeak@3.4.0:
+ jackspeak@3.4.1:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
@@ -16934,7 +17421,7 @@ snapshots:
junk@4.0.1: {}
- katex@0.16.10:
+ katex@0.16.11:
dependencies:
commander: 8.3.0
@@ -17123,7 +17610,7 @@ snapshots:
lowercase-keys@2.0.0: {}
- lru-cache@10.2.2: {}
+ lru-cache@10.4.0: {}
lru-cache@5.1.1:
dependencies:
@@ -17183,6 +17670,8 @@ snapshots:
markdown-table@3.0.3: {}
+ marked@13.0.2: {}
+
marked@4.3.0: {}
mdast-builder@1.1.1:
@@ -17592,6 +18081,10 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimist@1.2.8: {}
minipass@7.1.2: {}
@@ -17608,7 +18101,7 @@ snapshots:
mlly@1.6.1:
dependencies:
- acorn: 8.12.0
+ acorn: 8.12.1
pathe: 1.1.2
pkg-types: 1.1.0
ufo: 1.5.3
@@ -17742,6 +18235,8 @@ snapshots:
object-inspect@1.13.1: {}
+ object-inspect@1.13.2: {}
+
object-keys@1.1.1: {}
object.assign@4.1.5:
@@ -17787,14 +18282,14 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
ospath@1.2.2: {}
@@ -17822,7 +18317,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-limit@5.0.0:
dependencies:
@@ -17895,6 +18390,11 @@ snapshots:
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
+ parse-imports@2.1.1:
+ dependencies:
+ es-module-lexer: 1.5.4
+ slashes: 3.0.12
+
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.24.7
@@ -17928,7 +18428,7 @@ snapshots:
path-scurry@1.11.1:
dependencies:
- lru-cache: 10.2.2
+ lru-cache: 10.4.0
minipass: 7.1.2
path-to-regexp@0.1.7: {}
@@ -17961,7 +18461,7 @@ snapshots:
pify@2.3.0: {}
- pino-abstract-transport@1.1.0:
+ pino-abstract-transport@1.2.0:
dependencies:
readable-stream: 4.5.2
split2: 4.2.0
@@ -17980,19 +18480,19 @@ snapshots:
quick-format-unescaped: 4.0.4
sonic-boom: 1.4.1
- pino@8.20.0:
+ pino@8.21.0:
dependencies:
atomic-sleep: 1.0.0
fast-redact: 3.5.0
on-exit-leak-free: 2.1.2
- pino-abstract-transport: 1.1.0
+ pino-abstract-transport: 1.2.0
pino-std-serializers: 6.2.2
process-warning: 3.0.0
quick-format-unescaped: 4.0.4
real-require: 0.2.0
safe-stable-stringify: 2.4.3
sonic-boom: 3.8.1
- thread-stream: 2.4.1
+ thread-stream: 2.7.0
pirates@4.0.6: {}
@@ -18036,31 +18536,31 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-import@15.1.0(postcss@8.4.38):
+ postcss-import@15.1.0(postcss@8.4.39):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.39
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
- postcss-js@4.0.1(postcss@8.4.38):
+ postcss-js@4.0.1(postcss@8.4.39):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.38
+ postcss: 8.4.39
- postcss-load-config@4.0.2(postcss@8.4.38):
+ postcss-load-config@4.0.2(postcss@8.4.39):
dependencies:
lilconfig: 3.1.2
yaml: 2.4.5
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.39
- postcss-nested@6.0.1(postcss@8.4.38):
+ postcss-nested@6.0.1(postcss@8.4.39):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.39
+ postcss-selector-parser: 6.1.0
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -18073,6 +18573,12 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
+ postcss@8.4.39:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
preact@10.21.0: {}
prelude-ls@1.2.1: {}
@@ -18237,7 +18743,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.7
+ '@babel/runtime': 7.24.8
regexp-tree@0.1.27: {}
@@ -18341,11 +18847,6 @@ snapshots:
resolve.exports@2.0.2: {}
- resolve@1.19.0:
- dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
-
resolve@1.22.4:
dependencies:
is-core-module: 2.13.0
@@ -18390,9 +18891,9 @@ snapshots:
dependencies:
glob: 7.2.3
- rimraf@5.0.7:
+ rimraf@5.0.8:
dependencies:
- glob: 10.4.2
+ glob: 10.4.3
robust-predicates@3.0.2: {}
@@ -18409,28 +18910,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.17.2:
- dependencies:
- '@types/estree': 1.0.5
- optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.17.2
- '@rollup/rollup-android-arm64': 4.17.2
- '@rollup/rollup-darwin-arm64': 4.17.2
- '@rollup/rollup-darwin-x64': 4.17.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
- '@rollup/rollup-linux-arm-musleabihf': 4.17.2
- '@rollup/rollup-linux-arm64-gnu': 4.17.2
- '@rollup/rollup-linux-arm64-musl': 4.17.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
- '@rollup/rollup-linux-riscv64-gnu': 4.17.2
- '@rollup/rollup-linux-s390x-gnu': 4.17.2
- '@rollup/rollup-linux-x64-gnu': 4.17.2
- '@rollup/rollup-linux-x64-musl': 4.17.2
- '@rollup/rollup-win32-arm64-msvc': 4.17.2
- '@rollup/rollup-win32-ia32-msvc': 4.17.2
- '@rollup/rollup-win32-x64-msvc': 4.17.2
- fsevents: 2.3.3
-
rollup@4.18.0:
dependencies:
'@types/estree': 1.0.5
@@ -18686,6 +19165,8 @@ snapshots:
slash@5.1.0: {}
+ slashes@3.0.12: {}
+
slice-ansi@3.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -18973,7 +19454,7 @@ snapshots:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.4.2
+ glob: 10.4.3
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -18997,14 +19478,14 @@ snapshots:
symbol-tree@3.2.4: {}
- synckit@0.9.0:
+ synckit@0.9.1:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.2
+ tslib: 2.6.3
tabbable@6.2.0: {}
- tailwindcss@3.4.3:
+ tailwindcss@3.4.4:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -19020,12 +19501,12 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)
- postcss-nested: 6.0.1(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
+ postcss: 8.4.39
+ postcss-import: 15.1.0(postcss@8.4.39)
+ postcss-js: 4.0.1(postcss@8.4.39)
+ postcss-load-config: 4.0.2(postcss@8.4.39)
+ postcss-nested: 6.0.1(postcss@8.4.39)
+ postcss-selector-parser: 6.1.0
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
@@ -19056,27 +19537,27 @@ snapshots:
ansi-escapes: 4.3.2
iterm2-version: 4.2.0
- terser-webpack-plugin@5.3.10(esbuild@0.20.2)(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)):
+ terser-webpack-plugin@5.3.10(esbuild@0.21.5)(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.29.2
- webpack: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ webpack: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
optionalDependencies:
- esbuild: 0.20.2
+ esbuild: 0.21.5
- terser-webpack-plugin@5.3.10(esbuild@0.20.2)(webpack@5.91.0(esbuild@0.20.2)):
+ terser-webpack-plugin@5.3.10(esbuild@0.21.5)(webpack@5.91.0(esbuild@0.21.5)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.29.2
- webpack: 5.91.0(esbuild@0.20.2)
+ webpack: 5.91.0(esbuild@0.21.5)
optionalDependencies:
- esbuild: 0.20.2
+ esbuild: 0.21.5
terser@5.29.2:
dependencies:
@@ -19088,7 +19569,15 @@ snapshots:
terser@5.31.1:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.0
+ acorn: 8.12.1
+ commander: 2.20.3
+ source-map-support: 0.5.21
+ optional: true
+
+ terser@5.31.2:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -19108,7 +19597,7 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thread-stream@2.4.1:
+ thread-stream@2.7.0:
dependencies:
real-require: 0.2.0
@@ -19180,14 +19669,9 @@ snapshots:
ts-toolbelt@6.15.5: {}
- tslib@1.14.1: {}
-
tslib@2.6.2: {}
- tsutils@3.21.0(typescript@5.4.5):
- dependencies:
- tslib: 1.14.1
- typescript: 5.4.5
+ tslib@2.6.3: {}
tsx@4.7.3:
dependencies:
@@ -19278,6 +19762,17 @@ snapshots:
shiki: 0.14.7
typescript: 5.4.5
+ typescript-eslint@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.0.0-alpha.39(@typescript-eslint/parser@8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5))(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 8.0.0-alpha.39(eslint@9.7.0)(typescript@5.4.5)
+ optionalDependencies:
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+
typescript@5.4.5: {}
uc.micro@1.0.6: {}
@@ -19369,13 +19864,13 @@ snapshots:
universalify@2.0.1: {}
- unocss@0.59.4(postcss@8.4.38)(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1)):
+ unocss@0.59.4(postcss@8.4.39)(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2)):
dependencies:
- '@unocss/astro': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))
+ '@unocss/astro': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))
'@unocss/cli': 0.59.4(rollup@2.79.1)
'@unocss/core': 0.59.4
'@unocss/extractor-arbitrary-variants': 0.59.4
- '@unocss/postcss': 0.59.4(postcss@8.4.38)
+ '@unocss/postcss': 0.59.4(postcss@8.4.39)
'@unocss/preset-attributify': 0.59.4
'@unocss/preset-icons': 0.59.4
'@unocss/preset-mini': 0.59.4
@@ -19390,9 +19885,9 @@ snapshots:
'@unocss/transformer-compile-class': 0.59.4
'@unocss/transformer-directives': 0.59.4
'@unocss/transformer-variant-group': 0.59.4
- '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))
+ '@unocss/vite': 0.59.4(rollup@2.79.1)(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))
optionalDependencies:
- vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
transitivePeerDependencies:
- postcss
- rollup
@@ -19400,7 +19895,7 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-vue-components@0.26.0(@babel/parser@7.24.7)(rollup@2.79.1)(vue@3.4.29(typescript@5.4.5)):
+ unplugin-vue-components@0.26.0(@babel/parser@7.24.8)(rollup@2.79.1)(vue@3.4.31(typescript@5.4.5)):
dependencies:
'@antfu/utils': 0.7.6
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
@@ -19412,9 +19907,9 @@ snapshots:
minimatch: 9.0.3
resolve: 1.22.4
unplugin: 1.4.0
- vue: 3.4.29(typescript@5.4.5)
+ vue: 3.4.31(typescript@5.4.5)
optionalDependencies:
- '@babel/parser': 7.24.7
+ '@babel/parser': 7.24.8
transitivePeerDependencies:
- rollup
- supports-color
@@ -19489,13 +19984,13 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-node@1.5.3(@types/node@20.12.14)(terser@5.31.1):
+ vite-node@1.5.3(@types/node@20.12.14)(terser@5.31.2):
dependencies:
cac: 6.7.14
debug: 4.3.4(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.2.13(@types/node@20.12.14)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.12.14)(terser@5.31.2)
transitivePeerDependencies:
- '@types/node'
- less
@@ -19506,7 +20001,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-istanbul@6.0.2(vite@5.2.13(@types/node@20.12.14)(terser@5.31.1)):
+ vite-plugin-istanbul@6.0.2(vite@5.2.13(@types/node@20.12.14)(terser@5.31.2)):
dependencies:
'@istanbuljs/load-nyc-config': 1.1.0
espree: 10.1.0
@@ -19514,32 +20009,22 @@ snapshots:
picocolors: 1.0.1
source-map: 0.7.4
test-exclude: 6.0.0
- vite: 5.2.13(@types/node@20.12.14)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.12.14)(terser@5.31.2)
transitivePeerDependencies:
- supports-color
- vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0):
+ vite-plugin-pwa@0.19.8(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(workbox-build@7.1.0(@types/babel__core@7.20.5))(workbox-window@7.0.0):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
fast-glob: 3.3.2
pretty-bytes: 6.1.1
- vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
workbox-build: 7.1.0(@types/babel__core@7.20.5)
workbox-window: 7.0.0
transitivePeerDependencies:
- supports-color
- vite@5.2.10(@types/node@20.14.7)(terser@5.31.1):
- dependencies:
- esbuild: 0.20.2
- postcss: 8.4.38
- rollup: 4.17.2
- optionalDependencies:
- '@types/node': 20.14.7
- fsevents: 2.3.3
- terser: 5.31.1
-
- vite@5.2.13(@types/node@20.12.14)(terser@5.31.1):
+ vite@5.2.13(@types/node@20.12.14)(terser@5.31.2):
dependencies:
esbuild: 0.20.2
postcss: 8.4.38
@@ -19547,7 +20032,7 @@ snapshots:
optionalDependencies:
'@types/node': 20.12.14
fsevents: 2.3.3
- terser: 5.31.1
+ terser: 5.31.2
vite@5.2.13(@types/node@20.14.7)(terser@5.31.1):
dependencies:
@@ -19559,35 +20044,45 @@ snapshots:
fsevents: 2.3.3
terser: 5.31.1
- vitepress-plugin-search@1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5))(vue@3.4.26(typescript@5.4.5)):
+ vite@5.2.13(@types/node@20.14.7)(terser@5.31.2):
+ dependencies:
+ esbuild: 0.20.2
+ postcss: 8.4.38
+ rollup: 4.18.0
+ optionalDependencies:
+ '@types/node': 20.14.7
+ fsevents: 2.3.3
+ terser: 5.31.2
+
+ vitepress-plugin-search@1.0.4-alpha.22(flexsearch@0.7.43)(vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5))(vue@3.4.30(typescript@5.4.5)):
dependencies:
'@types/flexsearch': 0.7.3
'@types/markdown-it': 12.2.3
flexsearch: 0.7.43
glob-to-regexp: 0.4.1
markdown-it: 13.0.1
- vitepress: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5)
- vue: 3.4.26(typescript@5.4.5)
+ vitepress: 1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5)
+ vue: 3.4.30(typescript@5.4.5)
- vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.38)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5):
+ vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.1)(typescript@5.4.5):
dependencies:
'@docsearch/css': 3.6.0
'@docsearch/js': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)
'@shikijs/core': 1.4.0
'@shikijs/transformers': 1.4.0
'@types/markdown-it': 14.0.1
- '@vitejs/plugin-vue': 5.0.4(vite@5.2.10(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.26(typescript@5.4.5))
- '@vue/devtools-api': 7.1.3(vue@3.4.26(typescript@5.4.5))
- '@vueuse/core': 10.9.0(vue@3.4.26(typescript@5.4.5))
- '@vueuse/integrations': 10.9.0(axios@1.7.2)(focus-trap@7.5.4)(vue@3.4.26(typescript@5.4.5))
+ '@vitejs/plugin-vue': 5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.1))(vue@3.4.30(typescript@5.4.5))
+ '@vue/devtools-api': 7.1.3(vue@3.4.30(typescript@5.4.5))
+ '@vueuse/core': 10.9.0(vue@3.4.30(typescript@5.4.5))
+ '@vueuse/integrations': 10.9.0(axios@1.7.2)(focus-trap@7.5.4)(vue@3.4.30(typescript@5.4.5))
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 6.3.0
shiki: 1.4.0
- vite: 5.2.10(@types/node@20.14.7)(terser@5.31.1)
- vue: 3.4.26(typescript@5.4.5)
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.1)
+ vue: 3.4.30(typescript@5.4.5)
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.39
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -19615,7 +20110,53 @@ snapshots:
- typescript
- universal-cookie
- vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.1):
+ vitepress@1.1.4(@algolia/client-search@4.23.3)(@types/node@20.14.7)(axios@1.7.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.31.2)(typescript@5.4.5):
+ dependencies:
+ '@docsearch/css': 3.6.0
+ '@docsearch/js': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)
+ '@shikijs/core': 1.4.0
+ '@shikijs/transformers': 1.4.0
+ '@types/markdown-it': 14.0.1
+ '@vitejs/plugin-vue': 5.0.5(vite@5.2.13(@types/node@20.14.7)(terser@5.31.2))(vue@3.4.30(typescript@5.4.5))
+ '@vue/devtools-api': 7.1.3(vue@3.4.30(typescript@5.4.5))
+ '@vueuse/core': 10.9.0(vue@3.4.30(typescript@5.4.5))
+ '@vueuse/integrations': 10.9.0(axios@1.7.2)(focus-trap@7.5.4)(vue@3.4.30(typescript@5.4.5))
+ focus-trap: 7.5.4
+ mark.js: 8.11.1
+ minisearch: 6.3.0
+ shiki: 1.4.0
+ vite: 5.2.13(@types/node@20.14.7)(terser@5.31.2)
+ vue: 3.4.30(typescript@5.4.5)
+ optionalDependencies:
+ postcss: 8.4.39
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - '@types/node'
+ - '@types/react'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - change-case
+ - drauu
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - less
+ - lightningcss
+ - nprogress
+ - qrcode
+ - react
+ - react-dom
+ - sass
+ - search-insights
+ - sortablejs
+ - stylus
+ - sugarss
+ - terser
+ - typescript
+ - universal-cookie
+
+ vitest@1.5.3(@types/node@20.12.14)(@vitest/ui@1.5.3)(jsdom@24.0.0)(terser@5.31.2):
dependencies:
'@vitest/expect': 1.5.3
'@vitest/runner': 1.5.3
@@ -19634,8 +20175,8 @@ snapshots:
strip-literal: 2.1.0
tinybench: 2.8.0
tinypool: 0.8.4
- vite: 5.2.13(@types/node@20.12.14)(terser@5.31.1)
- vite-node: 1.5.3(@types/node@20.12.14)(terser@5.31.1)
+ vite: 5.2.13(@types/node@20.12.14)(terser@5.31.2)
+ vite-node: 1.5.3(@types/node@20.12.14)(terser@5.31.2)
why-is-node-running: 2.2.2
optionalDependencies:
'@types/node': 20.12.14
@@ -19654,7 +20195,7 @@ snapshots:
dependencies:
jsonc-parser: 3.2.1
vscode-languageserver-textdocument: 1.0.11
- vscode-languageserver-types: 3.17.3
+ vscode-languageserver-types: 3.17.5
vscode-nls: 5.2.0
vscode-uri: 3.0.8
@@ -19667,8 +20208,6 @@ snapshots:
vscode-languageserver-textdocument@1.0.11: {}
- vscode-languageserver-types@3.17.3: {}
-
vscode-languageserver-types@3.17.5: {}
vscode-languageserver@9.0.1:
@@ -19683,52 +20222,42 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-demi@0.13.11(vue@3.4.21(typescript@5.4.5)):
+ vue-demi@0.14.7(vue@3.4.30(typescript@5.4.5)):
dependencies:
- vue: 3.4.21(typescript@5.4.5)
+ vue: 3.4.30(typescript@5.4.5)
- vue-demi@0.14.7(vue@3.4.26(typescript@5.4.5)):
+ vue-demi@0.14.7(vue@3.4.31(typescript@5.4.5)):
dependencies:
- vue: 3.4.26(typescript@5.4.5)
+ vue: 3.4.31(typescript@5.4.5)
- vue-demi@0.14.7(vue@3.4.29(typescript@5.4.5)):
+ vue-demi@0.14.8(vue@3.4.31(typescript@5.4.5)):
dependencies:
- vue: 3.4.29(typescript@5.4.5)
+ vue: 3.4.31(typescript@5.4.5)
- vue@3.4.21(typescript@5.4.5):
+ vue@3.4.30(typescript@5.4.5):
dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-sfc': 3.4.21
- '@vue/runtime-dom': 3.4.21
- '@vue/server-renderer': 3.4.21(vue@3.4.21(typescript@5.4.5))
- '@vue/shared': 3.4.21
+ '@vue/compiler-dom': 3.4.30
+ '@vue/compiler-sfc': 3.4.30
+ '@vue/runtime-dom': 3.4.30
+ '@vue/server-renderer': 3.4.30(vue@3.4.30(typescript@5.4.5))
+ '@vue/shared': 3.4.30
optionalDependencies:
typescript: 5.4.5
- vue@3.4.26(typescript@5.4.5):
+ vue@3.4.31(typescript@5.4.5):
dependencies:
- '@vue/compiler-dom': 3.4.26
- '@vue/compiler-sfc': 3.4.26
- '@vue/runtime-dom': 3.4.26
- '@vue/server-renderer': 3.4.26(vue@3.4.26(typescript@5.4.5))
- '@vue/shared': 3.4.26
+ '@vue/compiler-dom': 3.4.31
+ '@vue/compiler-sfc': 3.4.31
+ '@vue/runtime-dom': 3.4.31
+ '@vue/server-renderer': 3.4.31(vue@3.4.31(typescript@5.4.5))
+ '@vue/shared': 3.4.31
optionalDependencies:
typescript: 5.4.5
- vue@3.4.29(typescript@5.4.5):
+ vuex@4.1.0(vue@3.4.31(typescript@5.4.5)):
dependencies:
- '@vue/compiler-dom': 3.4.29
- '@vue/compiler-sfc': 3.4.29
- '@vue/runtime-dom': 3.4.29
- '@vue/server-renderer': 3.4.29(vue@3.4.29(typescript@5.4.5))
- '@vue/shared': 3.4.29
- optionalDependencies:
- typescript: 5.4.5
-
- vuex@4.1.0(vue@3.4.21(typescript@5.4.5)):
- dependencies:
- '@vue/devtools-api': 6.6.1
- vue: 3.4.21(typescript@5.4.5)
+ '@vue/devtools-api': 6.6.3
+ vue: 3.4.31(typescript@5.4.5)
w3c-xmlserializer@5.0.0:
dependencies:
@@ -19782,7 +20311,7 @@ snapshots:
webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0))
+ '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0))
'@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))
'@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))
colorette: 2.0.20
@@ -19792,19 +20321,19 @@ snapshots:
import-local: 3.1.0
interpret: 2.2.0
rechoir: 0.7.1
- webpack: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ webpack: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
webpack-merge: 5.9.0
optionalDependencies:
webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0)
- webpack-dev-middleware@5.3.4(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)):
+ webpack-dev-middleware@5.3.4(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ webpack: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0):
dependencies:
@@ -19836,10 +20365,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 5.3.4(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0))
+ webpack-dev-middleware: 5.3.4(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0))
ws: 8.16.0
optionalDependencies:
- webpack: 5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0)
+ webpack: 5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0)
webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)
transitivePeerDependencies:
- bufferutil
@@ -19856,7 +20385,7 @@ snapshots:
webpack-virtual-modules@0.5.0: {}
- webpack@5.91.0(esbuild@0.20.2):
+ webpack@5.91.0(esbuild@0.21.5):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
@@ -19879,7 +20408,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.20.2)(webpack@5.91.0(esbuild@0.20.2))
+ terser-webpack-plugin: 5.3.10(esbuild@0.21.5)(webpack@5.91.0(esbuild@0.21.5))
watchpack: 2.4.1
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -19887,7 +20416,7 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0):
+ webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.5
@@ -19910,7 +20439,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.20.2)(webpack@5.91.0(esbuild@0.20.2)(webpack-cli@4.10.0))
+ terser-webpack-plugin: 5.3.10(esbuild@0.21.5)(webpack@5.91.0(esbuild@0.21.5)(webpack-cli@4.10.0))
watchpack: 2.4.1
webpack-sources: 3.2.3
optionalDependencies:
@@ -19987,6 +20516,8 @@ snapshots:
wildcard@2.0.1: {}
+ word-wrap@1.2.5: {}
+
wordwrap@1.0.0: {}
workbox-background-sync@7.1.0:
@@ -20000,16 +20531,16 @@ snapshots:
workbox-build@7.1.0(@types/babel__core@7.20.5):
dependencies:
- '@apideck/better-ajv-errors': 0.3.6(ajv@8.16.0)
- '@babel/core': 7.24.7
- '@babel/preset-env': 7.24.7(@babel/core@7.24.7)
- '@babel/runtime': 7.24.7
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.7)(@types/babel__core@7.20.5)(rollup@2.79.1)
+ '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
+ '@babel/core': 7.24.8
+ '@babel/preset-env': 7.24.8(@babel/core@7.24.8)
+ '@babel/runtime': 7.24.8
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.8)(@types/babel__core@7.20.5)(rollup@2.79.1)
'@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.1)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.1)
'@rollup/plugin-terser': 0.4.4(rollup@2.79.1)
'@surma/rollup-plugin-off-main-thread': 2.2.3
- ajv: 8.16.0
+ ajv: 8.17.1
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
@@ -20217,4 +20748,6 @@ snapshots:
yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
+
zwitch@2.0.4: {}
diff --git a/renovate.json b/renovate.json
index 01390f0f6..859cd982c 100644
--- a/renovate.json
+++ b/renovate.json
@@ -31,6 +31,10 @@
"groupSlug": "all-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch"]
+ },
+ {
+ "groupName": "eslint",
+ "matchPackagePatterns": ["eslint"]
}
],
"dependencyDashboard": false,
diff --git a/scripts/jison/lint.mts b/scripts/jison/lint.mts
index 596ce308b..f52010e28 100644
--- a/scripts/jison/lint.mts
+++ b/scripts/jison/lint.mts
@@ -6,8 +6,9 @@ import { ESLint } from 'eslint';
import jison from 'jison';
const linter = new ESLint({
- overrideConfig: { rules: { 'no-console': 'error' }, parser: '@typescript-eslint/parser' },
- useEslintrc: false,
+ // @ts-expect-error ESLint types are incorrect
+ overrideConfigFile: true,
+ overrideConfig: { rules: { 'no-console': 'error' } },
});
const lint = async (file: string): Promise => {
diff --git a/scripts/size.ts b/scripts/size.ts
index 2190fd9ef..1c486197b 100644
--- a/scripts/size.ts
+++ b/scripts/size.ts
@@ -25,6 +25,7 @@ const formatBytes = (bytes: number): string => {
if (bytes == 0) {
return '0 Bytes';
}
+ bytes = Math.abs(bytes);
const base = 1024;
const decimals = 2;
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
diff --git a/tests/webpack/src/index.js b/tests/webpack/src/index.js
index e667cfc5d..dc5c253ba 100644
--- a/tests/webpack/src/index.js
+++ b/tests/webpack/src/index.js
@@ -1,5 +1,5 @@
-/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable no-console */
+// eslint-disable-next-line @typescript-eslint/no-require-imports
const mermaid = require('mermaid');
import mindmap from '@mermaid-js/mermaid-mindmap';
diff --git a/tests/webpack/webpack.config.js b/tests/webpack/webpack.config.js
index 3c35a3922..2afc94374 100644
--- a/tests/webpack/webpack.config.js
+++ b/tests/webpack/webpack.config.js
@@ -1,4 +1,4 @@
-// eslint-disable-next-line @typescript-eslint/no-var-requires
+// eslint-disable-next-line @typescript-eslint/no-require-imports
const path = require('path');
module.exports = {
diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json
index 5fd73bf1f..7b7934881 100644
--- a/tsconfig.eslint.json
+++ b/tsconfig.eslint.json
@@ -3,16 +3,21 @@
"extends": "./tsconfig.json",
"compilerOptions": {
// ensure that nobody can accidentally use this config for a build
- "noEmit": true
+ "noEmit": true,
+ "allowJs": true
},
"include": [
- "packages",
- "tests",
- "scripts",
- "cypress",
- "__mocks__",
- "./.eslintrc.cjs",
- "./*",
- "demos/dev"
+ "./.build/*.ts",
+ "./.esbuild/*.ts",
+ "./.vite/*.ts",
+ "./cypress.config.ts",
+ "./tests",
+ "./scripts",
+ "./cypress",
+ "./__mocks__",
+ "./demos/dev",
+ "./vite.config.ts",
+ "./vitest.workspace.js",
+ "eslint.config.js"
]
}
diff --git a/tsconfig.json b/tsconfig.json
index 4cbf209a3..8e044caff 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -103,5 +103,5 @@
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
- "include": ["./package.json"]
+ "exclude": ["node_modules", "dist", "coverage"]
}
diff --git a/vitest.workspace.js b/vitest.workspace.js
new file mode 100644
index 000000000..7140a6017
--- /dev/null
+++ b/vitest.workspace.js
@@ -0,0 +1,3 @@
+import { defineWorkspace } from 'vitest/config';
+
+export default defineWorkspace(['./vite.config.ts', './packages/mermaid/src/docs/vite.config.ts']);