From f38e4a87b8a1dd794e75ef40b78c3a11e15d2754 Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Thu, 17 Jul 2025 13:49:06 +0800 Subject: [PATCH] chore: update package dependencies and improve AI SDK chunk handling - Bumped versions of several dependencies in package.json, including `@swc/plugin-styled-components` to 8.0.4 and `@vitejs/plugin-react-swc` to 3.10.2. - Enhanced `AiSdkToChunkAdapter` to streamline chunk processing, including better handling of text and reasoning events. - Added console logging for debugging in `BlockManager` and `messageThunk` to track state changes and callback executions. - Updated integration tests to reflect changes in message structure and types. --- package.json | 4 +- .../src/aiCore/AiSdkToChunkAdapter.ts | 22 +- .../services/messageStreaming/BlockManager.ts | 2 + .../streamCallback.integration.test.ts | 6 +- src/renderer/src/store/thunk/messageThunk.ts | 1 + yarn.lock | 3283 ++++++++++------- 6 files changed, 2003 insertions(+), 1315 deletions(-) diff --git a/package.json b/package.json index 70799ae3f2..e585ed2056 100644 --- a/package.json +++ b/package.json @@ -116,7 +116,7 @@ "@playwright/test": "^1.52.0", "@reduxjs/toolkit": "^2.2.5", "@shikijs/markdown-it": "^3.7.0", - "@swc/plugin-styled-components": "^7.1.5", + "@swc/plugin-styled-components": "^8.0.4", "@tanstack/react-query": "^5.27.0", "@tanstack/react-virtual": "^3.13.12", "@testing-library/dom": "^10.4.0", @@ -139,7 +139,7 @@ "@uiw/codemirror-extensions-langs": "^4.23.14", "@uiw/codemirror-themes-all": "^4.23.14", "@uiw/react-codemirror": "^4.23.14", - "@vitejs/plugin-react-swc": "^3.9.0", + "@vitejs/plugin-react-swc": "^3.10.2", "@vitest/browser": "^3.1.4", "@vitest/coverage-v8": "^3.1.4", "@vitest/ui": "^3.1.4", diff --git a/src/renderer/src/aiCore/AiSdkToChunkAdapter.ts b/src/renderer/src/aiCore/AiSdkToChunkAdapter.ts index 3cb4df1d19..d56a419fe8 100644 --- a/src/renderer/src/aiCore/AiSdkToChunkAdapter.ts +++ b/src/renderer/src/aiCore/AiSdkToChunkAdapter.ts @@ -85,17 +85,16 @@ export class AiSdkToChunkAdapter { console.log('AI SDK chunk type:', chunk.type, chunk) switch (chunk.type) { // === 文本相关事件 === - // case 'text-start': - // this.onChunk({ - // type: ChunkType.blo, - // text: chunk.text || '' - // }) - // break + case 'text-start': + this.onChunk({ + type: ChunkType.TEXT_START + }) + break case 'text': final.text += chunk.text || '' this.onChunk({ type: ChunkType.TEXT_DELTA, - text: chunk.text || '' + text: final.text || '' }) break case 'text-end': @@ -105,12 +104,18 @@ export class AiSdkToChunkAdapter { }) final.text = '' break + case 'reasoning-start': + this.onChunk({ + type: ChunkType.THINKING_START + }) + break case 'reasoning': this.onChunk({ type: ChunkType.THINKING_DELTA, - text: chunk.text || '', + text: final.reasoningContent || '', thinking_millsec: (chunk.providerMetadata?.metadata?.thinking_millsec as number) || 0 }) + final.reasoningContent += chunk.text || '' break case 'reasoning-end': this.onChunk({ @@ -118,6 +123,7 @@ export class AiSdkToChunkAdapter { text: (chunk.providerMetadata?.metadata?.thinking_content as string) || '', thinking_millsec: (chunk.providerMetadata?.metadata?.thinking_millsec as number) || 0 }) + final.reasoningContent = '' break // === 工具调用相关事件(原始 AI SDK 事件,如果没有被中间件处理) === diff --git a/src/renderer/src/services/messageStreaming/BlockManager.ts b/src/renderer/src/services/messageStreaming/BlockManager.ts index 7ccb6cfeec..4c9f88436d 100644 --- a/src/renderer/src/services/messageStreaming/BlockManager.ts +++ b/src/renderer/src/services/messageStreaming/BlockManager.ts @@ -76,6 +76,7 @@ export class BlockManager { blockType: MessageBlockType, isComplete: boolean = false ) { + console.log('smartBlockUpdate', blockId, changes, blockType, isComplete) const isBlockTypeChanged = this._lastBlockType !== null && this._lastBlockType !== blockType if (isBlockTypeChanged || isComplete) { // 如果块类型改变,则取消上一个块的节流更新 @@ -102,6 +103,7 @@ export class BlockManager { * 处理块转换 */ async handleBlockTransition(newBlock: MessageBlock, newBlockType: MessageBlockType) { + console.log('handleBlockTransition', newBlock, newBlockType) this._lastBlockType = newBlockType this._activeBlockInfo = { id: newBlock.id, type: newBlockType } // 设置新的活跃块信息 diff --git a/src/renderer/src/store/thunk/__tests__/streamCallback.integration.test.ts b/src/renderer/src/store/thunk/__tests__/streamCallback.integration.test.ts index b7bab08ff8..4e57a6396d 100644 --- a/src/renderer/src/store/thunk/__tests__/streamCallback.integration.test.ts +++ b/src/renderer/src/store/thunk/__tests__/streamCallback.integration.test.ts @@ -434,7 +434,8 @@ describe('streamCallback Integration Tests', () => { type: 'object', title: 'Test Tool Input', properties: {} - } + }, + type: 'mcp' } const chunks: Chunk[] = [ @@ -570,7 +571,8 @@ describe('streamCallback Integration Tests', () => { type: 'object', title: 'Calculator Input', properties: {} - } + }, + type: 'mcp' } const chunks: Chunk[] = [ diff --git a/src/renderer/src/store/thunk/messageThunk.ts b/src/renderer/src/store/thunk/messageThunk.ts index 677d322dd9..494993dbb5 100644 --- a/src/renderer/src/store/thunk/messageThunk.ts +++ b/src/renderer/src/store/thunk/messageThunk.ts @@ -882,6 +882,7 @@ const fetchAndProcessAssistantResponseImpl = async ( saveUpdatesToDB, assistant }) + console.log('callbacks', callbacks) const streamProcessorCallbacks = createStreamProcessor(callbacks) const abortController = new AbortController() diff --git a/yarn.lock b/yarn.lock index 276da2589d..2d15f67bd6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -425,357 +425,6 @@ __metadata: languageName: node linkType: hard -"@ai-sdk/amazon-bedrock@npm:3.0.0-beta.7": - version: 3.0.0-beta.7 - resolution: "@ai-sdk/amazon-bedrock@npm:3.0.0-beta.7" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - "@smithy/eventstream-codec": "npm:^4.0.1" - "@smithy/util-utf8": "npm:^4.0.0" - aws4fetch: "npm:^1.0.20" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/0a4849857246964b9949ef9c75f0feb2d4a4b58b9384f73ccd729bdbd9d535207c57ab5f4e585edda772f183bdbcd570f16656879470242b2a2c0e03709429ad - languageName: node - linkType: hard - -"@ai-sdk/anthropic@npm:2.0.0-beta.6": - version: 2.0.0-beta.6 - resolution: "@ai-sdk/anthropic@npm:2.0.0-beta.6" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/e25fc9417866775a8fe5c3a2a20766c4bdf0b5e8a1ef353025baccc36bcc544bdc8d02bef93ba5817e245dbf4808341db93447c1744fbba3a4f5cc68d1f02e6f - languageName: node - linkType: hard - -"@ai-sdk/azure@npm:2.0.0-beta.9": - version: 2.0.0-beta.9 - resolution: "@ai-sdk/azure@npm:2.0.0-beta.9" - dependencies: - "@ai-sdk/openai": "npm:2.0.0-beta.9" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/5573b49cd4101685382833cd0f9b8f80006b2db2add3666a3f0adc206e6612368d822b4aee681fdebd006960efcb18b0e5519402e6e5dcb2c8445f26c54149f7 - languageName: node - linkType: hard - -"@ai-sdk/cerebras@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/cerebras@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/f1c7c3c0138d6d2902a4b5078e2f3634f1ba9edee6e0c0a596f1698fbc006f59cd0fa360964f1b2cf0becf97d17496006ce6e7fbf4a82471ffb5e5d9491819cc - languageName: node - linkType: hard - -"@ai-sdk/cohere@npm:2.0.0-beta.3": - version: 2.0.0-beta.3 - resolution: "@ai-sdk/cohere@npm:2.0.0-beta.3" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/23d4d9110a867e48a793794f80bc51f851453a7f9237a872bf15015ac34abcb4dcea99651759a0b79668bd876c1cb7b901749ecec3b8ff2659f4b4252c091048 - languageName: node - linkType: hard - -"@ai-sdk/deepinfra@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/deepinfra@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/cb1acb9124e03c0a1c23325d524139b36e53e00c3185b417f0e40c0b3c7663445f8a1966dc9d699c065ff4a723e88210cefbfb9f9a71356b39627f2ba0616d4a - languageName: node - linkType: hard - -"@ai-sdk/deepseek@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/deepseek@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/35ae571c767a16f9dabb7b98c36fde7a7d5358d95beba1e79dd6039f4539551dd580b9fdc99422c583ffe28c04ce8ad43c548cb67204f04256f04c373faab448 - languageName: node - linkType: hard - -"@ai-sdk/fal@npm:1.0.0-beta.3": - version: 1.0.0-beta.3 - resolution: "@ai-sdk/fal@npm:1.0.0-beta.3" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/dfc241ee0cc86436129ea638a6a4d39c4275c77898d59bec7cc7a74852d5091657b95308667991b20ab7b8be517165a935b8852a4c3a6b83c92e8922bdd65f9d - languageName: node - linkType: hard - -"@ai-sdk/fireworks@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/fireworks@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/89ef57131db0969b9602f45f0e5e1e79cbb20c0649d92ea7f1118d016ba41d8e945e8c14253014c3c8a45e7a4960d7dc0d9de6908dba37bf606685f5b7e2cbf6 - languageName: node - linkType: hard - -"@ai-sdk/gateway@npm:1.0.0-beta.4": - version: 1.0.0-beta.4 - resolution: "@ai-sdk/gateway@npm:1.0.0-beta.4" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.2" - peerDependencies: - zod: ^3.25.49 - checksum: 10c0/d6c7772eff42095489f530500140d889c219167afc643f52cf0ab50c55b1c8a97057de86b125ea4056e71007de1b9e8a23c91e2bce31d8b66863b895dc636661 - languageName: node - linkType: hard - -"@ai-sdk/google-vertex@npm:3.0.0-beta.13": - version: 3.0.0-beta.13 - resolution: "@ai-sdk/google-vertex@npm:3.0.0-beta.13" - dependencies: - "@ai-sdk/anthropic": "npm:2.0.0-beta.6" - "@ai-sdk/google": "npm:2.0.0-beta.11" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - google-auth-library: "npm:^9.15.0" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/1e52bbb4e53e69567937966137776927987b5f23403bd1b19df697ef0579ba59f77a1be57a46d475559dfafdb1fe6ed0f37715d355b2881fcf1b92c87adb8304 - languageName: node - linkType: hard - -"@ai-sdk/google@npm:2.0.0-beta.11": - version: 2.0.0-beta.11 - resolution: "@ai-sdk/google@npm:2.0.0-beta.11" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/7c889f314e2d3d07945a6ced65869a607c73bdf81b7651a309a88e5a18de99deefca50b9147649fcb6f48c80e829e346036b8a96a4d39ff9d071ee4e687efa33 - languageName: node - linkType: hard - -"@ai-sdk/groq@npm:2.0.0-beta.4": - version: 2.0.0-beta.4 - resolution: "@ai-sdk/groq@npm:2.0.0-beta.4" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/13a0c7b7023259aed08fdfc4dcef86a51729fec4a2093ff4577e99a0261012a23b493ecfa7e9b5c27cbaa8133a0d7ffaef6ac7a6355ff0ced16155c59642149b - languageName: node - linkType: hard - -"@ai-sdk/mistral@npm:2.0.0-beta.4": - version: 2.0.0-beta.4 - resolution: "@ai-sdk/mistral@npm:2.0.0-beta.4" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/7cfc1a8fc67bfeb7496f72d6bdc046d29ced26204d5aeb7260b8291548af29cdb0a7d67f3e78e64eda39d97dee9afe53394d8c6c178bad64f51af73f75b92d42 - languageName: node - linkType: hard - -"@ai-sdk/openai-compatible@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/openai-compatible@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/8a8417e837a4f31d13c6cda2ae6a2a69670f792c47b9bf4f3e32c6e29bb3383976991c4404a5e4ec9b9ac6838d9042095ea6d34c4bb7626931bc205976cdebd9 - languageName: node - linkType: hard - -"@ai-sdk/openai@npm:2.0.0-beta.9": - version: 2.0.0-beta.9 - resolution: "@ai-sdk/openai@npm:2.0.0-beta.9" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/67ba680f392c267f083685a6c762241c1df6d0a1c0483c4e37e299bba8146d98fa58aa379b00cff7f091910d74cdd8dd2d74ef3caa61d15ebcb8a7246c9eedc4 - languageName: node - linkType: hard - -"@ai-sdk/perplexity@npm:2.0.0-beta.4": - version: 2.0.0-beta.4 - resolution: "@ai-sdk/perplexity@npm:2.0.0-beta.4" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/875145cf1cb09e3c07080aaa9cd5af447aa2b4d64b6f16980a61635fde0e2014bbc1800ba34fe89043ec41296aae11bd5fb1b303fdd9bfe1aec8f7fa056b9680 - languageName: node - linkType: hard - -"@ai-sdk/provider-utils@npm:1.0.20": - version: 1.0.20 - resolution: "@ai-sdk/provider-utils@npm:1.0.20" - dependencies: - "@ai-sdk/provider": "npm:0.0.24" - eventsource-parser: "npm:1.1.2" - nanoid: "npm:3.3.6" - secure-json-parse: "npm:2.7.0" - peerDependencies: - zod: ^3.0.0 - peerDependenciesMeta: - zod: - optional: true - checksum: 10c0/40b3a9f3188904ba4e56d857d9bf7297ac2787bf92e2af26d95e435dc04cee6a12d82af71a04e1e2bea15e5b3cf7ddffc33323d2e06c372de0d853624f60f6fb - languageName: node - linkType: hard - -"@ai-sdk/provider-utils@npm:2.2.8, @ai-sdk/provider-utils@npm:^2.0.0": - version: 2.2.8 - resolution: "@ai-sdk/provider-utils@npm:2.2.8" - dependencies: - "@ai-sdk/provider": "npm:1.1.3" - nanoid: "npm:^3.3.8" - secure-json-parse: "npm:^2.7.0" - peerDependencies: - zod: ^3.23.8 - checksum: 10c0/34c72bf5f23f2d3e7aef496da7099422ba3b3ff243c35511853e16c3f1528717500262eea32b19e3e09bc4452152a5f31e650512f53f08a5f5645d907bff429e - languageName: node - linkType: hard - -"@ai-sdk/provider-utils@npm:3.0.0-beta.2": - version: 3.0.0-beta.2 - resolution: "@ai-sdk/provider-utils@npm:3.0.0-beta.2" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@standard-schema/spec": "npm:^1.0.0" - eventsource-parser: "npm:^3.0.3" - zod-to-json-schema: "npm:^3.24.1" - peerDependencies: - zod: ^3.25.49 - checksum: 10c0/f5538b4244fce8e6900aae18f3076dbdc6b33ffbb4fa84a1a803c198cfc35caee53d2d8760adb19a2197c013c4cf3a1cdd913ff94066a2a2ebab8041bffeb3bf - languageName: node - linkType: hard - -"@ai-sdk/provider-utils@npm:3.0.0-beta.3": - version: 3.0.0-beta.3 - resolution: "@ai-sdk/provider-utils@npm:3.0.0-beta.3" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@standard-schema/spec": "npm:^1.0.0" - eventsource-parser: "npm:^3.0.3" - zod-to-json-schema: "npm:^3.24.1" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/11f1628a48baff05ddd48bc8748f2babf06d35ba541c8dc92965697d63b85fc8db640c42bbe73d9cf5f0f07a5093806cd7659a6e82da3a8af70ea4da7e44a215 - languageName: node - linkType: hard - -"@ai-sdk/provider@npm:0.0.24": - version: 0.0.24 - resolution: "@ai-sdk/provider@npm:0.0.24" - dependencies: - json-schema: "npm:0.4.0" - checksum: 10c0/6e550c33ce6375636897b24ad8dfb2a605ff91d92aabd3c7aba2049f3d943c3a5534a1441e9ae4d7ef35c864687dc41c15704d19f11dcc6624fa1e705255c103 - languageName: node - linkType: hard - -"@ai-sdk/provider@npm:1.1.3, @ai-sdk/provider@npm:^1.0.0": - version: 1.1.3 - resolution: "@ai-sdk/provider@npm:1.1.3" - dependencies: - json-schema: "npm:^0.4.0" - checksum: 10c0/40e080e223328e7c89829865e9c48f4ce8442a6a59f7ed5dfbdb4f63e8d859a76641e2d31e91970dd389bddb910f32ec7c3dbb0ce583c119e5a1e614ea7b8bc4 - languageName: node - linkType: hard - -"@ai-sdk/provider@npm:2.0.0-beta.1": - version: 2.0.0-beta.1 - resolution: "@ai-sdk/provider@npm:2.0.0-beta.1" - dependencies: - json-schema: "npm:^0.4.0" - checksum: 10c0/2d76518d2b3d5ac6a3838730032faea31e1bb5c5a526f40c6cb7e906c59a52a664b2b67e7420fe25611e9783e8a20f0241c8b922eee6f02bb49c1b4afd60f58b - languageName: node - linkType: hard - -"@ai-sdk/replicate@npm:1.0.0-beta.3": - version: 1.0.0-beta.3 - resolution: "@ai-sdk/replicate@npm:1.0.0-beta.3" - dependencies: - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/f08e4b97b421a88b88fa6c0d4549176ad944da76e0ecd0ff76296902ee8119ce4e6cbf6424f22f0b1ba270b3a3b95fc4aca2cbfdb6a04a008c8203a1020b1e83 - languageName: node - linkType: hard - -"@ai-sdk/togetherai@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/togetherai@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/4cc89160bdd4cbd54679cbbdf2601abb6e9fcb6d794903f0a4b29e7c4fee6abe1505df8cc2214df8a65cd86f2c7b8979d9d766553bde8044aaf5eda35d9d0c14 - languageName: node - linkType: hard - -"@ai-sdk/vercel@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@ai-sdk/vercel@npm:1.0.0-beta.6" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/e8bc1e5540ccd19952e395504278d15fb0a6c4cf05096a74eb77fb5ca18ee2042a5782160b3aa56e659c34d070ceea5e2090273227b74f21b4558f0050b5c5fb - languageName: node - linkType: hard - -"@ai-sdk/xai@npm:2.0.0-beta.8": - version: 2.0.0-beta.8 - resolution: "@ai-sdk/xai@npm:2.0.0-beta.8" - dependencies: - "@ai-sdk/openai-compatible": "npm:1.0.0-beta.6" - "@ai-sdk/provider": "npm:2.0.0-beta.1" - "@ai-sdk/provider-utils": "npm:3.0.0-beta.3" - peerDependencies: - zod: ^3.25.49 || ^4 - checksum: 10c0/8509925cd48410fcce2d567a841d1b288375044da82437c596077b2d8fff0e3f4220c2e5a804f62ba30c22cd954982cb326a36f214da3c6293780e7846b7fcf7 - languageName: node - linkType: hard - "@ampproject/remapping@npm:^2.2.0, @ampproject/remapping@npm:^2.3.0": version: 2.3.0 resolution: "@ampproject/remapping@npm:2.3.0" @@ -941,7 +590,67 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/util@npm:^5.2.0": +"@aws-crypto/crc32c@npm:5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/crc32c@npm:5.2.0" + dependencies: + "@aws-crypto/util": "npm:^5.2.0" + "@aws-sdk/types": "npm:^3.222.0" + tslib: "npm:^2.6.2" + checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77 + languageName: node + linkType: hard + +"@aws-crypto/sha1-browser@npm:5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/sha1-browser@npm:5.2.0" + dependencies: + "@aws-crypto/supports-web-crypto": "npm:^5.2.0" + "@aws-crypto/util": "npm:^5.2.0" + "@aws-sdk/types": "npm:^3.222.0" + "@aws-sdk/util-locate-window": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^2.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac + languageName: node + linkType: hard + +"@aws-crypto/sha256-browser@npm:5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/sha256-browser@npm:5.2.0" + dependencies: + "@aws-crypto/sha256-js": "npm:^5.2.0" + "@aws-crypto/supports-web-crypto": "npm:^5.2.0" + "@aws-crypto/util": "npm:^5.2.0" + "@aws-sdk/types": "npm:^3.222.0" + "@aws-sdk/util-locate-window": "npm:^3.0.0" + "@smithy/util-utf8": "npm:^2.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d + languageName: node + linkType: hard + +"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/sha256-js@npm:5.2.0" + dependencies: + "@aws-crypto/util": "npm:^5.2.0" + "@aws-sdk/types": "npm:^3.222.0" + tslib: "npm:^2.6.2" + checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1 + languageName: node + linkType: hard + +"@aws-crypto/supports-web-crypto@npm:^5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2 + languageName: node + linkType: hard + +"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0": version: 5.2.0 resolution: "@aws-crypto/util@npm:5.2.0" dependencies: @@ -952,17 +661,570 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:^3.222.0": - version: 3.821.0 - resolution: "@aws-sdk/types@npm:3.821.0" +"@aws-sdk/client-s3@npm:^3.840.0": + version: 3.846.0 + resolution: "@aws-sdk/client-s3@npm:3.846.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.846.0" + "@aws-sdk/credential-provider-node": "npm:3.846.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.840.0" + "@aws-sdk/middleware-expect-continue": "npm:3.840.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.846.0" + "@aws-sdk/middleware-host-header": "npm:3.840.0" + "@aws-sdk/middleware-location-constraint": "npm:3.840.0" + "@aws-sdk/middleware-logger": "npm:3.840.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.840.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.846.0" + "@aws-sdk/middleware-ssec": "npm:3.840.0" + "@aws-sdk/middleware-user-agent": "npm:3.846.0" + "@aws-sdk/region-config-resolver": "npm:3.840.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-endpoints": "npm:3.845.0" + "@aws-sdk/util-user-agent-browser": "npm:3.840.0" + "@aws-sdk/util-user-agent-node": "npm:3.846.0" + "@aws-sdk/xml-builder": "npm:3.821.0" + "@smithy/config-resolver": "npm:^4.1.4" + "@smithy/core": "npm:^3.7.0" + "@smithy/eventstream-serde-browser": "npm:^4.0.4" + "@smithy/eventstream-serde-config-resolver": "npm:^4.1.2" + "@smithy/eventstream-serde-node": "npm:^4.0.4" + "@smithy/fetch-http-handler": "npm:^5.1.0" + "@smithy/hash-blob-browser": "npm:^4.0.4" + "@smithy/hash-node": "npm:^4.0.4" + "@smithy/hash-stream-node": "npm:^4.0.4" + "@smithy/invalid-dependency": "npm:^4.0.4" + "@smithy/md5-js": "npm:^4.0.4" + "@smithy/middleware-content-length": "npm:^4.0.4" + "@smithy/middleware-endpoint": "npm:^4.1.15" + "@smithy/middleware-retry": "npm:^4.1.16" + "@smithy/middleware-serde": "npm:^4.0.8" + "@smithy/middleware-stack": "npm:^4.0.4" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/node-http-handler": "npm:^4.1.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.23" + "@smithy/util-defaults-mode-node": "npm:^4.0.23" + "@smithy/util-endpoints": "npm:^3.0.6" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-retry": "npm:^4.0.6" + "@smithy/util-stream": "npm:^4.2.3" + "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/util-waiter": "npm:^4.0.6" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" - checksum: 10c0/6202b2c0db1dd5ee78e6dc45c51f8b19deff0ee400dd5a7a15d089cc5493a2db6a6e0553ff32742e8bc810d428b36599534e14c1b466695550aef1b1d87f043d + uuid: "npm:^9.0.1" + checksum: 10c0/d2000e6cce1f52531c0757b29e73e434066ef1d33c9affc549356f706e91a7c7d8ddad6c15079d88cc151791a13714dc00f28ff5c6af1351718d2a433feba160 languageName: node linkType: hard -"@babel/code-frame@npm:^7.10.4": +"@aws-sdk/client-sso@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/client-sso@npm:3.846.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/middleware-host-header": "npm:3.840.0" + "@aws-sdk/middleware-logger": "npm:3.840.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.840.0" + "@aws-sdk/middleware-user-agent": "npm:3.846.0" + "@aws-sdk/region-config-resolver": "npm:3.840.0" + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-endpoints": "npm:3.845.0" + "@aws-sdk/util-user-agent-browser": "npm:3.840.0" + "@aws-sdk/util-user-agent-node": "npm:3.846.0" + "@smithy/config-resolver": "npm:^4.1.4" + "@smithy/core": "npm:^3.7.0" + "@smithy/fetch-http-handler": "npm:^5.1.0" + "@smithy/hash-node": "npm:^4.0.4" + "@smithy/invalid-dependency": "npm:^4.0.4" + "@smithy/middleware-content-length": "npm:^4.0.4" + "@smithy/middleware-endpoint": "npm:^4.1.15" + "@smithy/middleware-retry": "npm:^4.1.16" + "@smithy/middleware-serde": "npm:^4.0.8" + "@smithy/middleware-stack": "npm:^4.0.4" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/node-http-handler": "npm:^4.1.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.23" + "@smithy/util-defaults-mode-node": "npm:^4.0.23" + "@smithy/util-endpoints": "npm:^3.0.6" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-retry": "npm:^4.0.6" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/31daac66ba5355a15aaf94b8938741b5db51aad04b7c70650d4822384368936c024331a806b66d9281424b90f1b170524e71ba89244418560e007edba81eca29 + languageName: node + linkType: hard + +"@aws-sdk/core@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/core@npm:3.846.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/xml-builder": "npm:3.821.0" + "@smithy/core": "npm:^3.7.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/signature-v4": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-utf8": "npm:^4.0.0" + fast-xml-parser: "npm:5.2.5" + tslib: "npm:^2.6.2" + checksum: 10c0/b23115868854939ec4d2eefcedd0fe6a2dbaa8bca83e4b757c21e5c8a153c99b61ea4b645e763257b2031717dfcc9c92264f83aa4f9d0071c806895eea6722fa + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-env@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/21640b6eec50de4fa3a7e2ac1c4505c0cf27f2f7540781d2892b2aa281f28d7c4214bd385e11cdbfd5e3309cd12219c05d26adf7cad4c881c995a20b8bc4dbcd + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-http@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/fetch-http-handler": "npm:^5.1.0" + "@smithy/node-http-handler": "npm:^4.1.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-stream": "npm:^4.2.3" + tslib: "npm:^2.6.2" + checksum: 10c0/5fbc05c5b0e622ce473dda41d5402982508e63496d36cb22ee6039caf563bb5d1c5633ced6901fe8c134090818400b865202c619288979132ba635f09aa98a97 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-ini@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/credential-provider-env": "npm:3.846.0" + "@aws-sdk/credential-provider-http": "npm:3.846.0" + "@aws-sdk/credential-provider-process": "npm:3.846.0" + "@aws-sdk/credential-provider-sso": "npm:3.846.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.846.0" + "@aws-sdk/nested-clients": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/credential-provider-imds": "npm:^4.0.6" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/9f72b187cd5a2c6911c37900c1e2b776b5136e751e8dd40743bbb4db087af7e7a1e5137faff18373ccefb181dc19948f573d6010836bd58f1bd09880b4715bea + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-node@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.846.0" + dependencies: + "@aws-sdk/credential-provider-env": "npm:3.846.0" + "@aws-sdk/credential-provider-http": "npm:3.846.0" + "@aws-sdk/credential-provider-ini": "npm:3.846.0" + "@aws-sdk/credential-provider-process": "npm:3.846.0" + "@aws-sdk/credential-provider-sso": "npm:3.846.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/credential-provider-imds": "npm:^4.0.6" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/104a2bbda5e8f4882d79e31cf30da60e659b735605cd65d7abc31f3c33745cb28a38256f87f67debc1e376053f3f8531c5c7cf716d6bc6b7afc8fb31816e6bfc + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-process@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/3be6d4547cabd1fa71aa0acacc64f7996f6154aff01e7e5aa6f1cece3d89399c4f500b74db8f0173cf0c9c89275d8803970cb815d45c769808d339bdfae186fe + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-sso@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.846.0" + dependencies: + "@aws-sdk/client-sso": "npm:3.846.0" + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/token-providers": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/698cd111299937faae09e25d20bdc81be57ba704392c2401e25df18ba11c96edaceab144debd1c2ae1a62076e3416f9179dc296ed0f40ff7e8548b27c3364281 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-web-identity@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/nested-clients": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/e2f5682cae9ca9ba99d65acc62b548027d2e47f0a57aac0c6664b9375177e5cde83307b09fba08916f45f8711aee3059161135419aad277f87f44a3a9169a946 + languageName: node + linkType: hard + +"@aws-sdk/middleware-bucket-endpoint@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-arn-parser": "npm:3.804.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-config-provider": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/371f6e30b16821e1a9c17efcbe6436616eb2bcbfe1757d5f70c56d5eca8452d8dddd42f26f53635b87f927b4da541dc36156e4d3529bb0eb0705969365dce8fc + languageName: node + linkType: hard + +"@aws-sdk/middleware-expect-continue@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/73099d06d044f5d82cf172398939c8776c966bf88466288270d80a4e93f451c9e620c92252b0b5c8086b22429f6a69137a21d81bbac66e573c36241859f0739b + languageName: node + linkType: hard + +"@aws-sdk/middleware-flexible-checksums@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.846.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.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/is-array-buffer": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-stream": "npm:^4.2.3" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/3ea002638c799943d5a9333fa2257c8207d2655c053c8dfe1404d8f26bf7630cd7517099807b5fc62060298ac2e1d9f205245cbee1d93e51070f9dc1c86fdb23 + languageName: node + linkType: hard + +"@aws-sdk/middleware-host-header@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/aae5964c39118815293f3f1d42c6b5131ff44862d33af9c8d44eb98fb5b8db0e6191cceba59c487a2b89b70b2e7ad710b174a14506bc6d99d333af42fd6b3d07 + languageName: node + linkType: hard + +"@aws-sdk/middleware-location-constraint@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/4520274c5b350881df39e28b1732b482ee8023801e8cc6fe1da4b11856ea9660af5036dc6144cefce20338ed0cf5622cc03d10dddf67f95354447d3d0448d987 + languageName: node + linkType: hard + +"@aws-sdk/middleware-logger@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-logger@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/5cc4eec656ec9811b64e504a96812f05f1b57e3542ea1dae6710505f81f8dfb36119709538b736a55792f02565818ab71f803e91b00bc4f0652ab198fce153fd + languageName: node + linkType: hard + +"@aws-sdk/middleware-recursion-detection@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/88b1dfbf487d86b2aa26761b08e3de2fd1edd8d09abffd88f5d31b77215fd0852c74deba38802a15cc7015a716d990c2925523af88577890311958f53ef739e7 + languageName: node + linkType: hard + +"@aws-sdk/middleware-sdk-s3@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-arn-parser": "npm:3.804.0" + "@smithy/core": "npm:^3.7.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/signature-v4": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-config-provider": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-stream": "npm:^4.2.3" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/34e39635ba98e12a089cc97e6a1fe63a70ee068023387f772e7a3abe42d7596a43fb0a9da762f3b667a9255e9fa8e41ba272d16b8ae0c7e3dc230906e560744e + languageName: node + linkType: hard + +"@aws-sdk/middleware-ssec@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/22cdded72582d15adb266e5f65b5756c129b7104535765ff5c67eedc24609bface9eebb1fa3b74ed41e7b8fade57940195810bbbe2e44b8283104849894ec658 + languageName: node + linkType: hard + +"@aws-sdk/middleware-user-agent@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-endpoints": "npm:3.845.0" + "@smithy/core": "npm:^3.7.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/321c47e079879077335dcf82127e872681f295fd036024dad2a92c12642f60dd09e27ea0743a4235c074b3df8be19a5e29ce0c9db68fcd7505717849a927e7fb + languageName: node + linkType: hard + +"@aws-sdk/nested-clients@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/nested-clients@npm:3.846.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/middleware-host-header": "npm:3.840.0" + "@aws-sdk/middleware-logger": "npm:3.840.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.840.0" + "@aws-sdk/middleware-user-agent": "npm:3.846.0" + "@aws-sdk/region-config-resolver": "npm:3.840.0" + "@aws-sdk/types": "npm:3.840.0" + "@aws-sdk/util-endpoints": "npm:3.845.0" + "@aws-sdk/util-user-agent-browser": "npm:3.840.0" + "@aws-sdk/util-user-agent-node": "npm:3.846.0" + "@smithy/config-resolver": "npm:^4.1.4" + "@smithy/core": "npm:^3.7.0" + "@smithy/fetch-http-handler": "npm:^5.1.0" + "@smithy/hash-node": "npm:^4.0.4" + "@smithy/invalid-dependency": "npm:^4.0.4" + "@smithy/middleware-content-length": "npm:^4.0.4" + "@smithy/middleware-endpoint": "npm:^4.1.15" + "@smithy/middleware-retry": "npm:^4.1.16" + "@smithy/middleware-serde": "npm:^4.0.8" + "@smithy/middleware-stack": "npm:^4.0.4" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/node-http-handler": "npm:^4.1.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.23" + "@smithy/util-defaults-mode-node": "npm:^4.0.23" + "@smithy/util-endpoints": "npm:^3.0.6" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-retry": "npm:^4.0.6" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/8303cc4c7ec723314a9cc8eb690559e13a88a4292ea9b6de5389e4c930f7e620b4612e335a8be799363cdd6005759a99afeac0d5af6e65868d556fd072e861b3 + languageName: node + linkType: hard + +"@aws-sdk/region-config-resolver@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-config-provider": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + tslib: "npm:^2.6.2" + checksum: 10c0/27d72bb9657efd79637a4c4aa895004d29c66eefce083fa84050f092f68bcba8cb9bf0e4c16c11c132a5fa01f1841e878fa903bc837c4e1e6904d1b2d2c3dd37 + languageName: node + linkType: hard + +"@aws-sdk/signature-v4-multi-region@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.846.0" + dependencies: + "@aws-sdk/middleware-sdk-s3": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/signature-v4": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/9f5bf554cb787e8fd3f8219c201f406c3380bddf40f835318098fd9b07143d79747f53ebca1391ff1a0be53dbe77c644c496a8bd95747bc47bf2a4ccf4141b68 + languageName: node + linkType: hard + +"@aws-sdk/token-providers@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/token-providers@npm:3.846.0" + dependencies: + "@aws-sdk/core": "npm:3.846.0" + "@aws-sdk/nested-clients": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/9c75c7035f3b458b944b12ddfc204d063a8de8463510f1156db1878165b829c44f895879de65debee60fe4621327c4e061fd71c2a116dbfa3e24172ea5441ed4 + languageName: node + linkType: hard + +"@aws-sdk/types@npm:3.840.0, @aws-sdk/types@npm:^3.222.0": + version: 3.840.0 + resolution: "@aws-sdk/types@npm:3.840.0" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/292d38f5087c3aa925addd890f8ae2bf650282c2cf4997d971a341dc0249dfca7ce02d69a4af09da2562b78a4232232d2a3b88105f34f66aee608d52aac238d1 + languageName: node + linkType: hard + +"@aws-sdk/util-arn-parser@npm:3.804.0": + version: 3.804.0 + resolution: "@aws-sdk/util-arn-parser@npm:3.804.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/b6d4c883ec2949fa40552fe8573c9c32af07c92c1bd94a27d978aa14d37b005be95392069d6b882ba977484f4dd0371792296fb2516f5d7601be5102888ee9ee + languageName: node + linkType: hard + +"@aws-sdk/util-endpoints@npm:3.845.0": + version: 3.845.0 + resolution: "@aws-sdk/util-endpoints@npm:3.845.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + "@smithy/util-endpoints": "npm:^3.0.6" + tslib: "npm:^2.6.2" + checksum: 10c0/ad08353ec6b5667b3f026ca49ceded7c8119fc40db9050aa645ddbf45c6d5e44037a9a2a7a76667afb863ffa3d55c514712e578c972841ac3a5249b8db45b084 + languageName: node + linkType: hard + +"@aws-sdk/util-locate-window@npm:^3.0.0": + version: 3.804.0 + resolution: "@aws-sdk/util-locate-window@npm:3.804.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/a0ceaf6531f188751fea7e829b730650689fa2196e0b3f870dde3888bcb840fe0852e10488699d4d9683db0765cd7f7060ca8ac216348991996b6d794f9957ab + languageName: node + linkType: hard + +"@aws-sdk/util-user-agent-browser@npm:3.840.0": + version: 3.840.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.840.0" + dependencies: + "@aws-sdk/types": "npm:3.840.0" + "@smithy/types": "npm:^4.3.1" + bowser: "npm:^2.11.0" + tslib: "npm:^2.6.2" + checksum: 10c0/873d5e3218958aa935127b05dad5a1d8cf26c9b7726584eb424a5958e7e205786dd99e4fa053b65f3b956261a7f8a3746e48e9b7dc47c3149792ff525da97631 + languageName: node + linkType: hard + +"@aws-sdk/util-user-agent-node@npm:3.846.0": + version: 3.846.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.846.0" + dependencies: + "@aws-sdk/middleware-user-agent": "npm:3.846.0" + "@aws-sdk/types": "npm:3.840.0" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + peerDependencies: + aws-crt: ">=1.0.0" + peerDependenciesMeta: + aws-crt: + optional: true + checksum: 10c0/ee205a6bc978152f33da8a8e373ea16078e96b54403ed3c689f5cb87bfc207abbab6e1e61c52fea52b6f717f79836be61064eeebb4f510a2b4dd02013f03bcad + languageName: node + linkType: hard + +"@aws-sdk/xml-builder@npm:3.821.0": + version: 3.821.0 + resolution: "@aws-sdk/xml-builder@npm:3.821.0" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/316e0eb04bcec0bb0897f67718629deab29adb9664ce78743ad854df772472c02332ab12627d74b96ebe2205adc51b1cb7fb01fcb4251e80a7af405e56cfa135 + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.27.1": version: 7.27.1 resolution: "@babel/code-frame@npm:7.27.1" dependencies: @@ -973,21 +1235,10 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.26.2": - version: 7.26.2 - resolution: "@babel/code-frame@npm:7.26.2" - dependencies: - "@babel/helper-validator-identifier": "npm:^7.25.9" - js-tokens: "npm:^4.0.0" - picocolors: "npm:^1.0.0" - checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 - languageName: node - linkType: hard - -"@babel/compat-data@npm:^7.26.8": - version: 7.26.8 - resolution: "@babel/compat-data@npm:7.26.8" - checksum: 10c0/66408a0388c3457fff1c2f6c3a061278dd7b3d2f0455ea29bb7b187fa52c60ae8b4054b3c0a184e21e45f0eaac63cf390737bc7504d1f4a088a6e7f652c068ca +"@babel/compat-data@npm:^7.27.2": + version: 7.28.0 + resolution: "@babel/compat-data@npm:7.28.0" + checksum: 10c0/c4e527302bcd61052423f757355a71c3bc62362bac13f7f130de16e439716f66091ff5bdecda418e8fa0271d4c725f860f0ee23ab7bf6e769f7a8bb16dfcb531 languageName: node linkType: hard @@ -1027,22 +1278,9 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.27.5": - version: 7.27.5 - resolution: "@babel/generator@npm:7.27.5" - dependencies: - "@babel/parser": "npm:^7.27.5" - "@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: 10c0/8f649ef4cd81765c832bb11de4d6064b035ffebdecde668ba7abee68a7b0bce5c9feabb5dc5bb8aeba5bd9e5c2afa3899d852d2bd9ca77a711ba8c8379f416f0 - languageName: node - linkType: hard - -"@babel/helper-compilation-targets@npm:^7.26.5": - version: 7.27.0 - resolution: "@babel/helper-compilation-targets@npm:7.27.0" +"@babel/helper-compilation-targets@npm:^7.27.2": + version: 7.27.2 + resolution: "@babel/helper-compilation-targets@npm:7.27.2" dependencies: "@babel/compat-data": "npm:^7.27.2" "@babel/helper-validator-option": "npm:^7.27.1" @@ -1083,17 +1321,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.25.9": - version: 7.26.5 - resolution: "@babel/helper-plugin-utils@npm:7.26.5" - checksum: 10c0/cdaba71d4b891aa6a8dfbe5bac2f94effb13e5fa4c2c487667fdbaa04eae059b78b28d85a885071f45f7205aeb56d16759e1bed9c118b94b16e4720ef1ab0f65 - languageName: node - linkType: hard - -"@babel/helper-string-parser@npm:^7.25.9": - version: 7.25.9 - resolution: "@babel/helper-string-parser@npm:7.25.9" - checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6 +"@babel/helper-plugin-utils@npm:^7.27.1": + version: 7.27.1 + resolution: "@babel/helper-plugin-utils@npm:7.27.1" + checksum: 10c0/94cf22c81a0c11a09b197b41ab488d416ff62254ce13c57e62912c85700dc2e99e555225787a4099ff6bae7a1812d622c80fbaeda824b79baa10a6c5ac4cf69b languageName: node linkType: hard @@ -1104,13 +1335,6 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.25.9": - version: 7.25.9 - resolution: "@babel/helper-validator-identifier@npm:7.25.9" - checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d - languageName: node - linkType: hard - "@babel/helper-validator-identifier@npm:^7.27.1": version: 7.27.1 resolution: "@babel/helper-validator-identifier@npm:7.27.1" @@ -1135,36 +1359,14 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.25.4": - version: 7.27.2 - resolution: "@babel/parser@npm:7.27.2" +"@babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.27.5, @babel/parser@npm:^7.27.7, @babel/parser@npm:^7.28.0": + version: 7.28.0 + resolution: "@babel/parser@npm:7.28.0" dependencies: - "@babel/types": "npm:^7.27.1" + "@babel/types": "npm:^7.28.0" bin: parser: ./bin/babel-parser.js - checksum: 10c0/3c06692768885c2f58207fc8c2cbdb4a44df46b7d93135a083f6eaa49310f7ced490ce76043a2a7606cdcc13f27e3d835e141b692f2f6337a2e7f43c1dbb04b4 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.26.10, @babel/parser@npm:^7.27.0": - version: 7.27.0 - resolution: "@babel/parser@npm:7.27.0" - dependencies: - "@babel/types": "npm:^7.27.0" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/ba2ed3f41735826546a3ef2a7634a8d10351df221891906e59b29b0a0cd748f9b0e7a6f07576858a9de8e77785aad925c8389ddef146de04ea2842047c9d2859 - languageName: node - linkType: hard - -"@babel/parser@npm:^7.27.3, @babel/parser@npm:^7.27.5": - version: 7.27.7 - resolution: "@babel/parser@npm:7.27.7" - dependencies: - "@babel/types": "npm:^7.27.7" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/f6202faeb873f0b3083022e50a5046fe07266d337c0a3bd80a491f8435ba6d9e383d49725e3dcd666b3b52c0dccb4e0f1f1004915762345f7eeed5ba54ea9fd2 + checksum: 10c0/c2ef81d598990fa949d1d388429df327420357cb5200271d0d0a2784f1e6d54afc8301eb8bdf96d8f6c77781e402da93c7dc07980fcc136ac5b9d5f1fce701b5 languageName: node linkType: hard @@ -1179,25 +1381,27 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.6": - version: 7.27.1 - resolution: "@babel/runtime@npm:7.27.1" - checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05 +"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.10.4, @babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.18.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.6, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.1, @babel/runtime@npm:^7.24.4, @babel/runtime@npm:^7.24.7, @babel/runtime@npm:^7.24.8, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.9.2": + version: 7.27.6 + resolution: "@babel/runtime@npm:7.27.6" + checksum: 10c0/89726be83f356f511dcdb74d3ea4d873a5f0cf0017d4530cb53aa27380c01ca102d573eff8b8b77815e624b1f8c24e7f0311834ad4fb632c90a770fda00bd4c8 languageName: node linkType: hard -"@babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.10.4, @babel/runtime@npm:^7.11.1, @babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.16.7, @babel/runtime@npm:^7.18.0, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.22.5, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.6, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.1, @babel/runtime@npm:^7.24.4, @babel/runtime@npm:^7.24.7, @babel/runtime@npm:^7.24.8, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.9.2": - version: 7.27.0 - resolution: "@babel/runtime@npm:7.27.0" +"@babel/template@npm:^7.27.2": + version: 7.27.2 + resolution: "@babel/template@npm:7.27.2" dependencies: - regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/35091ea9de48bd7fd26fb177693d64f4d195eb58ab2b142b893b7f3fa0f1d7c677604d36499ae0621a3703f35ba0c6a8f6c572cc8f7dc0317213841e493cf663 + "@babel/code-frame": "npm:^7.27.1" + "@babel/parser": "npm:^7.27.2" + "@babel/types": "npm:^7.27.1" + checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81 languageName: node linkType: hard -"@babel/template@npm:^7.26.9, @babel/template@npm:^7.27.0": - version: 7.27.0 - resolution: "@babel/template@npm:7.27.0" +"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.27.3, @babel/traverse@npm:^7.28.0": + version: 7.28.0 + resolution: "@babel/traverse@npm:7.28.0" dependencies: "@babel/code-frame": "npm:^7.27.1" "@babel/generator": "npm:^7.28.0" @@ -1210,33 +1414,13 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/types@npm:7.27.1" +"@babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.6, @babel/types@npm:^7.28.0, @babel/types@npm:^7.28.1": + version: 7.28.1 + resolution: "@babel/types@npm:7.28.1" dependencies: "@babel/helper-string-parser": "npm:^7.27.1" "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10c0/ed736f14db2fdf0d36c539c8e06b6bb5e8f9649a12b5c0e1c516fed827f27ef35085abe08bf4d1302a4e20c9a254e762eed453bce659786d4a6e01ba26a91377 - languageName: node - linkType: hard - -"@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.10, @babel/types@npm:^7.27.0": - version: 7.27.0 - resolution: "@babel/types@npm:7.27.0" - dependencies: - "@babel/helper-string-parser": "npm:^7.25.9" - "@babel/helper-validator-identifier": "npm:^7.25.9" - checksum: 10c0/6f1592eabe243c89a608717b07b72969be9d9d2fce1dee21426238757ea1fa60fdfc09b29de9e48d8104311afc6e6fb1702565a9cc1e09bc1e76f2b2ddb0f6e1 - languageName: node - linkType: hard - -"@babel/types@npm:^7.27.3, @babel/types@npm:^7.27.6, @babel/types@npm:^7.27.7": - version: 7.27.7 - resolution: "@babel/types@npm:7.27.7" - dependencies: - "@babel/helper-string-parser": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.27.1" - checksum: 10c0/1d1dcb5fa7cfba2b4034a3ab99ba17049bfc4af9e170935575246cdb1cee68b04329a0111506d9ae83fb917c47dbd4394a6db5e32fbd041b7834ffbb17ca086b + checksum: 10c0/5e99b346c11ee42ffb0cadc28159fe0b184d865a2cc1593df79b199772a534f6453969b4942aa5e4a55a3081863096e1cc3fc1c724d826926dc787cf229b845d languageName: node linkType: hard @@ -2271,30 +2455,30 @@ __metadata: linkType: hard "@emnapi/core@npm:^1.4.3": - version: 1.4.3 - resolution: "@emnapi/core@npm:1.4.3" + version: 1.4.4 + resolution: "@emnapi/core@npm:1.4.4" dependencies: - "@emnapi/wasi-threads": "npm:1.0.2" + "@emnapi/wasi-threads": "npm:1.0.3" tslib: "npm:^2.4.0" - checksum: 10c0/e30101d16d37ef3283538a35cad60e22095aff2403fb9226a35330b932eb6740b81364d525537a94eb4fb51355e48ae9b10d779c0dd1cdcd55d71461fe4b45c7 + checksum: 10c0/a3a87b384de7c87edc8d64dfbd0c695fb8e9c8547d2d53f284b15415cfea29150f933cb21017dc4d0fa9dbfb2b544d23c77da7cde8c82f21e68323db50a829dd languageName: node linkType: hard "@emnapi/runtime@npm:^1.4.3": - version: 1.4.3 - resolution: "@emnapi/runtime@npm:1.4.3" + version: 1.4.4 + resolution: "@emnapi/runtime@npm:1.4.4" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/3b7ab72d21cb4e034f07df80165265f85f445ef3f581d1bc87b67e5239428baa00200b68a7d5e37a0425c3a78320b541b07f76c5530f6f6f95336a6294ebf30b + checksum: 10c0/ec91747af3104ac34d4767fab922c8fe78ddc8ec83af3e3fb0edbf63cdb683fb8582be36afda7d48249fe729d4a31c34752c6e051770a762a68bce67a7408189 languageName: node linkType: hard -"@emnapi/wasi-threads@npm:1.0.2": - version: 1.0.2 - resolution: "@emnapi/wasi-threads@npm:1.0.2" +"@emnapi/wasi-threads@npm:1.0.3": + version: 1.0.3 + resolution: "@emnapi/wasi-threads@npm:1.0.3" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/f0621b1fc715221bd2d8332c0ca922617bcd77cdb3050eae50a124eb8923c54fa425d23982dc8f29d505c8798a62d1049bace8b0686098ff9dd82270e06d772e + checksum: 10c0/00cae4dd64143cca21a3aedbf64a7a5528a5991b69bcc0b7306812ff31a3fdc4aaf5bc9413a29fbd5d577c78aae49db4fc4e736d013aec5d416b5a64d403f391 languageName: node linkType: hard @@ -2351,359 +2535,191 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/aix-ppc64@npm:0.25.2" +"@esbuild/aix-ppc64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/aix-ppc64@npm:0.25.6" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/aix-ppc64@npm:0.25.3" - conditions: os=aix & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/android-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-arm64@npm:0.25.2" +"@esbuild/android-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/android-arm64@npm:0.25.6" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/android-arm64@npm:0.25.3" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/android-arm@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-arm@npm:0.25.2" +"@esbuild/android-arm@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/android-arm@npm:0.25.6" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/android-arm@npm:0.25.3" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@esbuild/android-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/android-x64@npm:0.25.2" +"@esbuild/android-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/android-x64@npm:0.25.6" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/android-x64@npm:0.25.3" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/darwin-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/darwin-arm64@npm:0.25.2" +"@esbuild/darwin-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/darwin-arm64@npm:0.25.6" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/darwin-arm64@npm:0.25.3" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/darwin-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/darwin-x64@npm:0.25.2" +"@esbuild/darwin-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/darwin-x64@npm:0.25.6" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/darwin-x64@npm:0.25.3" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/freebsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/freebsd-arm64@npm:0.25.2" +"@esbuild/freebsd-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/freebsd-arm64@npm:0.25.6" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/freebsd-arm64@npm:0.25.3" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/freebsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/freebsd-x64@npm:0.25.2" +"@esbuild/freebsd-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/freebsd-x64@npm:0.25.6" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/freebsd-x64@npm:0.25.3" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/linux-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-arm64@npm:0.25.2" +"@esbuild/linux-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-arm64@npm:0.25.6" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-arm64@npm:0.25.3" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/linux-arm@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-arm@npm:0.25.2" +"@esbuild/linux-arm@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-arm@npm:0.25.6" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-arm@npm:0.25.3" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@esbuild/linux-ia32@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-ia32@npm:0.25.2" +"@esbuild/linux-ia32@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-ia32@npm:0.25.6" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-ia32@npm:0.25.3" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/linux-loong64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-loong64@npm:0.25.2" +"@esbuild/linux-loong64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-loong64@npm:0.25.6" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-loong64@npm:0.25.3" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - -"@esbuild/linux-mips64el@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-mips64el@npm:0.25.2" +"@esbuild/linux-mips64el@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-mips64el@npm:0.25.6" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-mips64el@npm:0.25.3" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - -"@esbuild/linux-ppc64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-ppc64@npm:0.25.2" +"@esbuild/linux-ppc64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-ppc64@npm:0.25.6" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-ppc64@npm:0.25.3" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/linux-riscv64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-riscv64@npm:0.25.2" +"@esbuild/linux-riscv64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-riscv64@npm:0.25.6" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-riscv64@npm:0.25.3" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - -"@esbuild/linux-s390x@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-s390x@npm:0.25.2" +"@esbuild/linux-s390x@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-s390x@npm:0.25.6" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-s390x@npm:0.25.3" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - -"@esbuild/linux-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/linux-x64@npm:0.25.2" +"@esbuild/linux-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/linux-x64@npm:0.25.6" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/linux-x64@npm:0.25.3" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/netbsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/netbsd-arm64@npm:0.25.2" +"@esbuild/netbsd-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/netbsd-arm64@npm:0.25.6" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/netbsd-arm64@npm:0.25.3" - conditions: os=netbsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/netbsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/netbsd-x64@npm:0.25.2" +"@esbuild/netbsd-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/netbsd-x64@npm:0.25.6" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/netbsd-x64@npm:0.25.3" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/openbsd-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/openbsd-arm64@npm:0.25.2" +"@esbuild/openbsd-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/openbsd-arm64@npm:0.25.6" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/openbsd-arm64@npm:0.25.3" - conditions: os=openbsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/openbsd-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/openbsd-x64@npm:0.25.2" +"@esbuild/openbsd-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/openbsd-x64@npm:0.25.6" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/openbsd-x64@npm:0.25.3" - conditions: os=openbsd & cpu=x64 +"@esbuild/openharmony-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/openharmony-arm64@npm:0.25.6" + conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/sunos-x64@npm:0.25.2" +"@esbuild/sunos-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/sunos-x64@npm:0.25.6" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/sunos-x64@npm:0.25.3" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/win32-arm64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-arm64@npm:0.25.2" +"@esbuild/win32-arm64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/win32-arm64@npm:0.25.6" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/win32-arm64@npm:0.25.3" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/win32-ia32@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-ia32@npm:0.25.2" +"@esbuild/win32-ia32@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/win32-ia32@npm:0.25.6" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/win32-ia32@npm:0.25.3" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/win32-x64@npm:0.25.2": - version: 0.25.2 - resolution: "@esbuild/win32-x64@npm:0.25.2" +"@esbuild/win32-x64@npm:0.25.6": + version: 0.25.6 + resolution: "@esbuild/win32-x64@npm:0.25.6" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.3": - version: 0.25.3 - resolution: "@esbuild/win32-x64@npm:0.25.3" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.6.0 - resolution: "@eslint-community/eslint-utils@npm:4.6.0" +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.7.0": + version: 4.7.0 + resolution: "@eslint-community/eslint-utils@npm:4.7.0" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: @@ -3651,7 +3667,19 @@ __metadata: languageName: node linkType: hard -"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": +"@langchain/weaviate@npm:^0.2.0": + version: 0.2.1 + resolution: "@langchain/weaviate@npm:0.2.1" + dependencies: + uuid: "npm:^10.0.0" + weaviate-client: "npm:^3.5.2" + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + checksum: 10c0/34a3d4c386f3fd0d1fbde857e8815feb8dca9de5f6607cc4b10ffd580dcdc7247cb13caaf824e7b99210717e8767f7407e809e2aa90d1902e4af764a973b227b + languageName: node + linkType: hard + +"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.0.3, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1": version: 1.2.3 resolution: "@lezer/common@npm:1.2.3" checksum: 10c0/fe9f8e111080ef94037a34ca2af1221c8d01c1763ba5ecf708a286185c76119509a5d19d924c8842172716716ddce22d7834394670c4a9432f0ba9f3b7c0f50d @@ -3968,12 +3996,23 @@ __metadata: languageName: node linkType: hard -"@mermaid-js/parser@npm:^0.4.0": - version: 0.4.0 - resolution: "@mermaid-js/parser@npm:0.4.0" +"@mermaid-js/parser@npm:^0.6.2": + version: 0.6.2 + resolution: "@mermaid-js/parser@npm:0.6.2" dependencies: langium: "npm:3.3.1" - checksum: 10c0/f0bea89b993c89d9e655e487e6ffd6866897e607264e70a7addc4794683f5c9632376c1e9893246e7e2d5c05569d1b35005a213c283107453b8dff273fb8d8b2 + checksum: 10c0/6059341a5dc3fdf56dd75c858843154e18c582e5cc41c3e73e9a076e218116c6bdbdba729d27154cef61430c900d87342423bbb81e37d8a9968c6c2fdd99e87a + languageName: node + linkType: hard + +"@mistralai/mistralai@npm:^1.6.0": + version: 1.7.4 + resolution: "@mistralai/mistralai@npm:1.7.4" + dependencies: + zod-to-json-schema: "npm:^3.24.1" + peerDependencies: + zod: ">= 3" + checksum: 10c0/d1ece1cb690dc50fde3bd7b0feec6211aa63d1331032bd84d82bfc85704467da560ed213f2c4683f9983cc4004e26e04bac6d052f20848668503d7d14a8ad839 languageName: node linkType: hard @@ -3984,9 +4023,9 @@ __metadata: languageName: node linkType: hard -"@modelcontextprotocol/sdk@npm:^1.11.4": - version: 1.11.4 - resolution: "@modelcontextprotocol/sdk@npm:1.11.4" +"@modelcontextprotocol/sdk@npm:^1.12.3": + version: 1.15.1 + resolution: "@modelcontextprotocol/sdk@npm:1.15.1" dependencies: ajv: "npm:^6.12.6" content-type: "npm:^1.0.5" @@ -4000,7 +4039,7 @@ __metadata: raw-body: "npm:^3.0.0" zod: "npm:^3.23.8" zod-to-json-schema: "npm:^3.24.1" - checksum: 10c0/797694937e65ccc02e8dc63db711d9d96fbc49b49e6d246e6fed95d8d2bfe98ef203207224e39c9fc3b54da182da865a5d311ea06ef939c5c57ce0cd27c0f546 + checksum: 10c0/61d1c5313d6c3892827ef5f179012071c06d898bcf79a28fb8b6cc065b4d6476ad217e549e5140884e7dc92ced4906b05b451903877345e450406f09adcb4cbd languageName: node linkType: hard @@ -4011,14 +4050,123 @@ __metadata: languageName: node linkType: hard +"@napi-rs/canvas-android-arm64@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-android-arm64@npm:0.1.73" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@napi-rs/canvas-darwin-arm64@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-darwin-arm64@npm:0.1.73" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@napi-rs/canvas-darwin-x64@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-darwin-x64@npm:0.1.73" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-arm-gnueabihf@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-arm-gnueabihf@npm:0.1.73" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-arm64-gnu@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-arm64-gnu@npm:0.1.73" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-arm64-musl@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-arm64-musl@npm:0.1.73" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-riscv64-gnu@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-riscv64-gnu@npm:0.1.73" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-x64-gnu@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-x64-gnu@npm:0.1.73" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@napi-rs/canvas-linux-x64-musl@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-linux-x64-musl@npm:0.1.73" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@napi-rs/canvas-win32-x64-msvc@npm:0.1.73": + version: 0.1.73 + resolution: "@napi-rs/canvas-win32-x64-msvc@npm:0.1.73" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@napi-rs/canvas@npm:^0.1.65, @napi-rs/canvas@npm:^0.1.71": + version: 0.1.73 + resolution: "@napi-rs/canvas@npm:0.1.73" + dependencies: + "@napi-rs/canvas-android-arm64": "npm:0.1.73" + "@napi-rs/canvas-darwin-arm64": "npm:0.1.73" + "@napi-rs/canvas-darwin-x64": "npm:0.1.73" + "@napi-rs/canvas-linux-arm-gnueabihf": "npm:0.1.73" + "@napi-rs/canvas-linux-arm64-gnu": "npm:0.1.73" + "@napi-rs/canvas-linux-arm64-musl": "npm:0.1.73" + "@napi-rs/canvas-linux-riscv64-gnu": "npm:0.1.73" + "@napi-rs/canvas-linux-x64-gnu": "npm:0.1.73" + "@napi-rs/canvas-linux-x64-musl": "npm:0.1.73" + "@napi-rs/canvas-win32-x64-msvc": "npm:0.1.73" + dependenciesMeta: + "@napi-rs/canvas-android-arm64": + optional: true + "@napi-rs/canvas-darwin-arm64": + optional: true + "@napi-rs/canvas-darwin-x64": + optional: true + "@napi-rs/canvas-linux-arm-gnueabihf": + optional: true + "@napi-rs/canvas-linux-arm64-gnu": + optional: true + "@napi-rs/canvas-linux-arm64-musl": + optional: true + "@napi-rs/canvas-linux-riscv64-gnu": + optional: true + "@napi-rs/canvas-linux-x64-gnu": + optional: true + "@napi-rs/canvas-linux-x64-musl": + optional: true + "@napi-rs/canvas-win32-x64-msvc": + optional: true + checksum: 10c0/99bffc7ffaa311705b1a453b42dfb795764daf0275bac216db9da667840f7c3c98dd12ddde2281adb0d5a5dfad0f2e7a2555a9eda0d833ac1f38c5f4657f99cb + languageName: node + linkType: hard + "@napi-rs/wasm-runtime@npm:^0.2.4": - version: 0.2.11 - resolution: "@napi-rs/wasm-runtime@npm:0.2.11" + version: 0.2.12 + resolution: "@napi-rs/wasm-runtime@npm:0.2.12" dependencies: "@emnapi/core": "npm:^1.4.3" "@emnapi/runtime": "npm:^1.4.3" - "@tybys/wasm-util": "npm:^0.9.0" - checksum: 10c0/049bd14c58b99fbe0967b95e9921c5503df196b59be22948d2155f17652eb305cff6728efd8685338b855da7e476dd2551fbe3a313fc2d810938f0717478441e + "@tybys/wasm-util": "npm:^0.10.0" + checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d languageName: node linkType: hard @@ -4347,6 +4495,79 @@ __metadata: languageName: node linkType: hard +"@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/aspromise@npm:1.1.2" + checksum: 10c0/a83343a468ff5b5ec6bff36fd788a64c839e48a07ff9f4f813564f58caf44d011cd6504ed2147bf34835bd7a7dd2107052af755961c6b098fd8902b4f6500d0f + languageName: node + linkType: hard + +"@protobufjs/base64@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/base64@npm:1.1.2" + checksum: 10c0/eec925e681081af190b8ee231f9bad3101e189abbc182ff279da6b531e7dbd2a56f1f306f37a80b1be9e00aa2d271690d08dcc5f326f71c9eed8546675c8caf6 + languageName: node + linkType: hard + +"@protobufjs/codegen@npm:^2.0.4": + version: 2.0.4 + resolution: "@protobufjs/codegen@npm:2.0.4" + checksum: 10c0/26ae337c5659e41f091606d16465bbcc1df1f37cc1ed462438b1f67be0c1e28dfb2ca9f294f39100c52161aef82edf758c95d6d75650a1ddf31f7ddee1440b43 + languageName: node + linkType: hard + +"@protobufjs/eventemitter@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/eventemitter@npm:1.1.0" + checksum: 10c0/1eb0a75180e5206d1033e4138212a8c7089a3d418c6dfa5a6ce42e593a4ae2e5892c4ef7421f38092badba4040ea6a45f0928869989411001d8c1018ea9a6e70 + languageName: node + linkType: hard + +"@protobufjs/fetch@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/fetch@npm:1.1.0" + dependencies: + "@protobufjs/aspromise": "npm:^1.1.1" + "@protobufjs/inquire": "npm:^1.1.0" + checksum: 10c0/cda6a3dc2d50a182c5865b160f72077aac197046600091dbb005dd0a66db9cce3c5eaed6d470ac8ed49d7bcbeef6ee5f0bc288db5ff9a70cbd003e5909065233 + languageName: node + linkType: hard + +"@protobufjs/float@npm:^1.0.2": + version: 1.0.2 + resolution: "@protobufjs/float@npm:1.0.2" + checksum: 10c0/18f2bdede76ffcf0170708af15c9c9db6259b771e6b84c51b06df34a9c339dbbeec267d14ce0bddd20acc142b1d980d983d31434398df7f98eb0c94a0eb79069 + languageName: node + linkType: hard + +"@protobufjs/inquire@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/inquire@npm:1.1.0" + checksum: 10c0/64372482efcba1fb4d166a2664a6395fa978b557803857c9c03500e0ac1013eb4b1aacc9ed851dd5fc22f81583670b4f4431bae186f3373fedcfde863ef5921a + languageName: node + linkType: hard + +"@protobufjs/path@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/path@npm:1.1.2" + checksum: 10c0/cece0a938e7f5dfd2fa03f8c14f2f1cf8b0d6e13ac7326ff4c96ea311effd5fb7ae0bba754fbf505312af2e38500250c90e68506b97c02360a43793d88a0d8b4 + languageName: node + linkType: hard + +"@protobufjs/pool@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/pool@npm:1.1.0" + checksum: 10c0/eda2718b7f222ac6e6ad36f758a92ef90d26526026a19f4f17f668f45e0306a5bd734def3f48f51f8134ae0978b6262a5c517c08b115a551756d1a3aadfcf038 + languageName: node + linkType: hard + +"@protobufjs/utf8@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/utf8@npm:1.1.0" + checksum: 10c0/a3fe31fe3fa29aa3349e2e04ee13dc170cc6af7c23d92ad49e3eeaf79b9766264544d3da824dba93b7855bd6a2982fb40032ef40693da98a136d835752beb487 + languageName: node + linkType: hard + "@quansync/fs@npm:^0.1.1": version: 0.1.3 resolution: "@quansync/fs@npm:0.1.3" @@ -4652,6 +4873,13 @@ __metadata: languageName: node linkType: hard +"@rolldown/pluginutils@npm:1.0.0-beta.11": + version: 1.0.0-beta.11 + resolution: "@rolldown/pluginutils@npm:1.0.0-beta.11" + checksum: 10c0/140088e33a4dd3bc21d06fa0cbe79b52e95487c9737d425aa5729e52446dc70f066fbce632489a53e45bb567f1e86c19835677c98fe5d4123ae1e2fef53f8d97 + languageName: node + linkType: hard + "@rolldown/pluginutils@npm:1.0.0-beta.9-commit.d91dfb5": version: 1.0.0-beta.9-commit.d91dfb5 resolution: "@rolldown/pluginutils@npm:1.0.0-beta.9-commit.d91dfb5" @@ -4659,9 +4887,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.40.0": - version: 4.40.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.0" +"@rollup/rollup-android-arm-eabi@npm:4.45.1": + version: 4.45.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.45.1" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -4809,79 +5037,79 @@ __metadata: languageName: node linkType: hard -"@shikijs/core@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/core@npm:3.4.2" +"@shikijs/core@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/core@npm:3.8.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.8.0" "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" hast-util-to-html: "npm:^9.0.5" - checksum: 10c0/702469d9c80fc80e2b81dd10407cc946771dcf355d56048e1dab43e40d144395c14a6ecde92e03c70a35249ad6634ef4605bd17ad6974a2b4e04f9efccf24414 + checksum: 10c0/a955c889eeabea0056a5dd30370b414eaae8edd96ae7f82d5b534776997f01192b6e8141a15916669d5b4c976ff14ee545b9a1328afefa6da268d1db591d7917 languageName: node linkType: hard -"@shikijs/engine-javascript@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/engine-javascript@npm:3.4.2" +"@shikijs/engine-javascript@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/engine-javascript@npm:3.8.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.8.0" "@shikijs/vscode-textmate": "npm:^10.0.2" oniguruma-to-es: "npm:^4.3.3" - checksum: 10c0/160056a6303978d4e40114fe0414acd5089ea39a55a3144b9cba5e50aa38c521948ee47a2edc5acda5fd3607e33b20539845cfd9ca3508163e989b8fb4220488 + checksum: 10c0/6913454e37ba4b0313c869218e13f4ce72b5a43a6824004c3015db1f4f817fdaca079e788dd2b80be7ad4fce202c6f7d7f6be19268a25271e3082f2000a625a8 languageName: node linkType: hard -"@shikijs/engine-oniguruma@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/engine-oniguruma@npm:3.4.2" +"@shikijs/engine-oniguruma@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/engine-oniguruma@npm:3.8.0" dependencies: - "@shikijs/types": "npm:3.4.2" + "@shikijs/types": "npm:3.8.0" "@shikijs/vscode-textmate": "npm:^10.0.2" - checksum: 10c0/b8a13123b8a41e1016b661c24b349163b5026841772c351aacddcdc724518a926a49065ac77e4a1d4bb94da12c6bf11e6b1c938ef881545064bb3b484223eba0 + checksum: 10c0/0d5e4ddc2a0a39eb8a26517ee4a2808098d4ba60ec25ddd335404227d87e8369812dde0d90777b4c0e7fa096bcc2e7de269d3ee4d286a781a7c5f6cbce9c4b2b languageName: node linkType: hard -"@shikijs/langs@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/langs@npm:3.4.2" +"@shikijs/langs@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/langs@npm:3.8.0" dependencies: - "@shikijs/types": "npm:3.4.2" - checksum: 10c0/ca0260b00e32385db8db43d8dd147f480bc2ff699acaf6052ec3e421b1c6d27df6dfb0f69fadb673ef357333ba65fdce2fbcd8c31c7d245439756bfb3530eba4 + "@shikijs/types": "npm:3.8.0" + checksum: 10c0/678a60a4fa6ba127956e78397dc9e419ddbca28063334df8230c8909a3420ba24718816d188d0a21793d0de8925440427b2ccd8bce8583436baa8587eff58d5a languageName: node linkType: hard -"@shikijs/markdown-it@npm:^3.4.2": - version: 3.4.2 - resolution: "@shikijs/markdown-it@npm:3.4.2" +"@shikijs/markdown-it@npm:^3.7.0": + version: 3.8.0 + resolution: "@shikijs/markdown-it@npm:3.8.0" dependencies: markdown-it: "npm:^14.1.0" - shiki: "npm:3.4.2" + shiki: "npm:3.8.0" peerDependencies: markdown-it-async: ^2.2.0 peerDependenciesMeta: markdown-it-async: optional: true - checksum: 10c0/6bdb4fae6038867a370b454d39cb64ac78645385f3f0150e85fd68952965186a00ba87aa4ce1d0b280f599d6aaf78d30ee32b6ad7d92391091dd7af569e7cbdb + checksum: 10c0/e0a3f232d4ca048c158daa58549ad720fb4bc46f100ff97d51179678b47b7fe96f43492e49bf03225175c93f07080ffa31f9b48a771b2bc042e0c736700da2ca languageName: node linkType: hard -"@shikijs/themes@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/themes@npm:3.4.2" +"@shikijs/themes@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/themes@npm:3.8.0" dependencies: - "@shikijs/types": "npm:3.4.2" - checksum: 10c0/d50bca4384ccf88d68f007869e13bc7a9b55b16c40a3269fe120b2e5a2e882f6206ee0325f619bfa31ff00a0341452840d38f4ca2296dd3ba3e200e53445e22b + "@shikijs/types": "npm:3.8.0" + checksum: 10c0/8771c7f4bff55d43582ea7484b2bb278d9e94735caf02fea895f71a21701a2f0596ac06487d677dd9e84c728bc809a0d091dac5d63d0678fcfb25d1b7330bc81 languageName: node linkType: hard -"@shikijs/types@npm:3.4.2": - version: 3.4.2 - resolution: "@shikijs/types@npm:3.4.2" +"@shikijs/types@npm:3.8.0": + version: 3.8.0 + resolution: "@shikijs/types@npm:3.8.0" dependencies: "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" - checksum: 10c0/a20d3535cc0d61a55d0c0d4dfcd33a52229ec8a4c650613cb0f424dcb499bcdf0230e007f70a18e12c102a04820557ff120f41f18b15a94f95f9ec343592906b + checksum: 10c0/1a27a971335b39c7b0d8902dfe076a5e57b00fe6ef7ddb9be54606ae627a36cf1a82bc9fad72c895681ba9f9b706eccfbedc2633ba5a751eca4b3208bc2edca6 languageName: node linkType: hard @@ -4906,7 +5134,79 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^4.0.1": +"@smithy/abort-controller@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/abort-controller@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/eb172b002fb92406c69b83460f949ace73247e6abd85d0d3714de2765c5db7b98070b9abfb630e2c591dd7b2ff770cc24f7737c1c207581f716c402b16bf46f9 + languageName: node + linkType: hard + +"@smithy/chunked-blob-reader-native@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/chunked-blob-reader-native@npm:4.0.0" + dependencies: + "@smithy/util-base64": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/4387f4e8841f20c1c4e689078141de7e6f239e7883be3a02810a023aa30939b15576ee00227b991972d2c5a2f3b6152bcaeca0975c9fa8d3669354c647bd532a + languageName: node + linkType: hard + +"@smithy/chunked-blob-reader@npm:^5.0.0": + version: 5.0.0 + resolution: "@smithy/chunked-blob-reader@npm:5.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/55ba0fe366ddaa3f93e1faf8a70df0b67efedbd0008922295efe215df09b68df0ba3043293e65b17e7d1be71448d074c2bfc54e5eb6bd18f59b425822c2b9e9a + languageName: node + linkType: hard + +"@smithy/config-resolver@npm:^4.1.4": + version: 4.1.4 + resolution: "@smithy/config-resolver@npm:4.1.4" + dependencies: + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-config-provider": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + tslib: "npm:^2.6.2" + checksum: 10c0/41832a42f8da7143732c71098b410f4ddcb096066126f7e8f45bae8d9aeb95681bd0d0d54886f46244c945c63829ca5d23373d4de31a038487aa07159722ef4e + languageName: node + linkType: hard + +"@smithy/core@npm:^3.7.0": + version: 3.7.0 + resolution: "@smithy/core@npm:3.7.0" + dependencies: + "@smithy/middleware-serde": "npm:^4.0.8" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-stream": "npm:^4.2.3" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b49848fda805c88f3422db823f19d7ad59859e3180f0cc9f6e0d174a111c09251d00ba788fc3539512fbc08fa53d38977c58b21ddac8f4f74f6cc7f1918066be + languageName: node + linkType: hard + +"@smithy/credential-provider-imds@npm:^4.0.6": + version: 4.0.6 + resolution: "@smithy/credential-provider-imds@npm:4.0.6" + dependencies: + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + tslib: "npm:^2.6.2" + checksum: 10c0/b1f3157d0a7b9f9155ac80aeac70d7db896d23d0322a6b38f0e848f1e53864ba1bca6d3dc5dd9af86446c371ebc5bffe01f0712ad562e7635e7d13e532622aa4 + languageName: node + linkType: hard + +"@smithy/eventstream-codec@npm:^4.0.1, @smithy/eventstream-codec@npm:^4.0.4": version: 4.0.4 resolution: "@smithy/eventstream-codec@npm:4.0.4" dependencies: @@ -4918,6 +5218,107 @@ __metadata: languageName: node linkType: hard +"@smithy/eventstream-serde-browser@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/eventstream-serde-browser@npm:4.0.4" + dependencies: + "@smithy/eventstream-serde-universal": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/b2444538555c54ac96d4049b0be3a65d959914bcd5198a8059edc838c7ffac5a1db225290194f85ea8805c47c1edc95484dfeb415cb2004ec3e572880f4fc8c5 + languageName: node + linkType: hard + +"@smithy/eventstream-serde-config-resolver@npm:^4.1.2": + version: 4.1.2 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.2" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/54184a29d1e42f1b972292efc3a5cbbe3ca237cd9ab76132bad40e8426fa62d0b7f6fdac01f23e3a9cac69919107ddfd9d2f2873f83ae1f65470d3052c67cefc + languageName: node + linkType: hard + +"@smithy/eventstream-serde-node@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/eventstream-serde-node@npm:4.0.4" + dependencies: + "@smithy/eventstream-serde-universal": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/e6d0765a73332c79b69531ed20c27e49475173da09ce21e4c011a64d8a61d7c5c328c9bc1cab991e145fc969b16071ffd6a33ab11291c0fa2a46e8dae28da23b + languageName: node + linkType: hard + +"@smithy/eventstream-serde-universal@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/eventstream-serde-universal@npm:4.0.4" + dependencies: + "@smithy/eventstream-codec": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/f0c18efa6cafa111ed20c8c53b4a7b6a0f8e25ccb0d2cafdf83282ebc6f96e47f26daf24b5b810ea83a02e03c994c35419d94fad76871f2cc6cb01d2aed277d9 + languageName: node + linkType: hard + +"@smithy/fetch-http-handler@npm:^5.1.0": + version: 5.1.0 + resolution: "@smithy/fetch-http-handler@npm:5.1.0" + dependencies: + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/querystring-builder": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-base64": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/9bd54f40f00f35a4eee3c359e5942fc5c6ea1c43d7c708e5dd2cd74e8291c55fc6f1ce043d66eea7c1ca687dda682899058967c5b92df75ab56e44a773bb8679 + languageName: node + linkType: hard + +"@smithy/hash-blob-browser@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/hash-blob-browser@npm:4.0.4" + dependencies: + "@smithy/chunked-blob-reader": "npm:^5.0.0" + "@smithy/chunked-blob-reader-native": "npm:^4.0.0" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/f970058c2e04e86427e1474355199027fc84dc1d96d9a2278ed37904458d37b020472541390558bd3fb071bbd177b2850b18ceb1beb39d387fead06a2912f974 + languageName: node + linkType: hard + +"@smithy/hash-node@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/hash-node@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + "@smithy/util-buffer-from": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/07beb38643990f6c055457765d65af2aedd5944d819025df90d1f2f59596d1a1394cd8c9035ac6d343bc55e3afeb186b51b0ac91938024da8687120fc0b436dc + languageName: node + linkType: hard + +"@smithy/hash-stream-node@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/hash-stream-node@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/4899132433f520e45972bbacb6a999da8d7ccf4c813f2fb28b1af65eaf268ba549b2c37dd54a586cd7bcd82f6e4cec914651a6446b3fb3e1f226ca1864051535 + languageName: node + linkType: hard + +"@smithy/invalid-dependency@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/invalid-dependency@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/5e5a6282c17a7310f8e866c7e34fa07479d42c650cf3c1875bdb0ec38d5280eeac82a269605a3521b8fa455b92673d8fd5e97eb997acf81a80da82d6f501d651 + languageName: node + linkType: hard + "@smithy/is-array-buffer@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/is-array-buffer@npm:2.2.0" @@ -4936,6 +5337,198 @@ __metadata: languageName: node linkType: hard +"@smithy/md5-js@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/md5-js@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/7c66405dca5d7df6694367dbb4a3d9f13fdfe2589abc81f85d5fb7bf876e1382578d9c477d2256d4b5bc59951c3c534e51eb65c53c2fb3251080f16d1d7ea82c + languageName: node + linkType: hard + +"@smithy/middleware-content-length@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/middleware-content-length@npm:4.0.4" + dependencies: + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/fde43ff13f0830c4608b83cf6e2bd3ae142aa6eb3df6f6c190c2564dd00c2c98f4f95da9146c69bc09115ad87ffc9dc24935d1a3d6d3b2383a9c8558d9177dd6 + languageName: node + linkType: hard + +"@smithy/middleware-endpoint@npm:^4.1.15": + version: 4.1.15 + resolution: "@smithy/middleware-endpoint@npm:4.1.15" + dependencies: + "@smithy/core": "npm:^3.7.0" + "@smithy/middleware-serde": "npm:^4.0.8" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + "@smithy/url-parser": "npm:^4.0.4" + "@smithy/util-middleware": "npm:^4.0.4" + tslib: "npm:^2.6.2" + checksum: 10c0/13078862d3355c2bc8db89d822194d4fdd41c19208f8ffc866c1926d2a5fc72aa91acff9d391034cb0d92b8d0e43f3b13cc0752d89d0a175031c603036c0fb83 + languageName: node + linkType: hard + +"@smithy/middleware-retry@npm:^4.1.16": + version: 4.1.16 + resolution: "@smithy/middleware-retry@npm:4.1.16" + dependencies: + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/service-error-classification": "npm:^4.0.6" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-retry": "npm:^4.0.6" + tslib: "npm:^2.6.2" + uuid: "npm:^9.0.1" + checksum: 10c0/d5a6def8456d7b01b51436702c1b3434c5d88bbd8c3a175b1865205178050f3fa14842e5b40119cba33a9057d0992a0670f9c906c827f573af75bf0009af95c2 + languageName: node + linkType: hard + +"@smithy/middleware-serde@npm:^4.0.8": + version: 4.0.8 + resolution: "@smithy/middleware-serde@npm:4.0.8" + dependencies: + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/11414e584780716b2b0487fe748da9927943d4d810b5b0161e73df6ab24a4d17f675773287f95868c57a71013385f7b027eb2afbab1eed3dbaafef754b482b27 + languageName: node + linkType: hard + +"@smithy/middleware-stack@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/middleware-stack@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/b29b6430e31f11683f0ce0e06d21a4bfe6cb791ce1eb5686533559baa81698f617bfbfdac06f569e13f077ce177cb70e55f4db20701906b3e344d9294817f382 + languageName: node + linkType: hard + +"@smithy/node-config-provider@npm:^4.1.3": + version: 4.1.3 + resolution: "@smithy/node-config-provider@npm:4.1.3" + dependencies: + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/shared-ini-file-loader": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/bea20b3f92290fbefa32d30c4ac7632f94d4e89b5432dfe5a2d0c6261bfd90e882d62dd02e0a4e65f3bc89f815b19e44d7bb103a78b6c77941cc186450ad79f1 + languageName: node + linkType: hard + +"@smithy/node-http-handler@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/node-http-handler@npm:4.1.0" + dependencies: + "@smithy/abort-controller": "npm:^4.0.4" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/querystring-builder": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/6212b86b62dc44d0d8eb3949428b2ddbb5d064e722979fc5384ec52367b8246b19619732822514e0be9d6455b8c2c41d29f46a74bf43548cc2713ea7552c07a8 + languageName: node + linkType: hard + +"@smithy/property-provider@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/property-provider@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/c370efbb43ab01fb6050fbf4c231bbe2fb7d660256adeee40c0c4c14b7af1b9b75c36f6924aeacdd2885fad1aaf0655047cafe5f0d22f5e371cbd25ff2f04b27 + languageName: node + linkType: hard + +"@smithy/protocol-http@npm:^5.1.2": + version: 5.1.2 + resolution: "@smithy/protocol-http@npm:5.1.2" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/50fb026efa321e65a77f9747312eeb428ff2196095c15ed5937efe807a4734c47746759ccf2dbc84a45719effcbc81221662289be6d4d5ec122afb0e3cd66fd9 + languageName: node + linkType: hard + +"@smithy/querystring-builder@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/querystring-builder@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + "@smithy/util-uri-escape": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/30ec0301fbc2212101391841000a3117ab6c3ae2b6b2a1db230cc1dfcf97738f527b23f859f0a5e843f2a983793b58cdcd21a0ce11ef93fcdf5d8a1ee0d70fbc + languageName: node + linkType: hard + +"@smithy/querystring-parser@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/querystring-parser@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/36bc93732a1628be5dd53748f6f36237bad26de2da810195213541dd35b20eee0b0264160a0de734b9333ca747e0229253d6729d1a8ddc26d176c0b1cce309e0 + languageName: node + linkType: hard + +"@smithy/service-error-classification@npm:^4.0.6": + version: 4.0.6 + resolution: "@smithy/service-error-classification@npm:4.0.6" + dependencies: + "@smithy/types": "npm:^4.3.1" + checksum: 10c0/b67f5ef633fa803f6b9f81f53dcc361253f33e01ffefbcb1beaf29c578834b1381e5f979e25b38985d351142e1ab4ee638cf132a2ba9f6f7a0a806a35da76d86 + languageName: node + linkType: hard + +"@smithy/shared-ini-file-loader@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/shared-ini-file-loader@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/a3ecabadda13ff6fca99585e7e0086a04c4d2350b8c783b3a23493c2ae0a599f397d3cb80a7e171b7123889340995cada866d320726fa6a03f3063d60d5d0207 + languageName: node + linkType: hard + +"@smithy/signature-v4@npm:^5.1.2": + version: 5.1.2 + resolution: "@smithy/signature-v4@npm:5.1.2" + dependencies: + "@smithy/is-array-buffer": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-hex-encoding": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-uri-escape": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/83d3870668a6c080c1d0cbecf2e7d1a86c0298cc3a3df9fba21bd942e2a9bcae81eb50960c66bba00c6f9820ef9e5ab3e5ddba67b2d7914a09a82c7887621c0c + languageName: node + linkType: hard + +"@smithy/smithy-client@npm:^4.4.7": + version: 4.4.7 + resolution: "@smithy/smithy-client@npm:4.4.7" + dependencies: + "@smithy/core": "npm:^3.7.0" + "@smithy/middleware-endpoint": "npm:^4.1.15" + "@smithy/middleware-stack": "npm:^4.0.4" + "@smithy/protocol-http": "npm:^5.1.2" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-stream": "npm:^4.2.3" + tslib: "npm:^2.6.2" + checksum: 10c0/36940434596ef8beae97343d075f67b954439a254fa3bea4dc6dd1206cfa35be3aa81daedb88605040905136e091198a64de79eb225e13b8d8de226a74e00d1f + languageName: node + linkType: hard + "@smithy/types@npm:^4.3.1": version: 4.3.1 resolution: "@smithy/types@npm:4.3.1" @@ -4945,6 +5538,46 @@ __metadata: languageName: node linkType: hard +"@smithy/url-parser@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/url-parser@npm:4.0.4" + dependencies: + "@smithy/querystring-parser": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/5f4649d9ff618c683e339fa826b1d722419bf8e20d72726fc5fe3cd479ec8c161d4b09b6e24e49b0143a6fb4f9a950d35410db1834e143c28e377b9c529a3657 + languageName: node + linkType: hard + +"@smithy/util-base64@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-base64@npm:4.0.0" + dependencies: + "@smithy/util-buffer-from": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/ad18ec66cc357c189eef358d96876b114faf7086b13e47e009b265d0ff80cec046052500489c183957b3a036768409acdd1a373e01074cc002ca6983f780cffc + languageName: node + linkType: hard + +"@smithy/util-body-length-browser@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-body-length-browser@npm:4.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/574a10934024a86556e9dcde1a9776170284326c3dfcc034afa128cc5a33c1c8179fca9cfb622ef8be5f2004316cc3f427badccceb943e829105536ec26306d9 + languageName: node + linkType: hard + +"@smithy/util-body-length-node@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-body-length-node@npm:4.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/e91fd3816767606c5f786166ada26440457fceb60f96653b3d624dcf762a8c650e513c275ff3f647cb081c63c283cc178853a7ed9aa224abc8ece4eeeef7a1dd + languageName: node + linkType: hard + "@smithy/util-buffer-from@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-buffer-from@npm:2.2.0" @@ -4965,6 +5598,54 @@ __metadata: languageName: node linkType: hard +"@smithy/util-config-provider@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-config-provider@npm:4.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/cd9498d5f77a73aadd575084bcb22d2bb5945bac4605d605d36f2efe3f165f2b60f4dc88b7a62c2ed082ffa4b2c2f19621d0859f18399edbc2b5988d92e4649f + languageName: node + linkType: hard + +"@smithy/util-defaults-mode-browser@npm:^4.0.23": + version: 4.0.23 + resolution: "@smithy/util-defaults-mode-browser@npm:4.0.23" + dependencies: + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + bowser: "npm:^2.11.0" + tslib: "npm:^2.6.2" + checksum: 10c0/97ee414cae037ad47a78022435890a281fd4fbfeb68af85c53790db0a703c252b1b42856b8afe4e88c407c3b1d5390108548e6aa7807d6b5130bf5f60f916323 + languageName: node + linkType: hard + +"@smithy/util-defaults-mode-node@npm:^4.0.23": + version: 4.0.23 + resolution: "@smithy/util-defaults-mode-node@npm:4.0.23" + dependencies: + "@smithy/config-resolver": "npm:^4.1.4" + "@smithy/credential-provider-imds": "npm:^4.0.6" + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/property-provider": "npm:^4.0.4" + "@smithy/smithy-client": "npm:^4.4.7" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/2b2a77a59f871bc2f1732dcccc1bb648b23e2559e362d12c6efa82dad6d50436c8ba3acfeb72cb1fcb460c277bdf0ec0724687a3433bf6e298b460e11b16c4f2 + languageName: node + linkType: hard + +"@smithy/util-endpoints@npm:^3.0.6": + version: 3.0.6 + resolution: "@smithy/util-endpoints@npm:3.0.6" + dependencies: + "@smithy/node-config-provider": "npm:^4.1.3" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/d7d583c73a0c1ce38188569616cd4d7c95c36c0393516117043962b932f8c743e8cd672d2edd23ea8a9da0e30b84ee0f0ced0709cc8024b70ea8e5f17f505811 + languageName: node + linkType: hard + "@smithy/util-hex-encoding@npm:^4.0.0": version: 4.0.0 resolution: "@smithy/util-hex-encoding@npm:4.0.0" @@ -4974,6 +5655,52 @@ __metadata: languageName: node linkType: hard +"@smithy/util-middleware@npm:^4.0.4": + version: 4.0.4 + resolution: "@smithy/util-middleware@npm:4.0.4" + dependencies: + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/39530add63ec13dac555846c30e98128316136f7f57bfd8fe876a8c15a7677cb64d0a33fd1f08b671096d769ab3f025d4d8c785a9d7a7cdf42fd0188236b0f32 + languageName: node + linkType: hard + +"@smithy/util-retry@npm:^4.0.6": + version: 4.0.6 + resolution: "@smithy/util-retry@npm:4.0.6" + dependencies: + "@smithy/service-error-classification": "npm:^4.0.6" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/b1d3a5875769300bb74d63243868eba8a8f3567a9b22776cfb11700cfdd10bf10b2ed96bffdc9527d9130daf1be2482ea9217e1865a94efed01fe66e688768f4 + languageName: node + linkType: hard + +"@smithy/util-stream@npm:^4.2.3": + version: 4.2.3 + resolution: "@smithy/util-stream@npm:4.2.3" + dependencies: + "@smithy/fetch-http-handler": "npm:^5.1.0" + "@smithy/node-http-handler": "npm:^4.1.0" + "@smithy/types": "npm:^4.3.1" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-buffer-from": "npm:^4.0.0" + "@smithy/util-hex-encoding": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/3321f944a36c7a9a8ef17f5c58b29ef06107c9bc682d7932f2ea9e1b6f839174d07d053e81285bad8b29c11848e799795e6c016648a6e3a8636d8acfe24183ef + languageName: node + linkType: hard + +"@smithy/util-uri-escape@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-uri-escape@npm:4.0.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/23984624060756adba8aa4ab1693fe6b387ee5064d8ec4dfd39bb5908c4ee8b9c3f2dc755da9b07505d8e3ce1338c1867abfa74158931e4728bf3cfcf2c05c3d + languageName: node + linkType: hard + "@smithy/util-utf8@npm:^2.0.0": version: 2.3.0 resolution: "@smithy/util-utf8@npm:2.3.0" @@ -4994,6 +5721,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-waiter@npm:^4.0.6": + version: 4.0.6 + resolution: "@smithy/util-waiter@npm:4.0.6" + dependencies: + "@smithy/abort-controller": "npm:^4.0.4" + "@smithy/types": "npm:^4.3.1" + tslib: "npm:^2.6.2" + checksum: 10c0/4027aed03515dfb627c09e0d490f001b912def1142865d0ec8de1fc0422e7c71e96df3efc7b92c7fdfff9030105b2b4213120506d064ad346cc79124708c1b17 + languageName: node + linkType: hard + "@standard-schema/spec@npm:^1.0.0": version: 1.0.0 resolution: "@standard-schema/spec@npm:1.0.0" @@ -5001,6 +5739,13 @@ __metadata: languageName: node linkType: hard +"@standard-schema/utils@npm:^0.3.0": + version: 0.3.0 + resolution: "@standard-schema/utils@npm:0.3.0" + checksum: 10c0/6eb74cd13e52d5fc74054df51e37d947ef53f3ab9e02c085665dcca3c38c60ece8d735cebbdf18fbb13c775fbcb9becb3f53109b0e092a63f0f7389ce0993fd0 + languageName: node + linkType: hard + "@strongtz/win32-arm64-msvc@npm:^0.4.7": version: 0.4.7 resolution: "@strongtz/win32-arm64-msvc@npm:0.4.7" @@ -5132,12 +5877,12 @@ __metadata: languageName: node linkType: hard -"@swc/plugin-styled-components@npm:^7.1.5": - version: 7.1.5 - resolution: "@swc/plugin-styled-components@npm:7.1.5" +"@swc/plugin-styled-components@npm:^8.0.4": + version: 8.0.4 + resolution: "@swc/plugin-styled-components@npm:8.0.4" dependencies: "@swc/counter": "npm:^0.1.3" - checksum: 10c0/abffb0030aeb65bd0ba5be62debd35588e621d50414bd882773d32d8b63b839083cc0c089b1311c84e2068df82d697206d254a1e72ebd1be7a86523dabab98a9 + checksum: 10c0/8c9c133c517133eb1d241cffb44a76bfb526a17c6de6d5d0ddaf9eb5181eebb4798d79e2852947f827c14768327b31d76a41e1f9ff1b4366b3cc7f8435d84b4b languageName: node linkType: hard @@ -5299,12 +6044,12 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.9.0": - version: 0.9.0 - resolution: "@tybys/wasm-util@npm:0.9.0" +"@tybys/wasm-util@npm:^0.10.0": + version: 0.10.0 + resolution: "@tybys/wasm-util@npm:0.10.0" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d + checksum: 10c0/044feba55c1e2af703aa4946139969badb183ce1a659a75ed60bc195a90e73a3f3fc53bcd643497c9954597763ddb051fec62f80962b2ca6fc716ba897dc696e languageName: node linkType: hard @@ -5811,12 +6556,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^22.7.5": - version: 22.14.1 - resolution: "@types/node@npm:22.14.1" +"@types/node@npm:*, @types/node@npm:>=13.7.0, @types/node@npm:^24.0.1": + version: 24.0.14 + resolution: "@types/node@npm:24.0.14" dependencies: - undici-types: "npm:~6.21.0" - checksum: 10c0/d49c4d00403b1c2348cf0701b505fd636d80aabe18102105998dc62fdd36dcaf911e73c7a868c48c21c1022b825c67b475b65b1222d84b704d8244d152bb7f86 + undici-types: "npm:~7.8.0" + checksum: 10c0/536b5a816554ad1522e9e0c1d517b317f8478798bd76a332d83690aa42b19b5b263eb295ee25f9d0badb430ee6e36412ee9070cb5e3359f6bdcf7e08f94302f1 languageName: node linkType: hard @@ -5830,11 +6575,11 @@ __metadata: linkType: hard "@types/node@npm:^22.7.7": - version: 22.15.3 - resolution: "@types/node@npm:22.15.3" + version: 22.16.4 + resolution: "@types/node@npm:22.16.4" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/2879f012d1aeba0bfdb5fed80d165f4f2cb3d1f2e1f98a24b18d4a211b4ace7d64bf2622784c78355982ffc1081ba79d0934efc2fb8353913e5871a63609661f + checksum: 10c0/a6e3f345c2d9656451ceac349e59c4cafa2b03f793acf3ab4f318fd90cee47d76c4fa79a7a08b8772978958a42fb03c8c71caa50c064b4e88613085dea287c2d languageName: node linkType: hard @@ -6141,9 +6886,9 @@ __metadata: languageName: node linkType: hard -"@uiw/codemirror-extensions-basic-setup@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.23.12" +"@uiw/codemirror-extensions-basic-setup@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.24.1" dependencies: "@codemirror/autocomplete": "npm:^6.0.0" "@codemirror/commands": "npm:^6.0.0" @@ -6160,13 +6905,13 @@ __metadata: "@codemirror/search": ">=6.0.0" "@codemirror/state": ">=6.0.0" "@codemirror/view": ">=6.0.0" - checksum: 10c0/54c0b5940c12a9186cae5ae8ae99333408e71a7c94d60ff79f11b2c72006d929ee0e19ac1fb7479eabedaa7fd60f5ace9b46474e15a3d806c4a882fbb5d642df + checksum: 10c0/ccf77d69af33b2013168412644d35131cc1a4b84f23d992b87d1de30eb88370d95bbdb88dee9bd2fbe90280877027092ad9f7077113383c9b5a99a29eb45b87e languageName: node linkType: hard -"@uiw/codemirror-extensions-langs@npm:^4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-extensions-langs@npm:4.23.12" +"@uiw/codemirror-extensions-langs@npm:^4.23.14": + version: 4.24.1 + resolution: "@uiw/codemirror-extensions-langs@npm:4.24.1" dependencies: "@codemirror/lang-angular": "npm:^0.1.0" "@codemirror/lang-cpp": "npm:^6.0.0" @@ -6198,372 +6943,372 @@ __metadata: peerDependencies: "@codemirror/language-data": ">=6.0.0" "@codemirror/legacy-modes": ">=6.0.0" - checksum: 10c0/e245ff5c1f1358fedfa7333ecad5bf6928bbba586ab4841b9b646a4bdb39345d58aa24e7f0d3fff60b3a4fdf31165ddba7a41655ade3750f77ee0a5cc4b08c60 + checksum: 10c0/97c2a7b7bbb2b05c7173bb911e0c32f65c07f18079d97dee32b808680c02923ea79d4cf615f232da4bffe2e65355eba7fb672f69d61c0216bbe828ba0c064ffa languageName: node linkType: hard -"@uiw/codemirror-theme-abcdef@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-abcdef@npm:4.23.12" +"@uiw/codemirror-theme-abcdef@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-abcdef@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/ce3f3b24e4ffb246b5bf9d1937e30b3c5e93e5e5d85a13bd347a0f3ec86ee2b275b9bc3c97f30bc65ebfadfbb64716187d0a9e5880743cfb4a4664f2af6ed83a + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/54ad71b6e5743347fa6ad69e170df2e8e7266a568a9c81456880a70fb253a13e1ec24be9dcd4d0a8b98587d308ea13559bb9615978f1231b19d6445632531c55 languageName: node linkType: hard -"@uiw/codemirror-theme-abyss@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-abyss@npm:4.23.12" +"@uiw/codemirror-theme-abyss@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-abyss@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/44a38721f6d3319f4879b291d05da96e15b669e51e369f88e178d4b3c5d6604d6b94bfe055b87ef4a6c7665cf6ee2c77b59f22ea906421b5eb9c2ee80b80f6f2 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/6de5010c4bc4ff44442917170784639d149a10bf9965542becc8d813fb7cd920a653d74ba546f58dcbb24077e080e5949288fef6bc16f2c81132dd37fabebdfa languageName: node linkType: hard -"@uiw/codemirror-theme-androidstudio@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-androidstudio@npm:4.23.12" +"@uiw/codemirror-theme-androidstudio@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-androidstudio@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/b05ecdd89291ae1715a7b26702682227d016fa23a34c713391d0c933479aa684965bd868b5a1055f347d6533a807da497d5b72d2e753b6489c08230f63230239 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/11f2dbd8718052126292e935b8ba18e22ae25ef6e22afa51f1f30447f992e90a4d3e045748137b07c147dabf60d351de518987acf3efa964e0e0d9d7efb04282 languageName: node linkType: hard -"@uiw/codemirror-theme-andromeda@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-andromeda@npm:4.23.12" +"@uiw/codemirror-theme-andromeda@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-andromeda@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/df4c81e2db0e668864576b1d9154a6b671f7edcff430cc46078fdde40855318c596f80d67c916c40c61c954d560c49aa67a257db60f70beb8b359ecf04c97f48 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/36ce11fd3784d27fbc30ab3ca9a5d0875f21677cc8afc9da363d887c52cbf952b1c9a0af9558972f8d09d57003829e8a41394f9de31f6f16fd5643a6550070c3 languageName: node linkType: hard -"@uiw/codemirror-theme-atomone@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-atomone@npm:4.23.12" +"@uiw/codemirror-theme-atomone@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-atomone@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/c539bff81359b4ce6ab5940bda7c59e0e4688c0c77a040f7931c45b4b8c6b49b1d0cc0d5549e73d031dc763e625e048ba7c1a05424890d4989e443497f6833a8 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/3835a7dd7ba72e3c80fd71fc2147a6622d86606e746bf136d96fc8382893e1492dd1dcfdeceffa1ce9329a00417817df41cb972b400d21156aa1a621df35a7e8 languageName: node linkType: hard -"@uiw/codemirror-theme-aura@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-aura@npm:4.23.12" +"@uiw/codemirror-theme-aura@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-aura@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/47c244c5e8b6d69270bac0fd3c62a58fb91554ebe366be5845c6244d931a50d55b57774fe47906e5be672645d9a0a648827e909d5d290f33161fb9e718667d97 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/482e6f3741c80933b7dc88768bbd0bf58a4acbb4897e570c31a78867303582caaf7d2295065112a295dbdafca8d0543e990e6c3bcaa9950f5a3c871239b4fbe6 languageName: node linkType: hard -"@uiw/codemirror-theme-basic@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-basic@npm:4.23.12" +"@uiw/codemirror-theme-basic@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-basic@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/76a8795fda5649a47329a0f7bae42d39ef841d62014517ba1a737fc69c70ac1ae48f426752e903ae2d964c96af8d3e336599ef88511915aa20e766333d51980e + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/e788e749f76d55d17a8f209c26d680c7b79bb32c3c02317dc9943006d45fa3ea1a3c3215f2385b1c3fc720ed246ff591eb5921f3fc4253ce3d2f1e3613148b74 languageName: node linkType: hard -"@uiw/codemirror-theme-bbedit@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-bbedit@npm:4.23.12" +"@uiw/codemirror-theme-bbedit@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-bbedit@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/98e2f33bc7e8d6043d82f72026a372869a154c9558393c233a9ec7b7221ca49cc0575fe40afa3e20631d0e893bbee68850339feea822789d6badc52a034262f5 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/62dee31355e9d74c4c1b04f38f3a084f897a87b9e8a87c003c43f233f8973b1eee8d1084c2a00789f089509df2ede6c8cdee4ee134def0fcacd1873675a1732d languageName: node linkType: hard -"@uiw/codemirror-theme-bespin@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-bespin@npm:4.23.12" +"@uiw/codemirror-theme-bespin@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-bespin@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/a1888e535d3ebc44a8c3a8b1f23c685b00271b6cc92f684d245584aca78fcf4a0bbe22979b4c8520756b8fc39dfebd723b68ed6e0c84d2b8aba9f21823f7ac8b + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/6e5e46ee967b6ceedb1503609a69d4614d35eb0ba95b8b9c97181612784ec45dd0f5d5eccad468ecd8962c33af92212e355135b2c38fdba9a3167649dbc0ab35 languageName: node linkType: hard -"@uiw/codemirror-theme-console@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-console@npm:4.23.12" +"@uiw/codemirror-theme-console@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-console@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/f7dc9b4c9186b4741479fd158eeb1bdc7c80ab22833850946a18a78b0b2f697870c8abed9f84949be8a6fc8e599d3ea21b3a06dd0db89337ad0b326e8fbc31cc + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/ebc60d2a251f72c1ee1a432da08a0f639b069cf3f1036b0aff61fdc47bb9905c7cc081f5d738dac6668a76061fb998c568fce0f878419fc797bbc44d7f84dd82 languageName: node linkType: hard -"@uiw/codemirror-theme-copilot@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-copilot@npm:4.23.12" +"@uiw/codemirror-theme-copilot@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-copilot@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/abbb5b1b7f36861e013ce72799aa8061b317e61b399e7d743ac7d618611a15832d32c9ddb4b5a54c1967295de92904c225a6d59db20ba40e6fbc939a9ba7b0d2 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/1927404ec9c14089e2f3cdb48cecdfc69b8d6d968000cd358fa04b501c127379f6192ec374ebf7465182c9254b5445f0b3d1ab9f7977c4f4de14081835f3efe4 languageName: node linkType: hard -"@uiw/codemirror-theme-darcula@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-darcula@npm:4.23.12" +"@uiw/codemirror-theme-darcula@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-darcula@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/938defbf79c37ac860649656f940d4f3c4d4312c822e6ce6556f3f081f0561f9cf70b649ce62f6687c61f2110c7c232ea2dae925d04d1a037acbf937296e0383 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/80209daf179226cf10d03bcc0adc7182d1bd4667a2de19ca1231134cdd2c2fb262195118077d54ee21b2dc09457382bbc2c4e20740a597dc82de735f7c7c0b96 languageName: node linkType: hard -"@uiw/codemirror-theme-dracula@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-dracula@npm:4.23.12" +"@uiw/codemirror-theme-dracula@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-dracula@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/4a386dde123980b4c391379eae7407d0a3755e4d5ebb8589530496cc0efe29770737192aca0a68ff26812e86e78c1ac8cbfb52612ec079090f5c2849570734b0 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/72d7166313165a08a5171cabd352776bef04d3a921dd65bdd5087f73260dcd098ac9acad839d960fddaf334289524fdca390adf73b39f1022fc61de6c8b210a3 languageName: node linkType: hard -"@uiw/codemirror-theme-duotone@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-duotone@npm:4.23.12" +"@uiw/codemirror-theme-duotone@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-duotone@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/754b64ee0406217ff78ae8fd66e9308e9ecc5dbb651e8a468e9d3488b4be038e9210300eefc35aab4e8b614cdeb2bbae2e58d24d27b1b12b6f8bbd535b3b76fd + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/fef4e63eceb3668a28c4581187cc7fc6478ebfa99d2ed8414824d708f87b7e55376aba3ad4260d1f1e0ee711485e4f6c16b93ec98abe15427777a6f9bee4b674 languageName: node linkType: hard -"@uiw/codemirror-theme-eclipse@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-eclipse@npm:4.23.12" +"@uiw/codemirror-theme-eclipse@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-eclipse@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/204181e747cc1a4d3162f8c8d6b7c3d3300ab7f98b9ac25f69ba7b30c4c9990f1bcf968d643e14d2ee408ec2fb428c74b52da5648af781d9bb3352f6551dcd84 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/853bfeb512528c3befd9a99c17e2d22a1e773b52f51d9bc67b4c5a2c60f7dfebe2c7599cefe3327f79410ff91fa7e69747759cb118fad0cf34a3e6ba7aa590dc languageName: node linkType: hard -"@uiw/codemirror-theme-github@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-github@npm:4.23.12" +"@uiw/codemirror-theme-github@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-github@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/ca7cd18ee2cbb3a1e74c98d3b731f7e364551ddc1a741ab622f74d2c5d76fd7f0f35749ca44948f89aa034d2f1612f6c446e4c756641468ae67c179e9694a057 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/e65c2858dc24467cd537a1b7e954cda3a7186f8d9f7458f0b08a87a9a93db308ad224ea8290ecfba3607f33a34383d88ff7b292dbfae02cefea9705b53bb49db languageName: node linkType: hard -"@uiw/codemirror-theme-gruvbox-dark@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-gruvbox-dark@npm:4.23.12" +"@uiw/codemirror-theme-gruvbox-dark@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-gruvbox-dark@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/d63168fd9819a33bf87d0ab0b135a291e250ce39a0a0351161119fe2110d84fbf1ee914acc14e0cf1e010ee15671dd8430114c21c3c68082fa4faf363ae81a12 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/9f39b3f519f028b05a2fa496947cfd6a2698e6ff8faf8d1a55ec59fe10e1ae353bcc7a95bc5f74fd3e8dc4ea77cc0ccfdbda060197e0a53c08f46be02f239d84 languageName: node linkType: hard -"@uiw/codemirror-theme-kimbie@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-kimbie@npm:4.23.12" +"@uiw/codemirror-theme-kimbie@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-kimbie@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/9d906ec2c9fc4ffaf883ac33f86256f1fd9637cd116b81fc36c9af46bf601d6fb4a928436faf3fd3c058e4ee45cd1c621c54e601283cb7dc7852a98966496f54 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/6150c677a06be55f63756df7d19435578b7c2c4dd4e5a6eb764f5d1e7b9444a5f1c0fd336f2d7465f989d205241d597a5115c7127306d7fcdd80e308bb498a0b languageName: node linkType: hard -"@uiw/codemirror-theme-material@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-material@npm:4.23.12" +"@uiw/codemirror-theme-material@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-material@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/cfd7924e383764a9c27aed8f950f6a4698b8dadd5384e52ace3627d7e0ea296c65f61ba2d7ba7b3c79d758a165d85e49dd4a134f612190f2015280ba145caffe + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/e3aa03fe21588ce46d8aba982a4dd2fcb1747542bddefab333e706277f7708104e73d411fc948c33c7c9e750f96cedf36351b4ae39b8e13701ebb1b0831de1c7 languageName: node linkType: hard -"@uiw/codemirror-theme-monokai-dimmed@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-monokai-dimmed@npm:4.23.12" +"@uiw/codemirror-theme-monokai-dimmed@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-monokai-dimmed@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/cbd996e3bd554d271bd3d84e1c74cf4068fce618da5a804bee3f95cacbbb20db2e5132c22838bf03c7ceb3fafe9ab8aa324c70256b73e742d696a2626a11d55f + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/8f22994c19b7ea8c11f35d22488c14a7b6dfa17b466194fa4b2aedf360c16d9ea06c929a68e15af98a5b79d42a25aec8ed862959993c9bf05dadef44dc1042b8 languageName: node linkType: hard -"@uiw/codemirror-theme-monokai@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-monokai@npm:4.23.12" +"@uiw/codemirror-theme-monokai@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-monokai@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/003e6ad69dadd26544da8a0e8217d7803ba7199e25598316b2370dc7169e7fd648c34edfd9edbd53991eae75b4af93ede1ff1c9b5665742451457b9194ef6928 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/5aab21bf872bc4ed31685463607e92012c4b845446075feb59ee6c877558a970a4740e779a128aad739d8484f9bc82d9f00dc2f8efbbf41c2e4e7411f6fb7754 languageName: node linkType: hard -"@uiw/codemirror-theme-noctis-lilac@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-noctis-lilac@npm:4.23.12" +"@uiw/codemirror-theme-noctis-lilac@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-noctis-lilac@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/262acfffe0d080fc73fc35491a466e8556c80cb392eaf5053b95ba541a435a1c105222bdcf1cef82f13cc96f7a2ad30d107ab056b096524ab73b3c02fb2e75f7 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/af2405a030ff5f4a4d5a96199773aabbbbaa00a3194cec07be5dfbd7083a4f6f616e986573eda2c4a2e427eeaf00b5ced5bc36f0b495dc7f362c0167daacb731 languageName: node linkType: hard -"@uiw/codemirror-theme-nord@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-nord@npm:4.23.12" +"@uiw/codemirror-theme-nord@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-nord@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/8370db92565fda4f765fecac021635ebcdf189fbe7f72309d1d1eca3612d81978430f37c136b165bb1075692077771515c2c59919675f85d4866517b86112269 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/9df69b47419fc225945e7559ff537b24cae16602b54bc401be0fcf5ca24a4ccf771a2df24122431561273270ee1ee19eb6b1b01314b78cf2c6a5dad1a5f9481c languageName: node linkType: hard -"@uiw/codemirror-theme-okaidia@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-okaidia@npm:4.23.12" +"@uiw/codemirror-theme-okaidia@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-okaidia@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/f4c220fdf5a385695bca7675f53005ffa7fc0fc96c62321c10e94c43f65acbbfbf040d0de2fd2ad2fc078617604f9dd67bec24e0193d6bd60eed001841cf0383 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/f0db718368efb6c07340316ff8e8744c64e88ac7972a8d56365845573a3f6d4b446b1f87b4c5d332e50920c06584e630923ba38a35f14670ec61883211d1b969 languageName: node linkType: hard -"@uiw/codemirror-theme-quietlight@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-quietlight@npm:4.23.12" +"@uiw/codemirror-theme-quietlight@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-quietlight@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/d0c53e6a13ada2cb27617d5c45a072b96625c2362ca3cdcb76596946ba46d1f35734728a7c9fb593ed8bf786da481d149a69d05a7bf8a85003fffbe41310271d + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/75ac9ba43c669e67041bc846e1da368334418db26ee9b90b17e7474383221eca1cc9f692d5ec4eaf0023215e127e1f72425db3ded51ff1589f4838ad97130c97 languageName: node linkType: hard -"@uiw/codemirror-theme-red@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-red@npm:4.23.12" +"@uiw/codemirror-theme-red@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-red@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/a2e28b156ae1c9ae8737c039171b62031067d254d404301fc4959c5d92232fce0fcaa9e25ab3ad5711e0c9676ebf0bc5a3b0b13b2a1c68b309a285a0af3373a5 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/786218e8525736a9a084ecd750a2435feb6b203e85089cf9c09ceb747fcf2ddc4cf06e83f44719b417b8a346cd2929d7064d56935e2d2f10c7d76834cd957edc languageName: node linkType: hard -"@uiw/codemirror-theme-solarized@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-solarized@npm:4.23.12" +"@uiw/codemirror-theme-solarized@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-solarized@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/097ec7c53258751fec48bbd7fb2ce29b75b9cffbde7c3bf173d301469c65c2b403bc3cb04ab02f6b8cbeddbed968e9df58df6df971a9b8708ab8d542e1ce524d + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/069aa7d5543b91e3285d36693811921bf60872d46ad72914da182cde23fdb6508863c33cca56818701c4aa094863d045096e56bd8afa35c2ee04f814480a6a7a languageName: node linkType: hard -"@uiw/codemirror-theme-sublime@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-sublime@npm:4.23.12" +"@uiw/codemirror-theme-sublime@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-sublime@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/119041020e4808a06be23109cd88463b894a7497a6b0a7c852e0fc306af7a1e2c9f62efc300dbd3f949726066377b3a64214b8633827fc0986db917735754071 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/9f8a45662cc00157798d8ae34e04142d6ca8fd97ea3cb1ced7a681db1f5343f0849ede61b7b79b07eb9a4fc85119b122153bffbe6972eeee60d40900f0d98469 languageName: node linkType: hard -"@uiw/codemirror-theme-tokyo-night-day@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-tokyo-night-day@npm:4.23.12" +"@uiw/codemirror-theme-tokyo-night-day@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-tokyo-night-day@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/dd744d70d6141be978cc9ae4b4e31e0c2f211c1c7d96a8868063aedd15bd46cb76de15e74cf7ee9646e88b53378da87b05f04081757730af533fa9a8b980e98b + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/721f7f84b5952a5d73511bd5b485df382541abb579ad37034c814adc99d7f16a7af1e58670d748ded334ab9ac155bcaaf51292b0b6305bf6b60510555b20a841 languageName: node linkType: hard -"@uiw/codemirror-theme-tokyo-night-storm@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-tokyo-night-storm@npm:4.23.12" +"@uiw/codemirror-theme-tokyo-night-storm@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-tokyo-night-storm@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/a6035caa84332b9b22c18551d6417369cfc32f1d6d61fd855929ad285051f7ae7c4b1df68cd19d1de7429aa0744452a6967f4d9ee11632b5e927e37ec877acf5 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/d323ccccdccad4c0fc05e59b42a625baca63e181469e46e2de9e629d9dd1c184630792ac5338a585be411254e40aa60192956c553a256ae259554065af9c1b83 languageName: node linkType: hard -"@uiw/codemirror-theme-tokyo-night@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-tokyo-night@npm:4.23.12" +"@uiw/codemirror-theme-tokyo-night@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-tokyo-night@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/1e59c6e82c6870e0e4fa09eb3470b95d222eb814e99b8623a7774d892042a4e398dcbfa934027970928f3a552fc4449cc06fbfcb70ba1feb341e39c78f197643 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/822c7b224e975026a8e8a8e9f6944bc3bf72c3d74ef49415a9c7ce1b727a796dbbe9baa67df5c7befbbca85cf7197b204fb2cb150d163db3c26eb991e2c1a4fe languageName: node linkType: hard -"@uiw/codemirror-theme-tomorrow-night-blue@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-tomorrow-night-blue@npm:4.23.12" +"@uiw/codemirror-theme-tomorrow-night-blue@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-tomorrow-night-blue@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/caaaa61c7a22c321fe929668b497c0f1683c81bff37cfd83a47e85f73ec0b6a88513a593269f6b2d346e8b0c4b44d7e050f48275b79f922fba47cb845f08b3c5 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/a8d979e05e39f21a7459b746206879838399cb379296f1ee4cfa81b054c1861ca15e2df5b8f6f3cc328e4b5293c958e4adf38bc5d37826827e41e5eb7e91988d languageName: node linkType: hard -"@uiw/codemirror-theme-vscode@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-vscode@npm:4.23.12" +"@uiw/codemirror-theme-vscode@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-vscode@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/14e5f4d8fdddbbf2675c4a23d0294c0d973646a33af957dbf8e7b409f3572cf0aef852a91726067442c23530c0432e2d21ea2aeea2f525d2fd98246bb7a47502 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/6712d2eab8da332624bab08ffca6af4c25d733a074e99f86ca03e979ff0c6a5a3905276aa7f80926a1d7fe63f0f134500a0faaa6e44c6740289f554549e913d7 languageName: node linkType: hard -"@uiw/codemirror-theme-white@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-white@npm:4.23.12" +"@uiw/codemirror-theme-white@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-white@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/f4caccd4825b523c5117191104bcdeed4253a4465d2fa866834226544b088b78e4fb7f59bb5c700eddea582874b3a8b3ca8fd2696d478db458c020e304a183e1 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/023eeb297532ec16351d052db5b48d4651d0118cc244fb53a9a2abc288e756a732da090ac7179565aeec4a33e37b9c9e675f5a910691fa66574d3d0fae6bd3a0 languageName: node linkType: hard -"@uiw/codemirror-theme-xcode@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-theme-xcode@npm:4.23.12" +"@uiw/codemirror-theme-xcode@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-theme-xcode@npm:4.24.1" dependencies: - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/19bcf318cf64d3a9cafb1d2ee78317bc2555687ccdd6db1803afe5a931c2632e28ea89ce087b170e438dd3ee7a9874dd00edf7ab3ea1a8e5727843fe29c9df19 + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/1eebe6d63f789edc18c80a87639b7e3034fedb9a5186901a5cf836796c607dca6dfab3c21e72202526c9a30a819166237cf6c9685cb8fbb99ebcd587633fa722 languageName: node linkType: hard -"@uiw/codemirror-themes-all@npm:^4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-themes-all@npm:4.23.12" +"@uiw/codemirror-themes-all@npm:^4.23.14": + version: 4.24.1 + resolution: "@uiw/codemirror-themes-all@npm:4.24.1" dependencies: - "@uiw/codemirror-theme-abcdef": "npm:4.23.12" - "@uiw/codemirror-theme-abyss": "npm:4.23.12" - "@uiw/codemirror-theme-androidstudio": "npm:4.23.12" - "@uiw/codemirror-theme-andromeda": "npm:4.23.12" - "@uiw/codemirror-theme-atomone": "npm:4.23.12" - "@uiw/codemirror-theme-aura": "npm:4.23.12" - "@uiw/codemirror-theme-basic": "npm:4.23.12" - "@uiw/codemirror-theme-bbedit": "npm:4.23.12" - "@uiw/codemirror-theme-bespin": "npm:4.23.12" - "@uiw/codemirror-theme-console": "npm:4.23.12" - "@uiw/codemirror-theme-copilot": "npm:4.23.12" - "@uiw/codemirror-theme-darcula": "npm:4.23.12" - "@uiw/codemirror-theme-dracula": "npm:4.23.12" - "@uiw/codemirror-theme-duotone": "npm:4.23.12" - "@uiw/codemirror-theme-eclipse": "npm:4.23.12" - "@uiw/codemirror-theme-github": "npm:4.23.12" - "@uiw/codemirror-theme-gruvbox-dark": "npm:4.23.12" - "@uiw/codemirror-theme-kimbie": "npm:4.23.12" - "@uiw/codemirror-theme-material": "npm:4.23.12" - "@uiw/codemirror-theme-monokai": "npm:4.23.12" - "@uiw/codemirror-theme-monokai-dimmed": "npm:4.23.12" - "@uiw/codemirror-theme-noctis-lilac": "npm:4.23.12" - "@uiw/codemirror-theme-nord": "npm:4.23.12" - "@uiw/codemirror-theme-okaidia": "npm:4.23.12" - "@uiw/codemirror-theme-quietlight": "npm:4.23.12" - "@uiw/codemirror-theme-red": "npm:4.23.12" - "@uiw/codemirror-theme-solarized": "npm:4.23.12" - "@uiw/codemirror-theme-sublime": "npm:4.23.12" - "@uiw/codemirror-theme-tokyo-night": "npm:4.23.12" - "@uiw/codemirror-theme-tokyo-night-day": "npm:4.23.12" - "@uiw/codemirror-theme-tokyo-night-storm": "npm:4.23.12" - "@uiw/codemirror-theme-tomorrow-night-blue": "npm:4.23.12" - "@uiw/codemirror-theme-vscode": "npm:4.23.12" - "@uiw/codemirror-theme-white": "npm:4.23.12" - "@uiw/codemirror-theme-xcode": "npm:4.23.12" - "@uiw/codemirror-themes": "npm:4.23.12" - checksum: 10c0/bf00c67f5cb50b8fa7243cf998ae900efa232b42eaedf32d179cce27289c0c70f1510f06f5f3b2b5993bd8fd00f1c0029209c46a668c70a89c12455239cde329 + "@uiw/codemirror-theme-abcdef": "npm:4.24.1" + "@uiw/codemirror-theme-abyss": "npm:4.24.1" + "@uiw/codemirror-theme-androidstudio": "npm:4.24.1" + "@uiw/codemirror-theme-andromeda": "npm:4.24.1" + "@uiw/codemirror-theme-atomone": "npm:4.24.1" + "@uiw/codemirror-theme-aura": "npm:4.24.1" + "@uiw/codemirror-theme-basic": "npm:4.24.1" + "@uiw/codemirror-theme-bbedit": "npm:4.24.1" + "@uiw/codemirror-theme-bespin": "npm:4.24.1" + "@uiw/codemirror-theme-console": "npm:4.24.1" + "@uiw/codemirror-theme-copilot": "npm:4.24.1" + "@uiw/codemirror-theme-darcula": "npm:4.24.1" + "@uiw/codemirror-theme-dracula": "npm:4.24.1" + "@uiw/codemirror-theme-duotone": "npm:4.24.1" + "@uiw/codemirror-theme-eclipse": "npm:4.24.1" + "@uiw/codemirror-theme-github": "npm:4.24.1" + "@uiw/codemirror-theme-gruvbox-dark": "npm:4.24.1" + "@uiw/codemirror-theme-kimbie": "npm:4.24.1" + "@uiw/codemirror-theme-material": "npm:4.24.1" + "@uiw/codemirror-theme-monokai": "npm:4.24.1" + "@uiw/codemirror-theme-monokai-dimmed": "npm:4.24.1" + "@uiw/codemirror-theme-noctis-lilac": "npm:4.24.1" + "@uiw/codemirror-theme-nord": "npm:4.24.1" + "@uiw/codemirror-theme-okaidia": "npm:4.24.1" + "@uiw/codemirror-theme-quietlight": "npm:4.24.1" + "@uiw/codemirror-theme-red": "npm:4.24.1" + "@uiw/codemirror-theme-solarized": "npm:4.24.1" + "@uiw/codemirror-theme-sublime": "npm:4.24.1" + "@uiw/codemirror-theme-tokyo-night": "npm:4.24.1" + "@uiw/codemirror-theme-tokyo-night-day": "npm:4.24.1" + "@uiw/codemirror-theme-tokyo-night-storm": "npm:4.24.1" + "@uiw/codemirror-theme-tomorrow-night-blue": "npm:4.24.1" + "@uiw/codemirror-theme-vscode": "npm:4.24.1" + "@uiw/codemirror-theme-white": "npm:4.24.1" + "@uiw/codemirror-theme-xcode": "npm:4.24.1" + "@uiw/codemirror-themes": "npm:4.24.1" + checksum: 10c0/45f06821fc62e8e6718c3f3b917ea3b80032b45c8cdc39d390d215483d98cc4dee1b3a4ddb837d74ac2d8e76bb12c3c855956206e3e8806eb5dbea0f02ed740c languageName: node linkType: hard -"@uiw/codemirror-themes@npm:4.23.12": - version: 4.23.12 - resolution: "@uiw/codemirror-themes@npm:4.23.12" +"@uiw/codemirror-themes@npm:4.24.1": + version: 4.24.1 + resolution: "@uiw/codemirror-themes@npm:4.24.1" dependencies: "@codemirror/language": "npm:^6.0.0" "@codemirror/state": "npm:^6.0.0" @@ -6572,19 +7317,19 @@ __metadata: "@codemirror/language": ">=6.0.0" "@codemirror/state": ">=6.0.0" "@codemirror/view": ">=6.0.0" - checksum: 10c0/9b7f693f5e854c03e08533debb2931b143fedd3c131d90494649237ca6a2f82375a9053ab4a3980c0d25149908b94c1d4e314588d24708f3a106281af22f3904 + checksum: 10c0/0cfdf45fd5d2251faea226dfcf4c32f17197a9fb0966e91370be88e085a3baaa7a9d4c42475ed8f800c5be86b4d01bbbc80040d52a5770860518ea490fb2e2a6 languageName: node linkType: hard -"@uiw/react-codemirror@npm:^4.23.12": - version: 4.23.12 - resolution: "@uiw/react-codemirror@npm:4.23.12" +"@uiw/react-codemirror@npm:^4.23.14": + version: 4.24.1 + resolution: "@uiw/react-codemirror@npm:4.24.1" dependencies: "@babel/runtime": "npm:^7.18.6" "@codemirror/commands": "npm:^6.1.0" "@codemirror/state": "npm:^6.1.1" "@codemirror/theme-one-dark": "npm:^6.0.0" - "@uiw/codemirror-extensions-basic-setup": "npm:4.23.12" + "@uiw/codemirror-extensions-basic-setup": "npm:4.24.1" codemirror: "npm:^6.0.0" peerDependencies: "@babel/runtime": ">=7.11.0" @@ -6594,7 +7339,7 @@ __metadata: codemirror: ">=6.0.0" react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/c568beb0b94a00efdc42bc21a461d8147be3ff8c93179ec947d99ce3c5984c142cf3445e19ce04edd94602b5081adc07d8a0670cc5ad58c58ffdd5f69ab2cb68 + checksum: 10c0/644cfa64d9a8cf08c2b0ee3d23c56c9afc07664bdfbe01e0bb5cebe34ba61f17df5130511c16678bff788b81e3c739a73a1e31c21c58f8d002083d369a94a3c9 languageName: node linkType: hard @@ -6605,7 +7350,7 @@ __metadata: languageName: node linkType: hard -"@vitejs/plugin-react-swc@npm:^3.9.0": +"@vitejs/plugin-react-swc@npm:^3.10.2": version: 3.10.2 resolution: "@vitejs/plugin-react-swc@npm:3.10.2" dependencies: @@ -6927,7 +7672,7 @@ __metadata: "@reduxjs/toolkit": "npm:^2.2.5" "@shikijs/markdown-it": "npm:^3.7.0" "@strongtz/win32-arm64-msvc": "npm:^0.4.7" - "@swc/plugin-styled-components": "npm:^7.1.5" + "@swc/plugin-styled-components": "npm:^8.0.4" "@tanstack/react-query": "npm:^5.27.0" "@tanstack/react-virtual": "npm:^3.13.12" "@testing-library/dom": "npm:^10.4.0" @@ -6950,7 +7695,7 @@ __metadata: "@uiw/codemirror-extensions-langs": "npm:^4.23.14" "@uiw/codemirror-themes-all": "npm:^4.23.14" "@uiw/react-codemirror": "npm:^4.23.14" - "@vitejs/plugin-react-swc": "npm:^3.9.0" + "@vitejs/plugin-react-swc": "npm:^3.10.2" "@vitest/browser": "npm:^3.1.4" "@vitest/coverage-v8": "npm:^3.1.4" "@vitest/ui": "npm:^3.1.4" @@ -7609,13 +8354,13 @@ __metadata: languageName: node linkType: hard -"ast-kit@npm:^2.1.0": - version: 2.1.0 - resolution: "ast-kit@npm:2.1.0" +"ast-kit@npm:^2.1.1": + version: 2.1.1 + resolution: "ast-kit@npm:2.1.1" dependencies: - "@babel/parser": "npm:^7.27.3" + "@babel/parser": "npm:^7.27.7" pathe: "npm:^2.0.3" - checksum: 10c0/67246f34745f40b6a5bee2467a1a00f7f006a051f80d7cda7e3b7fe5f7d7a1f262521b72643fcbffb21d33f36aa59868636229a769b2802355d687815ad7b13d + checksum: 10c0/2afbf21d88cbe74a6a1d2571e257a684231f0d27be6512a08ad2bd2e410fb1c946dfac9ad8ad736015bcc83328c9c32e169ee47d2bd1aadb6cc548f0450d9e62 languageName: node linkType: hard @@ -7690,6 +8435,15 @@ __metadata: languageName: node linkType: hard +"available-typed-arrays@npm:^1.0.7": + version: 1.0.7 + resolution: "available-typed-arrays@npm:1.0.7" + dependencies: + possible-typed-array-names: "npm:^1.0.0" + checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 + languageName: node + linkType: hard + "aws4fetch@npm:^1.0.20": version: 1.0.20 resolution: "aws4fetch@npm:1.0.20" @@ -7794,10 +8548,10 @@ __metadata: languageName: node linkType: hard -"birpc@npm:^2.4.0": - version: 2.4.0 - resolution: "birpc@npm:2.4.0" - checksum: 10c0/6ecda217b540189221913f215055baf4f10f264a1a8f0000ef6db3ecb0ccc5e4fde135b5f0719c389f1a593e64af3041404019711225ab31badf23c2a98d7778 +"birpc@npm:^2.5.0": + version: 2.5.0 + resolution: "birpc@npm:2.5.0" + checksum: 10c0/8caed5ad86b71e0b4af6a1c5e8ed006f451d3b378ce52c2fa613fe68f15bb3df1357ad69f7fb0251e4261f39b2926995e34307ac06397f993665b16ba569dc54 languageName: node linkType: hard @@ -8182,10 +8936,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001688": - version: 1.0.30001714 - resolution: "caniuse-lite@npm:1.0.30001714" - checksum: 10c0/b0e3372f018c5c177912f0282af98049057d83c80846293a4e3df728644a622db42a9e8971d6b7708d76e0fd4e9f6d5ce93802cf4e6818de80fdf371dc0f6a06 +"caniuse-lite@npm:^1.0.30001726": + version: 1.0.30001727 + resolution: "caniuse-lite@npm:1.0.30001727" + checksum: 10c0/f0a441c05d8925d728c2d02ce23b001935f52183a3bf669556f302568fe258d1657940c7ac0b998f92bc41383e185b390279a7d779e6d96a2b47881f56400221 languageName: node linkType: hard @@ -8478,6 +9232,33 @@ __metadata: languageName: node linkType: hard +"code-inspector-core@npm:0.20.17": + version: 0.20.17 + resolution: "code-inspector-core@npm:0.20.17" + dependencies: + "@vue/compiler-dom": "npm:^3.5.13" + chalk: "npm:^4.1.1" + dotenv: "npm:^16.1.4" + launch-ide: "npm:1.0.8" + portfinder: "npm:^1.0.28" + checksum: 10c0/8aecb32eab13aabd299c16e2e25826a78072c2ea15be7a1a3736382e90555c675b39921f5b265b366246ef19c5461aec6a29d93defc85dddf71358ca119ab16f + languageName: node + linkType: hard + +"code-inspector-plugin@npm:^0.20.14": + version: 0.20.17 + resolution: "code-inspector-plugin@npm:0.20.17" + dependencies: + chalk: "npm:4.1.1" + code-inspector-core: "npm:0.20.17" + dotenv: "npm:^16.3.1" + esbuild-code-inspector-plugin: "npm:0.20.17" + vite-code-inspector-plugin: "npm:0.20.17" + webpack-code-inspector-plugin: "npm:0.20.17" + checksum: 10c0/16b53844190a1840e025e49959510f491181d66b8d00e7cfbc7cc1ea58a282f3bf680854af4729fd01c88c134da366221203772aae61adc9999f885410574e89 + languageName: node + linkType: hard + "code-point-at@npm:^1.0.0": version: 1.1.0 resolution: "code-point-at@npm:1.1.0" @@ -9373,9 +10154,9 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.0.0, 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.4.0": - version: 4.4.0 - resolution: "debug@npm:4.4.0" +"debug@npm:4, debug@npm:^4.0.0, 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: ms: "npm:^2.1.3" peerDependenciesMeta: @@ -9394,18 +10175,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:^4.4.1": - version: 4.4.1 - resolution: "debug@npm:4.4.1" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 - languageName: node - linkType: hard - "decamelize@npm:1.2.0": version: 1.2.0 resolution: "decamelize@npm:1.2.0" @@ -9898,10 +10667,10 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:^16.3.0, dotenv@npm:^16.4.5": - version: 16.5.0 - resolution: "dotenv@npm:16.5.0" - checksum: 10c0/5bc94c919fbd955bf0ba44d33922a1e93d1078e64a1db5c30faeded1d996e7a83c55332cb8ea4fae5a9ca4d0be44cbceb95c5811e70f9f095298df09d1997dd9 +"dotenv@npm:^16.1.4, dotenv@npm:^16.3.0, dotenv@npm:^16.3.1, dotenv@npm:^16.4.5": + version: 16.6.1 + resolution: "dotenv@npm:16.6.1" + checksum: 10c0/15ce56608326ea0d1d9414a5c8ee6dcf0fffc79d2c16422b4ac2268e7e2d76ff5a572d37ffe747c377de12005f14b3cc22361e79fc7f1061cce81f77d2c973dc languageName: node linkType: hard @@ -10284,95 +11053,18 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.25.0": - version: 0.25.2 - resolution: "esbuild@npm:0.25.2" +"esbuild-code-inspector-plugin@npm:0.20.17": + version: 0.20.17 + resolution: "esbuild-code-inspector-plugin@npm:0.20.17" dependencies: - "@esbuild/aix-ppc64": "npm:0.25.2" - "@esbuild/android-arm": "npm:0.25.2" - "@esbuild/android-arm64": "npm:0.25.2" - "@esbuild/android-x64": "npm:0.25.2" - "@esbuild/darwin-arm64": "npm:0.25.2" - "@esbuild/darwin-x64": "npm:0.25.2" - "@esbuild/freebsd-arm64": "npm:0.25.2" - "@esbuild/freebsd-x64": "npm:0.25.2" - "@esbuild/linux-arm": "npm:0.25.2" - "@esbuild/linux-arm64": "npm:0.25.2" - "@esbuild/linux-ia32": "npm:0.25.2" - "@esbuild/linux-loong64": "npm:0.25.2" - "@esbuild/linux-mips64el": "npm:0.25.2" - "@esbuild/linux-ppc64": "npm:0.25.2" - "@esbuild/linux-riscv64": "npm:0.25.2" - "@esbuild/linux-s390x": "npm:0.25.2" - "@esbuild/linux-x64": "npm:0.25.2" - "@esbuild/netbsd-arm64": "npm:0.25.2" - "@esbuild/netbsd-x64": "npm:0.25.2" - "@esbuild/openbsd-arm64": "npm:0.25.2" - "@esbuild/openbsd-x64": "npm:0.25.2" - "@esbuild/sunos-x64": "npm:0.25.2" - "@esbuild/win32-arm64": "npm:0.25.2" - "@esbuild/win32-ia32": "npm:0.25.2" - "@esbuild/win32-x64": "npm:0.25.2" - dependenciesMeta: - "@esbuild/aix-ppc64": - optional: true - "@esbuild/android-arm": - optional: true - "@esbuild/android-arm64": - optional: true - "@esbuild/android-x64": - optional: true - "@esbuild/darwin-arm64": - optional: true - "@esbuild/darwin-x64": - optional: true - "@esbuild/freebsd-arm64": - optional: true - "@esbuild/freebsd-x64": - optional: true - "@esbuild/linux-arm": - optional: true - "@esbuild/linux-arm64": - optional: true - "@esbuild/linux-ia32": - optional: true - "@esbuild/linux-loong64": - optional: true - "@esbuild/linux-mips64el": - optional: true - "@esbuild/linux-ppc64": - optional: true - "@esbuild/linux-riscv64": - optional: true - "@esbuild/linux-s390x": - optional: true - "@esbuild/linux-x64": - optional: true - "@esbuild/netbsd-arm64": - optional: true - "@esbuild/netbsd-x64": - optional: true - "@esbuild/openbsd-arm64": - optional: true - "@esbuild/openbsd-x64": - optional: true - "@esbuild/sunos-x64": - optional: true - "@esbuild/win32-arm64": - optional: true - "@esbuild/win32-ia32": - optional: true - "@esbuild/win32-x64": - optional: true - bin: - esbuild: bin/esbuild - checksum: 10c0/87ce0b78699c4d192b8cf7e9b688e9a0da10e6f58ff85a368bf3044ca1fa95626c98b769b5459352282e0065585b6f994a5e6699af5cccf9d31178960e2b58fd + code-inspector-core: "npm:0.20.17" + checksum: 10c0/184b3450476bddba640e9a1b0b49bff435e1ffc91e3ef92ffb71344f3f1e8fbc3d9e80a65d384da9989f35d36a434c34253b0b4d8660e4660da09f22060e5faf languageName: node linkType: hard -"esbuild@npm:^0.25.1": - version: 0.25.3 - resolution: "esbuild@npm:0.25.3" +"esbuild@npm:^0.25.0, esbuild@npm:^0.25.1": + version: 0.25.6 + resolution: "esbuild@npm:0.25.6" dependencies: "@esbuild/aix-ppc64": "npm:0.25.6" "@esbuild/android-arm": "npm:0.25.6" @@ -10948,14 +11640,7 @@ __metadata: languageName: node linkType: hard -"eventsource-parser@npm:^3.0.1": - version: 3.0.1 - resolution: "eventsource-parser@npm:3.0.1" - checksum: 10c0/146ce5ae8325d07645a49bbc54d7ac3aef42f5138bfbbe83d5cf96293b50eab2219926d6cf41eed0a0f90132578089652ba9286a19297662900133a9da6c2fd0 - languageName: node - linkType: hard - -"eventsource-parser@npm:^3.0.3": +"eventsource-parser@npm:^3.0.0, eventsource-parser@npm:^3.0.1, eventsource-parser@npm:^3.0.3": version: 3.0.3 resolution: "eventsource-parser@npm:3.0.3" checksum: 10c0/2594011630efba56cafafc8ed6bd9a50db8f6d5dd62089b0950346e7961828c16efe07a588bdea3ba79e568fd9246c8163824a2ffaade767e1fdb2270c1fae0b @@ -11160,9 +11845,9 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:^4.5.0, fast-xml-parser@npm:^4.5.1": - version: 4.5.3 - resolution: "fast-xml-parser@npm:4.5.3" +"fast-xml-parser@npm:5.2.5, fast-xml-parser@npm:^5.2.0": + version: 5.2.5 + resolution: "fast-xml-parser@npm:5.2.5" dependencies: strnum: "npm:^2.1.0" bin: @@ -11437,15 +12122,15 @@ __metadata: linkType: hard "form-data@npm:^4.0.0": - version: 4.0.3 - resolution: "form-data@npm:4.0.3" + version: 4.0.4 + resolution: "form-data@npm:4.0.4" dependencies: asynckit: "npm:^0.4.0" combined-stream: "npm:^1.0.8" es-set-tostringtag: "npm:^2.1.0" hasown: "npm:^2.0.2" mime-types: "npm:^2.1.12" - checksum: 10c0/f0cf45873d600110b5fadf5804478377694f73a1ed97aaa370a74c90cebd7fe6e845a081171668a5476477d0d55a73a4e03d6682968fa8661eac2a81d651fcdb + checksum: 10c0/373525a9a034b9d57073e55eab79e501a714ffac02e7a9b01be1c820780652b16e4101819785e1e18f8d98f0aee866cc654d660a435c378e16a72f2e7cac9695 languageName: node linkType: hard @@ -14447,13 +15132,13 @@ __metadata: languageName: node linkType: hard -"mermaid@npm:^11.6.0": - version: 11.6.0 - resolution: "mermaid@npm:11.6.0" +"mermaid@npm:^11.7.0": + version: 11.9.0 + resolution: "mermaid@npm:11.9.0" dependencies: "@braintree/sanitize-url": "npm:^7.0.4" "@iconify/utils": "npm:^2.1.33" - "@mermaid-js/parser": "npm:^0.4.0" + "@mermaid-js/parser": "npm:^0.6.2" "@types/d3": "npm:^7.4.3" cytoscape: "npm:^3.29.3" cytoscape-cose-bilkent: "npm:^4.1.0" @@ -14462,8 +15147,8 @@ __metadata: d3-sankey: "npm:^0.12.3" dagre-d3-es: "npm:7.0.11" dayjs: "npm:^1.11.13" - dompurify: "npm:^3.2.4" - katex: "npm:^0.16.9" + dompurify: "npm:^3.2.5" + katex: "npm:^0.16.22" khroma: "npm:^2.1.0" lodash-es: "npm:^4.17.21" marked: "npm:^16.0.0" @@ -14471,7 +15156,7 @@ __metadata: stylis: "npm:^4.3.6" ts-dedent: "npm:^2.2.0" uuid: "npm:^11.1.0" - checksum: 10c0/69709ac58992ed532e1173e327b75f4135e226b7b9f61c15a759266a323b726ce429eef554357be1fc68463597a8111e9be4f7f013a6780b558e88ea3bda46b6 + checksum: 10c0/f3420d0fd8919b31e36354cbf0ddd26398898c960e0bcb0e52aceae657245fcf1e5fe3e28651bff83c9b1fb8b6d3e07fc8b26d111ef3159fcf780d53ce40a437 languageName: node linkType: hard @@ -15417,6 +16102,15 @@ __metadata: languageName: node linkType: hard +"nan@npm:~2.10.0": + version: 2.10.0 + resolution: "nan@npm:2.10.0" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/9d3a83704b4f89473c01485eae527f3e78def4f098b140c9d1164cd539183b283fb6f7b3536a298dc21aa8b6b4e597e01b0dfa939d591205a80a63a8274f0edd + languageName: node + linkType: hard + "nanoid@npm:3.3.6": version: 3.3.6 resolution: "nanoid@npm:3.3.6" @@ -15426,7 +16120,7 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.7, nanoid@npm:^3.3.8": +"nanoid@npm:^3.3.11, nanoid@npm:^3.3.7, nanoid@npm:^3.3.8": version: 3.3.11 resolution: "nanoid@npm:3.3.11" bin: @@ -15574,6 +16268,22 @@ __metadata: languageName: node linkType: hard +"node-addon-api@npm:^8.4.0": + version: 8.5.0 + resolution: "node-addon-api@npm:8.5.0" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/e4de0b4e70998fed7ef41933946f60565fc3a17cb83b7d626a0c0bb1f734cf7852e0e596f12681e7c8ed424163ee3cdbb4f0abaa9cc269d03f48834c263ba162 + languageName: node + linkType: hard + +"node-api-headers@npm:^1.0.1": + version: 1.5.0 + resolution: "node-api-headers@npm:1.5.0" + checksum: 10c0/e8dfe99e8e3ca92cd5d37989413dfc96551e8f7883110b948917dad07e554cfbf1119130e96d0167f5cb5a05f651a4ac735402a305ff25d9ace422a2e429ae3b + languageName: node + linkType: hard + "node-api-version@npm:^0.2.0": version: 0.2.1 resolution: "node-api-version@npm:0.2.1" @@ -16669,6 +17379,23 @@ __metadata: languageName: node linkType: hard +"portfinder@npm:^1.0.28": + version: 1.0.37 + resolution: "portfinder@npm:1.0.37" + dependencies: + async: "npm:^3.2.6" + debug: "npm:^4.3.6" + checksum: 10c0/eabd2764ced7bb0e6da7a1382bb77f9531309f7782fb6169021d05eecff0c0a17958bcf87573047a164dd0bb23f294d5d74b08ffe58c47005c28ed92eea9a6a7 + languageName: node + linkType: hard + +"possible-typed-array-names@npm:^1.0.0": + version: 1.1.0 + resolution: "possible-typed-array-names@npm:1.1.0" + checksum: 10c0/c810983414142071da1d644662ce4caebce890203eb2bc7bf119f37f3fe5796226e117e6cca146b521921fa6531072674174a3325066ac66fce089a53e1e5196 + languageName: node + linkType: hard + "postcss-value-parser@npm:^4.0.2": version: 4.2.0 resolution: "postcss-value-parser@npm:4.2.0" @@ -17491,9 +18218,9 @@ __metadata: languageName: node linkType: hard -"rc-virtual-list@npm:^3.14.2, rc-virtual-list@npm:^3.5.1, rc-virtual-list@npm:^3.5.2": - version: 3.18.5 - resolution: "rc-virtual-list@npm:3.18.5" +"rc-virtual-list@npm:^3.14.2, rc-virtual-list@npm:^3.18.6, rc-virtual-list@npm:^3.5.1, rc-virtual-list@npm:^3.5.2": + version: 3.19.1 + resolution: "rc-virtual-list@npm:3.19.1" dependencies: "@babel/runtime": "npm:^7.20.0" classnames: "npm:^2.2.6" @@ -17502,22 +18229,7 @@ __metadata: peerDependencies: react: ">=16.9.0" react-dom: ">=16.9.0" - checksum: 10c0/1d6e0baba24cebcbf59a55cce196fffc575dceeec8b429fe4c82ac258b47a6ff23ce605b2e22a9803a5849363f4d4ebd279d4597e67fdd17cb8b5ca9125b9ed9 - languageName: node - linkType: hard - -"rc-virtual-list@npm:^3.18.6": - version: 3.18.6 - resolution: "rc-virtual-list@npm:3.18.6" - dependencies: - "@babel/runtime": "npm:^7.20.0" - classnames: "npm:^2.2.6" - rc-resize-observer: "npm:^1.0.0" - rc-util: "npm:^5.36.0" - peerDependencies: - react: ">=16.9.0" - react-dom: ">=16.9.0" - checksum: 10c0/689f22ea64827c65d9fa32e1b6d52affcebdfb556dc27913b9d839600683aca327d2f5a1f18f11d16a2dee9029d991e69d2d3e87652c2c6d3ca804a64a8e61f9 + checksum: 10c0/207d1682aff92d9f40efe6467638bbe22f9f5ad3d7570231b6a5a59cee416d28e134276c43aa71e517fe77f296720a4edcb4ee01a8623591368026942816d03f languageName: node linkType: hard @@ -18236,14 +18948,14 @@ __metadata: linkType: hard "rolldown-plugin-dts@npm:^0.13.12": - version: 0.13.12 - resolution: "rolldown-plugin-dts@npm:0.13.12" + version: 0.13.14 + resolution: "rolldown-plugin-dts@npm:0.13.14" dependencies: - "@babel/generator": "npm:^7.27.5" - "@babel/parser": "npm:^7.27.5" - "@babel/types": "npm:^7.27.6" - ast-kit: "npm:^2.1.0" - birpc: "npm:^2.4.0" + "@babel/generator": "npm:^7.28.0" + "@babel/parser": "npm:^7.28.0" + "@babel/types": "npm:^7.28.1" + ast-kit: "npm:^2.1.1" + birpc: "npm:^2.5.0" debug: "npm:^4.4.1" dts-resolver: "npm:^2.1.1" get-tsconfig: "npm:^4.10.1" @@ -18251,7 +18963,7 @@ __metadata: "@typescript/native-preview": ">=7.0.0-dev.20250601.1" rolldown: ^1.0.0-beta.9 typescript: ^5.0.0 - vue-tsc: ~2.2.0 + vue-tsc: ^2.2.0 || ^3.0.0 peerDependenciesMeta: "@typescript/native-preview": optional: true @@ -18259,7 +18971,7 @@ __metadata: optional: true vue-tsc: optional: true - checksum: 10c0/811d1bef1649119895aaf7f87f0a23bd73438680d839c9c8331791995184ae4983deee67ed9b21abfc5521f4bda704f3ebbb84fda2259d6789d15d0c4411e36f + checksum: 10c0/f09da3990a6be11aed07db121439db907251578cd51bff69479186a056524f07a7a4d5b4056ff6bf884c1fdbacc655fcb0c956753f9bf8a73f2c885731bc2e77 languageName: node linkType: hard @@ -18620,15 +19332,6 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.7.2": - version: 7.7.2 - resolution: "semver@npm:7.7.2" - bin: - semver: bin/semver.js - checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea - languageName: node - linkType: hard - "send@npm:^1.1.0, send@npm:^1.2.0": version: 1.2.0 resolution: "send@npm:1.2.0" @@ -18727,19 +19430,19 @@ __metadata: languageName: node linkType: hard -"shiki@npm:3.4.2, shiki@npm:^3.4.2": - version: 3.4.2 - resolution: "shiki@npm:3.4.2" +"shiki@npm:3.8.0, shiki@npm:^3.7.0": + version: 3.8.0 + resolution: "shiki@npm:3.8.0" dependencies: - "@shikijs/core": "npm:3.4.2" - "@shikijs/engine-javascript": "npm:3.4.2" - "@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/core": "npm:3.8.0" + "@shikijs/engine-javascript": "npm:3.8.0" + "@shikijs/engine-oniguruma": "npm:3.8.0" + "@shikijs/langs": "npm:3.8.0" + "@shikijs/themes": "npm:3.8.0" + "@shikijs/types": "npm:3.8.0" "@shikijs/vscode-textmate": "npm:^10.0.2" "@types/hast": "npm:^3.0.4" - checksum: 10c0/3cae825d8c341d7334e541efad30125fac0064db6004359e661a594782d59f93f66f2dcb5dbc1d8cb6508c43ccdd03ed6cf1d22306b382bc1f395a6130e5cbbb + checksum: 10c0/d9e9dea8230005362617bb634e6d89ad9c0862f1c80b1930174fc9217fc046dacf3cd66ea192152949ef6b8638a43856c14af88b7db1139bfe93532ed843e9e1 languageName: node linkType: hard @@ -19250,6 +19953,15 @@ __metadata: languageName: node linkType: hard +"strip-literal@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-literal@npm:3.0.0" + dependencies: + js-tokens: "npm:^9.0.1" + checksum: 10c0/d81657f84aba42d4bbaf2a677f7e7f34c1f3de5a6726db8bc1797f9c0b303ba54d4660383a74bde43df401cf37cce1dff2c842c55b077a4ceee11f9e31fba828 + languageName: node + linkType: hard + "strnum@npm:^1.1.1": version: 1.1.2 resolution: "strnum@npm:1.1.2" @@ -19589,27 +20301,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12": - version: 0.2.12 - resolution: "tinyglobby@npm:0.2.12" - dependencies: - fdir: "npm:^6.4.3" - picomatch: "npm:^4.0.2" - checksum: 10c0/7c9be4fd3625630e262dcb19015302aad3b4ba7fc620f269313e688f2161ea8724d6cb4444baab5ef2826eb6bed72647b169a33ec8eea37501832a2526ff540f - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.13": - version: 0.2.13 - resolution: "tinyglobby@npm:0.2.13" - dependencies: - fdir: "npm:^6.4.4" - picomatch: "npm:^4.0.2" - checksum: 10c0/f789ed6c924287a9b7d3612056ed0cda67306cd2c80c249fd280cf1504742b12583a2089b61f4abbd24605f390809017240e250241f09938054c9b363e51c0a6 - languageName: node - linkType: hard - -"tinyglobby@npm:^0.2.14": +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14": version: 0.2.14 resolution: "tinyglobby@npm:0.2.14" dependencies: @@ -19619,10 +20311,10 @@ __metadata: languageName: node linkType: hard -"tinypool@npm:^1.0.2": - version: 1.0.2 - resolution: "tinypool@npm:1.0.2" - checksum: 10c0/31ac184c0ff1cf9a074741254fe9ea6de95026749eb2b8ec6fd2b9d8ca94abdccda731f8e102e7f32e72ed3b36d32c6975fd5f5523df3f1b6de6c3d8dfd95e63 +"tinypool@npm:^1.1.1": + version: 1.1.1 + resolution: "tinypool@npm:1.1.1" + checksum: 10c0/bf26727d01443061b04fa863f571016950888ea994ba0cd8cba3a1c51e2458d84574341ab8dbc3664f1c3ab20885c8cf9ff1cc4b18201f04c2cde7d317fff69b languageName: node linkType: hard @@ -19888,46 +20580,6 @@ __metadata: languageName: node linkType: hard -"tsdown@npm:^0.12.9": - version: 0.12.9 - resolution: "tsdown@npm:0.12.9" - dependencies: - ansis: "npm:^4.1.0" - cac: "npm:^6.7.14" - chokidar: "npm:^4.0.3" - debug: "npm:^4.4.1" - diff: "npm:^8.0.2" - empathic: "npm:^2.0.0" - hookable: "npm:^5.5.3" - rolldown: "npm:^1.0.0-beta.19" - rolldown-plugin-dts: "npm:^0.13.12" - semver: "npm:^7.7.2" - tinyexec: "npm:^1.0.1" - tinyglobby: "npm:^0.2.14" - unconfig: "npm:^7.3.2" - peerDependencies: - "@arethetypeswrong/core": ^0.18.1 - publint: ^0.3.0 - typescript: ^5.0.0 - unplugin-lightningcss: ^0.4.0 - unplugin-unused: ^0.5.0 - peerDependenciesMeta: - "@arethetypeswrong/core": - optional: true - publint: - optional: true - typescript: - optional: true - unplugin-lightningcss: - optional: true - unplugin-unused: - optional: true - bin: - tsdown: dist/run.mjs - checksum: 10c0/5dd4842982815181f5a79bc87fff1dd9afc6952aaec065dcececde5ba76887163a01de313272964003ea90df8ac23efdfc8aabb290c5b8f8dae5332e9905c05b - languageName: node - linkType: hard - "tslib@npm:2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -19935,7 +20587,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.1, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.8.1": +"tslib@npm:^2.0.1, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 @@ -20104,7 +20756,21 @@ __metadata: languageName: node linkType: hard -"unified@npm:^11.0.0": +"undici-types@npm:~7.8.0": + version: 7.8.0 + resolution: "undici-types@npm:7.8.0" + checksum: 10c0/9d9d246d1dc32f318d46116efe3cfca5a72d4f16828febc1918d94e58f6ffcf39c158aa28bf5b4fc52f410446bc7858f35151367bd7a49f21746cab6497b709b + languageName: node + linkType: hard + +"undici@npm:6.21.2": + version: 6.21.2 + resolution: "undici@npm:6.21.2" + checksum: 10c0/799bbc02b77dda9b6b12d56d2620a3a4d4cf087908d6a548acc3ce32f21b5c27467f75c2c4b30fab281daf341210be3d685e8fe99854288de541715ae5735027 + languageName: node + linkType: hard + +"unified@npm:^11.0.0, unified@npm:^11.0.5": version: 11.0.5 resolution: "unified@npm:11.0.5" dependencies: @@ -20480,9 +21146,18 @@ __metadata: languageName: node linkType: hard -"vite-node@npm:3.1.4": - version: 3.1.4 - resolution: "vite-node@npm:3.1.4" +"vite-code-inspector-plugin@npm:0.20.17": + version: 0.20.17 + resolution: "vite-code-inspector-plugin@npm:0.20.17" + dependencies: + code-inspector-core: "npm:0.20.17" + checksum: 10c0/087132ca76dafe2df7dbd55eec335b700bf13d2f4e6a1ba58556575003d4271276cdaa4d161b526d55a9bcaa215d3a681458e704c92981214d75040985650b86 + languageName: node + linkType: hard + +"vite-node@npm:3.2.4": + version: 3.2.4 + resolution: "vite-node@npm:3.2.4" dependencies: cac: "npm:^6.7.14" debug: "npm:^4.4.1" @@ -20812,6 +21487,15 @@ __metadata: languageName: node linkType: hard +"webpack-code-inspector-plugin@npm:0.20.17": + version: 0.20.17 + resolution: "webpack-code-inspector-plugin@npm:0.20.17" + dependencies: + code-inspector-core: "npm:0.20.17" + checksum: 10c0/888dcd9be244a3cbd79636e7da1c6339f4aaa92b765cb76035cefef528664f429eff04ab934fa93df0acc4e287101f59b373a20929cb97c863a3c0c1805d702f + languageName: node + linkType: hard + "whatwg-encoding@npm:^3.1.1": version: 3.1.1 resolution: "whatwg-encoding@npm:3.1.1" @@ -21228,24 +21912,17 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.22.3, zod@npm:^3.22.4, zod@npm:^3.23.8": - version: 3.24.2 - resolution: "zod@npm:3.24.2" - checksum: 10c0/c638c7220150847f13ad90635b3e7d0321b36cce36f3fc6050ed960689594c949c326dfe2c6fa87c14b126ee5d370ccdebd6efb304f41ef5557a4aaca2824565 +"zod@npm:^3.22.4, zod@npm:^3.23.8, zod@npm:^3.24.1, zod@npm:^3.25.0, zod@npm:^3.25.32": + version: 3.25.76 + resolution: "zod@npm:3.25.76" + checksum: 10c0/5718ec35e3c40b600316c5b4c5e4976f7fee68151bc8f8d90ec18a469be9571f072e1bbaace10f1e85cf8892ea12d90821b200e980ab46916a6166a4260a983c languageName: node linkType: hard -"zod@npm:^3.24.1": - version: 3.25.56 - resolution: "zod@npm:3.25.56" - checksum: 10c0/3800f01d4b1df932b91354eb1e648f69cc7e5561549e6d2bf83827d930a5f33bbf92926099445f6fc1ebb64ca9c6513ef9ae5e5409cfef6325f354bcf6fc9a24 - languageName: node - linkType: hard - -"zod@npm:^3.25.0": - version: 3.25.74 - resolution: "zod@npm:3.25.74" - checksum: 10c0/59e38b046ac333b5bd1ba325a83b6798721227cbfb1e69dfc7159bd7824b904241ab923026edb714fafefec3624265ae374a70aee9a5a45b365bd31781ffa105 +"zod@npm:^4.0.5": + version: 4.0.5 + resolution: "zod@npm:4.0.5" + checksum: 10c0/59449d731ca63849b6bcb14300aa6e2f042d440b3ed294b45c248519aec78780f85a5d1939a62c2ce82e9dc60afca77c8005e0a98d7517b0c2586d6c76940424 languageName: node linkType: hard