diff --git a/blocksuite/affine/gfx/brush/package.json b/blocksuite/affine/gfx/brush/package.json index 583d0e1e2f..1e599b7208 100644 --- a/blocksuite/affine/gfx/brush/package.json +++ b/blocksuite/affine/gfx/brush/package.json @@ -23,6 +23,7 @@ "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", + "@svgdotjs/svg.js": "^3.2.4", "@toeverything/theme": "^1.1.15", "@types/lodash-es": "^4.17.12", "lit": "^3.2.0", diff --git a/blocksuite/affine/gfx/brush/src/element-renderer/brush-dom/index.ts b/blocksuite/affine/gfx/brush/src/element-renderer/brush-dom/index.ts index 2932ebe80a..83da6c744b 100644 --- a/blocksuite/affine/gfx/brush/src/element-renderer/brush-dom/index.ts +++ b/blocksuite/affine/gfx/brush/src/element-renderer/brush-dom/index.ts @@ -1,6 +1,7 @@ import type { DomRenderer } from '@blocksuite/affine-block-surface'; import type { BrushElementModel } from '@blocksuite/affine-model'; import { DefaultTheme } from '@blocksuite/affine-model'; +import { SVG } from '@svgdotjs/svg.js'; /** * Renders a BrushElementModel to a given HTMLElement using DOM properties. @@ -29,22 +30,19 @@ export const brushDomRenderer = ( // Clear any existing content element.replaceChildren(); - // Create SVG element to render the brush stroke - const SVG_NS = 'http://www.w3.org/2000/svg'; - const svg = document.createElementNS(SVG_NS, 'svg'); - svg.setAttribute('width', '100%'); - svg.setAttribute('height', '100%'); - svg.setAttribute('viewBox', `0 0 ${unscaledWidth} ${unscaledHeight}`); - svg.setAttribute('preserveAspectRatio', 'none'); + // Create SVG element using svg.js to render the brush stroke + const svg = SVG().addTo(element).size('100%', '100%'); + svg.attr({ + viewBox: `0 0 ${unscaledWidth} ${unscaledHeight}`, + preserveAspectRatio: 'none', + }); // Create path element for the brush stroke - const path = document.createElementNS(SVG_NS, 'path'); - path.setAttribute('d', model.commands); - path.setAttribute('fill', color); - path.setAttribute('stroke', 'none'); - - svg.append(path); - element.append(svg); + const path = svg.path(model.commands); + path.attr({ + fill: color, + stroke: 'none', + }); // Apply rotation if needed if (model.rotate) { diff --git a/blocksuite/affine/gfx/connector/package.json b/blocksuite/affine/gfx/connector/package.json index d921e4ecfe..0d77e8956b 100644 --- a/blocksuite/affine/gfx/connector/package.json +++ b/blocksuite/affine/gfx/connector/package.json @@ -24,6 +24,7 @@ "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", + "@svgdotjs/svg.js": "^3.2.4", "@toeverything/theme": "^1.1.15", "@types/lodash-es": "^4.17.12", "lit": "^3.2.0", diff --git a/blocksuite/affine/gfx/connector/src/element-renderer/connector-dom/index.ts b/blocksuite/affine/gfx/connector/src/element-renderer/connector-dom/index.ts index 44c44fb280..15c959d724 100644 --- a/blocksuite/affine/gfx/connector/src/element-renderer/connector-dom/index.ts +++ b/blocksuite/affine/gfx/connector/src/element-renderer/connector-dom/index.ts @@ -5,7 +5,8 @@ import { DefaultTheme, type PointStyle, } from '@blocksuite/affine-model'; -import { PointLocation, SVGPathBuilder } from '@blocksuite/global/gfx'; +import { PointLocation } from '@blocksuite/global/gfx'; +import { SVG } from '@svgdotjs/svg.js'; import { isConnectorWithLabel } from '../../connector-manager.js'; import { DEFAULT_ARROW_SIZE } from '../utils.js'; @@ -43,111 +44,71 @@ function createConnectorPath( ): string { if (points.length < 2) return ''; - const pathBuilder = new SVGPathBuilder(); - pathBuilder.moveTo(points[0][0], points[0][1]); + let pathData = `M ${points[0][0]} ${points[0][1]}`; if (mode === ConnectorMode.Curve) { // Use bezier curves for (let i = 1; i < points.length; i++) { const prev = points[i - 1]; const curr = points[i]; - pathBuilder.curveTo( - prev.absOut[0], - prev.absOut[1], - curr.absIn[0], - curr.absIn[1], - curr[0], - curr[1] - ); + pathData += ` C ${prev.absOut[0]} ${prev.absOut[1]} ${curr.absIn[0]} ${curr.absIn[1]} ${curr[0]} ${curr[1]}`; } } else { // Use straight lines for (let i = 1; i < points.length; i++) { - pathBuilder.lineTo(points[i][0], points[i][1]); + pathData += ` L ${points[i][0]} ${points[i][1]}`; } } - return pathBuilder.build(); + return pathData; } function createArrowMarker( + svg: any, id: string, style: PointStyle, color: string, strokeWidth: number, isStart: boolean = false -): SVGMarkerElement { - const marker = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'marker' - ); +): void { const size = DEFAULT_ARROW_SIZE * (strokeWidth / 2); + const defs = svg.defs(); - marker.id = id; - marker.setAttribute('viewBox', '0 0 20 20'); - marker.setAttribute('refX', isStart ? '20' : '0'); - marker.setAttribute('refY', '10'); - marker.setAttribute('markerWidth', String(size)); - marker.setAttribute('markerHeight', String(size)); - marker.setAttribute('orient', 'auto'); - marker.setAttribute('markerUnits', 'strokeWidth'); + const marker = defs.marker(size, size, function (add: any) { + switch (style) { + case 'Arrow': { + add + .path(isStart ? 'M 20 5 L 10 10 L 20 15 Z' : 'M 0 5 L 10 10 L 0 15 Z') + .fill(color) + .stroke(color); + break; + } + case 'Triangle': { + add + .path(isStart ? 'M 20 7 L 12 10 L 20 13 Z' : 'M 0 7 L 8 10 L 0 13 Z') + .fill(color) + .stroke(color); + break; + } + case 'Circle': { + add.circle(8).center(10, 10).fill(color).stroke(color); + break; + } + case 'Diamond': { + add.path('M 10 6 L 14 10 L 10 14 L 6 10 Z').fill(color).stroke(color); + break; + } + } + }); - switch (style) { - case 'Arrow': { - const path = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'path' - ); - path.setAttribute( - 'd', - isStart ? 'M 20 5 L 10 10 L 20 15 Z' : 'M 0 5 L 10 10 L 0 15 Z' - ); - path.setAttribute('fill', color); - path.setAttribute('stroke', color); - marker.append(path); - break; - } - case 'Triangle': { - const path = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'path' - ); - path.setAttribute( - 'd', - isStart ? 'M 20 7 L 12 10 L 20 13 Z' : 'M 0 7 L 8 10 L 0 13 Z' - ); - path.setAttribute('fill', color); - path.setAttribute('stroke', color); - marker.append(path); - break; - } - case 'Circle': { - const circle = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'circle' - ); - circle.setAttribute('cx', '10'); - circle.setAttribute('cy', '10'); - circle.setAttribute('r', '4'); - circle.setAttribute('fill', color); - circle.setAttribute('stroke', color); - marker.append(circle); - break; - } - case 'Diamond': { - const path = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'path' - ); - path.setAttribute('d', 'M 10 6 L 14 10 L 10 14 L 6 10 Z'); - path.setAttribute('fill', color); - path.setAttribute('stroke', color); - marker.append(path); - break; - } - } - - return marker; + marker.id(id); + marker.attr({ + viewBox: '0 0 20 20', + refX: isStart ? '20' : '0', + refY: '10', + orient: 'auto', + markerUnits: 'strokeWidth', + }); } function renderConnectorLabel( @@ -253,20 +214,12 @@ export const connectorDomRenderer = ( const offsetX = pathBounds.minX - padding; const offsetY = pathBounds.minY - padding; - // Create SVG element - const svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); - svg.style.position = 'absolute'; - svg.style.left = `${offsetX * zoom}px`; - svg.style.top = `${offsetY * zoom}px`; - svg.style.width = `${svgWidth}px`; - svg.style.height = `${svgHeight}px`; - svg.style.overflow = 'visible'; - svg.style.pointerEvents = 'none'; - svg.setAttribute('viewBox', `0 0 ${svgWidth / zoom} ${svgHeight / zoom}`); - - // Create defs for markers - const defs = document.createElementNS('http://www.w3.org/2000/svg', 'defs'); - svg.append(defs); + // Create SVG using svg.js + const svg = SVG().addTo(element).size(svgWidth, svgHeight); + svg.attr({ + style: `position: absolute; left: ${offsetX * zoom}px; top: ${offsetY * zoom}px; overflow: visible; pointer-events: none;`, + viewBox: `0 0 ${svgWidth / zoom} ${svgHeight / zoom}`, + }); const strokeColor = renderer.getColorValue( stroke, @@ -280,34 +233,28 @@ export const connectorDomRenderer = ( if (frontEndpointStyle !== 'None') { startMarkerId = `start-marker-${model.id}`; - const startMarker = createArrowMarker( + createArrowMarker( + svg, startMarkerId, frontEndpointStyle, strokeColor, strokeWidth, true ); - defs.append(startMarker); } if (rearEndpointStyle !== 'None') { endMarkerId = `end-marker-${model.id}`; - const endMarker = createArrowMarker( + createArrowMarker( + svg, endMarkerId, rearEndpointStyle, strokeColor, strokeWidth, false ); - defs.append(endMarker); } - // Create path element - const pathElement = document.createElementNS( - 'http://www.w3.org/2000/svg', - 'path' - ); - // Adjust points relative to the SVG coordinate system const adjustedPoints = points.map(point => { const adjustedPoint = new PointLocation([ @@ -329,30 +276,31 @@ export const connectorDomRenderer = ( return adjustedPoint; }); + // Create path element using svg.js const pathData = createConnectorPath(adjustedPoints, mode); - pathElement.setAttribute('d', pathData); - pathElement.setAttribute('stroke', strokeColor); - pathElement.setAttribute('stroke-width', String(strokeWidth)); - pathElement.setAttribute('fill', 'none'); - pathElement.setAttribute('stroke-linecap', 'round'); - pathElement.setAttribute('stroke-linejoin', 'round'); + const pathElement = svg.path(pathData); + + pathElement.attr({ + stroke: strokeColor, + 'stroke-width': strokeWidth, + fill: 'none', + 'stroke-linecap': 'round', + 'stroke-linejoin': 'round', + }); // Apply stroke style if (strokeStyle === 'dash') { - pathElement.setAttribute('stroke-dasharray', '12,12'); + pathElement.attr('stroke-dasharray', '12,12'); } // Apply markers if (startMarkerId) { - pathElement.setAttribute('marker-start', `url(#${startMarkerId})`); + pathElement.attr('marker-start', `url(#${startMarkerId})`); } if (endMarkerId) { - pathElement.setAttribute('marker-end', `url(#${endMarkerId})`); + pathElement.attr('marker-end', `url(#${endMarkerId})`); } - svg.append(pathElement); - element.append(svg); - // Set element size and position element.style.width = `${model.w * zoom}px`; element.style.height = `${model.h * zoom}px`; diff --git a/blocksuite/affine/gfx/shape/package.json b/blocksuite/affine/gfx/shape/package.json index 157eb32450..0c8383aff6 100644 --- a/blocksuite/affine/gfx/shape/package.json +++ b/blocksuite/affine/gfx/shape/package.json @@ -24,6 +24,7 @@ "@blocksuite/store": "workspace:*", "@lit/context": "^1.1.2", "@preact/signals-core": "^1.8.0", + "@svgdotjs/svg.js": "^3.2.4", "@toeverything/theme": "^1.1.15", "@types/lodash-es": "^4.17.12", "lit": "^3.2.0", diff --git a/blocksuite/affine/gfx/shape/src/element-renderer/shape-dom/index.ts b/blocksuite/affine/gfx/shape/src/element-renderer/shape-dom/index.ts index 2308a42d9e..2e08555cb3 100644 --- a/blocksuite/affine/gfx/shape/src/element-renderer/shape-dom/index.ts +++ b/blocksuite/affine/gfx/shape/src/element-renderer/shape-dom/index.ts @@ -1,10 +1,37 @@ import type { DomRenderer } from '@blocksuite/affine-block-surface'; import type { ShapeElementModel } from '@blocksuite/affine-model'; import { DefaultTheme } from '@blocksuite/affine-model'; -import { SVGShapeBuilder } from '@blocksuite/global/gfx'; +import { SVG } from '@svgdotjs/svg.js'; import { manageClassNames, setStyles } from './utils'; +function createDiamondPoints( + width: number, + height: number, + strokeWidth: number = 0 +): string { + const halfStroke = strokeWidth / 2; + return [ + `${width / 2},${halfStroke}`, + `${width - halfStroke},${height / 2}`, + `${width / 2},${height - halfStroke}`, + `${halfStroke},${height / 2}`, + ].join(' '); +} + +function createTrianglePoints( + width: number, + height: number, + strokeWidth: number = 0 +): string { + const halfStroke = strokeWidth / 2; + return [ + `${width / 2},${halfStroke}`, + `${width - halfStroke},${height - halfStroke}`, + `${halfStroke},${height - halfStroke}`, + ].join(' '); +} + function applyShapeSpecificStyles( model: ShapeElementModel, element: HTMLElement, @@ -126,19 +153,11 @@ export const shapeDomRenderer = ( let svgPoints = ''; if (model.shapeType === 'diamond') { - // Generate diamond points using shared utility - svgPoints = SVGShapeBuilder.diamond( - unscaledWidth, - unscaledHeight, - strokeW - ); + // Generate diamond points directly + svgPoints = createDiamondPoints(unscaledWidth, unscaledHeight, strokeW); } else { - // triangle - generate triangle points using shared utility - svgPoints = SVGShapeBuilder.triangle( - unscaledWidth, - unscaledHeight, - strokeW - ); + // Generate triangle points directly + svgPoints = createTrianglePoints(unscaledWidth, unscaledHeight, strokeW); } // Determine if stroke should be visible and its color @@ -152,26 +171,26 @@ export const shapeDomRenderer = ( // Determine fill color const finalFillColor = model.filled ? fillColor : 'transparent'; - // Build SVG safely with DOM-API - const SVG_NS = 'http://www.w3.org/2000/svg'; - const svg = document.createElementNS(SVG_NS, 'svg'); - svg.setAttribute('width', '100%'); - svg.setAttribute('height', '100%'); - svg.setAttribute('viewBox', `0 0 ${unscaledWidth} ${unscaledHeight}`); - svg.setAttribute('preserveAspectRatio', 'none'); + // Build SVG using svg.js + const svg = SVG().addTo(element).size('100%', '100%'); + svg.attr({ + viewBox: `0 0 ${unscaledWidth} ${unscaledHeight}`, + preserveAspectRatio: 'none', + }); + + const polygon = svg.polygon(svgPoints); + polygon.attr({ + fill: finalFillColor, + stroke: finalStrokeColor, + 'stroke-width': strokeW, + }); - const polygon = document.createElementNS(SVG_NS, 'polygon'); - polygon.setAttribute('points', svgPoints); - polygon.setAttribute('fill', finalFillColor); - polygon.setAttribute('stroke', finalStrokeColor); - polygon.setAttribute('stroke-width', String(strokeW)); if (finalStrokeDasharray !== 'none') { - polygon.setAttribute('stroke-dasharray', finalStrokeDasharray); + polygon.attr('stroke-dasharray', finalStrokeDasharray); } - svg.append(polygon); // Replace existing children to avoid memory leaks - element.replaceChildren(svg); + element.replaceChildren(svg.node); } else { // Standard rendering for other shapes (e.g., rect, ellipse) // innerHTML was already cleared by applyShapeSpecificStyles if necessary diff --git a/blocksuite/framework/global/src/__tests__/svg-path.unit.spec.ts b/blocksuite/framework/global/src/__tests__/svg-path.unit.spec.ts deleted file mode 100644 index 78622044e5..0000000000 --- a/blocksuite/framework/global/src/__tests__/svg-path.unit.spec.ts +++ /dev/null @@ -1,73 +0,0 @@ -import { describe, expect, test } from 'vitest'; - -import { SVGPathBuilder, SVGShapeBuilder } from '../gfx/svg-path.js'; - -describe('SVGPathBuilder', () => { - test('should build a simple path', () => { - const pathBuilder = new SVGPathBuilder(); - const result = pathBuilder.moveTo(10, 20).lineTo(30, 40).build(); - - expect(result).toBe('M 10 20 L 30 40'); - }); - - test('should build a path with curves', () => { - const pathBuilder = new SVGPathBuilder(); - const result = pathBuilder - .moveTo(0, 0) - .curveTo(10, 0, 10, 10, 20, 10) - .build(); - - expect(result).toBe('M 0 0 C 10 0 10 10 20 10'); - }); - - test('should build a closed path', () => { - const pathBuilder = new SVGPathBuilder(); - const result = pathBuilder - .moveTo(0, 0) - .lineTo(10, 0) - .lineTo(5, 10) - .closePath() - .build(); - - expect(result).toBe('M 0 0 L 10 0 L 5 10 Z'); - }); - - test('should clear commands', () => { - const pathBuilder = new SVGPathBuilder(); - pathBuilder.moveTo(10, 20).lineTo(30, 40); - pathBuilder.clear(); - const result = pathBuilder.moveTo(0, 0).build(); - - expect(result).toBe('M 0 0'); - }); -}); - -describe('SVGShapeBuilder', () => { - test('should generate diamond polygon points', () => { - const result = SVGShapeBuilder.diamond(100, 80, 2); - expect(result).toBe('50,1 99,40 50,79 1,40'); - }); - - test('should generate triangle polygon points', () => { - const result = SVGShapeBuilder.triangle(100, 80, 2); - expect(result).toBe('50,1 99,79 1,79'); - }); - - test('should generate diamond path', () => { - const result = SVGShapeBuilder.diamondPath(100, 80, 2); - expect(result).toBe('M 50 1 L 99 40 L 50 79 L 1 40 Z'); - }); - - test('should generate triangle path', () => { - const result = SVGShapeBuilder.trianglePath(100, 80, 2); - expect(result).toBe('M 50 1 L 99 79 L 1 79 Z'); - }); - - test('should handle zero stroke width', () => { - const diamondResult = SVGShapeBuilder.diamond(100, 80, 0); - expect(diamondResult).toBe('50,0 100,40 50,80 0,40'); - - const triangleResult = SVGShapeBuilder.triangle(100, 80, 0); - expect(triangleResult).toBe('50,0 100,80 0,80'); - }); -}); diff --git a/blocksuite/framework/global/src/gfx/index.ts b/blocksuite/framework/global/src/gfx/index.ts index 062ddbb3a1..37b0ea9b72 100644 --- a/blocksuite/framework/global/src/gfx/index.ts +++ b/blocksuite/framework/global/src/gfx/index.ts @@ -4,5 +4,4 @@ export * from './math.js'; export * from './model/index.js'; export * from './perfect-freehand/index.js'; export * from './polyline.js'; -export * from './svg-path.js'; export * from './xywh.js'; diff --git a/blocksuite/framework/global/src/gfx/svg-path.ts b/blocksuite/framework/global/src/gfx/svg-path.ts deleted file mode 100644 index 0ef80c928f..0000000000 --- a/blocksuite/framework/global/src/gfx/svg-path.ts +++ /dev/null @@ -1,160 +0,0 @@ -interface PathCommand { - command: string; - coordinates: number[]; -} - -/** - * A utility class for building SVG path strings using command-based API. - * Supports moveTo, lineTo, curveTo operations and can build complete path strings. - */ -export class SVGPathBuilder { - private commands: PathCommand[] = []; - - /** - * Move to a specific point without drawing - */ - moveTo(x: number, y: number): this { - this.commands.push({ - command: 'M', - coordinates: [x, y], - }); - return this; - } - - /** - * Draw a line to a specific point - */ - lineTo(x: number, y: number): this { - this.commands.push({ - command: 'L', - coordinates: [x, y], - }); - return this; - } - - /** - * Draw a cubic Bézier curve - */ - curveTo( - cp1x: number, - cp1y: number, - cp2x: number, - cp2y: number, - x: number, - y: number - ): this { - this.commands.push({ - command: 'C', - coordinates: [cp1x, cp1y, cp2x, cp2y, x, y], - }); - return this; - } - - /** - * Close the current path - */ - closePath(): this { - this.commands.push({ - command: 'Z', - coordinates: [], - }); - return this; - } - - /** - * Build the complete SVG path string - */ - build(): string { - const pathSegments = this.commands.map(cmd => { - const coords = cmd.coordinates.join(' '); - return coords ? `${cmd.command} ${coords}` : cmd.command; - }); - - return pathSegments.join(' '); - } - - /** - * Clear all commands and reset the builder - */ - clear(): this { - this.commands = []; - return this; - } -} - -/** - * Create SVG polygon points string for common shapes - */ -export class SVGShapeBuilder { - /** - * Generate diamond (rhombus) polygon points - */ - static diamond( - width: number, - height: number, - strokeWidth: number = 0 - ): string { - const halfStroke = strokeWidth / 2; - return [ - `${width / 2},${halfStroke}`, - `${width - halfStroke},${height / 2}`, - `${width / 2},${height - halfStroke}`, - `${halfStroke},${height / 2}`, - ].join(' '); - } - - /** - * Generate triangle polygon points - */ - static triangle( - width: number, - height: number, - strokeWidth: number = 0 - ): string { - const halfStroke = strokeWidth / 2; - return [ - `${width / 2},${halfStroke}`, - `${width - halfStroke},${height - halfStroke}`, - `${halfStroke},${height - halfStroke}`, - ].join(' '); - } - - /** - * Generate diamond path using SVGPathBuilder - */ - static diamondPath( - width: number, - height: number, - strokeWidth: number = 0 - ): string { - const halfStroke = strokeWidth / 2; - const pathBuilder = new SVGPathBuilder(); - - return pathBuilder - .moveTo(width / 2, halfStroke) - .lineTo(width - halfStroke, height / 2) - .lineTo(width / 2, height - halfStroke) - .lineTo(halfStroke, height / 2) - .closePath() - .build(); - } - - /** - * Generate triangle path using SVGPathBuilder - */ - static trianglePath( - width: number, - height: number, - strokeWidth: number = 0 - ): string { - const halfStroke = strokeWidth / 2; - const pathBuilder = new SVGPathBuilder(); - - return pathBuilder - .moveTo(width / 2, halfStroke) - .lineTo(width - halfStroke, height - halfStroke) - .lineTo(halfStroke, height - halfStroke) - .closePath() - .build(); - } -} diff --git a/tests/blocksuite/e2e/utils/actions/edgeless.ts b/tests/blocksuite/e2e/utils/actions/edgeless.ts index 7aa505c47f..30eedd963f 100644 --- a/tests/blocksuite/e2e/utils/actions/edgeless.ts +++ b/tests/blocksuite/e2e/utils/actions/edgeless.ts @@ -822,7 +822,7 @@ export async function updateExistedBrushElementSize( ) { // get the nth brush size button const btn = page.locator( - `edgeless-line-width-panel .point-button:nth-child(${nthSizeButton})` + `editor-toolbar edgeless-line-width-panel .point-button:nth-child(${nthSizeButton})` ); await btn.click(); diff --git a/yarn.lock b/yarn.lock index 02af70e151..86cf3b811b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13,9 +13,9 @@ __metadata: linkType: hard "@adobe/css-tools@npm:^4.4.0": - version: 4.4.2 - resolution: "@adobe/css-tools@npm:4.4.2" - checksum: 10/893d97ba524d92d5fdcee517a47fa7a144ca89dfcc559f5e1c3a9894599bf64c4ee5fc811fb11de0ab84da6778f4b69ea6aede73813534aeb5dfbc412d0788db + version: 4.4.3 + resolution: "@adobe/css-tools@npm:4.4.3" + checksum: 10/701379c514b7a43ca6681705a93cd57ad79565cfef9591122e9499897550cf324a5e5bb1bc51df0e7433cf0e91b962c90f18ac459dcc98b2431daa04aa63cb20 languageName: node linkType: hard @@ -1075,30 +1075,30 @@ __metadata: languageName: unknown linkType: soft -"@ai-sdk/anthropic@npm:1.2.11, @ai-sdk/anthropic@npm:^1.2.10": - version: 1.2.11 - resolution: "@ai-sdk/anthropic@npm:1.2.11" +"@ai-sdk/anthropic@npm:1.2.12, @ai-sdk/anthropic@npm:^1.2.10": + version: 1.2.12 + resolution: "@ai-sdk/anthropic@npm:1.2.12" dependencies: "@ai-sdk/provider": "npm:1.1.3" "@ai-sdk/provider-utils": "npm:2.2.8" peerDependencies: zod: ^3.0.0 - checksum: 10/89f48e23f406bef946d2b9153e67eb8417ba01693e291566693f4d49ca4eb9e41e7e49ec83cbb738c7ac2eaf8c3aa572327a0ab6ae7f8f8bf50f08d3be0c2471 + checksum: 10/ee09f00328c88954fba8d00795f6c379091f95b7717bb90292acf32f41b072b2c89b178c1c18dfc23fcec7532e04fcd13233b9a813ce4881e0a16cae20a878c8 languageName: node linkType: hard "@ai-sdk/google-vertex@npm:^2.2.22": - version: 2.2.22 - resolution: "@ai-sdk/google-vertex@npm:2.2.22" + version: 2.2.23 + resolution: "@ai-sdk/google-vertex@npm:2.2.23" dependencies: - "@ai-sdk/anthropic": "npm:1.2.11" + "@ai-sdk/anthropic": "npm:1.2.12" "@ai-sdk/google": "npm:1.2.18" "@ai-sdk/provider": "npm:1.1.3" "@ai-sdk/provider-utils": "npm:2.2.8" google-auth-library: "npm:^9.15.0" peerDependencies: zod: ^3.0.0 - checksum: 10/852928d35797cc14802d8c4a7dba2794197f019507a24124e7f87e456ba19f2b4e50438af626dd30e3a2a0f9f10819d6534a31e23c08f7f3d148d56b68167d0a + checksum: 10/19b7120879662e3597e95b84d30a587ada24d5fbd4306e4551f88605ae4e7c9d3f52bc60b6ea3bfbfc487a58c0a0ad35d1e058f7408140ea84e2ff86e6a1d052 languageName: node linkType: hard @@ -1575,30 +1575,30 @@ __metadata: linkType: hard "@aws-sdk/client-s3@npm:^3.709.0, @aws-sdk/client-s3@npm:^3.779.0": - version: 3.815.0 - resolution: "@aws-sdk/client-s3@npm:3.815.0" + version: 3.817.0 + resolution: "@aws-sdk/client-s3@npm:3.817.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.812.0" - "@aws-sdk/credential-provider-node": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" + "@aws-sdk/credential-provider-node": "npm:3.817.0" "@aws-sdk/middleware-bucket-endpoint": "npm:3.808.0" "@aws-sdk/middleware-expect-continue": "npm:3.804.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.815.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.816.0" "@aws-sdk/middleware-host-header": "npm:3.804.0" "@aws-sdk/middleware-location-constraint": "npm:3.804.0" "@aws-sdk/middleware-logger": "npm:3.804.0" "@aws-sdk/middleware-recursion-detection": "npm:3.804.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.812.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.816.0" "@aws-sdk/middleware-ssec": "npm:3.804.0" - "@aws-sdk/middleware-user-agent": "npm:3.812.0" + "@aws-sdk/middleware-user-agent": "npm:3.816.0" "@aws-sdk/region-config-resolver": "npm:3.808.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.812.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-endpoints": "npm:3.808.0" "@aws-sdk/util-user-agent-browser": "npm:3.804.0" - "@aws-sdk/util-user-agent-node": "npm:3.812.0" + "@aws-sdk/util-user-agent-node": "npm:3.816.0" "@aws-sdk/xml-builder": "npm:3.804.0" "@smithy/config-resolver": "npm:^4.1.2" "@smithy/core": "npm:^3.3.3" @@ -1634,26 +1634,26 @@ __metadata: "@smithy/util-utf8": "npm:^4.0.0" "@smithy/util-waiter": "npm:^4.0.3" tslib: "npm:^2.6.2" - checksum: 10/4377677e723a25d16099c8c8fb7e2e46c412f49c90d7842fcf1c06f72d78d7757f0fc57ff1d8af370358f5c76aa06b83f41fe9d4e8e8f1dca9d36926cfeade76 + checksum: 10/acb63257dc1f673896823c27382e978f8c92e6a5b7ec54eb50788b6a939fbd3c4acab1df29dfa67acc57914517b0f98d0e1ab93e8642f81ffddb07ca293a9ab4 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/client-sso@npm:3.812.0" +"@aws-sdk/client-sso@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/client-sso@npm:3.817.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/middleware-host-header": "npm:3.804.0" "@aws-sdk/middleware-logger": "npm:3.804.0" "@aws-sdk/middleware-recursion-detection": "npm:3.804.0" - "@aws-sdk/middleware-user-agent": "npm:3.812.0" + "@aws-sdk/middleware-user-agent": "npm:3.816.0" "@aws-sdk/region-config-resolver": "npm:3.808.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-endpoints": "npm:3.808.0" "@aws-sdk/util-user-agent-browser": "npm:3.804.0" - "@aws-sdk/util-user-agent-node": "npm:3.812.0" + "@aws-sdk/util-user-agent-node": "npm:3.816.0" "@smithy/config-resolver": "npm:^4.1.2" "@smithy/core": "npm:^3.3.3" "@smithy/fetch-http-handler": "npm:^5.0.2" @@ -1680,13 +1680,13 @@ __metadata: "@smithy/util-retry": "npm:^4.0.3" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/ac9e66341712730e98bf98686c244c5ee191750b6c9d320fe0c24cb5de01b75c55ab028338132322f2d2cd78c615fd2aa220800cf8630cdc40bc617a82beb24f + checksum: 10/72e4e1767d444784933d0414a7c6c197d216c8ff6aa760efea97533ec2bd10a9f841d9ef36d19510d644b42d455f0aec63bb97c13b8b4f3bab645c4741ceead2 languageName: node linkType: hard -"@aws-sdk/core@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/core@npm:3.812.0" +"@aws-sdk/core@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/core@npm:3.816.0" dependencies: "@aws-sdk/types": "npm:3.804.0" "@smithy/core": "npm:^3.3.3" @@ -1699,28 +1699,28 @@ __metadata: "@smithy/util-middleware": "npm:^4.0.2" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10/139b282ef3e02732671973b5c0544a9e680de11568163f41ac140e61ed83ef42254b78b3480237c100e876b4e34a0b18cf1239a47e479c1c969b390fd37a151e + checksum: 10/2b6c4188969e00af0f4d77ed88b8b23b4654c0e66b3356ae062a0d40ab6831c78db1473efd20514c182f8d4033ce2728b0425a292c57246ceb22a177c17d970f languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.812.0" +"@aws-sdk/credential-provider-env@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.816.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/2bb06d5d7bc340e99629d4b170256478e20bad9fb78f76d435c2402323e829a8d777f5f4cb34822233b9233e07b38325872739f1c6f2d6af0a9c937d1c139e77 + checksum: 10/0fcc1f287bfd4daa650b5d72a83c87c031f7b99e1877bd2ff78efc4d756b30e1f69770f2034294da1da05466b961cd4596a848b8e3295d8abf6502abdc48b35f languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.812.0" +"@aws-sdk/credential-provider-http@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.816.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/fetch-http-handler": "npm:^5.0.2" "@smithy/node-http-handler": "npm:^4.0.4" @@ -1730,92 +1730,92 @@ __metadata: "@smithy/types": "npm:^4.2.0" "@smithy/util-stream": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/bd349fbe6cd581e5f651176a31f48b40ba5c076fc75305dbe59b41bf7c5e952e82c4ff541fb25b319021c44a2ddde8611e5944ffd059051a3d096fb0250a2b95 + checksum: 10/ddc59373a984a1df1cb4efa50027d01dba0d7031b3d0d720edd8bf03d35e4c6ff2333fd8310603c7cc034308124f4f0412e3ca52d7c3d12dad6b0528de11fea0 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.812.0" +"@aws-sdk/credential-provider-ini@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.817.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" - "@aws-sdk/credential-provider-env": "npm:3.812.0" - "@aws-sdk/credential-provider-http": "npm:3.812.0" - "@aws-sdk/credential-provider-process": "npm:3.812.0" - "@aws-sdk/credential-provider-sso": "npm:3.812.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.812.0" - "@aws-sdk/nested-clients": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" + "@aws-sdk/credential-provider-env": "npm:3.816.0" + "@aws-sdk/credential-provider-http": "npm:3.816.0" + "@aws-sdk/credential-provider-process": "npm:3.816.0" + "@aws-sdk/credential-provider-sso": "npm:3.817.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.817.0" + "@aws-sdk/nested-clients": "npm:3.817.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/credential-provider-imds": "npm:^4.0.4" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/f9e1ec43c734dfbc6c3f013e0a64bb95037df8f92c876e21c21e06a3de5c49e87f8a7ec03af876c812a7f811632bf21c185ac184f509d8dcad39c3de88d7dcca + checksum: 10/d7c6f44e1dbf2eedb20f45581990136e531975870866573ca2256c325f9ea96264c6e7a45e691622668f034f8d04937c65da5a5ddc18f169f02652ea37c1b7bb languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.812.0" +"@aws-sdk/credential-provider-node@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.817.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.812.0" - "@aws-sdk/credential-provider-http": "npm:3.812.0" - "@aws-sdk/credential-provider-ini": "npm:3.812.0" - "@aws-sdk/credential-provider-process": "npm:3.812.0" - "@aws-sdk/credential-provider-sso": "npm:3.812.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.812.0" + "@aws-sdk/credential-provider-env": "npm:3.816.0" + "@aws-sdk/credential-provider-http": "npm:3.816.0" + "@aws-sdk/credential-provider-ini": "npm:3.817.0" + "@aws-sdk/credential-provider-process": "npm:3.816.0" + "@aws-sdk/credential-provider-sso": "npm:3.817.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.817.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/credential-provider-imds": "npm:^4.0.4" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/ec98de8815c9f9152d0a7b6d8681da1d7de8ee4933604bd2bad28a911b88204d969693f25d4e0f42affd1cd2b87cae6a27f94ff5d9de9b046c7ad4ec126e06ce + checksum: 10/19aee97abcbbd3e84004d2be109c0e05e50947a78f3493ca98cadc1210a597d68eed6ab9a42b188dae8545349ea5e92fc43ae32209799e5e4ab4541df4e85f70 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.812.0" +"@aws-sdk/credential-provider-process@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.816.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/7f595deb460089335b772fb6260cf107d8096c9fd3290995d704817f4b8f6acaa78476be54f33333baafb4a160056767958ed089d31d46223bcf4d01a1a1175c + checksum: 10/f52781ce364a37b7187a10f1f4beb5977e58fc8a2eedb1c67afd6f5cd1f07495be5f928a5aa1731a3b5874d86bb198754d6d81ef5a3b3a4e58bf4c35f16bc479 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.812.0" +"@aws-sdk/credential-provider-sso@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.817.0" dependencies: - "@aws-sdk/client-sso": "npm:3.812.0" - "@aws-sdk/core": "npm:3.812.0" - "@aws-sdk/token-providers": "npm:3.812.0" + "@aws-sdk/client-sso": "npm:3.817.0" + "@aws-sdk/core": "npm:3.816.0" + "@aws-sdk/token-providers": "npm:3.817.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/2b3ab88d1c76a6e402659a5798177b2e5276c243ed6195396dd332ebbbead23cc876987c8d3ab55bd455251198a3a527c9c4ba1e1e8b96ea2084ec0fda2f8ed9 + checksum: 10/b6fc63d0c7e6582591b30f53250429a9eb6f8e116ec3fce1cff4cb892264ff87d5c69b68a3eea23f1630d63d8a80b544142726a0687f2c76a6533bd58bd6ddec languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.812.0" +"@aws-sdk/credential-provider-web-identity@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.817.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" - "@aws-sdk/nested-clients": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" + "@aws-sdk/nested-clients": "npm:3.817.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/ff8a90114bb89015a0e64ae794bf369b339aaa98e1cea06dc6458f071441fe0019a5dc104e5a8123619a468178af8438c0acf3f7d3ff07c215e0bf5648bb74bd + checksum: 10/8b6b3fe7c20e633a576af4a3ae085bc5d858883a78630372082085294f2f37ef951a1f86574981b52dd6946ff49015f61eec4b3e457ef73491563f47b4873389 languageName: node linkType: hard @@ -1846,14 +1846,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.815.0": - version: 3.815.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.815.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.816.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/is-array-buffer": "npm:^4.0.0" "@smithy/node-config-provider": "npm:^4.1.1" @@ -1863,7 +1863,7 @@ __metadata: "@smithy/util-stream": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/022678c06d06c0a6bc1dc1b95bc809b4c0618d1a6b2b1ea53f5ee16a0d255607bf0914d7729d5b514420057953d7df518f8b34b75538986ffb3def39d03f4001 + checksum: 10/84868f8a4d6ec900e3b047b11ab9c142baed235d80f2539742ff148b88f112d75a23e1cef8fc85772e86e6fc7572e01b97091a317fc10ad0e5b4c26ad672e12c languageName: node linkType: hard @@ -1913,11 +1913,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.812.0" +"@aws-sdk/middleware-sdk-s3@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.816.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-arn-parser": "npm:3.804.0" "@smithy/core": "npm:^3.3.3" @@ -1931,7 +1931,7 @@ __metadata: "@smithy/util-stream": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/1980d1dcd9b200d5ca60d90606a05253d7fa95e80cc0f2abb0732bedbd5d2694c0ffaff7c0f81030fc8edaf36fa8b303f4ff70282cd8f4c5512ae4a4ec34139e + checksum: 10/9b8c6096ab730f91555f62f734daa67d8f8bd536b0cfa04a3108ad59c94d7e09cc27f70d48f8a592b47e77c7c569ba2a7447a281ca3509592fe02ec4f42e7a06 languageName: node linkType: hard @@ -1946,37 +1946,37 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.812.0" +"@aws-sdk/middleware-user-agent@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.816.0" dependencies: - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-endpoints": "npm:3.808.0" "@smithy/core": "npm:^3.3.3" "@smithy/protocol-http": "npm:^5.1.0" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/1a6cca781735b9d4883b0e7d9f12e1739c9417563823be98631a68c5339fe604ff286551ba246a3be0c758736c803c475125529775b088489377d25e09392402 + checksum: 10/1b5fafbd21b1cf96309c5063472d3a91c8e202e1762bf965310da3723bc191eccc891e1d89b3602a312b051ce8221ec029d13215920dfb42502c897478da3ef9 languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/nested-clients@npm:3.812.0" +"@aws-sdk/nested-clients@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/nested-clients@npm:3.817.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" "@aws-sdk/middleware-host-header": "npm:3.804.0" "@aws-sdk/middleware-logger": "npm:3.804.0" "@aws-sdk/middleware-recursion-detection": "npm:3.804.0" - "@aws-sdk/middleware-user-agent": "npm:3.812.0" + "@aws-sdk/middleware-user-agent": "npm:3.816.0" "@aws-sdk/region-config-resolver": "npm:3.808.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-endpoints": "npm:3.808.0" "@aws-sdk/util-user-agent-browser": "npm:3.804.0" - "@aws-sdk/util-user-agent-node": "npm:3.812.0" + "@aws-sdk/util-user-agent-node": "npm:3.816.0" "@smithy/config-resolver": "npm:^4.1.2" "@smithy/core": "npm:^3.3.3" "@smithy/fetch-http-handler": "npm:^5.0.2" @@ -2003,7 +2003,7 @@ __metadata: "@smithy/util-retry": "npm:^4.0.3" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/14c8752d9ca42a0806c7814634400bfc4286f99cd78600cd833f224e3aa7d86daa38e063bf7456f7c6a930e4eac8094da4ccea50563c62e4ad17ab469ea46054 + checksum: 10/ee798825612fd68566af155e79b200f02809f3e367c05105baec617bb06a46b958766f096b9221732f7bec53c921cef1df63c3a10868b5ea170fec7d6d53f9bf languageName: node linkType: hard @@ -2022,10 +2022,10 @@ __metadata: linkType: hard "@aws-sdk/s3-request-presigner@npm:^3.779.0": - version: 3.815.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.815.0" + version: 3.817.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.817.0" dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.812.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@aws-sdk/util-format-url": "npm:3.804.0" "@smithy/middleware-endpoint": "npm:^4.1.6" @@ -2033,35 +2033,36 @@ __metadata: "@smithy/smithy-client": "npm:^4.2.6" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/70ca28f9a8b8c83042f7761b3cb807c0a7eb90f965d8d270bf84c837c0406b56fa8a4d02123ecace70644ffc3fb8700c8b5f35abf34da7a80568e65e533fd493 + checksum: 10/b3d2a054fab0e3c3ca1bd0ecf7aa5fb7d497580e9c0aaee69eca1cf2c1ebbe7c3faf103e614c362e0db49b73962b40a5bce8b2be5892389056f2c7df49134563 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.812.0" +"@aws-sdk/signature-v4-multi-region@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.816.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.812.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/protocol-http": "npm:^5.1.0" "@smithy/signature-v4": "npm:^5.1.0" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/ad194ca922172fd9b86370abfc78fa027bbbca9317e99fc2807f8498b07775acde5a02439a31e27239f86580937b0d7cd08ee0c51103d8572b9a29991bcce07a + checksum: 10/a433c59ce1609813dec8ebb46bafbf0d1a8a9a55c2f47bf2766244c23ead7a8850bf731fc3a1e1f3e0270d89d41b48c5bc5c3041e6b3fa6ebd9611160e5efd89 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/token-providers@npm:3.812.0" +"@aws-sdk/token-providers@npm:3.817.0": + version: 3.817.0 + resolution: "@aws-sdk/token-providers@npm:3.817.0" dependencies: - "@aws-sdk/nested-clients": "npm:3.812.0" + "@aws-sdk/core": "npm:3.816.0" + "@aws-sdk/nested-clients": "npm:3.817.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/property-provider": "npm:^4.0.2" "@smithy/shared-ini-file-loader": "npm:^4.0.2" "@smithy/types": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10/f19a9b07cea9f02ec5ed47521c94a994c311cfad000c93b40c91548e461a1ee3abbeaf04c3b6995e123b3119af4bdbbaf8ddcaa37c91f788c5b7466636f85975 + checksum: 10/f28319417ac3b94a8340d35672b6e75d421c7dc837d5dfb45a1e06ad94f5d6b2cf4b0b7639b7f2869dcf9a94c7a5d7ecfe23f7cd02efa81ef6fa99a8e30845c2 languageName: node linkType: hard @@ -2129,11 +2130,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.812.0": - version: 3.812.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.812.0" +"@aws-sdk/util-user-agent-node@npm:3.816.0": + version: 3.816.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.816.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.812.0" + "@aws-sdk/middleware-user-agent": "npm:3.816.0" "@aws-sdk/types": "npm:3.804.0" "@smithy/node-config-provider": "npm:^4.1.1" "@smithy/types": "npm:^4.2.0" @@ -2143,7 +2144,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10/805400e8d8d49c263a01a9169ece6d12cb8c0523e766abf8ed997fac791d6f16b6c6ab0f0683166def43a0f82ac524f8817e384dc5e5c074cea2b5dd182c19a1 + checksum: 10/96ac27c29054912103420c6d2b5997d04f60ec135ee3b4c26ce09a241cbba1de74a39217278186be91e44ab936f0a2b302644d2365265a8b53669b3599dc289e languageName: node linkType: hard @@ -2169,49 +2170,49 @@ __metadata: linkType: hard "@babel/compat-data@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/compat-data@npm:7.27.2" - checksum: 10/eaa9f8aaeb9475779f4411fa397f712a6441b650d4e0b40c5535c954c891cd35c0363004db42902192aa8224532ac31ce06890478b060995286fe4fadd54e542 + version: 7.27.3 + resolution: "@babel/compat-data@npm:7.27.3" + checksum: 10/3bc4f53f2c076468c1df405e3fb3aac60a8118f46ff4ea8d093e00dcf919e915adc68d9c0a46fffe9cdc5b0d41fefe3b44370d43da09bbd7c9e5474d2cd4c656 languageName: node linkType: hard "@babel/core@npm:^7.12.3, @babel/core@npm:^7.18.5, @babel/core@npm:^7.18.9, @babel/core@npm:^7.23.9, @babel/core@npm:^7.26.10": - version: 7.27.1 - resolution: "@babel/core@npm:7.27.1" + version: 7.27.3 + resolution: "@babel/core@npm:7.27.3" dependencies: "@ampproject/remapping": "npm:^2.2.0" "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.27.1" - "@babel/helper-compilation-targets": "npm:^7.27.1" - "@babel/helper-module-transforms": "npm:^7.27.1" - "@babel/helpers": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" - "@babel/traverse": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" + "@babel/generator": "npm:^7.27.3" + "@babel/helper-compilation-targets": "npm:^7.27.2" + "@babel/helper-module-transforms": "npm:^7.27.3" + "@babel/helpers": "npm:^7.27.3" + "@babel/parser": "npm:^7.27.3" + "@babel/template": "npm:^7.27.2" + "@babel/traverse": "npm:^7.27.3" + "@babel/types": "npm:^7.27.3" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10/3dfec88f84b3ce567e6c482db0119f02f451bd3f86b0835c71c029fedb657969786507fafedd3a0732bd1be9fbc9f0635d734efafabad6dbc67d3eb7b494cdd8 + checksum: 10/c0cf72f01c9913b10e974e548e46359563cae849e914211df951bbfc90ceac75c609156f20faa2db784308dc413ba64e2c0b94f9173e7e1e92a75053aab1e1bb languageName: node linkType: hard -"@babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/generator@npm:7.27.1" +"@babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/generator@npm:7.27.3" dependencies: - "@babel/parser": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" + "@babel/parser": "npm:^7.27.3" + "@babel/types": "npm:^7.27.3" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^3.0.2" - checksum: 10/6101825922a8a116e64b507d9309b38c5bc027b333d7111fcb760422741d3c72bd8f8e5aa935c2944c434ffe376353a27afa3a25a8526dc2ef90743d266770db + checksum: 10/3b8477ae0c305639f86aeb553115535b103626008945462d32171fa4ebd77f2a0345600dc5baee7ced98d54cc7da9c806808a04b555c75136f42e0e9d7794bdf languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.27.1": +"@babel/helper-compilation-targets@npm:^7.27.2": version: 7.27.2 resolution: "@babel/helper-compilation-targets@npm:7.27.2" dependencies: @@ -2234,16 +2235,16 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-module-transforms@npm:7.27.1" +"@babel/helper-module-transforms@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/helper-module-transforms@npm:7.27.3" dependencies: "@babel/helper-module-imports": "npm:^7.27.1" "@babel/helper-validator-identifier": "npm:^7.27.1" - "@babel/traverse": "npm:^7.27.1" + "@babel/traverse": "npm:^7.27.3" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10/415509a5854203073755aab3ad293664146a55777355b5b5187902f976162c9565907d2276f7f6e778527be4829db2d926015d446100a65f2538d6397d83e248 + checksum: 10/47abc90ceb181b4bdea9bf1717adf536d1b5e5acb6f6d8a7a4524080318b5ca8a99e6d58677268c596bad71077d1d98834d2c3815f2443e6d3f287962300f15d languageName: node linkType: hard @@ -2275,24 +2276,24 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helpers@npm:7.27.1" +"@babel/helpers@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/helpers@npm:7.27.3" dependencies: - "@babel/template": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - checksum: 10/b86ee2c87d52640c63ec1fdf139d4560efc173ae6379659e0df49a3c0cf1d5f24436132ebb4459a4ee72418b43b39ee001f4e01465b48c8d31911a745ec4fd74 + "@babel/template": "npm:^7.27.2" + "@babel/types": "npm:^7.27.3" + checksum: 10/534e6bd68d96a7e548aeab7a4cf8003d7cffc0202448e47242095692e243d08fcf89b6f4b9ea369b4fc29a4247b443da9fa29f43de4b71639b3687c1c8f534d2 languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.27.0, @babel/parser@npm:^7.27.1, @babel/parser@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/parser@npm:7.27.2" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.27.0, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/parser@npm:7.27.3" dependencies: - "@babel/types": "npm:^7.27.1" + "@babel/types": "npm:^7.27.3" bin: parser: ./bin/babel-parser.js - checksum: 10/133b4ccfbc01d4f36b0945937aabff87026c29fda6dcd3c842053a672e50f2487a101a3acd150bbaa2eecd33f3bd35650f95b806567c926f93b2af35c2b615c9 + checksum: 10/ea5a0cd55e18f905d4c732b009ca0f66b0e5580f0d2af82643c26ef0909a16704778f59b7a2959096e9cf881b6291da747bfd29e400422e04d9074eb1f80983e languageName: node linkType: hard @@ -2363,13 +2364,13 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.26.10, @babel/runtime@npm:^7.27.1, @babel/runtime@npm:^7.7.6": - version: 7.27.1 - resolution: "@babel/runtime@npm:7.27.1" - checksum: 10/34cefcbf781ea5a4f1b93f8563327b9ac82694bebdae91e8bd9d7f58d084cbe5b9a6e7f94d77076e15b0bcdaa0040a36cb30737584028df6c4673b4c67b2a31d + version: 7.27.3 + resolution: "@babel/runtime@npm:7.27.3" + checksum: 10/c1975b37bfc3f24a32c0beb4999d4302a33a70d0599fb3d42a9baf836fcd615de7ae36eff2fbbc7451c892d3dcc9314a90c3f1f3b337f5617f6c5b826d2dbd54 languageName: node linkType: hard -"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.27.1": +"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.27.2": version: 7.27.2 resolution: "@babel/template@npm:7.27.2" dependencies: @@ -2380,28 +2381,28 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.27.0, @babel/traverse@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/traverse@npm:7.27.1" +"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.27.0, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/traverse@npm:7.27.3" dependencies: "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" + "@babel/generator": "npm:^7.27.3" + "@babel/parser": "npm:^7.27.3" + "@babel/template": "npm:^7.27.2" + "@babel/types": "npm:^7.27.3" debug: "npm:^4.3.1" globals: "npm:^11.1.0" - checksum: 10/9977271aa451293d3f184521412788d6ddaff9d6a29626d7435b5dacd059feb2d7753bc94f59f4f5b76e65bd2e2cabc8a10d7e1f93709feda28619f2e8cbf4d6 + checksum: 10/caccdb8335705847d34123ee76d70c3fb575f8c8b3de83ff1560c5d3229269fd4721510b7b63564a122995eb844f651313cad57b85d45023a0f50f848bf23c55 languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.13, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.26.10, @babel/types@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/types@npm:7.27.1" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.13, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.26.10, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3": + version: 7.27.3 + resolution: "@babel/types@npm:7.27.3" dependencies: "@babel/helper-string-parser": "npm:^7.27.1" "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10/81f8ada28c4b29695d7d4c4cbfaa5ec3138ccebbeb26628c7c3cc570fdc84f28967c9e68caf4977d51ff4f4d3159c88857ef278317f84f3515dd65e5b8a74995 + checksum: 10/a24e6accd85c4747b974b3d68a3210d0aa1180c1a77b287ffcb7401cd2edad7bdecadaeb40fe5191be3990c3a5252943f7de7c09da13ed269adbb054b97056ee languageName: node linkType: hard @@ -3203,6 +3204,7 @@ __metadata: "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" + "@svgdotjs/svg.js": "npm:^3.2.4" "@toeverything/theme": "npm:^1.1.15" "@types/lodash-es": "npm:^4.17.12" lit: "npm:^3.2.0" @@ -3232,6 +3234,7 @@ __metadata: "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" + "@svgdotjs/svg.js": "npm:^3.2.4" "@toeverything/theme": "npm:^1.1.15" "@types/lodash-es": "npm:^4.17.12" lit: "npm:^3.2.0" @@ -3416,6 +3419,7 @@ __metadata: "@blocksuite/store": "workspace:*" "@lit/context": "npm:^1.1.2" "@preact/signals-core": "npm:^1.8.0" + "@svgdotjs/svg.js": "npm:^3.2.4" "@toeverything/theme": "npm:^1.1.15" "@types/lodash-es": "npm:^4.17.12" lit: "npm:^3.2.0" @@ -4571,11 +4575,11 @@ __metadata: linkType: hard "@capgo/inappbrowser@npm:^7.1.0": - version: 7.9.3 - resolution: "@capgo/inappbrowser@npm:7.9.3" + version: 7.9.6 + resolution: "@capgo/inappbrowser@npm:7.9.6" peerDependencies: "@capacitor/core": ">=7.0.0" - checksum: 10/2265f5bf7e4431c69a3053cced5438b12309e36313b690af9fd4d3f70f428d7cec949f76380926ba9f850d549edbb871c2937bc34214273301e27a24e2f20f2a + checksum: 10/555e180241f93603acf869443812078ff28be29b646493c575a51b408a177ade9a8fa45862233b730c79bb034061575c5f1e3331e18815acfc2864ab40a076ee languageName: node linkType: hard @@ -5404,7 +5408,7 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.4.0, @emnapi/core@npm:^1.4.3": +"@emnapi/core@npm:^1.4.3": version: 1.4.3 resolution: "@emnapi/core@npm:1.4.3" dependencies: @@ -5414,7 +5418,7 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.0, @emnapi/runtime@npm:^1.4.3": +"@emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.3": version: 1.4.3 resolution: "@emnapi/runtime@npm:1.4.3" dependencies: @@ -5637,177 +5641,177 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/aix-ppc64@npm:0.25.4" +"@esbuild/aix-ppc64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/aix-ppc64@npm:0.25.5" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm64@npm:0.25.4" +"@esbuild/android-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/android-arm64@npm:0.25.5" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-arm@npm:0.25.4" +"@esbuild/android-arm@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/android-arm@npm:0.25.5" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/android-x64@npm:0.25.4" +"@esbuild/android-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/android-x64@npm:0.25.5" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-arm64@npm:0.25.4" +"@esbuild/darwin-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/darwin-arm64@npm:0.25.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/darwin-x64@npm:0.25.4" +"@esbuild/darwin-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/darwin-x64@npm:0.25.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-arm64@npm:0.25.4" +"@esbuild/freebsd-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/freebsd-arm64@npm:0.25.5" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/freebsd-x64@npm:0.25.4" +"@esbuild/freebsd-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/freebsd-x64@npm:0.25.5" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm64@npm:0.25.4" +"@esbuild/linux-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-arm64@npm:0.25.5" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-arm@npm:0.25.4" +"@esbuild/linux-arm@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-arm@npm:0.25.5" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ia32@npm:0.25.4" +"@esbuild/linux-ia32@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-ia32@npm:0.25.5" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-loong64@npm:0.25.4" +"@esbuild/linux-loong64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-loong64@npm:0.25.5" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-mips64el@npm:0.25.4" +"@esbuild/linux-mips64el@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-mips64el@npm:0.25.5" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-ppc64@npm:0.25.4" +"@esbuild/linux-ppc64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-ppc64@npm:0.25.5" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-riscv64@npm:0.25.4" +"@esbuild/linux-riscv64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-riscv64@npm:0.25.5" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-s390x@npm:0.25.4" +"@esbuild/linux-s390x@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-s390x@npm:0.25.5" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/linux-x64@npm:0.25.4" +"@esbuild/linux-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/linux-x64@npm:0.25.5" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-arm64@npm:0.25.4" +"@esbuild/netbsd-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/netbsd-arm64@npm:0.25.5" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/netbsd-x64@npm:0.25.4" +"@esbuild/netbsd-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/netbsd-x64@npm:0.25.5" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-arm64@npm:0.25.4" +"@esbuild/openbsd-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/openbsd-arm64@npm:0.25.5" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/openbsd-x64@npm:0.25.4" +"@esbuild/openbsd-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/openbsd-x64@npm:0.25.5" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/sunos-x64@npm:0.25.4" +"@esbuild/sunos-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/sunos-x64@npm:0.25.5" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-arm64@npm:0.25.4" +"@esbuild/win32-arm64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/win32-arm64@npm:0.25.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-ia32@npm:0.25.4" +"@esbuild/win32-ia32@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/win32-ia32@npm:0.25.5" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.4": - version: 0.25.4 - resolution: "@esbuild/win32-x64@npm:0.25.4" +"@esbuild/win32-x64@npm:0.25.5": + version: 0.25.5 + resolution: "@esbuild/win32-x64@npm:0.25.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -5857,6 +5861,15 @@ __metadata: languageName: node linkType: hard +"@eslint/core@npm:^0.14.0": + version: 0.14.0 + resolution: "@eslint/core@npm:0.14.0" + dependencies: + "@types/json-schema": "npm:^7.0.15" + checksum: 10/d9b060cf97468150675ddf4fb3db55edaa32467e0adf9f80919a5bfd15d0835ad7765456f4397ec2d16b0a1bb702af63f6d4712f94194d34fea118231ae1e2db + languageName: node + linkType: hard + "@eslint/eslintrc@npm:^3.3.1": version: 3.3.1 resolution: "@eslint/eslintrc@npm:3.3.1" @@ -5874,14 +5887,7 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:9.26.0": - version: 9.26.0 - resolution: "@eslint/js@npm:9.26.0" - checksum: 10/863d35df8f6675250bb5a917037e0f6833965437eba4c4649633fd0b55a93e8d727bcd36e9b5cc82047898ee9348cb40363e196f333914ae3a6bb36159495212 - languageName: node - linkType: hard - -"@eslint/js@npm:^9.16.0": +"@eslint/js@npm:9.27.0, @eslint/js@npm:^9.16.0": version: 9.27.0 resolution: "@eslint/js@npm:9.27.0" checksum: 10/cdbe380fd31bb325b9ec65ae310fb92a57efb796d3cc5d8bc9dafef447d634c64e497bedade6a49e0cf44a5b14560ab6ac9ed9da5a38e2415b31ae01ae5b758e @@ -5895,7 +5901,7 @@ __metadata: languageName: node linkType: hard -"@eslint/plugin-kit@npm:^0.2.7, @eslint/plugin-kit@npm:^0.2.8": +"@eslint/plugin-kit@npm:^0.2.7": version: 0.2.8 resolution: "@eslint/plugin-kit@npm:0.2.8" dependencies: @@ -5905,6 +5911,16 @@ __metadata: languageName: node linkType: hard +"@eslint/plugin-kit@npm:^0.3.1": + version: 0.3.1 + resolution: "@eslint/plugin-kit@npm:0.3.1" + dependencies: + "@eslint/core": "npm:^0.14.0" + levn: "npm:^0.4.1" + checksum: 10/ab0c4cecadc6c38c7ae5f71b9831d3521d08237444d8f327751d1133a4369ccd42093a1c06b26fd6c311015807a27d95a0184a761d1cdd264b090896dcf0addb + languageName: node + linkType: hard + "@eyhn/msgpack-stream@npm:^2.8.4": version: 2.8.4 resolution: "@eyhn/msgpack-stream@npm:2.8.4" @@ -6018,15 +6034,15 @@ __metadata: linkType: hard "@gerrit0/mini-shiki@npm:^3.2.2": - version: 3.4.0 - resolution: "@gerrit0/mini-shiki@npm:3.4.0" + version: 3.4.2 + resolution: "@gerrit0/mini-shiki@npm:3.4.2" dependencies: - "@shikijs/engine-oniguruma": "npm:^3.4.0" - "@shikijs/langs": "npm:^3.4.0" - "@shikijs/themes": "npm:^3.4.0" - "@shikijs/types": "npm:^3.4.0" + "@shikijs/engine-oniguruma": "npm:^3.4.2" + "@shikijs/langs": "npm:^3.4.2" + "@shikijs/themes": "npm:^3.4.2" + "@shikijs/types": "npm:^3.4.2" "@shikijs/vscode-textmate": "npm:^10.0.2" - checksum: 10/2e116b8a6cb4d63db0fc8d96ba696befb4b4d66d4eaf4673c2585e798ae871e7e7cc581252cdc08169e5c19ae1aa496d93286da7626a36f7b0d298c660178855 + checksum: 10/64c6d1be3f25ca83df41ccb0b53989912f4b40c2dcf0895229ee03ec59f7cac6ba95a7905894bed63a027ce9f42f67eb6edf9a269bf3ce70933395c5b655d15b languageName: node linkType: hard @@ -6328,9 +6344,9 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/batch-execute@npm:^9.0.15": - version: 9.0.15 - resolution: "@graphql-tools/batch-execute@npm:9.0.15" +"@graphql-tools/batch-execute@npm:^9.0.16": + version: 9.0.16 + resolution: "@graphql-tools/batch-execute@npm:9.0.16" dependencies: "@graphql-tools/utils": "npm:^10.8.1" "@whatwg-node/promise-helpers": "npm:^1.3.0" @@ -6338,7 +6354,7 @@ __metadata: tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10/462fd023f63e61777900ccdd91ab28c7b28faeb93cdb44adc52fb5603afbb5184a50f200e6a8441986ac8851471d54d46959bb4f7e9151c0ca1e0457637979a3 + checksum: 10/25779b7becd0c89ce189cbb8aefc3afa49648f80ce8cac40c76c9a77a4c6a8e164b7a497a43ad2391fcdffdabbb9fe9e626dad44d7da85c72b08ad19e532250e languageName: node linkType: hard @@ -6357,11 +6373,11 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/delegate@npm:^10.2.17": - version: 10.2.17 - resolution: "@graphql-tools/delegate@npm:10.2.17" +"@graphql-tools/delegate@npm:^10.2.18": + version: 10.2.18 + resolution: "@graphql-tools/delegate@npm:10.2.18" dependencies: - "@graphql-tools/batch-execute": "npm:^9.0.15" + "@graphql-tools/batch-execute": "npm:^9.0.16" "@graphql-tools/executor": "npm:^1.4.7" "@graphql-tools/schema": "npm:^10.0.11" "@graphql-tools/utils": "npm:^10.8.1" @@ -6372,7 +6388,7 @@ __metadata: tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10/95ac5f92ed1ce43c4c6562a185328a419a81937c61a40e8a20101fa5083366e3b7d9fb48c08f7c44f6aceaff23421d7bcdd52a6a3328984806ab32b5b726deb8 + checksum: 10/416f3dab356965da1aca41424b81019a2ca9702020cc6e7336418964264582f529a4f79642345e5434266cea0dce84b3adae2f53e78fbbfe925752a5ca8aeced languageName: node linkType: hard @@ -6501,17 +6517,17 @@ __metadata: linkType: hard "@graphql-tools/graphql-file-loader@npm:^8.0.0": - version: 8.0.19 - resolution: "@graphql-tools/graphql-file-loader@npm:8.0.19" + version: 8.0.20 + resolution: "@graphql-tools/graphql-file-loader@npm:8.0.20" dependencies: - "@graphql-tools/import": "npm:7.0.18" + "@graphql-tools/import": "npm:7.0.19" "@graphql-tools/utils": "npm:^10.8.6" globby: "npm:^11.0.3" tslib: "npm:^2.4.0" unixify: "npm:^1.0.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10/f7b8871582fdb925ba4b54463bdad651777a53769eafbf1febe1783ab25208a1c787fa2f3a16caabee0f9c1621adad47df539973539c57037f748c6c9d4ef103 + checksum: 10/b7ee7f5ca55c753ac7bb9e3a3673f3398f663088d6b8c05c54fa454062642841aa94fe290bfab37a899e9a9c408e21ed7e3d429e0b2166f2baed0125fbd4eda4 languageName: node linkType: hard @@ -6532,16 +6548,16 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/import@npm:7.0.18": - version: 7.0.18 - resolution: "@graphql-tools/import@npm:7.0.18" +"@graphql-tools/import@npm:7.0.19": + version: 7.0.19 + resolution: "@graphql-tools/import@npm:7.0.19" dependencies: "@graphql-tools/utils": "npm:^10.8.6" resolve-from: "npm:5.0.0" tslib: "npm:^2.4.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10/739086fcaffefa8efa38648477fd4aea41a87b5fa3f78552a2a7b6249dce1d84d84e164e61c73811d6ce9e8f5754b6bab675f7255482bf5ba080f83759a37138 + checksum: 10/78ce39f05d30894d850201669b3acad774406514ae7a4c13058f52465786405b6bc59f4255f01bcd046bee74bbbcde54a49a6d23fae7d7666ed7abdfca8fbae3 languageName: node linkType: hard @@ -6724,17 +6740,17 @@ __metadata: linkType: hard "@graphql-tools/wrap@npm:^10.0.16": - version: 10.0.35 - resolution: "@graphql-tools/wrap@npm:10.0.35" + version: 10.0.36 + resolution: "@graphql-tools/wrap@npm:10.0.36" dependencies: - "@graphql-tools/delegate": "npm:^10.2.17" + "@graphql-tools/delegate": "npm:^10.2.18" "@graphql-tools/schema": "npm:^10.0.11" "@graphql-tools/utils": "npm:^10.8.1" "@whatwg-node/promise-helpers": "npm:^1.3.0" tslib: "npm:^2.8.1" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10/eb129b9ef0a46e19d21f3baf283279295249ab4de23856cb87de95a3d24e951bbdecd9203f07440761e8dfc63ea41e39576b6f9f410d2d16a36a34ac08f6ac97 + checksum: 10/17bffdee2199ece2967043404b1ab0054a420e4e1c170ff02b134b911e8db8a21c811c5d65426ceeeced086ca4ce5293ab8dd70d9fcb0ebbfdc900fd7c05db5b languageName: node linkType: hard @@ -6748,12 +6764,12 @@ __metadata: linkType: hard "@grpc/grpc-js@npm:^1.1.8, @grpc/grpc-js@npm:^1.7.1": - version: 1.13.3 - resolution: "@grpc/grpc-js@npm:1.13.3" + version: 1.13.4 + resolution: "@grpc/grpc-js@npm:1.13.4" dependencies: "@grpc/proto-loader": "npm:^0.7.13" "@js-sdsl/ordered-map": "npm:^4.4.2" - checksum: 10/0b5016baf063ae115972b9765b53ade072a6feb5bf45ddbbc24f2aab6e69ebb6069792cf0451fb6e08eaf58a837e1916b8f04740008fa6550bf8442ee2588305 + checksum: 10/f1eb910ff78ddffa03870f69efccdbb30c1349571b759ee7fe971d3dc727d900748922a841bb7406e87e7130fb68e6346b0bd929a1a35b5caebe994df08e4df5 languageName: node linkType: hard @@ -6830,9 +6846,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-arm64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-darwin-arm64@npm:0.34.1" +"@img/sharp-darwin-arm64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-darwin-arm64@npm:0.34.2" dependencies: "@img/sharp-libvips-darwin-arm64": "npm:1.1.0" dependenciesMeta: @@ -6854,9 +6870,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-x64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-darwin-x64@npm:0.34.1" +"@img/sharp-darwin-x64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-darwin-x64@npm:0.34.2" dependencies: "@img/sharp-libvips-darwin-x64": "npm:1.1.0" dependenciesMeta: @@ -6997,9 +7013,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-arm64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linux-arm64@npm:0.34.1" +"@img/sharp-linux-arm64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linux-arm64@npm:0.34.2" dependencies: "@img/sharp-libvips-linux-arm64": "npm:1.1.0" dependenciesMeta: @@ -7021,9 +7037,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-arm@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linux-arm@npm:0.34.1" +"@img/sharp-linux-arm@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linux-arm@npm:0.34.2" dependencies: "@img/sharp-libvips-linux-arm": "npm:1.1.0" dependenciesMeta: @@ -7045,9 +7061,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-s390x@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linux-s390x@npm:0.34.1" +"@img/sharp-linux-s390x@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linux-s390x@npm:0.34.2" dependencies: "@img/sharp-libvips-linux-s390x": "npm:1.1.0" dependenciesMeta: @@ -7069,9 +7085,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-x64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linux-x64@npm:0.34.1" +"@img/sharp-linux-x64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linux-x64@npm:0.34.2" dependencies: "@img/sharp-libvips-linux-x64": "npm:1.1.0" dependenciesMeta: @@ -7093,9 +7109,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-arm64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.1" +"@img/sharp-linuxmusl-arm64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.2" dependencies: "@img/sharp-libvips-linuxmusl-arm64": "npm:1.1.0" dependenciesMeta: @@ -7117,9 +7133,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-x64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-linuxmusl-x64@npm:0.34.1" +"@img/sharp-linuxmusl-x64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-linuxmusl-x64@npm:0.34.2" dependencies: "@img/sharp-libvips-linuxmusl-x64": "npm:1.1.0" dependenciesMeta: @@ -7138,15 +7154,22 @@ __metadata: languageName: node linkType: hard -"@img/sharp-wasm32@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-wasm32@npm:0.34.1" +"@img/sharp-wasm32@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-wasm32@npm:0.34.2" dependencies: - "@emnapi/runtime": "npm:^1.4.0" + "@emnapi/runtime": "npm:^1.4.3" conditions: cpu=wasm32 languageName: node linkType: hard +"@img/sharp-win32-arm64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-win32-arm64@npm:0.34.2" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@img/sharp-win32-ia32@npm:0.33.5": version: 0.33.5 resolution: "@img/sharp-win32-ia32@npm:0.33.5" @@ -7154,9 +7177,9 @@ __metadata: languageName: node linkType: hard -"@img/sharp-win32-ia32@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-win32-ia32@npm:0.34.1" +"@img/sharp-win32-ia32@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-win32-ia32@npm:0.34.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard @@ -7168,20 +7191,20 @@ __metadata: languageName: node linkType: hard -"@img/sharp-win32-x64@npm:0.34.1": - version: 0.34.1 - resolution: "@img/sharp-win32-x64@npm:0.34.1" +"@img/sharp-win32-x64@npm:0.34.2": + version: 0.34.2 + resolution: "@img/sharp-win32-x64@npm:0.34.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@inquirer/checkbox@npm:^4.1.6": - version: 4.1.6 - resolution: "@inquirer/checkbox@npm:4.1.6" +"@inquirer/checkbox@npm:^4.1.8": + version: 4.1.8 + resolution: "@inquirer/checkbox@npm:4.1.8" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/figures": "npm:^1.0.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/figures": "npm:^1.0.12" + "@inquirer/type": "npm:^3.0.7" ansi-escapes: "npm:^4.3.2" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: @@ -7189,31 +7212,31 @@ __metadata: peerDependenciesMeta: "@types/node": optional: true - checksum: 10/28012e16e72393ad6cc5b659620685a75e3e0227c3a2c6d6d1b235742ed7cae0516479e0e1b974c002b8fc7bf49698e9af2900a22cc5b1a83257d9000802401b + checksum: 10/b7262c3c03fc6b6aec17aeeb6b0265f1ec755ba1a8cda997baa49066cb8d58b7af5671c726c3a41ca61c8e50e964214ab898207a28fb224592940338209eecbe languageName: node linkType: hard -"@inquirer/confirm@npm:^5.0.0, @inquirer/confirm@npm:^5.1.10": - version: 5.1.10 - resolution: "@inquirer/confirm@npm:5.1.10" +"@inquirer/confirm@npm:^5.0.0, @inquirer/confirm@npm:^5.1.12": + version: 5.1.12 + resolution: "@inquirer/confirm@npm:5.1.12" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/d2972697eb14c4753745fdb6e8087d2b08bfde947e615d2380260c4430d54fdd243d78b033cc948011e41b30ac46da5d5b37ee4c19a0fa28f54cf34781a2ef99 + checksum: 10/858b0ce79e0893851ad81c322b720130eae65f700db4688b53dbd3c7a0e339d3bc6a728f48f2b78fcc1cd5a1f2ea01e756a8c7d55af83b0aec0e354119ced661 languageName: node linkType: hard -"@inquirer/core@npm:^10.1.11": - version: 10.1.11 - resolution: "@inquirer/core@npm:10.1.11" +"@inquirer/core@npm:^10.1.13": + version: 10.1.13 + resolution: "@inquirer/core@npm:10.1.13" dependencies: - "@inquirer/figures": "npm:^1.0.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/figures": "npm:^1.0.12" + "@inquirer/type": "npm:^3.0.7" ansi-escapes: "npm:^4.3.2" cli-width: "npm:^4.1.0" mute-stream: "npm:^2.0.0" @@ -7225,158 +7248,158 @@ __metadata: peerDependenciesMeta: "@types/node": optional: true - checksum: 10/3a9ccc4128511d4aeb96946b6919e8a0a06f7ea820649dde26ce366d862a5d60b3f22b93dce4b1888304cf5f7c80e9c70701003c58bd981a76f8b308379723fa + checksum: 10/810d0382ae1da52e0acb093a3205a9582d60ce90e824d7edae5c29690e7c04dead3e1347672217df33f4bd72c028fd401f8947bbde3a57ab74b1f721e44be025 languageName: node linkType: hard -"@inquirer/editor@npm:^4.2.11": - version: 4.2.11 - resolution: "@inquirer/editor@npm:4.2.11" +"@inquirer/editor@npm:^4.2.13": + version: 4.2.13 + resolution: "@inquirer/editor@npm:4.2.13" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" external-editor: "npm:^3.1.0" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/dcc65e6dc2cf25fd03939b54ff195521748114d3d2986296d708b4357d48d9ac5843e9774b1d02e0f77b9b0edbf4c8b10a77edd99910e1833864b379e5b66ced + checksum: 10/e4d1e98b8f3acc79b5fcd548c149df1bdd447a56b9b33b357d948d68d605671ca7618065a00d17a5630aafcbb3a747ecd514c6bf9f8c225f73758ac35798b61a languageName: node linkType: hard -"@inquirer/expand@npm:^4.0.13": - version: 4.0.13 - resolution: "@inquirer/expand@npm:4.0.13" +"@inquirer/expand@npm:^4.0.15": + version: 4.0.15 + resolution: "@inquirer/expand@npm:4.0.15" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/25ac3a84dbd0b7763aa85ce75c9f3d2022bcc307973a5a3e0b538e2c1e2a94b5eef0b786536589e5f1554a7654853887d150c80b66e3335cc831aa0a5e7d088a + checksum: 10/c0935eec81137ce1a9d4ced4544a02f2f69bdf3df85e70c0ed27d54d62ea9c3c0df27c552010a410b1117ecd04bb16679e12b71ed8eb4d7e5b6e9433ed62f2d8 languageName: node linkType: hard -"@inquirer/figures@npm:^1.0.11": - version: 1.0.11 - resolution: "@inquirer/figures@npm:1.0.11" - checksum: 10/357ddd2e83718bc3c9189d518b93fd69099af9c860354df9a5ac0ec024cb5df1228ae4608d2de7625624d2adcd047db813f29426a610eaae7b9e449f8c753c6b +"@inquirer/figures@npm:^1.0.12": + version: 1.0.12 + resolution: "@inquirer/figures@npm:1.0.12" + checksum: 10/2ef81c00a92da48891f1eb55b7ea609f32be54c7e9c9dab232a7e8813c93e95107f6385b503a34bcc71edc49b9eb10ea9a31e27dba5ecdc140408efe840cdfa7 languageName: node linkType: hard -"@inquirer/input@npm:^4.1.10": - version: 4.1.10 - resolution: "@inquirer/input@npm:4.1.10" +"@inquirer/input@npm:^4.1.12": + version: 4.1.12 + resolution: "@inquirer/input@npm:4.1.12" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/61ea42f1171fc0113bfde9fd5b5a32a6f436011178fa08613685f337b3f3cb1bc60b1a76b3ab55fc2c895d87196526add2e1b0711249d539eb982428878566f2 + checksum: 10/ac7a95abda133fd24205513102035e87be00d0d451c61e0dd439c791cd39f57ce4593ee75b6dcc358ffd92ce4b6b2cfa6db6cff0b173e15e9cb68df6a0fb7c7d languageName: node linkType: hard -"@inquirer/number@npm:^3.0.13": - version: 3.0.13 - resolution: "@inquirer/number@npm:3.0.13" +"@inquirer/number@npm:^3.0.15": + version: 3.0.15 + resolution: "@inquirer/number@npm:3.0.15" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/6df930d3ef281dff5b6b59fbdc999bcfeaf49175e2a1739f9db80a4e10b10060045cb265fb2737c8382d8264f457ab2f647c20368e288562068d2bba36fdca54 + checksum: 10/a19804ed1e8ee0a64a018c3e623bc4614674a97ae228f14fcb36e59043a0a205468eacd9a463e82c7ebeffbbba39a88a51e0cee916bf1067a6531f8f573479da languageName: node linkType: hard -"@inquirer/password@npm:^4.0.13": - version: 4.0.13 - resolution: "@inquirer/password@npm:4.0.13" +"@inquirer/password@npm:^4.0.15": + version: 4.0.15 + resolution: "@inquirer/password@npm:4.0.15" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" ansi-escapes: "npm:^4.3.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/f45f51e12326586b205195f5b669ce6f529b7f0bfad9ab667fb90bd4858c86d9bfb372310e0deb7f600fccf2577bd3a992feaf3fcfbc86b86e715878c4ed52e5 + checksum: 10/e626ae5b5938786a35c771ff150765a6fe7ee1eab466af756908aa7f8d9a99c5a1924ba322466e599a1b8713c358f927ae42a09eb7353e440be9b0e041e2d494 languageName: node linkType: hard -"@inquirer/prompts@npm:^7.4.0, @inquirer/prompts@npm:^7.5.1": - version: 7.5.1 - resolution: "@inquirer/prompts@npm:7.5.1" +"@inquirer/prompts@npm:^7.4.0, @inquirer/prompts@npm:^7.5.3": + version: 7.5.3 + resolution: "@inquirer/prompts@npm:7.5.3" dependencies: - "@inquirer/checkbox": "npm:^4.1.6" - "@inquirer/confirm": "npm:^5.1.10" - "@inquirer/editor": "npm:^4.2.11" - "@inquirer/expand": "npm:^4.0.13" - "@inquirer/input": "npm:^4.1.10" - "@inquirer/number": "npm:^3.0.13" - "@inquirer/password": "npm:^4.0.13" - "@inquirer/rawlist": "npm:^4.1.1" - "@inquirer/search": "npm:^3.0.13" - "@inquirer/select": "npm:^4.2.1" + "@inquirer/checkbox": "npm:^4.1.8" + "@inquirer/confirm": "npm:^5.1.12" + "@inquirer/editor": "npm:^4.2.13" + "@inquirer/expand": "npm:^4.0.15" + "@inquirer/input": "npm:^4.1.12" + "@inquirer/number": "npm:^3.0.15" + "@inquirer/password": "npm:^4.0.15" + "@inquirer/rawlist": "npm:^4.1.3" + "@inquirer/search": "npm:^3.0.15" + "@inquirer/select": "npm:^4.2.3" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/febb8a1bb6e7ff63b0e6c88ac9af7f7a2daf621f80c0e720cc7a68bd9fa99c7253911271d547ba3b55f18b580298a58440f3f45c974b8e895cfae929fadec868 + checksum: 10/5dec8dc9f81feaa61d94cfe1c5c79b7e906f3f727223fef8a673f837b5f04ad05584742202e1222307b2b5098384859864cca8d7f5a103958de0a9cebb31892c languageName: node linkType: hard -"@inquirer/rawlist@npm:^4.1.1": - version: 4.1.1 - resolution: "@inquirer/rawlist@npm:4.1.1" +"@inquirer/rawlist@npm:^4.1.3": + version: 4.1.3 + resolution: "@inquirer/rawlist@npm:4.1.3" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/type": "npm:^3.0.7" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/e7c272f9f7a1576c9c1212a278c2d4bad7b394ddf512d3bbbf75902baa7a4fe4bde1b707f1d4c0cbe3963d0ba5a92e7fcbc4dffbb817ecec9b4fa70ac97b535d + checksum: 10/b2fce9517c605dd6aa337a253bc9f12ccdbae2d27044fe0a782e61d416f89c842c670f5cb07ea90b1b22fde2eb1aec63cbdc8f36ed9ff8b5079ace0740afcbf7 languageName: node linkType: hard -"@inquirer/search@npm:^3.0.13": - version: 3.0.13 - resolution: "@inquirer/search@npm:3.0.13" +"@inquirer/search@npm:^3.0.15": + version: 3.0.15 + resolution: "@inquirer/search@npm:3.0.15" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/figures": "npm:^1.0.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/figures": "npm:^1.0.12" + "@inquirer/type": "npm:^3.0.7" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/2b8a94c5d83e4eced093caa680cb6561037d047702b91f77adc1ab56189d0c78974de0017946004b7acef9f8312772d7369ad227c0fbc59133ad3243981eff3d + checksum: 10/e91dc5c473324e6fbd70ea9617db68dd5196c6c65d471f0299ec4b67dd9187529d8febadaae260dbb4708c078da8038eeeda2495f213b207c21b0c2538a21be4 languageName: node linkType: hard -"@inquirer/select@npm:^4.2.1": - version: 4.2.1 - resolution: "@inquirer/select@npm:4.2.1" +"@inquirer/select@npm:^4.2.3": + version: 4.2.3 + resolution: "@inquirer/select@npm:4.2.3" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/figures": "npm:^1.0.11" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/figures": "npm:^1.0.12" + "@inquirer/type": "npm:^3.0.7" ansi-escapes: "npm:^4.3.2" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: @@ -7384,19 +7407,19 @@ __metadata: peerDependenciesMeta: "@types/node": optional: true - checksum: 10/883ff2c359052efe9be021d5cf5133970c49f62ac07ba18fd949d71242a40608708f9a0651a1094c6e1dcbc914c40817646f57ac2b281b485fa331dd49232083 + checksum: 10/29630216af526d87318415312d71ceacfe0d73d48faccdf50694293865b43285dae87b9072ac3dbb39458cd1815ad6e27cd6266d57b1d589b71e8bb4a544bc93 languageName: node linkType: hard -"@inquirer/type@npm:^3.0.6": - version: 3.0.6 - resolution: "@inquirer/type@npm:3.0.6" +"@inquirer/type@npm:^3.0.7": + version: 3.0.7 + resolution: "@inquirer/type@npm:3.0.7" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10/e3466c83934585cb180bc44ede36e9545e794c211f53ffa0390b1c70bb05fb79bacdc1173cdbe08c5ac72bd4186e34b4f10c1c4b94e0cba9abfb714742dd6201 + checksum: 10/c63671a0905f921116778254f4ee251a57e70a5fb9e27b92f581275c1604e0a7a5b30f8aa289a01508cd951870e84390d548d1cba9c1e53302eeffa5e0173dae languageName: node linkType: hard @@ -7874,28 +7897,10 @@ __metadata: languageName: node linkType: hard -"@modelcontextprotocol/sdk@npm:^1.8.0": - version: 1.11.1 - resolution: "@modelcontextprotocol/sdk@npm:1.11.1" - dependencies: - content-type: "npm:^1.0.5" - cors: "npm:^2.8.5" - cross-spawn: "npm:^7.0.3" - eventsource: "npm:^3.0.2" - express: "npm:^5.0.1" - express-rate-limit: "npm:^7.5.0" - pkce-challenge: "npm:^5.0.0" - raw-body: "npm:^3.0.0" - zod: "npm:^3.23.8" - zod-to-json-schema: "npm:^3.24.1" - checksum: 10/bf388e3f5082839ccf32eb4f16e086ead71310f30c3103ff99f337d7bcfc6da6b3377dc9bd64ac9b862969487081c36889faea02c5c30805695e8addac96b9a8 - languageName: node - linkType: hard - "@msgpack/msgpack@npm:^3.0.0-beta2": - version: 3.1.1 - resolution: "@msgpack/msgpack@npm:3.1.1" - checksum: 10/6ca51b60904cc9d41cdc778cc3879e745428423863bbefae292fe3f3d0dff415ce35bcff9e6783d8a7613976f51ce56fbf800b55d0416fb70bafe4d6b220668c + version: 3.1.2 + resolution: "@msgpack/msgpack@npm:3.1.2" + checksum: 10/e04ff37d7c89ffdd6b4fbcd1770af60b16c98afdf1c3c16190170dfe34764048eb45e3654016ac62cc616c7e4b09e611f8863317ca5f18b3a72974fb131e562e languageName: node linkType: hard @@ -7941,9 +7946,9 @@ __metadata: languageName: node linkType: hard -"@mswjs/interceptors@npm:^0.37.0": - version: 0.37.6 - resolution: "@mswjs/interceptors@npm:0.37.6" +"@mswjs/interceptors@npm:^0.38.7": + version: 0.38.7 + resolution: "@mswjs/interceptors@npm:0.38.7" dependencies: "@open-draft/deferred-promise": "npm:^2.2.0" "@open-draft/logger": "npm:^0.3.0" @@ -7951,7 +7956,7 @@ __metadata: is-node-process: "npm:^1.2.0" outvariant: "npm:^1.4.3" strict-event-emitter: "npm:^0.5.1" - checksum: 10/bc1541ba3b8b04db267cb962542752383245cb55b074b1eeee4c9fb03ccb8713b0c4b55eab46af2bc161b9893d8a25998894f88e3f2e3feab5f092c4d7c416cb + checksum: 10/5563cf6af45baa547c40541df2ca1a7b049645bc0cac76f0cabcd27636da7c5bb5dce4fd5f17b1a68e4eaa10a8964f9dd3aba4e3408d67fc10b609e3888c4b49 languageName: node linkType: hard @@ -8019,148 +8024,148 @@ __metadata: languageName: node linkType: hard -"@napi-rs/lzma-android-arm-eabi@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.4.2" +"@napi-rs/lzma-android-arm-eabi@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.4.3" conditions: os=android & cpu=arm languageName: node linkType: hard -"@napi-rs/lzma-android-arm64@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-android-arm64@npm:1.4.2" +"@napi-rs/lzma-android-arm64@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-android-arm64@npm:1.4.3" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-darwin-arm64@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-darwin-arm64@npm:1.4.2" +"@napi-rs/lzma-darwin-arm64@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-darwin-arm64@npm:1.4.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-darwin-x64@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-darwin-x64@npm:1.4.2" +"@napi-rs/lzma-darwin-x64@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-darwin-x64@npm:1.4.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@napi-rs/lzma-freebsd-x64@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-freebsd-x64@npm:1.4.2" +"@napi-rs/lzma-freebsd-x64@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-freebsd-x64@npm:1.4.3" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.2" +"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.3" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@napi-rs/lzma-linux-arm64-gnu@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.4.2" +"@napi-rs/lzma-linux-arm64-gnu@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.4.3" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-arm64-musl@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.4.2" +"@napi-rs/lzma-linux-arm64-musl@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.4.3" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.2" +"@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.3" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.2" +"@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.3" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-s390x-gnu@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.4.2" +"@napi-rs/lzma-linux-s390x-gnu@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.4.3" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-x64-gnu@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.4.2" +"@napi-rs/lzma-linux-x64-gnu@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.4.3" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-x64-musl@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.4.2" +"@napi-rs/lzma-linux-x64-musl@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.4.3" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@napi-rs/lzma-wasm32-wasi@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.4.2" +"@napi-rs/lzma-wasm32-wasi@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.4.3" dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.9" + "@napi-rs/wasm-runtime": "npm:^0.2.10" conditions: cpu=wasm32 languageName: node linkType: hard -"@napi-rs/lzma-win32-arm64-msvc@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.4.2" +"@napi-rs/lzma-win32-arm64-msvc@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.4.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-win32-ia32-msvc@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.4.2" +"@napi-rs/lzma-win32-ia32-msvc@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.4.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@napi-rs/lzma-win32-x64-msvc@npm:1.4.2": - version: 1.4.2 - resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.4.2" +"@napi-rs/lzma-win32-x64-msvc@npm:1.4.3": + version: 1.4.3 + resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.4.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@napi-rs/lzma@npm:^1.4.1": - version: 1.4.2 - resolution: "@napi-rs/lzma@npm:1.4.2" + version: 1.4.3 + resolution: "@napi-rs/lzma@npm:1.4.3" dependencies: - "@napi-rs/lzma-android-arm-eabi": "npm:1.4.2" - "@napi-rs/lzma-android-arm64": "npm:1.4.2" - "@napi-rs/lzma-darwin-arm64": "npm:1.4.2" - "@napi-rs/lzma-darwin-x64": "npm:1.4.2" - "@napi-rs/lzma-freebsd-x64": "npm:1.4.2" - "@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.4.2" - "@napi-rs/lzma-linux-arm64-gnu": "npm:1.4.2" - "@napi-rs/lzma-linux-arm64-musl": "npm:1.4.2" - "@napi-rs/lzma-linux-ppc64-gnu": "npm:1.4.2" - "@napi-rs/lzma-linux-riscv64-gnu": "npm:1.4.2" - "@napi-rs/lzma-linux-s390x-gnu": "npm:1.4.2" - "@napi-rs/lzma-linux-x64-gnu": "npm:1.4.2" - "@napi-rs/lzma-linux-x64-musl": "npm:1.4.2" - "@napi-rs/lzma-wasm32-wasi": "npm:1.4.2" - "@napi-rs/lzma-win32-arm64-msvc": "npm:1.4.2" - "@napi-rs/lzma-win32-ia32-msvc": "npm:1.4.2" - "@napi-rs/lzma-win32-x64-msvc": "npm:1.4.2" + "@napi-rs/lzma-android-arm-eabi": "npm:1.4.3" + "@napi-rs/lzma-android-arm64": "npm:1.4.3" + "@napi-rs/lzma-darwin-arm64": "npm:1.4.3" + "@napi-rs/lzma-darwin-x64": "npm:1.4.3" + "@napi-rs/lzma-freebsd-x64": "npm:1.4.3" + "@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.4.3" + "@napi-rs/lzma-linux-arm64-gnu": "npm:1.4.3" + "@napi-rs/lzma-linux-arm64-musl": "npm:1.4.3" + "@napi-rs/lzma-linux-ppc64-gnu": "npm:1.4.3" + "@napi-rs/lzma-linux-riscv64-gnu": "npm:1.4.3" + "@napi-rs/lzma-linux-s390x-gnu": "npm:1.4.3" + "@napi-rs/lzma-linux-x64-gnu": "npm:1.4.3" + "@napi-rs/lzma-linux-x64-musl": "npm:1.4.3" + "@napi-rs/lzma-wasm32-wasi": "npm:1.4.3" + "@napi-rs/lzma-win32-arm64-msvc": "npm:1.4.3" + "@napi-rs/lzma-win32-ia32-msvc": "npm:1.4.3" + "@napi-rs/lzma-win32-x64-msvc": "npm:1.4.3" dependenciesMeta: "@napi-rs/lzma-android-arm-eabi": optional: true @@ -8196,7 +8201,7 @@ __metadata: optional: true "@napi-rs/lzma-win32-x64-msvc": optional: true - checksum: 10/8532bcde3889ae949b2088460b9cbc9550b9f9cd00d17b263b8e8977ec766b67ba561b1aba0dd6f85e4853cb7a29c69f9cdd025080bbe6e530bb16e1509706cb + checksum: 10/27db72aa340f415f0ff0dd06c9246b1d21795d15d65f3bfeb4a18cd4281532db1a882d965fe0dbf6f90faddd49d05740e311121c65041ff91117cc09f1680969 languageName: node linkType: hard @@ -8696,14 +8701,14 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^0.2.5, @napi-rs/wasm-runtime@npm:^0.2.7, @napi-rs/wasm-runtime@npm:^0.2.9": - version: 0.2.9 - resolution: "@napi-rs/wasm-runtime@npm:0.2.9" +"@napi-rs/wasm-runtime@npm:^0.2.10, @napi-rs/wasm-runtime@npm:^0.2.5, @napi-rs/wasm-runtime@npm:^0.2.7, @napi-rs/wasm-runtime@npm:^0.2.9": + version: 0.2.10 + resolution: "@napi-rs/wasm-runtime@npm:0.2.10" dependencies: - "@emnapi/core": "npm:^1.4.0" - "@emnapi/runtime": "npm:^1.4.0" + "@emnapi/core": "npm:^1.4.3" + "@emnapi/runtime": "npm:^1.4.3" "@tybys/wasm-util": "npm:^0.9.0" - checksum: 10/8ebc7d85e11e1b8d71908d5615ff24b27ef7af8287d087fb5cff5a3e545915c7545998d976a9cd6a4315dab4ba0f609439fbe6408fec3afebd288efb0dbdc135 + checksum: 10/1e4cf77891390825b1756eb5e302035b80c9dd21959417c4e4ed063eacfb6df9f42dfc001bf0fa9c9dbd0a7374342502feaa0a59103e7ea9aa5b318732280a49 languageName: node linkType: hard @@ -9779,10 +9784,10 @@ __metadata: languageName: node linkType: hard -"@octokit/openapi-types@npm:^25.0.0": - version: 25.0.0 - resolution: "@octokit/openapi-types@npm:25.0.0" - checksum: 10/d412a7ee77d7e3767aff1df012023b8c4d4c0d58a52c110e78557ac368b20fd01205c3f0c14e0fc2d6c0e2163b8e9931bd8d1bb59986477af49d04e6e5bbf827 +"@octokit/openapi-types@npm:^25.1.0": + version: 25.1.0 + resolution: "@octokit/openapi-types@npm:25.1.0" + checksum: 10/91989a4cec12250e6b3226e9aa931c05c27d46a946725d01e6a831af3890f157210a7032f07641a156c608cc6bf6cf55a28f07179910b644966358d6d559dec6 languageName: node linkType: hard @@ -9861,11 +9866,11 @@ __metadata: linkType: hard "@octokit/types@npm:^14.0.0": - version: 14.0.0 - resolution: "@octokit/types@npm:14.0.0" + version: 14.1.0 + resolution: "@octokit/types@npm:14.1.0" dependencies: - "@octokit/openapi-types": "npm:^25.0.0" - checksum: 10/bff427e7f4ff32ccf62536b87e2f7b7d4f6baa543de27006dc55b0356df0274267f3a782372efda5921412b15d2b37e92f30bbacf8b09d7134699fe79a6907a1 + "@octokit/openapi-types": "npm:^25.1.0" + checksum: 10/ea5549ca6176bd1184427141a77bca88c68f07d252d3ea1db7f9b58ec16b66391218a75a99927efb1e36a2cb00e8ed37a79b71fdc95a1117a9982516156fd997 languageName: node linkType: hard @@ -10606,9 +10611,9 @@ __metadata: linkType: hard "@opentelemetry/semantic-conventions@npm:^1.22.0, @opentelemetry/semantic-conventions@npm:^1.27.0, @opentelemetry/semantic-conventions@npm:^1.28.0, @opentelemetry/semantic-conventions@npm:^1.30.0": - version: 1.33.0 - resolution: "@opentelemetry/semantic-conventions@npm:1.33.0" - checksum: 10/c20899b6d1959d55656f3ace8e90f172a696921e174d6d784a1ef500f958bd235be69df997a9ec298f4761a26d3f3a9f312726cbe0f5e39ab7bc4d43803c0fc9 + version: 1.34.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.34.0" + checksum: 10/1892b4cc69c9e00456c809604a980e32696563e96463ff5f9d07e72d5aca73836a7378090509f28f54445ac6e072d2343a888c9d64d9ce287198e899082ff7aa languageName: node linkType: hard @@ -12459,6 +12464,13 @@ __metadata: languageName: node linkType: hard +"@rolldown/pluginutils@npm:1.0.0-beta.9": + version: 1.0.0-beta.9 + resolution: "@rolldown/pluginutils@npm:1.0.0-beta.9" + checksum: 10/6d28647e1c186b0e31e07666b850a609efcf5cd5fb0ab57730f932bf57dd2ff9dec15407422e2207503463cbe2fdb4759aaf735f27cb3bbdcca6a083e78a32c0 + languageName: node + linkType: hard + "@rollup/pluginutils@npm:^5.0.2, @rollup/pluginutils@npm:^5.1.3, @rollup/pluginutils@npm:^5.1.4": version: 5.1.4 resolution: "@rollup/pluginutils@npm:5.1.4" @@ -12475,142 +12487,142 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.2" +"@rollup/rollup-android-arm-eabi@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.41.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-android-arm64@npm:4.40.2" +"@rollup/rollup-android-arm64@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-android-arm64@npm:4.41.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-darwin-arm64@npm:4.40.2" +"@rollup/rollup-darwin-arm64@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.41.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-darwin-x64@npm:4.40.2" +"@rollup/rollup-darwin-x64@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.41.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.40.2" +"@rollup/rollup-freebsd-arm64@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.41.1" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-freebsd-x64@npm:4.40.2" +"@rollup/rollup-freebsd-x64@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-freebsd-x64@npm:4.41.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.41.1" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.40.2" +"@rollup/rollup-linux-arm-musleabihf@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.41.1" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.40.2" +"@rollup/rollup-linux-arm64-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.41.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.40.2" +"@rollup/rollup-linux-arm64-musl@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.41.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2" +"@rollup/rollup-linux-loongarch64-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.41.1" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.41.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.40.2" +"@rollup/rollup-linux-riscv64-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.41.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.40.2" +"@rollup/rollup-linux-riscv64-musl@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.41.1" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.40.2" +"@rollup/rollup-linux-s390x-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.41.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.40.2" +"@rollup/rollup-linux-x64-gnu@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.41.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.40.2" +"@rollup/rollup-linux-x64-musl@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.41.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.40.2" +"@rollup/rollup-win32-arm64-msvc@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.41.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.40.2" +"@rollup/rollup-win32-ia32-msvc@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.41.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.40.2": - version: 4.40.2 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.40.2" +"@rollup/rollup-win32-x64-msvc@npm:4.41.1": + version: 4.41.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.41.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -12655,12 +12667,12 @@ __metadata: languageName: node linkType: hard -"@sentry-internal/browser-utils@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry-internal/browser-utils@npm:9.22.0" +"@sentry-internal/browser-utils@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry-internal/browser-utils@npm:9.23.0" dependencies: - "@sentry/core": "npm:9.22.0" - checksum: 10/8faede254476b9ccfbbea79e8625848789be939e270dd7a9e1d54254252f38071eb74c7c5fdb032addc1fa053c8d2df35e2363a9939695ac8aad0fd21264b3e6 + "@sentry/core": "npm:9.23.0" + checksum: 10/e47595268b3eb234540d0baf2a734e2ae7600136e5477711a6f2de540011c855d86832b3d965f1440f5804a718df7b27687f9cb4592eba24634dfc4fb3cfd891 languageName: node linkType: hard @@ -12673,12 +12685,12 @@ __metadata: languageName: node linkType: hard -"@sentry-internal/feedback@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry-internal/feedback@npm:9.22.0" +"@sentry-internal/feedback@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry-internal/feedback@npm:9.23.0" dependencies: - "@sentry/core": "npm:9.22.0" - checksum: 10/8ee0e94b2cb092a4be21f62367fcdd6215fe9e2c32b35061d0880ccc7efa14d152dbda57d7c5b5b7b86e06d759b2e26a350ff92bbd26cc03dd0beaff3c8bfc44 + "@sentry/core": "npm:9.23.0" + checksum: 10/944033d46277045f9f6befb438f995767774461036c7760ce06872e3ce07f8110056e604f57346a0c8bbe2b732a9bd0db99d1f88874635a6e7deb971170ff536 languageName: node linkType: hard @@ -12692,13 +12704,13 @@ __metadata: languageName: node linkType: hard -"@sentry-internal/replay-canvas@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry-internal/replay-canvas@npm:9.22.0" +"@sentry-internal/replay-canvas@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry-internal/replay-canvas@npm:9.23.0" dependencies: - "@sentry-internal/replay": "npm:9.22.0" - "@sentry/core": "npm:9.22.0" - checksum: 10/39d7cafed010fd280dc3ce5a2ae69486776c40abc0e787ccd79667791005ac4a01dedd9a795ccb30ccb9a58d613b6e5635e2c1de1a7c45fe52d77ab1f2725764 + "@sentry-internal/replay": "npm:9.23.0" + "@sentry/core": "npm:9.23.0" + checksum: 10/814f9345b9ddf5ac50f310034cf97e558ea2daf93786c8524640b7b61c12d00d474d1f947108ee62e32a1c9d2fc34f1c8df6cb6de4077827fe20490e9ebc42cd languageName: node linkType: hard @@ -12712,13 +12724,13 @@ __metadata: languageName: node linkType: hard -"@sentry-internal/replay@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry-internal/replay@npm:9.22.0" +"@sentry-internal/replay@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry-internal/replay@npm:9.23.0" dependencies: - "@sentry-internal/browser-utils": "npm:9.22.0" - "@sentry/core": "npm:9.22.0" - checksum: 10/c14da2d74efc0c8bbc7b23cb000cf311d8c1f0ddbb099341db7bd26988ba1be3ae783275d606c9e93fd6547ab62f51ec6618fada17b66667bedf4931c9c76e67 + "@sentry-internal/browser-utils": "npm:9.23.0" + "@sentry/core": "npm:9.23.0" + checksum: 10/cd6d85c06e94a3c5ea6a681a0cd8b74d0eeb5db9b10815317ed965101d795de645d26df4e3fadf8d7de49fdfc73f0d5a6989b677dbeb54eda83c05abc842a3d4 languageName: node linkType: hard @@ -12742,16 +12754,16 @@ __metadata: languageName: node linkType: hard -"@sentry/browser@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry/browser@npm:9.22.0" +"@sentry/browser@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry/browser@npm:9.23.0" dependencies: - "@sentry-internal/browser-utils": "npm:9.22.0" - "@sentry-internal/feedback": "npm:9.22.0" - "@sentry-internal/replay": "npm:9.22.0" - "@sentry-internal/replay-canvas": "npm:9.22.0" - "@sentry/core": "npm:9.22.0" - checksum: 10/bc5721722ac27af03172f79b4d750da118767810a9cfeed02359fbc869f4ae6cd7bbc7a4c58c907de053751fd7c86940d1dd364cd575535b7b2e966044a3f68b + "@sentry-internal/browser-utils": "npm:9.23.0" + "@sentry-internal/feedback": "npm:9.23.0" + "@sentry-internal/replay": "npm:9.23.0" + "@sentry-internal/replay-canvas": "npm:9.23.0" + "@sentry/core": "npm:9.23.0" + checksum: 10/aa03a26b14533cd9396a402a61a9945d1aa64d70009bf79f4498667aacca499e57b6f8e88f5868e4221fe1d3ffb0407329d429f8f463a0b01d13eb2fb7d85d1b languageName: node linkType: hard @@ -12864,10 +12876,10 @@ __metadata: languageName: node linkType: hard -"@sentry/core@npm:9.22.0": - version: 9.22.0 - resolution: "@sentry/core@npm:9.22.0" - checksum: 10/5bf5d6b5402dca90c6ed1d6e8834c00067806f9710f1cbcd0dff3004c3f3b6ffae8e43d56592d5378fdbddb3d196eb60d8850ea50ca6eca8e31870608109df3d +"@sentry/core@npm:9.23.0": + version: 9.23.0 + resolution: "@sentry/core@npm:9.23.0" + checksum: 10/4ee771098d4ce4f4d2f7bd62cacb41ee2993780f4cab0eea600e73de3a3803cb953ac47ac015c23bcd7a9919e2220fd6cdc5a9a22a3663440296336d8df959b7 languageName: node linkType: hard @@ -12953,15 +12965,15 @@ __metadata: linkType: hard "@sentry/react@npm:^9.2.0": - version: 9.22.0 - resolution: "@sentry/react@npm:9.22.0" + version: 9.23.0 + resolution: "@sentry/react@npm:9.23.0" dependencies: - "@sentry/browser": "npm:9.22.0" - "@sentry/core": "npm:9.22.0" + "@sentry/browser": "npm:9.23.0" + "@sentry/core": "npm:9.23.0" hoist-non-react-statics: "npm:^3.3.2" peerDependencies: react: ^16.14.0 || 17.x || 18.x || 19.x - checksum: 10/aa23c653d786d6aad2bfae22990ff5f4f211e773c1c95662d6cf2de119a998079858917feb62c90343696fa2e5181c7d8a6cc5e9114fbd4812e5d93bee7347a4 + checksum: 10/38716eda7329f1c8551ed5d44c83123b3f037d1e341f4a6294052405ffb3c4ae79a5d4ab89b45fdde92f1402dcbf70c5a6b295c8f24eb8023214b288018e34f3 languageName: node linkType: hard @@ -13001,7 +13013,7 @@ __metadata: languageName: node linkType: hard -"@shikijs/engine-oniguruma@npm:3.4.2, @shikijs/engine-oniguruma@npm:^3.4.0": +"@shikijs/engine-oniguruma@npm:3.4.2, @shikijs/engine-oniguruma@npm:^3.4.2": version: 3.4.2 resolution: "@shikijs/engine-oniguruma@npm:3.4.2" dependencies: @@ -13011,7 +13023,7 @@ __metadata: languageName: node linkType: hard -"@shikijs/langs@npm:3.4.2, @shikijs/langs@npm:^3.4.0": +"@shikijs/langs@npm:3.4.2, @shikijs/langs@npm:^3.4.2": version: 3.4.2 resolution: "@shikijs/langs@npm:3.4.2" dependencies: @@ -13020,7 +13032,7 @@ __metadata: languageName: node linkType: hard -"@shikijs/themes@npm:3.4.2, @shikijs/themes@npm:^3.4.0": +"@shikijs/themes@npm:3.4.2, @shikijs/themes@npm:^3.4.2": version: 3.4.2 resolution: "@shikijs/themes@npm:3.4.2" dependencies: @@ -13029,7 +13041,7 @@ __metadata: languageName: node linkType: hard -"@shikijs/types@npm:3.4.2, @shikijs/types@npm:^3.4.0": +"@shikijs/types@npm:3.4.2, @shikijs/types@npm:^3.4.2": version: 3.4.2 resolution: "@shikijs/types@npm:3.4.2" dependencies: @@ -13185,7 +13197,7 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^4.0.2, @smithy/abort-controller@npm:^4.0.3": +"@smithy/abort-controller@npm:^4.0.3": version: 4.0.3 resolution: "@smithy/abort-controller@npm:4.0.3" dependencies: @@ -13256,58 +13268,58 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/eventstream-codec@npm:4.0.2" +"@smithy/eventstream-codec@npm:^4.0.3": + version: 4.0.3 + resolution: "@smithy/eventstream-codec@npm:4.0.3" dependencies: "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" "@smithy/util-hex-encoding": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/4da77caabc6dfe317153cff5899c03244c24ae9965939f2b0a0e7543bfb3c5266e8a13ce1de2c16c5ed2e16d8245017a74da15b31de42e51dcad465be4c16cdf + checksum: 10/d5ca5c9a8f1d1f59112a539117414ed68c515680f8ff6413363efae5305396c51df53c9febc2985ec2b46d985ca642c8f25a8bc8c9882e142d40564523b98164 languageName: node linkType: hard "@smithy/eventstream-serde-browser@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/eventstream-serde-browser@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/eventstream-serde-browser@npm:4.0.3" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.0.2" - "@smithy/types": "npm:^4.2.0" + "@smithy/eventstream-serde-universal": "npm:^4.0.3" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/8ff3b826c338e314265897155d8580dfd342070f0ae53171bacf3d32f0324f9f6f20044731f5dab8cb14e66a5a57600f55a0b52412fbfc02c5ab61f238b1b700 + checksum: 10/a0e37ef21abfc128f70ffc9bab6a237877b1e527c6c53b410e54d851279e5d335b1dee1504760097340c24b76a3f1d97ad3a692214516eb396b8061881a2ff9f languageName: node linkType: hard "@smithy/eventstream-serde-config-resolver@npm:^4.1.0": - version: 4.1.0 - resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.0" + version: 4.1.1 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/b25359b5d36904205a529bd8ef18e40508e094d9dbb8d2d8f79af1c5135402817dd153985fd5db71355d45d92d1bd7c412fc9474e55b742e15e9bc6577b20d42 + checksum: 10/b82c2e3fd858b2ae4a1aa1f4569a3e27cb1364503ded547de320b05db74b9ceaa90570a0066cda6523b23c63e06edb9eba9f719ea7efa2efbeba055ac22c4cb2 languageName: node linkType: hard "@smithy/eventstream-serde-node@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/eventstream-serde-node@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/eventstream-serde-node@npm:4.0.3" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.0.2" - "@smithy/types": "npm:^4.2.0" + "@smithy/eventstream-serde-universal": "npm:^4.0.3" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/890c2206eb18178184b35761641610ee96dd7c9a313d5f34591cda649cf268d6f4a34993897b9ba8ca28b87efd4a937d345abe9ca4ca7d92ed188e0c4f002198 + checksum: 10/80f17f15cb98ef5fb1a67a1bcbaffb82aa6b405c6faceafb0d60facb8e6730961ed672e0265644cec8765f33333c9a59ab07d37e63eeefbdd890a493e5c11bc9 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/eventstream-serde-universal@npm:4.0.2" +"@smithy/eventstream-serde-universal@npm:^4.0.3": + version: 4.0.3 + resolution: "@smithy/eventstream-serde-universal@npm:4.0.3" dependencies: - "@smithy/eventstream-codec": "npm:^4.0.2" - "@smithy/types": "npm:^4.2.0" + "@smithy/eventstream-codec": "npm:^4.0.3" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/ef14ca4431ad952f0fa91df3c9e319859419b68128adc30f408335860ba1ad085059677f525d7d31ab65eb3c9f4359798d25176918661f53863c14f15fa2b22a + checksum: 10/11f5beaf3ccd8cb3fed50817f1f4c9a08d536b862d1164c0cc3cd851c83170ea498a6bad81f220971eb9d1ebb5a5600475b7ab762fb30db57495dbc20a9e7db1 languageName: node linkType: hard @@ -13325,47 +13337,47 @@ __metadata: linkType: hard "@smithy/hash-blob-browser@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/hash-blob-browser@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/hash-blob-browser@npm:4.0.3" dependencies: "@smithy/chunked-blob-reader": "npm:^5.0.0" "@smithy/chunked-blob-reader-native": "npm:^4.0.0" - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/c553c78e31a843d71b91c33bdf5de902c350c4fefa536d90248a465faa77a2a118cb5aa399b10908f6aedfaf1829f4c526ab67b5b6353339b409908e2bc7df57 + checksum: 10/39142baed14117629f54df6fedc89ad6dcad7c81315f4a730f6eb57c5ed0ed7b43ab2c7568d29736116f1138a2df9ff29199bbc861322a5e2817dabd25cdb5d1 languageName: node linkType: hard "@smithy/hash-node@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/hash-node@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/hash-node@npm:4.0.3" dependencies: - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" "@smithy/util-buffer-from": "npm:^4.0.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/54055312753d310c2a4e6db26843b0a24949aeedd2b4bb190c707f201b085c3acee10caaf29602b67e0ac189296d4ca426d4135dca1b38f4681c3b9c1d3b5680 + checksum: 10/9f9aa9fb25cc91416e0548018b594eaa968a1d294d4ae632b55108aa6388123f7ded52a7b20144e1b735dc3f8a34755dba2754e2d4691413007ed5d29aff77f0 languageName: node linkType: hard "@smithy/hash-stream-node@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/hash-stream-node@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/hash-stream-node@npm:4.0.3" dependencies: - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/8dca62058ff3b18b10abdfdee88b22bb780008bf3c86f9570ae3d213579e6920faf47b7144ef438a28294033cd01f01bf3cee8f3dd9e997132867f74cad4f2f3 + checksum: 10/f6f684279278986fd8f961841f9e0f3c89a3de06accf904c0c1501a8c5723b9e12ee6878ac6923ea280bbdfeaeffad34a6b8505e097ecf2ce90d68900c3e1be8 languageName: node linkType: hard "@smithy/invalid-dependency@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/invalid-dependency@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/invalid-dependency@npm:4.0.3" dependencies: - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/d37a8760d8f667c22b5693340772447937837d20c0d5fdd3c398afb6335f72e3b19feb6511bc6082e7dd7ce567ca007aeb52bb2ef10ef6e7b2d2a8ff5b22ff3d + checksum: 10/155d1097c9faf61bc728ba179965283e7010583b5c4873a240becc6e8ec2a88fe9b13efb4b720ceb2b67a04d46b11bd82236640cbe87d04c303cab922c1b3c11 languageName: node linkType: hard @@ -13388,24 +13400,24 @@ __metadata: linkType: hard "@smithy/md5-js@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/md5-js@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/md5-js@npm:4.0.3" dependencies: - "@smithy/types": "npm:^4.2.0" + "@smithy/types": "npm:^4.3.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/c70f4197e0d9b3203d5a5e74c5c10c4c21802abb8db742783feff82ae5072249a7aa60d208ce7603dd3d5bbca89c0d0dc912944d109a9a03dfe36b22ac032720 + checksum: 10/5d08258feb591579b2c5aff0b9ee4e25a40f2dddb5593fb50e6d14a7c7e6c5c8b3d190e050b4b80510793f79a41ad4a7ca947725004023c3bce3f35acfb13eed languageName: node linkType: hard "@smithy/middleware-content-length@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/middleware-content-length@npm:4.0.2" + version: 4.0.3 + resolution: "@smithy/middleware-content-length@npm:4.0.3" dependencies: - "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/types": "npm:^4.2.0" + "@smithy/protocol-http": "npm:^5.1.1" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/58c0b60955dfd3ec148e446cc6df03b226458334d35742e615633fa20ed8f690a4120f34e95afaa4d00cbbaa7875de86790094431b565bb063321759ff18e4f2 + checksum: 10/65f13e41243417ed078d11c5b380831fc13b911f30dc7b9110f3d425455e19bd270e62b63ea5bc1cffc2cd17f73eda2669d3802560ffeac9508a683bdf8d7aab languageName: node linkType: hard @@ -13549,18 +13561,18 @@ __metadata: linkType: hard "@smithy/signature-v4@npm:^5.1.0": - version: 5.1.0 - resolution: "@smithy/signature-v4@npm:5.1.0" + version: 5.1.1 + resolution: "@smithy/signature-v4@npm:5.1.1" dependencies: "@smithy/is-array-buffer": "npm:^4.0.0" - "@smithy/protocol-http": "npm:^5.1.0" - "@smithy/types": "npm:^4.2.0" + "@smithy/protocol-http": "npm:^5.1.1" + "@smithy/types": "npm:^4.3.0" "@smithy/util-hex-encoding": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.2" + "@smithy/util-middleware": "npm:^4.0.3" "@smithy/util-uri-escape": "npm:^4.0.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10/c89c34a2551122679ce167fc11fa1d6012246a1b74c8022d9a1fe119db8eeb7cd44b2da8682044c395f0bfafb06e30ff5dd402e44c8759427fffadc8d1f249a3 + checksum: 10/b23ab5f94d9891cfa3562d4999c058534a543e8f01109267af39657f2e559dcc2b2c6c4aa102acad3c4e0e553a144edbd038d1abc0a9338c0e49ee4523e5bd6e languageName: node linkType: hard @@ -13772,13 +13784,13 @@ __metadata: linkType: hard "@smithy/util-waiter@npm:^4.0.3": - version: 4.0.3 - resolution: "@smithy/util-waiter@npm:4.0.3" + version: 4.0.4 + resolution: "@smithy/util-waiter@npm:4.0.4" dependencies: - "@smithy/abort-controller": "npm:^4.0.2" - "@smithy/types": "npm:^4.2.0" + "@smithy/abort-controller": "npm:^4.0.3" + "@smithy/types": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10/c65a82748a99134282d906d0633717eae1ac61df1b07c8f2d30e1ef776b1dd2b367da1088d39e19570a3e110dfe33467952bf5362fddcc4de28329ffe2aa9438 + checksum: 10/9a85370918f6e5a12c5b9a4d1822edf98d5e772e5c2ffdbff394b846f6a29efe54167a14344a4a69a527ee75ccc9350fb4e9be6b54b635c0a66e5c71e8c41b36 languageName: node linkType: hard @@ -14139,6 +14151,13 @@ __metadata: languageName: node linkType: hard +"@svgdotjs/svg.js@npm:^3.2.4": + version: 3.2.4 + resolution: "@svgdotjs/svg.js@npm:3.2.4" + checksum: 10/94f64d989286db1587773973b5fbbd6b0ffb05af704ee1a9000b6d250fe2c41e28b0baee4d379fb88fcc2e52a0a2e2dba247dcd0cb34e65040423edcf488e9dc + languageName: node + linkType: hard + "@swc/core-darwin-arm64@npm:1.11.29": version: 1.11.29 resolution: "@swc/core-darwin-arm64@npm:1.11.29" @@ -14209,7 +14228,7 @@ __metadata: languageName: node linkType: hard -"@swc/core@npm:^1.10.1, @swc/core@npm:^1.11.21": +"@swc/core@npm:^1.10.1, @swc/core@npm:^1.11.22": version: 1.11.29 resolution: "@swc/core@npm:1.11.29" dependencies: @@ -14289,9 +14308,9 @@ __metadata: languageName: node linkType: hard -"@tailwindcss/node@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/node@npm:4.1.7" +"@tailwindcss/node@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/node@npm:4.1.8" dependencies: "@ampproject/remapping": "npm:^2.3.0" enhanced-resolve: "npm:^5.18.1" @@ -14299,118 +14318,118 @@ __metadata: lightningcss: "npm:1.30.1" magic-string: "npm:^0.30.17" source-map-js: "npm:^1.2.1" - tailwindcss: "npm:4.1.7" - checksum: 10/df645e89098c0046609e32245c94722e4af9f2790fc9c4a85c8b4405b3eb578e5e16ea6da666585f7e4af2dde40829ea88cc994ace550ec94f7133cd97b50285 + tailwindcss: "npm:4.1.8" + checksum: 10/586c030f28b13db6376c63cdbabccefe9c86d446042c9049fb68f0e4e7d30f494748a1ba000ab786870fc51e6c754cc6b92805d3dea432b039405e8a6d400213 languageName: node linkType: hard -"@tailwindcss/oxide-android-arm64@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-android-arm64@npm:4.1.7" +"@tailwindcss/oxide-android-arm64@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-android-arm64@npm:4.1.8" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-darwin-arm64@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.1.7" +"@tailwindcss/oxide-darwin-arm64@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.1.8" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-darwin-x64@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-darwin-x64@npm:4.1.7" +"@tailwindcss/oxide-darwin-x64@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-darwin-x64@npm:4.1.8" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide-freebsd-x64@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.1.7" +"@tailwindcss/oxide-freebsd-x64@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.1.8" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.7" +"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.1.8" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.7" +"@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.1.8" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@tailwindcss/oxide-linux-arm64-musl@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.1.7" +"@tailwindcss/oxide-linux-arm64-musl@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.1.8" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@tailwindcss/oxide-linux-x64-gnu@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.1.7" +"@tailwindcss/oxide-linux-x64-gnu@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.1.8" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@tailwindcss/oxide-linux-x64-musl@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.1.7" +"@tailwindcss/oxide-linux-x64-musl@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.1.8" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@tailwindcss/oxide-wasm32-wasi@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.1.7" +"@tailwindcss/oxide-wasm32-wasi@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.1.8" dependencies: "@emnapi/core": "npm:^1.4.3" "@emnapi/runtime": "npm:^1.4.3" "@emnapi/wasi-threads": "npm:^1.0.2" - "@napi-rs/wasm-runtime": "npm:^0.2.9" + "@napi-rs/wasm-runtime": "npm:^0.2.10" "@tybys/wasm-util": "npm:^0.9.0" tslib: "npm:^2.8.0" conditions: cpu=wasm32 languageName: node linkType: hard -"@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.7" +"@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.1.8" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@tailwindcss/oxide-win32-x64-msvc@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.1.7" +"@tailwindcss/oxide-win32-x64-msvc@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.1.8" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@tailwindcss/oxide@npm:4.1.7": - version: 4.1.7 - resolution: "@tailwindcss/oxide@npm:4.1.7" +"@tailwindcss/oxide@npm:4.1.8": + version: 4.1.8 + resolution: "@tailwindcss/oxide@npm:4.1.8" dependencies: - "@tailwindcss/oxide-android-arm64": "npm:4.1.7" - "@tailwindcss/oxide-darwin-arm64": "npm:4.1.7" - "@tailwindcss/oxide-darwin-x64": "npm:4.1.7" - "@tailwindcss/oxide-freebsd-x64": "npm:4.1.7" - "@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.1.7" - "@tailwindcss/oxide-linux-arm64-gnu": "npm:4.1.7" - "@tailwindcss/oxide-linux-arm64-musl": "npm:4.1.7" - "@tailwindcss/oxide-linux-x64-gnu": "npm:4.1.7" - "@tailwindcss/oxide-linux-x64-musl": "npm:4.1.7" - "@tailwindcss/oxide-wasm32-wasi": "npm:4.1.7" - "@tailwindcss/oxide-win32-arm64-msvc": "npm:4.1.7" - "@tailwindcss/oxide-win32-x64-msvc": "npm:4.1.7" + "@tailwindcss/oxide-android-arm64": "npm:4.1.8" + "@tailwindcss/oxide-darwin-arm64": "npm:4.1.8" + "@tailwindcss/oxide-darwin-x64": "npm:4.1.8" + "@tailwindcss/oxide-freebsd-x64": "npm:4.1.8" + "@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.1.8" + "@tailwindcss/oxide-linux-arm64-gnu": "npm:4.1.8" + "@tailwindcss/oxide-linux-arm64-musl": "npm:4.1.8" + "@tailwindcss/oxide-linux-x64-gnu": "npm:4.1.8" + "@tailwindcss/oxide-linux-x64-musl": "npm:4.1.8" + "@tailwindcss/oxide-wasm32-wasi": "npm:4.1.8" + "@tailwindcss/oxide-win32-arm64-msvc": "npm:4.1.8" + "@tailwindcss/oxide-win32-x64-msvc": "npm:4.1.8" detect-libc: "npm:^2.0.4" tar: "npm:^7.4.3" dependenciesMeta: @@ -14438,33 +14457,33 @@ __metadata: optional: true "@tailwindcss/oxide-win32-x64-msvc": optional: true - checksum: 10/39c4c67667e30626ed123cff33ac651e0c64f7c15f759ff6b3456d1d7460728cf7d350716945af6d0ef67e12fc8f45853f9984436c9bf8594c5daad35a3cecac + checksum: 10/8ac9ea110142badacf63831d3f8a5ed8605a527076276da63a32a5450cf70844e2676f9de5bfdfa45278eab1b849d02f92eae3cb008fe668b8dc7368293bcf45 languageName: node linkType: hard "@tailwindcss/postcss@npm:^4.0.0": - version: 4.1.7 - resolution: "@tailwindcss/postcss@npm:4.1.7" + version: 4.1.8 + resolution: "@tailwindcss/postcss@npm:4.1.8" dependencies: "@alloc/quick-lru": "npm:^5.2.0" - "@tailwindcss/node": "npm:4.1.7" - "@tailwindcss/oxide": "npm:4.1.7" + "@tailwindcss/node": "npm:4.1.8" + "@tailwindcss/oxide": "npm:4.1.8" postcss: "npm:^8.4.41" - tailwindcss: "npm:4.1.7" - checksum: 10/5b03262d5c754be8d3b1a745e6a301ad6a45c51fa5b3e67bf9c6dcfff7ada96ebb68dc5a77bd01bb0c460743f07479ee9c9ac3b5d4d028b0b2727a94154f2882 + tailwindcss: "npm:4.1.8" + checksum: 10/5410ea4ef9735eaecf6b97c640708577cd77589c7b61d04848eb4f2c643ebe17bb3949e0bf5c33a8c56189da0e1447a7343db72532fc18f66aff8ef3464e933c languageName: node linkType: hard "@tailwindcss/vite@npm:^4.0.6": - version: 4.1.7 - resolution: "@tailwindcss/vite@npm:4.1.7" + version: 4.1.8 + resolution: "@tailwindcss/vite@npm:4.1.8" dependencies: - "@tailwindcss/node": "npm:4.1.7" - "@tailwindcss/oxide": "npm:4.1.7" - tailwindcss: "npm:4.1.7" + "@tailwindcss/node": "npm:4.1.8" + "@tailwindcss/oxide": "npm:4.1.8" + tailwindcss: "npm:4.1.8" peerDependencies: vite: ^5.2.0 || ^6 - checksum: 10/b70d85b312ef4fd129555f02492ceed687aa5f356d123cbc081b9444ab99f9f977e080bde18acfe212f64d49b4d65deef967ac05e88b152dadcbeafd16d0092c + checksum: 10/3d76cd363ec72e3ff4448813f2d40e6db1a0633634a992a5a2becedb337ee549f598eac10c4eb9c7c3ad75bd4256c34dacb275c41aa6712a115bae5d5be6537e languageName: node linkType: hard @@ -15297,9 +15316,9 @@ __metadata: linkType: hard "@types/lodash@npm:*": - version: 4.17.16 - resolution: "@types/lodash@npm:4.17.16" - checksum: 10/9a8bb7471a7521bd65d528e1bd14f79819a3eeb6f8a35a8a44649a7d773775c0813e93fd93bd32ccf350bb076c0bf02c6d47877c4625f526f6dd4d283c746aec + version: 4.17.17 + resolution: "@types/lodash@npm:4.17.17" + checksum: 10/496459a3cb1a0733bb60532de3899ad6297717af0b9b26ad6821154b2005fec86f29ccd47a2e6f4da4a8c7c818bb8ae73901144e8057ea86b7b02a3d7bb9d13f languageName: node linkType: hard @@ -15429,11 +15448,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0, @types/node@npm:>=18.0.0, @types/node@npm:>=8.1.0, @types/node@npm:^22.0.0, @types/node@npm:^22.14.1, @types/node@npm:^22.7.7": - version: 22.15.21 - resolution: "@types/node@npm:22.15.21" + version: 22.15.24 + resolution: "@types/node@npm:22.15.24" dependencies: undici-types: "npm:~6.21.0" - checksum: 10/cb4189587cca445bfb8166c0ed39f9344d743f37f3da892f2999a99bbabda45dc773237e61ecb7d1dc83dd95718cb1b5715b0be5dd7953565b19019e36a7cf39 + checksum: 10/249f8206b2da5faf621e200757a15ca936a3d72d84fb31dfbc4021f83b577e3be591b29ba322f832790eeb5bdfa3674b8fd0a0e81059b99f129973250ab7ec04 languageName: node linkType: hard @@ -15479,13 +15498,13 @@ __metadata: linkType: hard "@types/pg@npm:*": - version: 8.15.1 - resolution: "@types/pg@npm:8.15.1" + version: 8.15.2 + resolution: "@types/pg@npm:8.15.2" dependencies: "@types/node": "npm:*" pg-protocol: "npm:*" pg-types: "npm:^4.0.1" - checksum: 10/9d9153fef9b6ea6bf68d63067e133bbe88f19b3ea9e821f1d9feab26ca01009d1288da05e9f2ce8a4fda1af39880f0cd75931dcee6c2e7b35b94e247548ba5f1 + checksum: 10/71780b829e43d4fcb1498c9271a8faccd8db5f5aaced9e7f86cba8fa44778739f025262dd32a151dffcda9045a74c7b14792674675e92e55c2a9dcbf8b493fed languageName: node linkType: hard @@ -15518,9 +15537,9 @@ __metadata: linkType: hard "@types/qs@npm:*": - version: 6.9.18 - resolution: "@types/qs@npm:6.9.18" - checksum: 10/152fab96efd819cc82ae67c39f089df415da6deddb48f1680edaaaa4e86a2a597de7b2ff0ad391df66d11a07006a08d52c9405e86b8cb8f3d5ba15881fe56cc7 + version: 6.14.0 + resolution: "@types/qs@npm:6.14.0" + checksum: 10/1909205514d22b3cbc7c2314e2bd8056d5f05dfb21cf4377f0730ee5e338ea19957c41735d5e4806c746176563f50005bbab602d8358432e25d900bdf4970826 languageName: node linkType: hard @@ -15541,11 +15560,11 @@ __metadata: linkType: hard "@types/react@npm:^19.0.1": - version: 19.1.5 - resolution: "@types/react@npm:19.1.5" + version: 19.1.6 + resolution: "@types/react@npm:19.1.6" dependencies: csstype: "npm:^3.0.2" - checksum: 10/ea007c6c3a7afc42421d2cc260446de9e949513cb1261e0e5cf856108afe6e8d53ed51dc26c522a364e4927450092deea68b0423c68f3a22c26dae3fac1363a5 + checksum: 10/722a8efb36dedaf5cfe226287214df0982d612ff33ebf005dbbb646279647e5987da661f2d9fe6b8a4516d3b29dd6cb3a708641265861251abb682e8e90540cf languageName: node linkType: hard @@ -15783,81 +15802,103 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/eslint-plugin@npm:8.32.1" +"@typescript-eslint/eslint-plugin@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.33.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.32.1" - "@typescript-eslint/type-utils": "npm:8.32.1" - "@typescript-eslint/utils": "npm:8.32.1" - "@typescript-eslint/visitor-keys": "npm:8.32.1" + "@typescript-eslint/scope-manager": "npm:8.33.0" + "@typescript-eslint/type-utils": "npm:8.33.0" + "@typescript-eslint/utils": "npm:8.33.0" + "@typescript-eslint/visitor-keys": "npm:8.33.0" graphemer: "npm:^1.4.0" ignore: "npm:^7.0.0" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^2.1.0" peerDependencies: - "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + "@typescript-eslint/parser": ^8.33.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10/442205dd4e9fe016cf4f3edf292f5dba696c9e7d6c32c785a8bff0833974149513feab6c30d21e2f3c509bd2b2833edfb3175c0ee220661a02da59fd79100bb4 + checksum: 10/b728001208b28c05d024f352d61d6b707c5f9a9d1d9ada8239d3171897ac1545a54401ca340732af9f615af88dae954f7264d73ced1950e02d38225d33492f8d languageName: node linkType: hard -"@typescript-eslint/parser@npm:8.32.1, @typescript-eslint/parser@npm:^8.18.0": - version: 8.32.1 - resolution: "@typescript-eslint/parser@npm:8.32.1" +"@typescript-eslint/parser@npm:8.33.0, @typescript-eslint/parser@npm:^8.18.0": + version: 8.33.0 + resolution: "@typescript-eslint/parser@npm:8.33.0" dependencies: - "@typescript-eslint/scope-manager": "npm:8.32.1" - "@typescript-eslint/types": "npm:8.32.1" - "@typescript-eslint/typescript-estree": "npm:8.32.1" - "@typescript-eslint/visitor-keys": "npm:8.32.1" + "@typescript-eslint/scope-manager": "npm:8.33.0" + "@typescript-eslint/types": "npm:8.33.0" + "@typescript-eslint/typescript-estree": "npm:8.33.0" + "@typescript-eslint/visitor-keys": "npm:8.33.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10/3c2ab90fec0aaaa57f883bf3963030e74402de82a73b8e47a19109accf18ee1441878bcba73bb9584890eedb56215000d6652196d9bfde05272c043d1c9c529d + checksum: 10/1a875fdb0e9d0a49cbe0f5a33da16ee95c5a1ddf08bd1a3f9481de5c6b3981aee8ef2be24570a14fbed1b53ee348ee8dac39bcc436e6479ea1ecb39b69ce7f2a languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/scope-manager@npm:8.32.1" +"@typescript-eslint/project-service@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/project-service@npm:8.33.0" dependencies: - "@typescript-eslint/types": "npm:8.32.1" - "@typescript-eslint/visitor-keys": "npm:8.32.1" - checksum: 10/f81f71bd88e6bed90c9a42ed3cd26a360f8f7ca53186cea33b872194bf724a4635dd3aead5002b18de6cc5d1df9840445af1f7fc4d117f452705ccebdb6c0b0f + "@typescript-eslint/tsconfig-utils": "npm:^8.33.0" + "@typescript-eslint/types": "npm:^8.33.0" + debug: "npm:^4.3.4" + checksum: 10/5fdc829a67092c2b764598facaf515ec114af2fcfdaf68af321aa667e4c4962fa6c19120efbde7ca234488b2bd7299015fb6b221b22253fe4ea3eae0bb72e494 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/type-utils@npm:8.32.1" +"@typescript-eslint/scope-manager@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/scope-manager@npm:8.33.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.32.1" - "@typescript-eslint/utils": "npm:8.32.1" + "@typescript-eslint/types": "npm:8.33.0" + "@typescript-eslint/visitor-keys": "npm:8.33.0" + checksum: 10/f52075c9ab3bdc69435f3b36583d2d5eb7bc66cfc8462184c9dc6dba5d0825e4d1d0f2e473ffaab5469fcfc4dc770908c26c1623b882d283739eb8e1869ab759 + languageName: node + linkType: hard + +"@typescript-eslint/tsconfig-utils@npm:8.33.0, @typescript-eslint/tsconfig-utils@npm:^8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.33.0" + peerDependencies: + typescript: ">=4.8.4 <5.9.0" + checksum: 10/5bb139be996a16f65c012c083e4c0dc2ddafd1295940203e6c2a1ac9fa0718b1a91f74354f162d3d9614b013e062863414d4478c57ffbf78dfd7cb4f5701abde + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/type-utils@npm:8.33.0" + dependencies: + "@typescript-eslint/typescript-estree": "npm:8.33.0" + "@typescript-eslint/utils": "npm:8.33.0" debug: "npm:^4.3.4" ts-api-utils: "npm:^2.1.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10/e50a6f2a16ccd916ed32a4d0b6c1011b8c177d1f789dfa629942efbd6cd3b1f5b9dc42c67b64e8c377338b34906e0191b9165caa4302d92979f13cd06d1b4234 + checksum: 10/993e7b8f2c8b6e34e175fd57077cb3ffbe9c83da66917b8bd0049e82c39f1ef18ab718a2ca1774db48311c58e4baf5b8e749e6aff5ff50c01b714e9471a673a5 languageName: node linkType: hard -"@typescript-eslint/types@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/types@npm:8.32.1" - checksum: 10/3a310e4bafa8dd6ddc83cd8627048ebe54660982348531bbbeee3d0fb06ffdacce6ac14200159166774bd8797664686f5d0bf19d3dd33216daccbc0e48cd3e51 +"@typescript-eslint/types@npm:8.33.0, @typescript-eslint/types@npm:^8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/types@npm:8.33.0" + checksum: 10/778e812e2c3543e79168fe1072559d8bfef314a96b90da81805f9359f3b5cdfd202153c161723ccb1a4f8edb2593625aa5003f6235039bf189b39c93ff2605c2 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/typescript-estree@npm:8.32.1" +"@typescript-eslint/typescript-estree@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.33.0" dependencies: - "@typescript-eslint/types": "npm:8.32.1" - "@typescript-eslint/visitor-keys": "npm:8.32.1" + "@typescript-eslint/project-service": "npm:8.33.0" + "@typescript-eslint/tsconfig-utils": "npm:8.33.0" + "@typescript-eslint/types": "npm:8.33.0" + "@typescript-eslint/visitor-keys": "npm:8.33.0" debug: "npm:^4.3.4" fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" @@ -15866,32 +15907,32 @@ __metadata: ts-api-utils: "npm:^2.1.0" peerDependencies: typescript: ">=4.8.4 <5.9.0" - checksum: 10/8b956ce05bf64d412e33b7d564db9d5620a7c2600ab04f2c6bb7561bcf46593f14b77ca9c895a4480869a323565a140985a4f4760f9df58f71114c4f502b3c78 + checksum: 10/7cad508e5cc70a1e0bc72ee0448b0cc55e195c93124a25a8330c58fc3fee4e2762cbc8039ad13d40cb0ef2953239af9dbb4d3653636f605ed3f9414995af080c languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.32.1, @typescript-eslint/utils@npm:^8.23.0, @typescript-eslint/utils@npm:^8.31.0": - version: 8.32.1 - resolution: "@typescript-eslint/utils@npm:8.32.1" +"@typescript-eslint/utils@npm:8.33.0, @typescript-eslint/utils@npm:^8.23.0, @typescript-eslint/utils@npm:^8.32.1": + version: 8.33.0 + resolution: "@typescript-eslint/utils@npm:8.33.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.7.0" - "@typescript-eslint/scope-manager": "npm:8.32.1" - "@typescript-eslint/types": "npm:8.32.1" - "@typescript-eslint/typescript-estree": "npm:8.32.1" + "@typescript-eslint/scope-manager": "npm:8.33.0" + "@typescript-eslint/types": "npm:8.33.0" + "@typescript-eslint/typescript-estree": "npm:8.33.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10/9383cea185f3b54124a639f806d627f686637460e2eea431ccb9eeb6452dcd5a893856e051eb5925510f8aeb9317f8b7d23d9f39ca8fa80c46f2b797dae77d9c + checksum: 10/096011772d1ba6236413b1a49b8ad4f8999c0dcad1192ab81a13a753a95bfaf18cb138db94302cb00c312d410c7f48bb35ac1521908a55967e1fbba641aebcc5 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.32.1": - version: 8.32.1 - resolution: "@typescript-eslint/visitor-keys@npm:8.32.1" +"@typescript-eslint/visitor-keys@npm:8.33.0": + version: 8.33.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.33.0" dependencies: - "@typescript-eslint/types": "npm:8.32.1" + "@typescript-eslint/types": "npm:8.33.0" eslint-visitor-keys: "npm:^4.2.0" - checksum: 10/a1cbfbdac89d443dfc2718673e2cc1e884fc942678b3d1c3149cdab8123c71685473e362d794fcee1e975ceb45d16f44025a3f0bebe9b09a6bf8679f060d6817 + checksum: 10/f7f030c296dd83feb144f74aa382a67e4bb521d250507ede839f762bb215036d99d191b2203ac7af9867e434e569e4071ee0737cbde41d0ec38c0197f0a8549d languageName: node linkType: hard @@ -15902,123 +15943,123 @@ __metadata: languageName: node linkType: hard -"@unrs/resolver-binding-darwin-arm64@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.2" +"@unrs/resolver-binding-darwin-arm64@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.7" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-darwin-x64@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.2" +"@unrs/resolver-binding-darwin-x64@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.7" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-freebsd-x64@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.2" +"@unrs/resolver-binding-freebsd-x64@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.7" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2" +"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.7" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2" +"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.7" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2" +"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.7" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2" +"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.7" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2" +"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.7" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2" +"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.7" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2" +"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.7" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2" +"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.7" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2" +"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.7" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@unrs/resolver-binding-linux-x64-musl@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.2" +"@unrs/resolver-binding-linux-x64-musl@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.7" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@unrs/resolver-binding-wasm32-wasi@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.2" +"@unrs/resolver-binding-wasm32-wasi@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.7" dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.9" + "@napi-rs/wasm-runtime": "npm:^0.2.10" conditions: cpu=wasm32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2" +"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.7" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2" +"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.7" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2": - version: 1.7.2 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2" +"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.7": + version: 1.7.7 + resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.7" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -16032,15 +16073,15 @@ __metadata: languageName: node linkType: hard -"@vanilla-extract/compiler@npm:^0.1.3": - version: 0.1.3 - resolution: "@vanilla-extract/compiler@npm:0.1.3" +"@vanilla-extract/compiler@npm:^0.2.0": + version: 0.2.0 + resolution: "@vanilla-extract/compiler@npm:0.2.0" dependencies: "@vanilla-extract/css": "npm:^1.17.2" "@vanilla-extract/integration": "npm:^8.0.2" vite: "npm:^5.0.0 || ^6.0.0" vite-node: "npm:^3.0.4" - checksum: 10/f3314ae542ff1396eb9c5a88bb40fe0d67af3b52059d7de8158673d0386615b85dda4a9771c31a511c2073a2de8746ae82ffb3273075275b42c897e835027e6e + checksum: 10/19cf8889f5bac2b38033b9b91ac2a29f922f546f9275f5b80824b76aeae62c32f72a9cc8c67bfdb5df6014c58593462c9a97c7f54df3e5c4315ca1ba57af7507 languageName: node linkType: hard @@ -16099,14 +16140,14 @@ __metadata: linkType: hard "@vanilla-extract/vite-plugin@npm:^5.0.0": - version: 5.0.2 - resolution: "@vanilla-extract/vite-plugin@npm:5.0.2" + version: 5.0.3 + resolution: "@vanilla-extract/vite-plugin@npm:5.0.3" dependencies: - "@vanilla-extract/compiler": "npm:^0.1.3" + "@vanilla-extract/compiler": "npm:^0.2.0" "@vanilla-extract/integration": "npm:^8.0.2" peerDependencies: vite: ^5.0.0 || ^6.0.0 - checksum: 10/ba3fcebaa09818ee1494108e746f1c5e3f49397e35fb55641b930b29cbeac0d19127a9f594f5a9751dbc6873612bf4e1fc420bc97a0300baaae22305c00c6667 + checksum: 10/ccef9a136fa001aab57edddcab63277d71e901347064c0431a430d69e98694596089e0bab3c42faa7c002c42c7599fef32efc17ec61e731cde2e078132438ecd languageName: node linkType: hard @@ -16125,8 +16166,8 @@ __metadata: linkType: hard "@vercel/nft@npm:^0.29.2": - version: 0.29.2 - resolution: "@vercel/nft@npm:0.29.2" + version: 0.29.3 + resolution: "@vercel/nft@npm:0.29.3" dependencies: "@mapbox/node-pre-gyp": "npm:^2.0.0" "@rollup/pluginutils": "npm:^5.1.3" @@ -16142,33 +16183,35 @@ __metadata: resolve-from: "npm:^5.0.0" bin: nft: out/cli.js - checksum: 10/6ae416b263a0ded96675346ab71c502a7ed6fbdce24ac79e68b43da741b05e165f3ea2e327dad1bc77261d91e7cd60c87005bdefd51991d190347efa71f38837 + checksum: 10/ba983252cae1e4b454e59affab2b561f985c2dc1befa9b218f2325a8f6f7fb5d4e310968627d9228c4fad95a53fd0cab22a7d45100720463a7512ba76d93e675 languageName: node linkType: hard "@vitejs/plugin-react-swc@npm:^3.7.2": - version: 3.9.0 - resolution: "@vitejs/plugin-react-swc@npm:3.9.0" + version: 3.10.0 + resolution: "@vitejs/plugin-react-swc@npm:3.10.0" dependencies: - "@swc/core": "npm:^1.11.21" + "@rolldown/pluginutils": "npm:1.0.0-beta.9" + "@swc/core": "npm:^1.11.22" peerDependencies: vite: ^4 || ^5 || ^6 - checksum: 10/545dddee3c2f7f35f37c680f79bebb98f3968209470ec56c594556410d498b41cf86df60d2ab9a56c69b02bef12ee3198371becc804b85172ec97ee0d2d7633d + checksum: 10/99ecf71de8f5a854bb2fc8813a6cff6bbc94477f76b0805e75515842e6c7c5674fd368ea81428b481812f19ee88a2cde226b4c304974adb54b36e2a41467bd02 languageName: node linkType: hard "@vitejs/plugin-react@npm:^4.3.4": - version: 4.4.1 - resolution: "@vitejs/plugin-react@npm:4.4.1" + version: 4.5.0 + resolution: "@vitejs/plugin-react@npm:4.5.0" dependencies: "@babel/core": "npm:^7.26.10" "@babel/plugin-transform-react-jsx-self": "npm:^7.25.9" "@babel/plugin-transform-react-jsx-source": "npm:^7.25.9" + "@rolldown/pluginutils": "npm:1.0.0-beta.9" "@types/babel__core": "npm:^7.20.5" react-refresh: "npm:^0.17.0" peerDependencies: vite: ^4.2.0 || ^5.0.0 || ^6.0.0 - checksum: 10/bce482d4ecd98d1b15323968ff9ad0a6162a6770fab31f380bb77b5f410319c1848e5cf03d3ccd798e3fc74cdb38ae4dc023cd92576378c81b4d55b1f28b1f1c + checksum: 10/0a1c4815fb5a404681443f6e3c4b5a82ec4527dc9fb606f9282bbff5d487b9af5e3433eee2386d4582045bcd691d1aca93df3cbf558164b763b7464710544fe8 languageName: node linkType: hard @@ -16670,24 +16713,24 @@ __metadata: linkType: hard "@whatwg-node/fetch@npm:^0.10.0, @whatwg-node/fetch@npm:^0.10.4": - version: 0.10.7 - resolution: "@whatwg-node/fetch@npm:0.10.7" + version: 0.10.8 + resolution: "@whatwg-node/fetch@npm:0.10.8" dependencies: - "@whatwg-node/node-fetch": "npm:^0.7.19" + "@whatwg-node/node-fetch": "npm:^0.7.21" urlpattern-polyfill: "npm:^10.0.0" - checksum: 10/7784ecdef6a8d6f71994de37aa89064221045d5b02c2c2e38286eb79c6960158a96ae9b2b4f7ed8cf9943300fc73a58888dc034c1836b29afd7a517058195390 + checksum: 10/53b3b35c8c725cbc2da6dce1135db6a374bac6bebd7dd572a41ead25f8c2158069cd35a7fc89030e68af25db17ffe79370def024296b1085a7d8af6b89da518d languageName: node linkType: hard -"@whatwg-node/node-fetch@npm:^0.7.19": - version: 0.7.19 - resolution: "@whatwg-node/node-fetch@npm:0.7.19" +"@whatwg-node/node-fetch@npm:^0.7.21": + version: 0.7.21 + resolution: "@whatwg-node/node-fetch@npm:0.7.21" dependencies: "@fastify/busboy": "npm:^3.1.1" "@whatwg-node/disposablestack": "npm:^0.0.6" "@whatwg-node/promise-helpers": "npm:^1.3.2" tslib: "npm:^2.6.3" - checksum: 10/bba076758c50afd321726152569ae32688ea8e4883d637d6e0d375279a90b3653435d3bed7b1c263243f9a7328d59e47bb96412a3c8874039d7f9610631b2018 + checksum: 10/68257f2bb4642bfbbfbdb9c7285ebfa829901dabb111d52809ed98dc4f9e355eda030122aee313464c8eb503c01ecc66398a1949922245122d32434a026579d6 languageName: node linkType: hard @@ -16823,7 +16866,7 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.14.1, acorn@npm:^8.4.1, acorn@npm:^8.6.0, acorn@npm:^8.7.1, acorn@npm:^8.8.1, acorn@npm:^8.8.2": +"acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.14.1, acorn@npm:^8.4.1, acorn@npm:^8.6.0, acorn@npm:^8.7.1, acorn@npm:^8.8.1": version: 8.14.1 resolution: "acorn@npm:8.14.1" bin: @@ -17046,10 +17089,10 @@ __metadata: languageName: node linkType: hard -"ansis@npm:^4.0.0": - version: 4.0.0 - resolution: "ansis@npm:4.0.0" - checksum: 10/8ee418efb7e5aa27caa01ee4125fe05eaeddb7781fb3cd38e6031ff091d51bf6a405dfb2388eb91fbbfc0096cd5303608f33f9d01f46764e17b2af596dbe284e +"ansis@npm:^4.1.0": + version: 4.1.0 + resolution: "ansis@npm:4.1.0" + checksum: 10/e2658367807edb461a4c772bdba50cef85c7b3e5f19d4d67d7a406e97b9ba222cfd4dc300fee1b05619207d4e17c809f32e97ac47429f8b4b1a6709dc6ac35ac languageName: node linkType: hard @@ -17225,11 +17268,11 @@ __metadata: linkType: hard "aria-hidden@npm:^1.2.4": - version: 1.2.4 - resolution: "aria-hidden@npm:1.2.4" + version: 1.2.6 + resolution: "aria-hidden@npm:1.2.6" dependencies: tslib: "npm:^2.0.0" - checksum: 10/df4bc15423aaaba3729a7d40abcbf6d3fffa5b8fd5eb33d3ac8b7da0110c47552fca60d97f2e1edfbb68a27cae1da499f1c3896966efb3e26aac4e3b57e3cc8b + checksum: 10/1914e5a36225dccdb29f0b88cc891eeca736cdc5b0c905ab1437b90b28b5286263ed3a221c75b7dc788f25b942367be0044b2ac8ccf073a72e07a50b1d964202 languageName: node linkType: hard @@ -17834,16 +17877,16 @@ __metadata: linkType: hard "browserslist@npm:^4.0.0, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.24.5": - version: 4.24.5 - resolution: "browserslist@npm:4.24.5" + version: 4.25.0 + resolution: "browserslist@npm:4.25.0" dependencies: - caniuse-lite: "npm:^1.0.30001716" - electron-to-chromium: "npm:^1.5.149" + caniuse-lite: "npm:^1.0.30001718" + electron-to-chromium: "npm:^1.5.160" node-releases: "npm:^2.0.19" update-browserslist-db: "npm:^1.1.3" bin: browserslist: cli.js - checksum: 10/93fde829b77f20e2c4e1e0eaed154681c05e4828420e4afba790d480daa5de742977a44bbac8567881b8fbec3da3dea7ca1cb578ac1fd4385ef4ae91ca691d64 + checksum: 10/4a5442b1a0d09c4c64454f184b8fed17d8c3e202034bf39de28f74497d7bd28dddee121b2bab4e34825fe0ed4c166d84e32a39f576c76fce73c1f8f05e4b6ee6 languageName: node linkType: hard @@ -18059,7 +18102,7 @@ __metadata: languageName: node linkType: hard -"c12@npm:^3.0.3": +"c12@npm:^3.0.4": version: 3.0.4 resolution: "c12@npm:3.0.4" dependencies: @@ -18235,10 +18278,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001716": - version: 1.0.30001717 - resolution: "caniuse-lite@npm:1.0.30001717" - checksum: 10/e47dfd8707ea305baa177f3d3d531df614f5a9ac6335363fc8f86f0be4caf79f5734f3f68b601fee4edd9d79f1e5ffc0931466bb894bf955ed6b1dd5a1c34b1d +"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001718": + version: 1.0.30001720 + resolution: "caniuse-lite@npm:1.0.30001720" + checksum: 10/6557c5052fa17fd531f3e1a8013b5924fb69afcd53d9f3e3b9adc9e31c5a7e436b674c000c53659e097fe1fda1c290d1bd17c7f3f98d13749644386ed722ab5f languageName: node linkType: hard @@ -18397,20 +18440,20 @@ __metadata: linkType: hard "changelogithub@npm:^13.0.0": - version: 13.14.0 - resolution: "changelogithub@npm:13.14.0" + version: 13.15.0 + resolution: "changelogithub@npm:13.15.0" dependencies: - ansis: "npm:^4.0.0" - c12: "npm:^3.0.3" + ansis: "npm:^4.1.0" + c12: "npm:^3.0.4" cac: "npm:^6.7.14" changelogen: "npm:0.5.7" convert-gitmoji: "npm:^0.1.5" - execa: "npm:^9.5.3" + execa: "npm:^9.6.0" ofetch: "npm:^1.4.1" semver: "npm:^7.7.2" bin: changelogithub: cli.mjs - checksum: 10/f15c798b24a88ce38fe0b2ff5a3dadcce077f5f7ba0a5b038b3d58045bf3794e1368dc5bc8998d6012a75da6d599892c2d6f3530bec7019ace8d7ddd3d0a5ff8 + checksum: 10/f73ede169ef1e605edbac308169c0407eaa5a5a6d8808677a1dacc5a5bfa7c81ac60d1915e27fe61f2e903812009e77203a89243e91cf8c2644adc470cb77502 languageName: node linkType: hard @@ -18990,13 +19033,20 @@ __metadata: languageName: node linkType: hard -"commander@npm:^13.0.0, commander@npm:^13.1.0": +"commander@npm:^13.0.0": version: 13.1.0 resolution: "commander@npm:13.1.0" checksum: 10/d3b4b79e6be8471ddadacbb8cd441fe82154d7da7393b50e76165a9e29ccdb74fa911a186437b9a211d0fc071db6051915c94fb8ef16d77511d898e9dbabc6af languageName: node linkType: hard +"commander@npm:^14.0.0": + version: 14.0.0 + resolution: "commander@npm:14.0.0" + checksum: 10/c05418bfc35a3e8b5c67bd9f75f5b773f386f9b85f83e70e7c926047f270929cb06cf13cd68f387dd6e7e23c6157de8171b28ba606abd3e6256028f1f789becf + languageName: node + linkType: hard + "commander@npm:^2.20.0, commander@npm:^2.20.3": version: 2.20.3 resolution: "commander@npm:2.20.3" @@ -19871,7 +19921,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4, debug@npm:^4.0.0, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.4.0": +"debug@npm:4, debug@npm:^4, debug@npm:^4.0.0, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:^4.4.0, debug@npm:^4.4.1": version: 4.4.1 resolution: "debug@npm:4.4.1" dependencies: @@ -20560,10 +20610,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.149": - version: 1.5.151 - resolution: "electron-to-chromium@npm:1.5.151" - checksum: 10/99c95f6c4c03ac69df9f771fdb901f70848ef6685cfcb0f455ead951439264791cb25f3e074f32224aba5d7fdf9d0bb6e5de07b1c9e01b7d51f64d038365a7c1 +"electron-to-chromium@npm:^1.5.160": + version: 1.5.161 + resolution: "electron-to-chromium@npm:1.5.161" + checksum: 10/cac9497669736407a8b156658986b5afb616e7a8fdc9aca41b8709bad541b48823dd5a5f0e07dee4149a1b5f7021e2d0443cdd0c475f7c67c4af171afe43bc9d languageName: node linkType: hard @@ -20611,15 +20661,15 @@ __metadata: linkType: hard "electron@npm:^36.0.0": - version: 36.2.1 - resolution: "electron@npm:36.2.1" + version: 36.3.2 + resolution: "electron@npm:36.3.2" dependencies: "@electron/get": "npm:^2.0.0" "@types/node": "npm:^22.7.7" extract-zip: "npm:^2.0.1" bin: electron: cli.js - checksum: 10/2dbcac9208c6a513b75ef92a969441407e44fb11377a3d831d3e043d3c5e1bf927badc475a490b554e6007995f1a28db9d833044202d21d629bb84587745dbf7 + checksum: 10/d2ca8fec4ad979976b70960a4bbba3ffada02a3969d2f83bd89d86471faeba9cdafc75d90191d15d99165ad16e5095b3700d6e511f8c8031810ec3098fa84770 languageName: node linkType: hard @@ -20920,34 +20970,34 @@ __metadata: linkType: hard "esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0, esbuild@npm:^0.25.0, esbuild@npm:esbuild@>=0.17.6 <0.26.0, esbuild@npm:~0.25.0": - version: 0.25.4 - resolution: "esbuild@npm:0.25.4" + version: 0.25.5 + resolution: "esbuild@npm:0.25.5" dependencies: - "@esbuild/aix-ppc64": "npm:0.25.4" - "@esbuild/android-arm": "npm:0.25.4" - "@esbuild/android-arm64": "npm:0.25.4" - "@esbuild/android-x64": "npm:0.25.4" - "@esbuild/darwin-arm64": "npm:0.25.4" - "@esbuild/darwin-x64": "npm:0.25.4" - "@esbuild/freebsd-arm64": "npm:0.25.4" - "@esbuild/freebsd-x64": "npm:0.25.4" - "@esbuild/linux-arm": "npm:0.25.4" - "@esbuild/linux-arm64": "npm:0.25.4" - "@esbuild/linux-ia32": "npm:0.25.4" - "@esbuild/linux-loong64": "npm:0.25.4" - "@esbuild/linux-mips64el": "npm:0.25.4" - "@esbuild/linux-ppc64": "npm:0.25.4" - "@esbuild/linux-riscv64": "npm:0.25.4" - "@esbuild/linux-s390x": "npm:0.25.4" - "@esbuild/linux-x64": "npm:0.25.4" - "@esbuild/netbsd-arm64": "npm:0.25.4" - "@esbuild/netbsd-x64": "npm:0.25.4" - "@esbuild/openbsd-arm64": "npm:0.25.4" - "@esbuild/openbsd-x64": "npm:0.25.4" - "@esbuild/sunos-x64": "npm:0.25.4" - "@esbuild/win32-arm64": "npm:0.25.4" - "@esbuild/win32-ia32": "npm:0.25.4" - "@esbuild/win32-x64": "npm:0.25.4" + "@esbuild/aix-ppc64": "npm:0.25.5" + "@esbuild/android-arm": "npm:0.25.5" + "@esbuild/android-arm64": "npm:0.25.5" + "@esbuild/android-x64": "npm:0.25.5" + "@esbuild/darwin-arm64": "npm:0.25.5" + "@esbuild/darwin-x64": "npm:0.25.5" + "@esbuild/freebsd-arm64": "npm:0.25.5" + "@esbuild/freebsd-x64": "npm:0.25.5" + "@esbuild/linux-arm": "npm:0.25.5" + "@esbuild/linux-arm64": "npm:0.25.5" + "@esbuild/linux-ia32": "npm:0.25.5" + "@esbuild/linux-loong64": "npm:0.25.5" + "@esbuild/linux-mips64el": "npm:0.25.5" + "@esbuild/linux-ppc64": "npm:0.25.5" + "@esbuild/linux-riscv64": "npm:0.25.5" + "@esbuild/linux-s390x": "npm:0.25.5" + "@esbuild/linux-x64": "npm:0.25.5" + "@esbuild/netbsd-arm64": "npm:0.25.5" + "@esbuild/netbsd-x64": "npm:0.25.5" + "@esbuild/openbsd-arm64": "npm:0.25.5" + "@esbuild/openbsd-x64": "npm:0.25.5" + "@esbuild/sunos-x64": "npm:0.25.5" + "@esbuild/win32-arm64": "npm:0.25.5" + "@esbuild/win32-ia32": "npm:0.25.5" + "@esbuild/win32-x64": "npm:0.25.5" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -21001,7 +21051,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10/227ffe9b31f0b184a0b0a0210bb9d32b2b115b8c5c9b09f08db2c3928cb470fc55a22dbba3c2894365d3abcc62c2089b85638be96a20691d1234d31990ea01b2 + checksum: 10/0fa4c3b42c6ddf1a008e75a4bb3dcab08ce22ac0b31dd59dc01f7fe8e21380bfaec07a2fe3730a7cf430da5a30142d016714b358666325a4733547afa42be405 languageName: node linkType: hard @@ -21058,6 +21108,21 @@ __metadata: languageName: node linkType: hard +"eslint-import-context@npm:^0.1.5": + version: 0.1.6 + resolution: "eslint-import-context@npm:0.1.6" + dependencies: + get-tsconfig: "npm:^4.10.1" + stable-hash: "npm:^0.0.5" + peerDependencies: + unrs-resolver: ^1.0.0 + peerDependenciesMeta: + unrs-resolver: + optional: true + checksum: 10/c68a146384e4fdf7e91d26d8c6641f412b78be4de1d61c1651cde2fb59cf5ab8cb9150f2fb250d6378db5e64a1bc35eaacbec5fee53ef3444759592e29074e6b + languageName: node + linkType: hard + "eslint-import-resolver-node@npm:^0.3.9": version: 0.3.9 resolution: "eslint-import-resolver-node@npm:0.3.9" @@ -21070,15 +21135,16 @@ __metadata: linkType: hard "eslint-import-resolver-typescript@npm:^4.0.0": - version: 4.3.4 - resolution: "eslint-import-resolver-typescript@npm:4.3.4" + version: 4.4.1 + resolution: "eslint-import-resolver-typescript@npm:4.4.1" dependencies: - debug: "npm:^4.4.0" - get-tsconfig: "npm:^4.10.0" + debug: "npm:^4.4.1" + eslint-import-context: "npm:^0.1.5" + get-tsconfig: "npm:^4.10.1" is-bun-module: "npm:^2.0.0" stable-hash: "npm:^0.0.5" - tinyglobby: "npm:^0.2.13" - unrs-resolver: "npm:^1.6.3" + tinyglobby: "npm:^0.2.14" + unrs-resolver: "npm:^1.7.2" peerDependencies: eslint: "*" eslint-plugin-import: "*" @@ -21088,28 +21154,28 @@ __metadata: optional: true eslint-plugin-import-x: optional: true - checksum: 10/3620479c17bfbe7d40706c06e15a559a0a626af16bec3fe3046644ca84a5b49d5b8996753e5caf1b4f3de2140dbde5dc852aa3ea5fc4f459c080400b23af9e7e + checksum: 10/6fc8a16060c5423c8f53587f4c2d57ff2f87db11c78ae9579d9c81638029c319a0217a07abb86a445e8e45a2863920bbface9659310ef0c501ed72e2aaeb9020 languageName: node linkType: hard "eslint-plugin-import-x@npm:^4.5.0": - version: 4.11.1 - resolution: "eslint-plugin-import-x@npm:4.11.1" + version: 4.13.3 + resolution: "eslint-plugin-import-x@npm:4.13.3" dependencies: - "@typescript-eslint/utils": "npm:^8.31.0" + "@typescript-eslint/utils": "npm:^8.32.1" comment-parser: "npm:^1.4.1" - debug: "npm:^4.4.0" + debug: "npm:^4.4.1" + eslint-import-context: "npm:^0.1.5" eslint-import-resolver-node: "npm:^0.3.9" - get-tsconfig: "npm:^4.10.0" is-glob: "npm:^4.0.3" minimatch: "npm:^9.0.3 || ^10.0.1" - semver: "npm:^7.7.1" + semver: "npm:^7.7.2" stable-hash: "npm:^0.0.5" tslib: "npm:^2.8.1" - unrs-resolver: "npm:^1.7.0" + unrs-resolver: "npm:^1.7.2" peerDependencies: eslint: ^8.57.0 || ^9.0.0 - checksum: 10/98e7f4a92f3d3c830d0776aa2da66e4f3628c6a73b18edbfbd70c6091b82149aa8966fd7db6884b4490aceeb4bc906e82988a755b66351a1bbfb89111e8d72b0 + checksum: 10/5fc8f7328e7ec6f4e0018d8ca2ad5fd6ba5f11a9a116ffefaf4721fdaa27ae3347a54ff330eb24f4e79ace2279f841de643d2bcdf4710908ece98336311e1534 languageName: node linkType: hard @@ -21240,21 +21306,20 @@ __metadata: linkType: hard "eslint@npm:^9.16.0": - version: 9.26.0 - resolution: "eslint@npm:9.26.0" + version: 9.27.0 + resolution: "eslint@npm:9.27.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@eslint-community/regexpp": "npm:^4.12.1" "@eslint/config-array": "npm:^0.20.0" "@eslint/config-helpers": "npm:^0.2.1" - "@eslint/core": "npm:^0.13.0" + "@eslint/core": "npm:^0.14.0" "@eslint/eslintrc": "npm:^3.3.1" - "@eslint/js": "npm:9.26.0" - "@eslint/plugin-kit": "npm:^0.2.8" + "@eslint/js": "npm:9.27.0" + "@eslint/plugin-kit": "npm:^0.3.1" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" "@humanwhocodes/retry": "npm:^0.4.2" - "@modelcontextprotocol/sdk": "npm:^1.8.0" "@types/estree": "npm:^1.0.6" "@types/json-schema": "npm:^7.0.15" ajv: "npm:^6.12.4" @@ -21279,7 +21344,6 @@ __metadata: minimatch: "npm:^3.1.2" natural-compare: "npm:^1.4.0" optionator: "npm:^0.9.3" - zod: "npm:^3.24.2" peerDependencies: jiti: "*" peerDependenciesMeta: @@ -21287,7 +21351,7 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: 10/b87092cb7e87f1d0963475c1a1e15e551842ea122925cf13231e742fae565bf3582029a5b0b4aecf793f25c26ee0be3ee1f32190bc361e0c3f3633b9cbace948 + checksum: 10/75f02b851c6f8534d1289de1bd957637a56725754bea03a0a710d6740a036aca81d5e600557633fca7ab774275aa94044ca05772f88c4f464cd42834eff37145 languageName: node linkType: hard @@ -21433,29 +21497,13 @@ __metadata: languageName: node linkType: hard -"eventsource-parser@npm:^3.0.1": - version: 3.0.1 - resolution: "eventsource-parser@npm:3.0.1" - checksum: 10/2730c54c3cb47d55d2967f2ece843f9fc95d8a11c2fef6fece8d17d9080193cbe3cd9ac7b04a325977f63cbf8c1664fdd0512dec1aec601666a5c5bd8564b61f - languageName: node - linkType: hard - -"eventsource@npm:^3.0.2": - version: 3.0.7 - resolution: "eventsource@npm:3.0.7" - dependencies: - eventsource-parser: "npm:^3.0.1" - checksum: 10/e034915bc97068d1d38617951afd798e6776d6a3a78e36a7569c235b177c7afc2625c9fe82656f7341ab72c7eeecb3fd507b7f88e9328f2448872ff9c4742bb6 - languageName: node - linkType: hard - "exa-js@npm:^1.6.13": - version: 1.7.2 - resolution: "exa-js@npm:1.7.2" + version: 1.7.3 + resolution: "exa-js@npm:1.7.3" dependencies: cross-fetch: "npm:~4.1.0" dotenv: "npm:~16.4.7" - checksum: 10/2ce7af2ac9f566b09e043f3a5d81b3f704575dea801172c67be5de43022e58c1d754ef745d1c7a54511ccb331fec65a10def9efaf18df981be4d3ea1ccf1d63c + checksum: 10/87ff4eecee33c6b20341600fe68a5b6581bf0a117b0828f01e9d4c7a22211debcf25396d04056e74e425a6b58aaa688280592f7e25ae227d24b7afcee5f593ea languageName: node linkType: hard @@ -21491,23 +21539,23 @@ __metadata: languageName: node linkType: hard -"execa@npm:^9.5.3": - version: 9.5.3 - resolution: "execa@npm:9.5.3" +"execa@npm:^9.6.0": + version: 9.6.0 + resolution: "execa@npm:9.6.0" dependencies: "@sindresorhus/merge-streams": "npm:^4.0.0" - cross-spawn: "npm:^7.0.3" + cross-spawn: "npm:^7.0.6" figures: "npm:^6.1.0" get-stream: "npm:^9.0.0" - human-signals: "npm:^8.0.0" + human-signals: "npm:^8.0.1" is-plain-obj: "npm:^4.1.0" is-stream: "npm:^4.0.1" npm-run-path: "npm:^6.0.0" - pretty-ms: "npm:^9.0.0" + pretty-ms: "npm:^9.2.0" signal-exit: "npm:^4.1.0" strip-final-newline: "npm:^4.0.0" - yoctocolors: "npm:^2.0.0" - checksum: 10/ed4c598eca9b0587b24b15b30fdc621f01aa54204a3dc005ce783857e0dd773802d5eddabd9b296bdff8edb2ee9e7d1981decce0c5649be4a76ca18a3ec6e3cb + yoctocolors: "npm:^2.1.1" + checksum: 10/53443be93d847ff5b52d31ed3714f77aab764fb6c1d72dc7019214ab1cb1a69888e2158ba846426a8ea51443c110fe7a86de61ffb9ee5687b00120fbd739b8a4 languageName: node linkType: hard @@ -21525,7 +21573,7 @@ __metadata: languageName: node linkType: hard -"express-rate-limit@npm:^7.1.5, express-rate-limit@npm:^7.5.0": +"express-rate-limit@npm:^7.1.5": version: 7.5.0 resolution: "express-rate-limit@npm:7.5.0" peerDependencies: @@ -21807,14 +21855,14 @@ __metadata: linkType: hard "fdir@npm:^6.4.4": - version: 6.4.4 - resolution: "fdir@npm:6.4.4" + version: 6.4.5 + resolution: "fdir@npm:6.4.5" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - checksum: 10/d0000d6b790059b35f4ed19acc8847a66452e0bc68b28766c929ffd523e5ec2083811fc8a545e4a1d4945ce70e887b3a610c145c681073b506143ae3076342ed + checksum: 10/8f5a2107fe0486f61af9a0666f2b7c62a229c738330e22ff8795bfbaabcf2294fb79460b73830b8824fc6eef91e21f676bac66ca982d5ee7e92ee9b68c07775f languageName: node linkType: hard @@ -22549,12 +22597,12 @@ __metadata: languageName: node linkType: hard -"get-tsconfig@npm:^4.10.0, get-tsconfig@npm:^4.7.5": - version: 4.10.0 - resolution: "get-tsconfig@npm:4.10.0" +"get-tsconfig@npm:^4.10.1, get-tsconfig@npm:^4.7.5": + version: 4.10.1 + resolution: "get-tsconfig@npm:4.10.1" dependencies: resolve-pkg-maps: "npm:^1.0.0" - checksum: 10/5259b5c99a1957114337d9d0603b4a305ec9e29fa6cac7d2fbf634ba6754a0cc88bfd281a02416ce64e604b637d3cb239185381a79a5842b17fb55c097b38c4b + checksum: 10/04d63f47fdecaefbd1f73ec02949be4ec4db7d6d9fbc8d4e81f9a4bb1c6f876e48943712f2f9236643d3e4d61d9a7b06da08564d08b034631ebe3f5605bef237 languageName: node linkType: hard @@ -22747,9 +22795,9 @@ __metadata: linkType: hard "globals@npm:^16.0.0": - version: 16.1.0 - resolution: "globals@npm:16.1.0" - checksum: 10/b24fa86c9d9e7f452572977105cefa66529ac166faf1d81abe6618e0ccce98cdd32f8cbc25d37ed6c2dbe7936b00d442696fd0c96da4c90567490488ecefb8fa + version: 16.2.0 + resolution: "globals@npm:16.2.0" + checksum: 10/37fc33502973ebbee5a44b58939aa8574abc00ca1fc4c1d4ec0571a2c6620843ae647eff8bd082adf6bb5975ad221a887522b9a7961125764f0cb6dfab0b7483 languageName: node linkType: hard @@ -22948,7 +22996,7 @@ __metadata: languageName: node linkType: hard -"graphql-ws@npm:6.0.4, graphql-ws@npm:^6.0.3": +"graphql-ws@npm:6.0.4": version: 6.0.4 resolution: "graphql-ws@npm:6.0.4" peerDependencies: @@ -22967,6 +23015,28 @@ __metadata: languageName: node linkType: hard +"graphql-ws@npm:^6.0.3": + version: 6.0.5 + resolution: "graphql-ws@npm:6.0.5" + peerDependencies: + "@fastify/websocket": ^10 || ^11 + crossws: ~0.3 + graphql: ^15.10.1 || ^16 + uWebSockets.js: ^20 + ws: ^8 + peerDependenciesMeta: + "@fastify/websocket": + optional: true + crossws: + optional: true + uWebSockets.js: + optional: true + ws: + optional: true + checksum: 10/33767813faf574ec225f52ffdf3cd4ef78acfb4905e82116afe0fe4adcd438ae3886f12b8ced588376dfaa26d50a6ad2dd30596547ed0a93c190fc4495ab91d2 + languageName: node + linkType: hard + "graphql@npm:^16.8.1, graphql@npm:^16.9.0": version: 16.11.0 resolution: "graphql@npm:16.11.0" @@ -22992,12 +23062,12 @@ __metadata: linkType: hard "happy-dom@npm:^17.0.0": - version: 17.4.7 - resolution: "happy-dom@npm:17.4.7" + version: 17.5.6 + resolution: "happy-dom@npm:17.5.6" dependencies: webidl-conversions: "npm:^7.0.0" whatwg-mimetype: "npm:^3.0.0" - checksum: 10/8f6af6b3cfea459805fc2db7329ecdf9c7760d29cae20dde85983896de02f7bfcf265533850848a501c9813d94211c0737534c54d28b6c5b2c1bb13daa344211 + checksum: 10/dcec81d51aa95a0d145e954e4ff14a507cc6757007c8b1b5146e66934ccabbca57f7e01cd8c1e4e6229bd85fd4528511ce2968feffa28bda7dbb7a420779d4af languageName: node linkType: hard @@ -23267,8 +23337,8 @@ __metadata: linkType: hard "html-validate@npm:^9.0.0": - version: 9.5.3 - resolution: "html-validate@npm:9.5.3" + version: 9.5.5 + resolution: "html-validate@npm:9.5.5" dependencies: "@html-validate/stylish": "npm:^4.1.0" "@sidvind/better-ajv-errors": "npm:4.0.0" @@ -23294,7 +23364,7 @@ __metadata: optional: true bin: html-validate: bin/html-validate.mjs - checksum: 10/a942989c66898bf13a030fb0cf2dc565777e601409a9eb7a149f51e101aec2aef26dd921aeca56961815e1bf00bb72955b8e166e1b417309d7737a092f89d92b + checksum: 10/561bfe60f1eed0ead3f128395ce62637db393c63cfbbfced4d1836b3ca7308642d594bc54ca9d6ee18ef15f9240dba0b0b55fe5662245312bc222d4d8ae07b93 languageName: node linkType: hard @@ -23524,7 +23594,7 @@ __metadata: languageName: node linkType: hard -"human-signals@npm:^8.0.0": +"human-signals@npm:^8.0.1": version: 8.0.1 resolution: "human-signals@npm:8.0.1" checksum: 10/903389a018b16f330c5e0f6e8b76d592c79552152ea892f249e5290e71c790f5722dc9b740fedd4bdef30566754a69012aaed97a6a528da0d417fad990a6f515 @@ -23566,8 +23636,8 @@ __metadata: linkType: hard "i18next@npm:^25.0.0": - version: 25.2.0 - resolution: "i18next@npm:25.2.0" + version: 25.2.1 + resolution: "i18next@npm:25.2.1" dependencies: "@babel/runtime": "npm:^7.27.1" peerDependencies: @@ -23575,7 +23645,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10/76961aadcafe301c475e801df914827ea7470987f9b7cf552596bab60117165efaaffcbb69d937af943db5e4eb46cb7798f79042b657ade10dc8983f63c28753 + checksum: 10/7abc9dedee928d23c926917fcc640ff45e22320c814f3f254ade74bc255247edd78e8dd58c835bbfe1898489f6cb2e874e547f9fa68a1a6820409c1306dec28c languageName: node linkType: hard @@ -23719,14 +23789,14 @@ __metadata: linkType: hard "import-in-the-middle@npm:^1.13.1, import-in-the-middle@npm:^1.8.1": - version: 1.13.2 - resolution: "import-in-the-middle@npm:1.13.2" + version: 1.14.0 + resolution: "import-in-the-middle@npm:1.14.0" dependencies: acorn: "npm:^8.14.0" acorn-import-attributes: "npm:^1.9.5" cjs-module-lexer: "npm:^1.2.2" module-details-from-path: "npm:^1.0.3" - checksum: 10/c65f709ce682dd597b4ffae403237572fd191adb7d669b4bd53cb13c372ff8f5ae1af76b0254b0dcdb73e339313f765ac37910f32f3d85673f53feabe8998255 + checksum: 10/c0b73a5637c0c7ec0ab19d5687a571dc864d90e0603dd45e28939624707def244a5dae402d7dccc1f5fc5b54ffcf18313a071d13048c390a495696d6b9f290fc languageName: node linkType: hard @@ -23865,12 +23935,12 @@ __metadata: linkType: hard "inquirer@npm:^12.3.0": - version: 12.6.1 - resolution: "inquirer@npm:12.6.1" + version: 12.6.3 + resolution: "inquirer@npm:12.6.3" dependencies: - "@inquirer/core": "npm:^10.1.11" - "@inquirer/prompts": "npm:^7.5.1" - "@inquirer/type": "npm:^3.0.6" + "@inquirer/core": "npm:^10.1.13" + "@inquirer/prompts": "npm:^7.5.3" + "@inquirer/type": "npm:^3.0.7" ansi-escapes: "npm:^4.3.2" mute-stream: "npm:^2.0.0" run-async: "npm:^3.0.0" @@ -23880,7 +23950,7 @@ __metadata: peerDependenciesMeta: "@types/node": optional: true - checksum: 10/cfd2bb8b5e1e11233b228770a47b5ad8dc3595f5d4d42b07fcf11703e09d05cb290c6d01c66bc7c62209447eb79043d10420c9532dea76d067ff26215807af97 + checksum: 10/df57c0713955bb2850edf6278a3902d598efbfc7c1b22f345b7c6908a681948a6f20983dd85f4ddadf6cba3ddab9044ea79c9fe1fec459d3450472f3e0c2a7d5 languageName: node linkType: hard @@ -24509,11 +24579,11 @@ __metadata: linkType: hard "jackspeak@npm:^4.0.1": - version: 4.1.0 - resolution: "jackspeak@npm:4.1.0" + version: 4.1.1 + resolution: "jackspeak@npm:4.1.1" dependencies: "@isaacs/cliui": "npm:^8.0.2" - checksum: 10/d3ad964e87a3d66ec86b6d466ff150cf3472bbda738a9c4f882ece96c7fb59f0013be1f6cad17cbedd36260741db6cf8912b8e037cd7c7eb72b3532246e54f77 + checksum: 10/ffceb270ec286841f48413bfb4a50b188662dfd599378ce142b6540f3f0a66821dc9dcb1e9ebc55c6c3b24dc2226c96e5819ba9bd7a241bd29031b61911718c7 languageName: node linkType: hard @@ -24600,8 +24670,8 @@ __metadata: linkType: hard "jotai@npm:^2.10.3": - version: 2.12.4 - resolution: "jotai@npm:2.12.4" + version: 2.12.5 + resolution: "jotai@npm:2.12.5" peerDependencies: "@types/react": ">=17.0.0" react: ">=17.0.0" @@ -24610,7 +24680,7 @@ __metadata: optional: true react: optional: true - checksum: 10/385aaae8f89baee177240db36dd879ee56031a06b03b14644104ec09d729b03b99319855b874da3ff2e837fa8b7ac6ccdb823d60e36b63e081c365bf4c93d633 + checksum: 10/42ad87db2115f136944dca7dc6beb29b55f7cb72ea3e4fcb505de3276ffc6eacd4a5046aa99ef04ebb9914955c25c7082f53cc12fa953443c812ac47afc378c7 languageName: node linkType: hard @@ -25157,12 +25227,12 @@ __metadata: linkType: hard "link-preview-js@npm:^3.0.12": - version: 3.0.15 - resolution: "link-preview-js@npm:3.0.15" + version: 3.1.0 + resolution: "link-preview-js@npm:3.1.0" dependencies: cheerio: "npm:1.0.0-rc.11" url: "npm:0.11.0" - checksum: 10/24fc3b2789acad97b2a54a074dbaf31e5fb46ba50223a71ed80e3cdc10857e0b80d614fed1a111b3d1cec4d1f70443592563647e183df2978ba57fe2f77e0871 + checksum: 10/35d2891e3b9895ca2f54834be9c6d0c52d90c9f16124a45acac259dde4b960f3069aadf46bf6e087a1df6574762bbfc49bdf3e795fb29863feb9cb94be39c7be languageName: node linkType: hard @@ -25176,22 +25246,22 @@ __metadata: linkType: hard "lint-staged@npm:^16.0.0": - version: 16.0.0 - resolution: "lint-staged@npm:16.0.0" + version: 16.1.0 + resolution: "lint-staged@npm:16.1.0" dependencies: chalk: "npm:^5.4.1" - commander: "npm:^13.1.0" - debug: "npm:^4.4.0" + commander: "npm:^14.0.0" + debug: "npm:^4.4.1" lilconfig: "npm:^3.1.3" listr2: "npm:^8.3.3" micromatch: "npm:^4.0.8" - nano-spawn: "npm:^1.0.0" + nano-spawn: "npm:^1.0.2" pidtree: "npm:^0.6.0" string-argv: "npm:^0.3.2" - yaml: "npm:^2.7.1" + yaml: "npm:^2.8.0" bin: lint-staged: bin/lint-staged.js - checksum: 10/7d29934d5426520fe0d5ad4d5a14b71521411744cbddad47c2021e9957c7874c7b6280e7db1b4ca9d638d08c1a88f568f033cbe4d02276282c4707f0b4aefb67 + checksum: 10/c7a52ac9551f284b09d389d515ee0951055e13f71aa18990e0804fb8738d50763aa6e262879a4f0f1cf376a4c1772748f6782e8fe98a4cb322b168af16711ba6 languageName: node linkType: hard @@ -25611,12 +25681,12 @@ __metadata: linkType: hard "log-symbols@npm:^7.0.0": - version: 7.0.0 - resolution: "log-symbols@npm:7.0.0" + version: 7.0.1 + resolution: "log-symbols@npm:7.0.1" dependencies: is-unicode-supported: "npm:^2.0.0" yoctocolors: "npm:^2.1.1" - checksum: 10/a6cb6e90bfe9f0774a09ff783e2035cd7e375a42757d7e401b391916a67f6da382f4966b57dda89430faaebe2ed13803ea867e104f8d67caf66082943a7153f0 + checksum: 10/0862313d84826b551582e39659b8586c56b65130c5f4f976420e2c23985228334f2a26fc4251ac22bf0a5b415d9430e86bf332557d934c10b036f9a549d63a09 languageName: node linkType: hard @@ -26325,14 +26395,14 @@ __metadata: linkType: hard "memfs@npm:^4.6.0": - version: 4.17.1 - resolution: "memfs@npm:4.17.1" + version: 4.17.2 + resolution: "memfs@npm:4.17.2" dependencies: "@jsonjoy.com/json-pack": "npm:^1.0.3" "@jsonjoy.com/util": "npm:^1.3.0" tree-dump: "npm:^1.0.1" tslib: "npm:^2.0.0" - checksum: 10/ba0db64196bbe2891a2e0faa76bb93cde1cc3443f8ce74d18e8e320c33f4346cf6c430d432b0707bbd5d7c1b88ddab38723cf8e4db9f93627f0c7b0f00c456b5 + checksum: 10/105175204e74e836460fbf18e431bc24def3f5ea7ecd94d644f35992dc28b5a4c5f425849dd5f342878ef0ba032508c05b2756e026491635a59fc7f631cbfcde languageName: node linkType: hard @@ -27224,26 +27294,26 @@ __metadata: linkType: hard "msgpackr@npm:^1.11.2": - version: 1.11.2 - resolution: "msgpackr@npm:1.11.2" + version: 1.11.4 + resolution: "msgpackr@npm:1.11.4" dependencies: msgpackr-extract: "npm:^3.0.2" dependenciesMeta: msgpackr-extract: optional: true - checksum: 10/7602f1e91e5ba13f4289ec9cab0d3f3db87d4ed323bebcb40a0c43ba2f6153192bffb63a5bb4755faacb6e0985f307c35084f40eaba1c325b7035da91381f01a + checksum: 10/131d9d676c8b931fb522550913afd390d361bd9dde993e9927f5ad35d58d9165c940433800b69a2caff556db632c3c510bc064cc3a5776e1c2d63a7cb280a470 languageName: node linkType: hard "msw@npm:^2.6.8, msw@npm:^2.8.4": - version: 2.8.4 - resolution: "msw@npm:2.8.4" + version: 2.8.5 + resolution: "msw@npm:2.8.5" dependencies: "@bundled-es-modules/cookie": "npm:^2.0.1" "@bundled-es-modules/statuses": "npm:^1.0.1" "@bundled-es-modules/tough-cookie": "npm:^0.1.6" "@inquirer/confirm": "npm:^5.0.0" - "@mswjs/interceptors": "npm:^0.37.0" + "@mswjs/interceptors": "npm:^0.38.7" "@open-draft/deferred-promise": "npm:^2.2.0" "@open-draft/until": "npm:^2.1.0" "@types/cookie": "npm:^0.6.0" @@ -27264,7 +27334,7 @@ __metadata: optional: true bin: msw: cli/index.js - checksum: 10/f94108a15dc64c37edd949cf1f321142940e3032367d977e79faab57fb3fd559988fadc1d491cb933441c23300796dd2a64fb7d886d537485f1e607d28a64536 + checksum: 10/bb32fc7216e7fae2b511b35118f7ccb8f70d42ffa3600a37f9f29e1b4303251145b9c26d086c952331c1a4da9dca1c6826b3fe4cf561e9b14012c6ca5e482281 languageName: node linkType: hard @@ -27339,14 +27409,14 @@ __metadata: languageName: node linkType: hard -"nano-spawn@npm:^1.0.0": - version: 1.0.1 - resolution: "nano-spawn@npm:1.0.1" - checksum: 10/be4a26653e356eabf27c53bddc2205d38f4631523b08e7edc1c64d838320f191b96bd28a570dc939b29f7b036fc06f78f6b70f2341ba9221e2e677548220191b +"nano-spawn@npm:^1.0.2": + version: 1.0.2 + resolution: "nano-spawn@npm:1.0.2" + checksum: 10/6ce9e60846d2e37c0e3cd048472683c81dbcaadef9ebe73bfc8754ee7da2a574f724436d3dcdeda5d807aedc857cc8cbc278a9882529164b5ef4b170b95cfe0b languageName: node linkType: hard -"nanoid@npm:^3.3.6, nanoid@npm:^3.3.8": +"nanoid@npm:^3.3.11, nanoid@npm:^3.3.6, nanoid@npm:^3.3.8": version: 3.3.11 resolution: "nanoid@npm:3.3.11" bin: @@ -27365,11 +27435,11 @@ __metadata: linkType: hard "napi-postinstall@npm:^0.2.2": - version: 0.2.3 - resolution: "napi-postinstall@npm:0.2.3" + version: 0.2.4 + resolution: "napi-postinstall@npm:0.2.4" bin: napi-postinstall: lib/cli.js - checksum: 10/168525a8b80610c9f7dfe18feb40a86a6dc473d939c805eaa53a74bb1645ad9c3784904e41901f5f956f0147069d30a0b44e1bca5d73e94d8bbc112f36ae6eb7 + checksum: 10/286785f884b872102fb284847ecc693101f70126b1fc7a97e19293929ce7f08802b41f89398015cce0797070ea3ce6871939a3c1e693c04cf594f7939dbe8cfb languageName: node linkType: hard @@ -28746,9 +28816,9 @@ __metadata: linkType: hard "pg-protocol@npm:*": - version: 1.9.5 - resolution: "pg-protocol@npm:1.9.5" - checksum: 10/690b18d421fda1a004dcc07fe5aa06d3511775aae6ea424586e039c7954c463bc358bb00a93d064ccee16d378a7a9c27102fef348eee30f3d5d4105ff3d4151c + version: 1.10.0 + resolution: "pg-protocol@npm:1.10.0" + checksum: 10/975184d9f67dd2325afc8b5e79008c39bbdf6baf43db1158a90a9c624c86d0ca51cff68031759e196739d2e04b90a6a4749b42206ab7b9aca03a25243a7c2094 languageName: node linkType: hard @@ -28841,13 +28911,6 @@ __metadata: languageName: node linkType: hard -"pkce-challenge@npm:^5.0.0": - version: 5.0.0 - resolution: "pkce-challenge@npm:5.0.0" - checksum: 10/e60c06a0e0481cb82f80072053d5c479a7490758541c4226460450285dd5d72a995c44b3c553731ca7c2f64cc34b35f1d2e5f9de08d276b59899298f9efe1ddf - languageName: node - linkType: hard - "pkg-dir@npm:^4.1.0": version: 4.2.0 resolution: "pkg-dir@npm:4.2.0" @@ -29339,13 +29402,13 @@ __metadata: linkType: hard "postcss@npm:^8.4.33, postcss@npm:^8.4.38, postcss@npm:^8.4.41, postcss@npm:^8.4.49, postcss@npm:^8.5.3": - version: 8.5.3 - resolution: "postcss@npm:8.5.3" + version: 8.5.4 + resolution: "postcss@npm:8.5.4" dependencies: - nanoid: "npm:^3.3.8" + nanoid: "npm:^3.3.11" picocolors: "npm:^1.1.1" source-map-js: "npm:^1.2.1" - checksum: 10/6d7e21a772e8b05bf102636918654dac097bac013f0dc8346b72ac3604fc16829646f94ea862acccd8f82e910b00e2c11c1f0ea276543565d278c7ca35516a7c + checksum: 10/b037b55182aa3aa2f7c4ffb0f37518b35855bb0107222cc46e1b6fa13a4462cb2747d88d3bf66640e7cad20f465354b18d5eafffd44eba97364683a72a336695 languageName: node linkType: hard @@ -29464,7 +29527,7 @@ __metadata: languageName: node linkType: hard -"pretty-ms@npm:^9.0.0, pretty-ms@npm:^9.2.0": +"pretty-ms@npm:^9.2.0": version: 9.2.0 resolution: "pretty-ms@npm:9.2.0" dependencies: @@ -29580,8 +29643,8 @@ __metadata: linkType: hard "protobufjs@npm:^7.2.5, protobufjs@npm:^7.3.0": - version: 7.5.1 - resolution: "protobufjs@npm:7.5.1" + version: 7.5.3 + resolution: "protobufjs@npm:7.5.3" dependencies: "@protobufjs/aspromise": "npm:^1.1.2" "@protobufjs/base64": "npm:^1.1.2" @@ -29595,7 +29658,7 @@ __metadata: "@protobufjs/utf8": "npm:^1.1.0" "@types/node": "npm:>=13.7.0" long: "npm:^5.0.0" - checksum: 10/e9f502a2e31831d7cb4e00864f1d134d96236983f7fd426954e3d6ea0392f02df35d7b30f6b706b94b2a91d884126ca78380c250aea6997a0d4a7dbc360427ef + checksum: 10/3e412d2e2f799875dcdac1b43508f465a499dd3ffd9d24073669702589ef016529905617a12a967b1a8cfbe803a638b494cc3ed8db035605c7570d1a7fc094c9 languageName: node linkType: hard @@ -29930,8 +29993,8 @@ __metadata: linkType: hard "react-i18next@npm:^15.2.0": - version: 15.5.1 - resolution: "react-i18next@npm:15.5.1" + version: 15.5.2 + resolution: "react-i18next@npm:15.5.2" dependencies: "@babel/runtime": "npm:^7.25.0" html-parse-stringify: "npm:^3.0.1" @@ -29946,7 +30009,7 @@ __metadata: optional: true typescript: optional: true - checksum: 10/19b9ecb1df2eb611c79a27c0f0e9ba7b93933ff7f3c2413507df5f514057b1f860df676157a3eafd5bd76726eb820c1f2ddb8f6be42c39152f2d585864344f01 + checksum: 10/16e2e71177290ec3e3ca71403d101c511e0a0111f6eaabf5a84477fb5588cc83e27e5fc23d5f4404e6d3ca9f187752c349dd827d386218add27a169e9930fc63 languageName: node linkType: hard @@ -30030,8 +30093,8 @@ __metadata: linkType: hard "react-remove-scroll@npm:^2.6.3": - version: 2.6.3 - resolution: "react-remove-scroll@npm:2.6.3" + version: 2.7.0 + resolution: "react-remove-scroll@npm:2.7.0" dependencies: react-remove-scroll-bar: "npm:^2.3.7" react-style-singleton: "npm:^2.2.3" @@ -30044,7 +30107,7 @@ __metadata: peerDependenciesMeta: "@types/react": optional: true - checksum: 10/d4dfd38e4381fa6059c8b810568b2d3a31fe21168bb3e2f57d1b1885ee08736fbd5a3fd83936faef0d17031c9c4175a1af83885bfc6c4280611f025447b19a4c + checksum: 10/6fa65227b101f097be17126dbefdaaa170b39f8e4f53b4e90f058501e14047215de7eea7ce4516aa18b9daaee5b32e84abf0360dd7f0156d8017da64c8cc84e0 languageName: node linkType: hard @@ -30085,14 +30148,14 @@ __metadata: linkType: hard "react-router-dom@npm:^7.5.1": - version: 7.6.0 - resolution: "react-router-dom@npm:7.6.0" + version: 7.6.1 + resolution: "react-router-dom@npm:7.6.1" dependencies: - react-router: "npm:7.6.0" + react-router: "npm:7.6.1" peerDependencies: react: ">=18" react-dom: ">=18" - checksum: 10/e24b9c6cb04448e3f3effb79399294aeffc22e9b99e179befa861bd2f5464d6e6a1caaf2971aeded9cbdb7fd279552ed43aa3043cc823186f95fdc8b1d84fa27 + checksum: 10/807d6fc6924c63bce49a1e2483f79a8e27924db3ac664f9773f36687c52f909ab140f32305c0a8cfa543dba2b34aa5478c2bcff8bf8c801de02b56d98efa9de7 languageName: node linkType: hard @@ -30118,9 +30181,9 @@ __metadata: languageName: node linkType: hard -"react-router@npm:7.6.0": - version: 7.6.0 - resolution: "react-router@npm:7.6.0" +"react-router@npm:7.6.1": + version: 7.6.1 + resolution: "react-router@npm:7.6.1" dependencies: cookie: "npm:^1.0.1" set-cookie-parser: "npm:^2.6.0" @@ -30130,7 +30193,7 @@ __metadata: peerDependenciesMeta: react-dom: optional: true - checksum: 10/093ace0b706522ea551d279d18fa320ae904ea47e6b7f80532f0d4badee518d3cd454481b3cb89c3e68222571620c5bccdd52be770c2783c575308a4395d9015 + checksum: 10/90d3038db6d9c0d48bc932b8698c287a80759629ecef65f1ead32fadd78ef17895c7402832d3c94b47c45f10f8478b79551a647360415887f2f3a8fae10aca30 languageName: node linkType: hard @@ -30815,29 +30878,29 @@ __metadata: linkType: hard "rollup@npm:^4.34.9": - version: 4.40.2 - resolution: "rollup@npm:4.40.2" + version: 4.41.1 + resolution: "rollup@npm:4.41.1" dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.40.2" - "@rollup/rollup-android-arm64": "npm:4.40.2" - "@rollup/rollup-darwin-arm64": "npm:4.40.2" - "@rollup/rollup-darwin-x64": "npm:4.40.2" - "@rollup/rollup-freebsd-arm64": "npm:4.40.2" - "@rollup/rollup-freebsd-x64": "npm:4.40.2" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.40.2" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.40.2" - "@rollup/rollup-linux-arm64-gnu": "npm:4.40.2" - "@rollup/rollup-linux-arm64-musl": "npm:4.40.2" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.40.2" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.40.2" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.40.2" - "@rollup/rollup-linux-riscv64-musl": "npm:4.40.2" - "@rollup/rollup-linux-s390x-gnu": "npm:4.40.2" - "@rollup/rollup-linux-x64-gnu": "npm:4.40.2" - "@rollup/rollup-linux-x64-musl": "npm:4.40.2" - "@rollup/rollup-win32-arm64-msvc": "npm:4.40.2" - "@rollup/rollup-win32-ia32-msvc": "npm:4.40.2" - "@rollup/rollup-win32-x64-msvc": "npm:4.40.2" + "@rollup/rollup-android-arm-eabi": "npm:4.41.1" + "@rollup/rollup-android-arm64": "npm:4.41.1" + "@rollup/rollup-darwin-arm64": "npm:4.41.1" + "@rollup/rollup-darwin-x64": "npm:4.41.1" + "@rollup/rollup-freebsd-arm64": "npm:4.41.1" + "@rollup/rollup-freebsd-x64": "npm:4.41.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.41.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.41.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.41.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.41.1" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.41.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.41.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.41.1" + "@rollup/rollup-linux-riscv64-musl": "npm:4.41.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.41.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.41.1" + "@rollup/rollup-linux-x64-musl": "npm:4.41.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.41.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.41.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.41.1" "@types/estree": "npm:1.0.7" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -30885,7 +30948,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10/ab767c56e37410257864e051fccbdaf448ac7774129bf39295de716af816c49e0247e72749959969efbd892fc64e096880fa269764adf765579100e81abf5e7c + checksum: 10/b7b5a5668bc05445766b1b7342475d9dbb173925e806805720bcfad277a591c5452f11fe1f1fd9f8030b4e52f093610a10200599258ad5faad9104944b984c36 languageName: node linkType: hard @@ -31438,11 +31501,11 @@ __metadata: linkType: hard "sharp@npm:^0.34.1": - version: 0.34.1 - resolution: "sharp@npm:0.34.1" + version: 0.34.2 + resolution: "sharp@npm:0.34.2" dependencies: - "@img/sharp-darwin-arm64": "npm:0.34.1" - "@img/sharp-darwin-x64": "npm:0.34.1" + "@img/sharp-darwin-arm64": "npm:0.34.2" + "@img/sharp-darwin-x64": "npm:0.34.2" "@img/sharp-libvips-darwin-arm64": "npm:1.1.0" "@img/sharp-libvips-darwin-x64": "npm:1.1.0" "@img/sharp-libvips-linux-arm": "npm:1.1.0" @@ -31452,18 +31515,19 @@ __metadata: "@img/sharp-libvips-linux-x64": "npm:1.1.0" "@img/sharp-libvips-linuxmusl-arm64": "npm:1.1.0" "@img/sharp-libvips-linuxmusl-x64": "npm:1.1.0" - "@img/sharp-linux-arm": "npm:0.34.1" - "@img/sharp-linux-arm64": "npm:0.34.1" - "@img/sharp-linux-s390x": "npm:0.34.1" - "@img/sharp-linux-x64": "npm:0.34.1" - "@img/sharp-linuxmusl-arm64": "npm:0.34.1" - "@img/sharp-linuxmusl-x64": "npm:0.34.1" - "@img/sharp-wasm32": "npm:0.34.1" - "@img/sharp-win32-ia32": "npm:0.34.1" - "@img/sharp-win32-x64": "npm:0.34.1" + "@img/sharp-linux-arm": "npm:0.34.2" + "@img/sharp-linux-arm64": "npm:0.34.2" + "@img/sharp-linux-s390x": "npm:0.34.2" + "@img/sharp-linux-x64": "npm:0.34.2" + "@img/sharp-linuxmusl-arm64": "npm:0.34.2" + "@img/sharp-linuxmusl-x64": "npm:0.34.2" + "@img/sharp-wasm32": "npm:0.34.2" + "@img/sharp-win32-arm64": "npm:0.34.2" + "@img/sharp-win32-ia32": "npm:0.34.2" + "@img/sharp-win32-x64": "npm:0.34.2" color: "npm:^4.2.3" - detect-libc: "npm:^2.0.3" - semver: "npm:^7.7.1" + detect-libc: "npm:^2.0.4" + semver: "npm:^7.7.2" dependenciesMeta: "@img/sharp-darwin-arm64": optional: true @@ -31501,11 +31565,13 @@ __metadata: optional: true "@img/sharp-wasm32": optional: true + "@img/sharp-win32-arm64": + optional: true "@img/sharp-win32-ia32": optional: true "@img/sharp-win32-x64": optional: true - checksum: 10/aecb960c0780b56134bfef01b7aeaa4e6650320a8a1f491237b45e900fc670830ee5d0600f30e51878328109db82e376bb526931d07a2e9358510ef30ab5abe8 + checksum: 10/8c7a6f20d58849a6e33bc69c4525f471d57eb3dea0072331b55ab12bae4b8bd8b99b65264aeaec38e54d52d692db13e3261f6e7bc29430b39b507c409838cbb0 languageName: node linkType: hard @@ -32394,9 +32460,9 @@ __metadata: linkType: hard "strnum@npm:^2.1.0": - version: 2.1.0 - resolution: "strnum@npm:2.1.0" - checksum: 10/6237ecc0740816bb3088d89d8c17692f69b8c2a3d6bf25d6437ea40999d9afe28d1882496521d703804ce1ad3eeef71390073a6d39287ba1586d85ea360daa29 + version: 2.1.1 + resolution: "strnum@npm:2.1.1" + checksum: 10/d5fe6e4333cddc17569331048e403e876ffcf629989815f0359b0caf05dae9441b7eef3d7dd07427313ac8b3f05a8f60abc1f61efc15f97245dbc24028362bc9 languageName: node linkType: hard @@ -32683,17 +32749,17 @@ __metadata: languageName: node linkType: hard -"tailwindcss@npm:4.1.7, tailwindcss@npm:^4.0.0, tailwindcss@npm:^4.0.6": - version: 4.1.7 - resolution: "tailwindcss@npm:4.1.7" - checksum: 10/c229ed1e0cfe83b431581e462e18175ee0c0d75344710cd844cbcab28df118270695a2cd545868e6013ef2e5f4c4b619fb84cd3b5e21f80b8908d3ac74f67a5d +"tailwindcss@npm:4.1.8, tailwindcss@npm:^4.0.0, tailwindcss@npm:^4.0.6": + version: 4.1.8 + resolution: "tailwindcss@npm:4.1.8" + checksum: 10/9fe7a7a40c34936b7f15b0cc836ade478975dcf316909b6dd948908f6723cc403ce8ab22d2e1a1b6e0e955eea656802e06b80eb8c0536c9e09fa3eabae16e30f languageName: node linkType: hard "tapable@npm:^2.0.0, tapable@npm:^2.1.1, tapable@npm:^2.2.0, tapable@npm:^2.2.1": - version: 2.2.1 - resolution: "tapable@npm:2.2.1" - checksum: 10/1769336dd21481ae6347611ca5fca47add0962fd8e80466515032125eca0084a4f0ede11e65341b9c0018ef4e1cf1ad820adbb0fba7cc99865c6005734000b0a + version: 2.2.2 + resolution: "tapable@npm:2.2.2" + checksum: 10/065a0dc44aba1b32020faa1c27c719e8f76e5345347515d8494bf158524f36e9f22ad9eaa5b5494f9d5d67bf0640afdd5698505948c46d720b6b7e69d19349a6 languageName: node linkType: hard @@ -32775,16 +32841,16 @@ __metadata: linkType: hard "terser@npm:^5.10.0, terser@npm:^5.31.1": - version: 5.39.0 - resolution: "terser@npm:5.39.0" + version: 5.40.0 + resolution: "terser@npm:5.40.0" dependencies: "@jridgewell/source-map": "npm:^0.3.3" - acorn: "npm:^8.8.2" + acorn: "npm:^8.14.0" commander: "npm:^2.20.0" source-map-support: "npm:~0.5.20" bin: terser: bin/terser - checksum: 10/d84aff642398329f7179bbeaca28cac76a86100e2372d98d39d9b86c48023b6b9f797d983d6e7c0610b3f957c53d01ada1befa25d625614cb2ccd20714f1e98b + checksum: 10/686ff65c1f379fedd38d688c7d9b21af590191c61934d2181645a12a539bc738ecabd99ab7219320d93dcc0f42a0b02924b34cce2cc718f88091f18c0d871e8c languageName: node linkType: hard @@ -32940,13 +33006,13 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13": - version: 0.2.13 - resolution: "tinyglobby@npm:0.2.13" +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14": + version: 0.2.14 + resolution: "tinyglobby@npm:0.2.14" dependencies: fdir: "npm:^6.4.4" picomatch: "npm:^4.0.2" - checksum: 10/b04557ee58ad2be5f2d2cbb4b441476436c92bb45ba2e1fc464d686b793392b305ed0bcb8b877429e9b5036bdd46770c161a08384c0720b6682b7cd6ac80e403 + checksum: 10/3d306d319718b7cc9d79fb3f29d8655237aa6a1f280860a217f93417039d0614891aee6fc47c5db315f4fcc6ac8d55eb8e23e2de73b2c51a431b42456d9e5764 languageName: node linkType: hard @@ -33129,11 +33195,11 @@ __metadata: linkType: hard "tree-dump@npm:^1.0.1": - version: 1.0.2 - resolution: "tree-dump@npm:1.0.2" + version: 1.0.3 + resolution: "tree-dump@npm:1.0.3" peerDependencies: tslib: 2 - checksum: 10/ddcde4da9ded8edc2fa77fc9153ef8d7fba9cd5f813db27c30c7039191b50e1512b7106f0f4fe7ccaa3aa69f85b4671eda7ed0b9f9d34781eb26ebe4593ad4eb + checksum: 10/cf382e61cfb5e3ff8f03425b5bc1923e8f0e385b3a02f43d9d0a32d09da9984477e0f2a7698628662263d1d3f1af17e33486c77ff454978f0f9f07fb5d1fe9a2 languageName: node linkType: hard @@ -33411,8 +33477,8 @@ __metadata: linkType: hard "typedoc@npm:^0.28.0": - version: 0.28.4 - resolution: "typedoc@npm:0.28.4" + version: 0.28.5 + resolution: "typedoc@npm:0.28.5" dependencies: "@gerrit0/mini-shiki": "npm:^3.2.2" lunr: "npm:^2.3.9" @@ -33423,21 +33489,21 @@ __metadata: typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x bin: typedoc: bin/typedoc - checksum: 10/0ccab46519e4be1aa9bd4defd55e920cbefe8825e0ba7ca93b8d6fd3867300e8b60260d2182033b46121f9040251366f6a496a3500da458c3031b224d7bdadd7 + checksum: 10/620426f4fd593dea5ffd37bce8741bfa996cb25e0f67c6aac11434788652c3cd10af2a9c47d1445f10b9fbb44304ffcf6ec59f5cedd353175e3b3d9a24cb5d29 languageName: node linkType: hard "typescript-eslint@npm:^8.18.0": - version: 8.32.1 - resolution: "typescript-eslint@npm:8.32.1" + version: 8.33.0 + resolution: "typescript-eslint@npm:8.33.0" dependencies: - "@typescript-eslint/eslint-plugin": "npm:8.32.1" - "@typescript-eslint/parser": "npm:8.32.1" - "@typescript-eslint/utils": "npm:8.32.1" + "@typescript-eslint/eslint-plugin": "npm:8.33.0" + "@typescript-eslint/parser": "npm:8.33.0" + "@typescript-eslint/utils": "npm:8.33.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <5.9.0" - checksum: 10/4a042815f73825b510954579938a26c8664c2134e9663b0ac6f771f5f7338d4d41d78e5ded685ab42c1c6410117d955bac2c01fcc7e8ad3ef06c5e7dc2c95a7d + checksum: 10/45c3ac8859eea71171f1ffb422fa71c7f5b60ea3b01ed4e655d9604057408b144c961c52fa07c9d75c65d18ffbf3a0c433ff688a48a73b7afe5bcc4811fb401e languageName: node linkType: hard @@ -33659,9 +33725,9 @@ __metadata: linkType: hard "universal-user-agent@npm:^7.0.0, universal-user-agent@npm:^7.0.2": - version: 7.0.2 - resolution: "universal-user-agent@npm:7.0.2" - checksum: 10/3f02cb6de0bb9fbaf379566bd0320d8e46af6e4358a2e88fce7e70687ed7b48b37f479d728bb22f4204a518e363f3038ac4841c033af1ee2253f6428a6c67e53 + version: 7.0.3 + resolution: "universal-user-agent@npm:7.0.3" + checksum: 10/c497e85f8b11eb8fa4dce584d7a39cc98710164959f494cafc3c269b51abb20fff269951838efd7424d15f6b3d001507f3cb8b52bb5676fdb642019dfd17e63e languageName: node linkType: hard @@ -33745,37 +33811,37 @@ __metadata: linkType: hard "unplugin@npm:^2.3.4": - version: 2.3.4 - resolution: "unplugin@npm:2.3.4" + version: 2.3.5 + resolution: "unplugin@npm:2.3.5" dependencies: acorn: "npm:^8.14.1" picomatch: "npm:^4.0.2" webpack-virtual-modules: "npm:^0.6.2" - checksum: 10/07a4bdec1adc4065f68c871be7611a2d67c28295a4524c8ec457d9894efdbcd7b9ce83fda9f3cf1d6ea6ef1dc3d06238a0a275bbd17a42ac64b5918941023dde + checksum: 10/93956b472c66ba452599d64343ef3c2440f8279bdc449f399f9c884307934f9b383fa09c646f998f0cf1488204e993316f9a2e483d6cf01f45fd618f401942dd languageName: node linkType: hard -"unrs-resolver@npm:^1.6.3, unrs-resolver@npm:^1.7.0": - version: 1.7.2 - resolution: "unrs-resolver@npm:1.7.2" +"unrs-resolver@npm:^1.7.2": + version: 1.7.7 + resolution: "unrs-resolver@npm:1.7.7" dependencies: - "@unrs/resolver-binding-darwin-arm64": "npm:1.7.2" - "@unrs/resolver-binding-darwin-x64": "npm:1.7.2" - "@unrs/resolver-binding-freebsd-x64": "npm:1.7.2" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.2" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.2" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.2" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.2" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.2" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.2" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.2" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.2" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.2" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.2" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.2" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.2" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.2" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.2" + "@unrs/resolver-binding-darwin-arm64": "npm:1.7.7" + "@unrs/resolver-binding-darwin-x64": "npm:1.7.7" + "@unrs/resolver-binding-freebsd-x64": "npm:1.7.7" + "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.7" + "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.7" + "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.7" + "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.7" + "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.7" + "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.7" + "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.7" + "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.7" + "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.7" + "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.7" + "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.7" + "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.7" + "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.7" + "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.7" napi-postinstall: "npm:^0.2.2" dependenciesMeta: "@unrs/resolver-binding-darwin-arm64": @@ -33812,7 +33878,7 @@ __metadata: optional: true "@unrs/resolver-binding-win32-x64-msvc": optional: true - checksum: 10/58daa4c659dec7d4ae7b9731d541b9faf1b702dec3d612f260b546dfd78de81c87ad3cd0eb362e364f9e86ccb3a6a42d05dc07936c39e82af58f5536c9b7de1c + checksum: 10/19b063c265f1d4cf924184d3cc1fc47bd5c72f03de1bcfdfb77cdaddf182866d45b33a234cb6fd374e855d5334f9d92196473a1b10ea0fc7cc2523b4c549c98b languageName: node linkType: hard @@ -34385,12 +34451,12 @@ __metadata: linkType: hard "watchpack@npm:^2.4.1": - version: 2.4.2 - resolution: "watchpack@npm:2.4.2" + version: 2.4.4 + resolution: "watchpack@npm:2.4.4" dependencies: glob-to-regexp: "npm:^0.4.1" graceful-fs: "npm:^4.1.2" - checksum: 10/6bd4c051d9af189a6c781c3158dcb3069f432a0c144159eeb0a44117412105c61b2b683a5c9eebc4324625e0e9b76536387d0ba354594fa6cbbdf1ef60bee4c3 + checksum: 10/cfa3473fc12a1a1b88123056941e90c462a67aedc10b242229eeeccdd45ed0b763c3b591caaffb0f7d77295b539b5518bb1ad3bcd891ae6505dfeae4cf51fd15 languageName: node linkType: hard @@ -34526,9 +34592,9 @@ __metadata: linkType: hard "webpack-sources@npm:^3.2.3": - version: 3.2.3 - resolution: "webpack-sources@npm:3.2.3" - checksum: 10/a661f41795d678b7526ae8a88cd1b3d8ce71a7d19b6503da8149b2e667fc7a12f9b899041c1665d39e38245ed3a59ab68de648ea31040c3829aa695a5a45211d + version: 3.3.0 + resolution: "webpack-sources@npm:3.3.0" + checksum: 10/06bb90b273f51d745faddf5597649785599a9de05bc90c1e409038e3ea41d0fd3389feccd995132b16260064dba032cd71be115574897041c74d4991fbda403b languageName: node linkType: hard @@ -34997,12 +35063,12 @@ __metadata: languageName: node linkType: hard -"yaml@npm:^2.3.1, yaml@npm:^2.5.1, yaml@npm:^2.7.1": - version: 2.7.1 - resolution: "yaml@npm:2.7.1" +"yaml@npm:^2.3.1, yaml@npm:^2.5.1, yaml@npm:^2.7.1, yaml@npm:^2.8.0": + version: 2.8.0 + resolution: "yaml@npm:2.8.0" bin: yaml: bin.mjs - checksum: 10/af57658d37c5efae4bac7204589b742ae01878a278554d632f01012868cf7fa66cba09b39140f12e7f6ceecc693ae52bcfb737596c4827e6e233338cb3a9528e + checksum: 10/7d4bd9c10d0e467601f496193f2ac254140f8e36f96f5ff7f852b9ce37974168eb7354f4c36dc8837dde527a2043d004b6aff48818ec24a69ab2dd3c6b6c381c languageName: node linkType: hard @@ -35106,7 +35172,7 @@ __metadata: languageName: node linkType: hard -"yoctocolors@npm:^2.0.0, yoctocolors@npm:^2.1.1": +"yoctocolors@npm:^2.1.1": version: 2.1.1 resolution: "yoctocolors@npm:2.1.1" checksum: 10/563fbec88bce9716d1044bc98c96c329e1d7a7c503e6f1af68f1ff914adc3ba55ce953c871395e2efecad329f85f1632f51a99c362032940321ff80c42a6f74d @@ -35122,10 +35188,10 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.23.8, zod@npm:^3.24.1, zod@npm:^3.24.2": - version: 3.25.20 - resolution: "zod@npm:3.25.20" - checksum: 10/530819cc55a4f5c1e9ce1e0507b8ca12dda1a30ef6f08272d99eb918112f840aec8404832326faab36e6838efc35c5a376302843a1b5ddced073ff6cd80ea601 +"zod@npm:^3.23.8, zod@npm:^3.24.1": + version: 3.25.36 + resolution: "zod@npm:3.25.36" + checksum: 10/c649e997fdc8463d2e61efb6cf835789b20e02d2122c70ffcef4eac2f716650b791c53b0d330c6d831b17ac52cfd33df6ac3ce6e9b90c6720b1f37d844d87079 languageName: node linkType: hard