inspect-ai 0.3.62__py3-none-any.whl → 0.3.64__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- inspect_ai/_cli/cache.py +8 -7
- inspect_ai/_cli/common.py +0 -12
- inspect_ai/_cli/eval.py +32 -4
- inspect_ai/_cli/info.py +1 -0
- inspect_ai/_cli/list.py +1 -1
- inspect_ai/_cli/log.py +2 -0
- inspect_ai/_cli/main.py +1 -1
- inspect_ai/_cli/sandbox.py +4 -1
- inspect_ai/_cli/score.py +181 -32
- inspect_ai/_cli/trace.py +10 -0
- inspect_ai/_cli/view.py +4 -2
- inspect_ai/_display/core/active.py +2 -3
- inspect_ai/_display/core/config.py +7 -1
- inspect_ai/_display/textual/widgets/samples.py +4 -3
- inspect_ai/_display/textual/widgets/sandbox.py +6 -0
- inspect_ai/_eval/eval.py +104 -101
- inspect_ai/_eval/evalset.py +75 -75
- inspect_ai/_eval/loader.py +122 -12
- inspect_ai/_eval/registry.py +1 -1
- inspect_ai/_eval/run.py +14 -0
- inspect_ai/_eval/score.py +125 -36
- inspect_ai/_eval/task/log.py +105 -4
- inspect_ai/_eval/task/results.py +92 -38
- inspect_ai/_eval/task/run.py +9 -2
- inspect_ai/_eval/task/sandbox.py +35 -2
- inspect_ai/_eval/task/task.py +49 -46
- inspect_ai/_util/constants.py +1 -1
- inspect_ai/_util/content.py +8 -0
- inspect_ai/_util/error.py +2 -0
- inspect_ai/_util/file.py +15 -1
- inspect_ai/_util/hash.py +1 -1
- inspect_ai/_util/logger.py +4 -2
- inspect_ai/_util/registry.py +7 -1
- inspect_ai/_view/view.py +1 -2
- inspect_ai/_view/www/.vscode/extensions.json +3 -0
- inspect_ai/_view/www/.vscode/settings.json +8 -0
- inspect_ai/_view/www/App.css +97 -29
- inspect_ai/_view/www/README.md +1 -1
- inspect_ai/_view/www/dist/assets/index.css +16663 -14674
- inspect_ai/_view/www/dist/assets/index.js +58808 -51348
- inspect_ai/_view/www/dist/index.html +1 -1
- inspect_ai/_view/www/index.html +2 -2
- inspect_ai/_view/www/log-schema.json +87 -73
- inspect_ai/_view/www/package.json +22 -4
- inspect_ai/_view/www/postcss.config.cjs +8 -9
- inspect_ai/_view/www/src/{App.mjs → App.tsx} +356 -365
- inspect_ai/_view/www/src/AppErrorBoundary.tsx +47 -0
- inspect_ai/_view/www/src/api/api-browser.ts +2 -2
- inspect_ai/_view/www/src/api/api-http.ts +3 -5
- inspect_ai/_view/www/src/api/api-vscode.ts +6 -6
- inspect_ai/_view/www/src/api/client-api.ts +4 -4
- inspect_ai/_view/www/src/api/index.ts +4 -4
- inspect_ai/_view/www/src/api/{Types.ts → types.ts} +25 -9
- inspect_ai/_view/www/src/appearance/colors.ts +9 -0
- inspect_ai/_view/www/src/appearance/fonts.ts +39 -0
- inspect_ai/_view/www/src/appearance/icons.ts +100 -0
- inspect_ai/_view/www/src/appearance/{Styles.mjs → styles.ts} +2 -32
- inspect_ai/_view/www/src/components/AnsiDisplay.tsx +198 -0
- inspect_ai/_view/www/src/components/AsciinemaPlayer.tsx +86 -0
- inspect_ai/_view/www/src/components/Card.css +60 -0
- inspect_ai/_view/www/src/components/Card.tsx +109 -0
- inspect_ai/_view/www/src/components/CopyButton.module.css +11 -0
- inspect_ai/_view/www/src/components/CopyButton.tsx +58 -0
- inspect_ai/_view/www/src/components/DownloadButton.css +4 -0
- inspect_ai/_view/www/src/components/DownloadButton.tsx +25 -0
- inspect_ai/_view/www/src/components/DownloadPanel.css +10 -0
- inspect_ai/_view/www/src/components/DownloadPanel.tsx +30 -0
- inspect_ai/_view/www/src/components/EmptyPanel.css +12 -0
- inspect_ai/_view/www/src/components/EmptyPanel.tsx +15 -0
- inspect_ai/_view/www/src/components/ErrorPanel.css +37 -0
- inspect_ai/_view/www/src/components/ErrorPanel.tsx +39 -0
- inspect_ai/_view/www/src/components/ExpandablePanel.css +40 -0
- inspect_ai/_view/www/src/components/ExpandablePanel.tsx +115 -0
- inspect_ai/_view/www/src/components/FindBand.css +49 -0
- inspect_ai/_view/www/src/components/FindBand.tsx +130 -0
- inspect_ai/_view/www/src/components/HumanBaselineView.css +41 -0
- inspect_ai/_view/www/src/components/HumanBaselineView.tsx +162 -0
- inspect_ai/_view/www/src/components/JsonPanel.css +20 -0
- inspect_ai/_view/www/src/components/JsonPanel.tsx +82 -0
- inspect_ai/_view/www/src/components/LabeledValue.css +20 -0
- inspect_ai/_view/www/src/components/LabeledValue.tsx +41 -0
- inspect_ai/_view/www/src/components/LargeModal.module.css +54 -0
- inspect_ai/_view/www/src/components/LargeModal.tsx +189 -0
- inspect_ai/_view/www/src/components/LightboxCarousel.css +95 -0
- inspect_ai/_view/www/src/components/LightboxCarousel.tsx +132 -0
- inspect_ai/_view/www/src/components/MarkdownDiv.css +3 -0
- inspect_ai/_view/www/src/components/MarkdownDiv.tsx +133 -0
- inspect_ai/_view/www/src/components/MessageBand.css +43 -0
- inspect_ai/_view/www/src/components/MessageBand.tsx +39 -0
- inspect_ai/_view/www/src/components/MorePopOver.css +0 -0
- inspect_ai/_view/www/src/components/MorePopOver.tsx +67 -0
- inspect_ai/_view/www/src/components/NavPills.module.css +18 -0
- inspect_ai/_view/www/src/components/NavPills.tsx +101 -0
- inspect_ai/_view/www/src/components/ProgressBar.module.css +37 -0
- inspect_ai/_view/www/src/components/ProgressBar.tsx +22 -0
- inspect_ai/_view/www/src/components/TabSet.module.css +40 -0
- inspect_ai/_view/www/src/components/TabSet.tsx +215 -0
- inspect_ai/_view/www/src/components/ToolButton.css +3 -0
- inspect_ai/_view/www/src/components/ToolButton.tsx +27 -0
- inspect_ai/_view/www/src/components/VirtualList.module.css +19 -0
- inspect_ai/_view/www/src/components/VirtualList.tsx +292 -0
- inspect_ai/_view/www/src/{index.js → index.tsx} +45 -19
- inspect_ai/_view/www/src/{log → logfile}/remoteLogFile.ts +3 -8
- inspect_ai/_view/www/src/{utils/remoteZipFile.mjs → logfile/remoteZipFile.ts} +86 -80
- inspect_ai/_view/www/src/metadata/MetaDataGrid.tsx +83 -0
- inspect_ai/_view/www/src/metadata/MetaDataView.module.css +35 -0
- inspect_ai/_view/www/src/metadata/MetaDataView.tsx +95 -0
- inspect_ai/_view/www/src/metadata/MetadataGrid.module.css +15 -0
- inspect_ai/_view/www/src/metadata/RenderedContent.module.css +12 -0
- inspect_ai/_view/www/src/{components/RenderedContent/RenderedContent.mjs → metadata/RenderedContent.tsx} +92 -73
- inspect_ai/_view/www/src/metadata/types.ts +18 -0
- inspect_ai/_view/www/src/plan/DatasetDetailView.module.css +3 -0
- inspect_ai/_view/www/src/plan/DatasetDetailView.tsx +37 -0
- inspect_ai/_view/www/src/plan/DetailStep.module.css +9 -0
- inspect_ai/_view/www/src/plan/DetailStep.tsx +31 -0
- inspect_ai/_view/www/src/plan/PlanCard.tsx +28 -0
- inspect_ai/_view/www/src/plan/PlanDetailView.module.css +48 -0
- inspect_ai/_view/www/src/plan/PlanDetailView.tsx +324 -0
- inspect_ai/_view/www/src/plan/ScorerDetailView.module.css +3 -0
- inspect_ai/_view/www/src/plan/ScorerDetailView.tsx +30 -0
- inspect_ai/_view/www/src/plan/SolverDetailView.module.css +15 -0
- inspect_ai/_view/www/src/plan/SolverDetailView.tsx +32 -0
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.module.css +8 -0
- inspect_ai/_view/www/src/samples/InlineSampleDisplay.tsx +53 -0
- inspect_ai/_view/www/src/samples/SampleDialog.tsx +122 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.module.css +29 -0
- inspect_ai/_view/www/src/samples/SampleDisplay.tsx +331 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.module.css +24 -0
- inspect_ai/_view/www/src/samples/SampleSummaryView.tsx +177 -0
- inspect_ai/_view/www/src/samples/SamplesTools.tsx +52 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessage.module.css +29 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessage.tsx +76 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRenderer.tsx +60 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRow.module.css +9 -0
- inspect_ai/_view/www/src/samples/chat/ChatMessageRow.tsx +57 -0
- inspect_ai/_view/www/src/samples/chat/ChatView.tsx +47 -0
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/ChatViewVirtualList.tsx +58 -0
- inspect_ai/_view/www/src/samples/chat/MessageContent.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/MessageContent.tsx +157 -0
- inspect_ai/_view/www/src/samples/chat/MessageContents.module.css +3 -0
- inspect_ai/_view/www/src/samples/chat/MessageContents.tsx +133 -0
- inspect_ai/_view/www/src/samples/chat/messages.ts +112 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolCallView.tsx +147 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.module.css +14 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolInput.tsx +76 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.module.css +19 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolOutput.tsx +60 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolTitle.module.css +4 -0
- inspect_ai/_view/www/src/samples/chat/tools/ToolTitle.tsx +18 -0
- inspect_ai/_view/www/src/samples/chat/tools/tool.ts +92 -0
- inspect_ai/_view/www/src/samples/descriptor/samplesDescriptor.tsx +365 -0
- inspect_ai/_view/www/src/samples/descriptor/score/BooleanScoreDescriptor.module.css +22 -0
- inspect_ai/_view/www/src/samples/descriptor/score/BooleanScoreDescriptor.tsx +26 -0
- inspect_ai/_view/www/src/samples/descriptor/score/CategoricalScoreDescriptor.tsx +18 -0
- inspect_ai/_view/www/src/samples/descriptor/score/NumericScoreDescriptor.tsx +27 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ObjectScoreDescriptor.module.css +18 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ObjectScoreDescriptor.tsx +71 -0
- inspect_ai/_view/www/src/samples/descriptor/score/OtherScoreDescriptor.tsx +20 -0
- inspect_ai/_view/www/src/samples/descriptor/score/PassFailScoreDescriptor.module.css +28 -0
- inspect_ai/_view/www/src/samples/descriptor/score/PassFailScoreDescriptor.tsx +81 -0
- inspect_ai/_view/www/src/samples/descriptor/score/ScoreDescriptor.tsx +99 -0
- inspect_ai/_view/www/src/samples/descriptor/types.ts +55 -0
- inspect_ai/_view/www/src/samples/error/FlatSampleErrorView.module.css +19 -0
- inspect_ai/_view/www/src/samples/error/FlatSampleErrorView.tsx +22 -0
- inspect_ai/_view/www/src/samples/error/SampleErrorView.module.css +17 -0
- inspect_ai/_view/www/src/samples/error/SampleErrorView.tsx +31 -0
- inspect_ai/_view/www/src/samples/error/error.ts +15 -0
- inspect_ai/_view/www/src/samples/list/SampleFooter.module.css +9 -0
- inspect_ai/_view/www/src/samples/list/SampleFooter.tsx +14 -0
- inspect_ai/_view/www/src/samples/list/SampleHeader.module.css +13 -0
- inspect_ai/_view/www/src/samples/list/SampleHeader.tsx +36 -0
- inspect_ai/_view/www/src/samples/list/SampleList.module.css +11 -0
- inspect_ai/_view/www/src/samples/list/SampleList.tsx +247 -0
- inspect_ai/_view/www/src/samples/list/SampleRow.module.css +33 -0
- inspect_ai/_view/www/src/samples/list/SampleRow.tsx +98 -0
- inspect_ai/_view/www/src/samples/list/SampleSeparator.module.css +6 -0
- inspect_ai/_view/www/src/samples/list/SampleSeparator.tsx +24 -0
- inspect_ai/_view/www/src/samples/sample-tools/EpochFilter.module.css +9 -0
- inspect_ai/_view/www/src/samples/sample-tools/EpochFilter.tsx +51 -0
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.module.css +16 -0
- inspect_ai/_view/www/src/samples/sample-tools/SelectScorer.tsx +175 -0
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.module.css +9 -0
- inspect_ai/_view/www/src/samples/sample-tools/SortFilter.tsx +186 -0
- inspect_ai/_view/www/src/samples/{tools/filters.mjs → sample-tools/filters.ts} +86 -81
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.module.css +16 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/SampleFilter.tsx +288 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/completions.ts +346 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/language.ts +19 -0
- inspect_ai/_view/www/src/samples/sample-tools/sample-filter/tokenize.ts +97 -0
- inspect_ai/_view/www/src/samples/{SampleLimit.mjs → sampleLimit.ts} +3 -6
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.module.css +53 -0
- inspect_ai/_view/www/src/samples/scores/SampleScoreView.tsx +168 -0
- inspect_ai/_view/www/src/samples/scores/SampleScores.module.css +5 -0
- inspect_ai/_view/www/src/samples/scores/SampleScores.tsx +37 -0
- inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.tsx +66 -0
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.tsx +51 -0
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.module.css +3 -0
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.tsx +54 -0
- inspect_ai/_view/www/src/samples/transcript/InputEventView.tsx +48 -0
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.module.css +6 -0
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.tsx +36 -0
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.module.css +43 -0
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.tsx +223 -0
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.module.css +23 -0
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.tsx +112 -0
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.tsx +75 -0
- inspect_ai/_view/www/src/samples/transcript/SampleTranscript.tsx +22 -0
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.module.css +15 -0
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.tsx +100 -0
- inspect_ai/_view/www/src/samples/transcript/StepEventView.tsx +171 -0
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.module.css +19 -0
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.tsx +133 -0
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.module.css +10 -0
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.tsx +92 -0
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.module.css +49 -0
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.tsx +449 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.module.css +5 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNav.tsx +43 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNavs.module.css +3 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventNavs.tsx +39 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.module.css +25 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventPanel.tsx +191 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventRow.module.css +13 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventRow.tsx +32 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventSection.module.css +8 -0
- inspect_ai/_view/www/src/samples/transcript/event/EventSection.tsx +29 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateDiffView.tsx +67 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.tsx +285 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenders.module.css +10 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.module.css +9 -0
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.tsx +346 -0
- inspect_ai/_view/www/src/samples/transcript/types.ts +58 -0
- inspect_ai/_view/www/src/types/log.d.ts +108 -19
- inspect_ai/_view/www/src/types/prism.d.ts +11 -0
- inspect_ai/_view/www/src/types.ts +71 -0
- inspect_ai/_view/www/src/usage/ModelTokenTable.tsx +28 -0
- inspect_ai/_view/www/src/usage/ModelUsagePanel.module.css +24 -0
- inspect_ai/_view/www/src/usage/ModelUsagePanel.tsx +97 -0
- inspect_ai/_view/www/src/usage/TokenTable.module.css +17 -0
- inspect_ai/_view/www/src/usage/TokenTable.tsx +91 -0
- inspect_ai/_view/www/src/usage/UsageCard.module.css +15 -0
- inspect_ai/_view/www/src/usage/UsageCard.tsx +67 -0
- inspect_ai/_view/www/src/utils/attachments.ts +42 -0
- inspect_ai/_view/www/src/utils/{Base64.mjs → base64.ts} +1 -6
- inspect_ai/_view/www/src/{components/Browser.mjs → utils/browser.ts} +0 -1
- inspect_ai/_view/www/src/utils/debugging.ts +28 -0
- inspect_ai/_view/www/src/utils/dom.ts +30 -0
- inspect_ai/_view/www/src/utils/format.ts +194 -0
- inspect_ai/_view/www/src/utils/git.ts +7 -0
- inspect_ai/_view/www/src/utils/html.ts +6 -0
- inspect_ai/_view/www/src/utils/http.ts +14 -0
- inspect_ai/_view/www/src/utils/{Path.mjs → path.ts} +2 -9
- inspect_ai/_view/www/src/utils/{Print.mjs → print.ts} +34 -26
- inspect_ai/_view/www/src/utils/queue.ts +51 -0
- inspect_ai/_view/www/src/utils/sync.ts +114 -0
- inspect_ai/_view/www/src/utils/{Type.mjs → type.ts} +3 -6
- inspect_ai/_view/www/src/utils/vscode.ts +13 -0
- inspect_ai/_view/www/src/workspace/WorkSpace.tsx +324 -0
- inspect_ai/_view/www/src/workspace/WorkSpaceView.module.css +33 -0
- inspect_ai/_view/www/src/workspace/WorkSpaceView.tsx +158 -0
- inspect_ai/_view/www/src/workspace/error/TaskErrorPanel.module.css +3 -0
- inspect_ai/_view/www/src/workspace/error/TaskErrorPanel.tsx +28 -0
- inspect_ai/_view/www/src/workspace/navbar/Navbar.module.css +54 -0
- inspect_ai/_view/www/src/workspace/navbar/Navbar.tsx +68 -0
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.module.css +52 -0
- inspect_ai/_view/www/src/workspace/navbar/PrimaryBar.tsx +114 -0
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.module.css +90 -0
- inspect_ai/_view/www/src/workspace/navbar/ResultsPanel.tsx +180 -0
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.module.css +28 -0
- inspect_ai/_view/www/src/workspace/navbar/SecondaryBar.tsx +226 -0
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.module.css +14 -0
- inspect_ai/_view/www/src/workspace/navbar/StatusPanel.tsx +61 -0
- inspect_ai/_view/www/src/workspace/sidebar/EvalStatus.module.css +15 -0
- inspect_ai/_view/www/src/workspace/sidebar/EvalStatus.tsx +71 -0
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.module.css +5 -0
- inspect_ai/_view/www/src/workspace/sidebar/LogDirectoryTitleView.tsx +56 -0
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.module.css +68 -0
- inspect_ai/_view/www/src/workspace/sidebar/Sidebar.tsx +85 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarLogEntry.module.css +29 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarLogEntry.tsx +95 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoreView.module.css +23 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoreView.tsx +43 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoresView.module.css +35 -0
- inspect_ai/_view/www/src/workspace/sidebar/SidebarScoresView.tsx +63 -0
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.module.css +0 -0
- inspect_ai/_view/www/src/workspace/tabs/InfoTab.tsx +70 -0
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.module.css +5 -0
- inspect_ai/_view/www/src/workspace/tabs/JsonTab.tsx +46 -0
- inspect_ai/_view/www/src/workspace/tabs/SamplesTab.tsx +204 -0
- inspect_ai/_view/www/src/workspace/tabs/grouping.ts +195 -0
- inspect_ai/_view/www/src/workspace/tabs/types.ts +19 -0
- inspect_ai/_view/www/src/workspace/types.ts +10 -0
- inspect_ai/_view/www/src/workspace/utils.ts +34 -0
- inspect_ai/_view/www/tsconfig.json +23 -9
- inspect_ai/_view/www/vite.config.js +8 -17
- inspect_ai/_view/www/yarn.lock +627 -556
- inspect_ai/approval/_approval.py +2 -0
- inspect_ai/approval/_approver.py +4 -4
- inspect_ai/approval/_auto.py +1 -1
- inspect_ai/approval/_human/approver.py +3 -0
- inspect_ai/approval/_policy.py +5 -0
- inspect_ai/approval/_registry.py +2 -2
- inspect_ai/dataset/_dataset.py +64 -37
- inspect_ai/dataset/_sources/__init__.py +0 -0
- inspect_ai/dataset/_sources/csv.py +20 -12
- inspect_ai/dataset/_sources/file.py +4 -0
- inspect_ai/dataset/_sources/hf.py +39 -29
- inspect_ai/dataset/_sources/json.py +17 -9
- inspect_ai/log/__init__.py +2 -0
- inspect_ai/log/_convert.py +3 -3
- inspect_ai/log/_file.py +24 -9
- inspect_ai/log/_log.py +101 -13
- inspect_ai/log/_message.py +4 -2
- inspect_ai/log/_recorders/file.py +4 -0
- inspect_ai/log/_recorders/json.py +5 -7
- inspect_ai/log/_recorders/recorder.py +3 -0
- inspect_ai/log/_transcript.py +19 -8
- inspect_ai/model/__init__.py +2 -0
- inspect_ai/model/_cache.py +39 -21
- inspect_ai/model/_call_tools.py +4 -3
- inspect_ai/model/_chat_message.py +14 -4
- inspect_ai/model/_generate_config.py +1 -1
- inspect_ai/model/_model.py +31 -24
- inspect_ai/model/_model_output.py +14 -1
- inspect_ai/model/_openai.py +10 -18
- inspect_ai/model/_providers/anthropic.py +3 -3
- inspect_ai/model/_providers/google.py +9 -5
- inspect_ai/model/_providers/openai.py +5 -9
- inspect_ai/model/_providers/openai_o1.py +3 -5
- inspect_ai/model/_providers/openrouter.py +86 -0
- inspect_ai/model/_providers/providers.py +11 -0
- inspect_ai/scorer/__init__.py +6 -1
- inspect_ai/scorer/_answer.py +7 -7
- inspect_ai/scorer/_classification.py +38 -18
- inspect_ai/scorer/_common.py +2 -8
- inspect_ai/scorer/_match.py +4 -5
- inspect_ai/scorer/_metric.py +87 -28
- inspect_ai/scorer/_metrics/__init__.py +3 -3
- inspect_ai/scorer/_metrics/accuracy.py +8 -10
- inspect_ai/scorer/_metrics/mean.py +3 -17
- inspect_ai/scorer/_metrics/std.py +111 -30
- inspect_ai/scorer/_model.py +12 -12
- inspect_ai/scorer/_pattern.py +3 -3
- inspect_ai/scorer/_reducer/reducer.py +36 -21
- inspect_ai/scorer/_reducer/registry.py +2 -2
- inspect_ai/scorer/_reducer/types.py +7 -1
- inspect_ai/scorer/_score.py +11 -1
- inspect_ai/scorer/_scorer.py +110 -16
- inspect_ai/solver/__init__.py +1 -1
- inspect_ai/solver/_basic_agent.py +19 -22
- inspect_ai/solver/_bridge/__init__.py +0 -3
- inspect_ai/solver/_bridge/bridge.py +3 -3
- inspect_ai/solver/_chain.py +1 -2
- inspect_ai/solver/_critique.py +3 -3
- inspect_ai/solver/_fork.py +2 -2
- inspect_ai/solver/_human_agent/__init__.py +0 -0
- inspect_ai/solver/_human_agent/agent.py +5 -8
- inspect_ai/solver/_human_agent/commands/clock.py +14 -10
- inspect_ai/solver/_human_agent/commands/note.py +1 -1
- inspect_ai/solver/_human_agent/commands/score.py +0 -11
- inspect_ai/solver/_multiple_choice.py +38 -26
- inspect_ai/solver/_prompt.py +7 -7
- inspect_ai/solver/_solver.py +53 -52
- inspect_ai/solver/_task_state.py +80 -69
- inspect_ai/solver/_use_tools.py +9 -9
- inspect_ai/tool/__init__.py +4 -1
- inspect_ai/tool/_tool.py +43 -14
- inspect_ai/tool/_tool_call.py +6 -2
- inspect_ai/tool/_tool_choice.py +3 -1
- inspect_ai/tool/_tool_def.py +10 -8
- inspect_ai/tool/_tool_params.py +24 -0
- inspect_ai/tool/_tool_with.py +7 -7
- inspect_ai/tool/_tools/__init__.py +0 -0
- inspect_ai/tool/{beta → _tools}/_computer/_common.py +2 -2
- inspect_ai/tool/{beta → _tools}/_computer/_computer.py +13 -5
- inspect_ai/tool/_tools/_computer/_resources/tool/__init__.py +0 -0
- inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_x11_client.py +1 -1
- inspect_ai/tool/_tools/_computer/_resources/tool/requirements.txt +0 -0
- inspect_ai/tool/_tools/_execute.py +23 -11
- inspect_ai/tool/_tools/_web_browser/_resources/README.md +2 -2
- inspect_ai/tool/_tools/_web_browser/_web_browser.py +5 -3
- inspect_ai/tool/_tools/_web_search.py +7 -5
- inspect_ai/tool/beta.py +3 -0
- inspect_ai/util/_concurrency.py +3 -3
- inspect_ai/util/_panel.py +2 -0
- inspect_ai/util/_resource.py +12 -12
- inspect_ai/util/_sandbox/docker/compose.py +23 -20
- inspect_ai/util/_sandbox/docker/config.py +2 -1
- inspect_ai/util/_sandbox/docker/docker.py +42 -86
- inspect_ai/util/_sandbox/docker/service.py +100 -0
- inspect_ai/util/_sandbox/environment.py +99 -96
- inspect_ai/util/_sandbox/self_check.py +124 -16
- inspect_ai/util/_subprocess.py +5 -3
- inspect_ai/util/_subtask.py +15 -16
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/LICENSE +1 -1
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/METADATA +11 -6
- inspect_ai-0.3.64.dist-info/RECORD +625 -0
- inspect_ai/_view/www/src/Register.mjs +0 -3
- inspect_ai/_view/www/src/Types.mjs +0 -38
- inspect_ai/_view/www/src/appearance/Colors.mjs +0 -27
- inspect_ai/_view/www/src/appearance/Fonts.mjs +0 -66
- inspect_ai/_view/www/src/appearance/Icons.mjs +0 -240
- inspect_ai/_view/www/src/components/AnsiDisplay.mjs +0 -184
- inspect_ai/_view/www/src/components/AppErrorBoundary.mjs +0 -34
- inspect_ai/_view/www/src/components/AsciiCinemaPlayer.mjs +0 -74
- inspect_ai/_view/www/src/components/Card.mjs +0 -126
- inspect_ai/_view/www/src/components/ChatView.mjs +0 -441
- inspect_ai/_view/www/src/components/CopyButton.mjs +0 -48
- inspect_ai/_view/www/src/components/Dialog.mjs +0 -61
- inspect_ai/_view/www/src/components/DownloadButton.mjs +0 -15
- inspect_ai/_view/www/src/components/DownloadPanel.mjs +0 -29
- inspect_ai/_view/www/src/components/EmptyPanel.mjs +0 -23
- inspect_ai/_view/www/src/components/ErrorPanel.mjs +0 -66
- inspect_ai/_view/www/src/components/ExpandablePanel.mjs +0 -136
- inspect_ai/_view/www/src/components/FindBand.mjs +0 -157
- inspect_ai/_view/www/src/components/HumanBaselineView.mjs +0 -168
- inspect_ai/_view/www/src/components/JsonPanel.mjs +0 -61
- inspect_ai/_view/www/src/components/LabeledValue.mjs +0 -32
- inspect_ai/_view/www/src/components/LargeModal.mjs +0 -190
- inspect_ai/_view/www/src/components/LightboxCarousel.mjs +0 -217
- inspect_ai/_view/www/src/components/MarkdownDiv.mjs +0 -118
- inspect_ai/_view/www/src/components/MessageBand.mjs +0 -48
- inspect_ai/_view/www/src/components/MessageContent.mjs +0 -111
- inspect_ai/_view/www/src/components/MetaDataGrid.mjs +0 -92
- inspect_ai/_view/www/src/components/MetaDataView.mjs +0 -109
- inspect_ai/_view/www/src/components/MorePopOver.mjs +0 -50
- inspect_ai/_view/www/src/components/NavPills.mjs +0 -63
- inspect_ai/_view/www/src/components/ProgressBar.mjs +0 -51
- inspect_ai/_view/www/src/components/RenderedContent/ChatMessageRenderer.mjs +0 -54
- inspect_ai/_view/www/src/components/RenderedContent/Types.mjs +0 -19
- inspect_ai/_view/www/src/components/TabSet.mjs +0 -184
- inspect_ai/_view/www/src/components/ToolButton.mjs +0 -16
- inspect_ai/_view/www/src/components/Tools.mjs +0 -376
- inspect_ai/_view/www/src/components/VirtualList.mjs +0 -280
- inspect_ai/_view/www/src/components/ansi-output.js +0 -932
- inspect_ai/_view/www/src/json/JsonTab.mjs +0 -48
- inspect_ai/_view/www/src/log-reader/Log-Reader.mjs +0 -25
- inspect_ai/_view/www/src/log-reader/Native-Log-Reader.mjs +0 -13
- inspect_ai/_view/www/src/log-reader/Open-AI-Log-Reader.mjs +0 -263
- inspect_ai/_view/www/src/navbar/Navbar.mjs +0 -418
- inspect_ai/_view/www/src/navbar/SecondaryBar.mjs +0 -175
- inspect_ai/_view/www/src/plan/PlanCard.mjs +0 -418
- inspect_ai/_view/www/src/samples/SampleDialog.mjs +0 -123
- inspect_ai/_view/www/src/samples/SampleDisplay.mjs +0 -516
- inspect_ai/_view/www/src/samples/SampleError.mjs +0 -99
- inspect_ai/_view/www/src/samples/SampleList.mjs +0 -427
- inspect_ai/_view/www/src/samples/SampleScoreView.mjs +0 -172
- inspect_ai/_view/www/src/samples/SampleScores.mjs +0 -34
- inspect_ai/_view/www/src/samples/SampleTranscript.mjs +0 -20
- inspect_ai/_view/www/src/samples/SamplesDescriptor.mjs +0 -771
- inspect_ai/_view/www/src/samples/SamplesTab.mjs +0 -399
- inspect_ai/_view/www/src/samples/SamplesTools.mjs +0 -64
- inspect_ai/_view/www/src/samples/tools/EpochFilter.mjs +0 -38
- inspect_ai/_view/www/src/samples/tools/SampleFilter.mjs +0 -756
- inspect_ai/_view/www/src/samples/tools/SelectScorer.mjs +0 -141
- inspect_ai/_view/www/src/samples/tools/SortFilter.mjs +0 -151
- inspect_ai/_view/www/src/samples/transcript/ApprovalEventView.mjs +0 -71
- inspect_ai/_view/www/src/samples/transcript/ErrorEventView.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/EventPanel.mjs +0 -271
- inspect_ai/_view/www/src/samples/transcript/EventRow.mjs +0 -46
- inspect_ai/_view/www/src/samples/transcript/EventSection.mjs +0 -33
- inspect_ai/_view/www/src/samples/transcript/InfoEventView.mjs +0 -59
- inspect_ai/_view/www/src/samples/transcript/InputEventView.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/LoggerEventView.mjs +0 -32
- inspect_ai/_view/www/src/samples/transcript/ModelEventView.mjs +0 -216
- inspect_ai/_view/www/src/samples/transcript/SampleInitEventView.mjs +0 -107
- inspect_ai/_view/www/src/samples/transcript/SampleLimitEventView.mjs +0 -74
- inspect_ai/_view/www/src/samples/transcript/ScoreEventView.mjs +0 -100
- inspect_ai/_view/www/src/samples/transcript/StepEventView.mjs +0 -187
- inspect_ai/_view/www/src/samples/transcript/SubtaskEventView.mjs +0 -133
- inspect_ai/_view/www/src/samples/transcript/ToolEventView.mjs +0 -88
- inspect_ai/_view/www/src/samples/transcript/TranscriptView.mjs +0 -459
- inspect_ai/_view/www/src/samples/transcript/Types.mjs +0 -44
- inspect_ai/_view/www/src/samples/transcript/state/StateDiffView.mjs +0 -53
- inspect_ai/_view/www/src/samples/transcript/state/StateEventRenderers.mjs +0 -254
- inspect_ai/_view/www/src/samples/transcript/state/StateEventView.mjs +0 -313
- inspect_ai/_view/www/src/sidebar/Sidebar.mjs +0 -418
- inspect_ai/_view/www/src/usage/ModelTokenTable.mjs +0 -72
- inspect_ai/_view/www/src/usage/UsageCard.mjs +0 -159
- inspect_ai/_view/www/src/utils/Format.mjs +0 -260
- inspect_ai/_view/www/src/utils/Git.mjs +0 -12
- inspect_ai/_view/www/src/utils/Html.mjs +0 -21
- inspect_ai/_view/www/src/utils/attachments.mjs +0 -31
- inspect_ai/_view/www/src/utils/debugging.mjs +0 -23
- inspect_ai/_view/www/src/utils/http.mjs +0 -18
- inspect_ai/_view/www/src/utils/queue.mjs +0 -67
- inspect_ai/_view/www/src/utils/sync.mjs +0 -101
- inspect_ai/_view/www/src/workspace/TaskErrorPanel.mjs +0 -17
- inspect_ai/_view/www/src/workspace/WorkSpace.mjs +0 -516
- inspect_ai/tool/beta/__init__.py +0 -5
- inspect_ai-0.3.62.dist-info/RECORD +0 -481
- /inspect_ai/{tool/beta/_computer/_resources/tool → _eval}/__init__.py +0 -0
- /inspect_ai/{tool/beta/_computer/_resources/tool/requirements.txt → _util/__init__.py} +0 -0
- /inspect_ai/_view/www/src/{constants.mjs → constants.ts} +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/__init__.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_computer_split.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/Dockerfile +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/README.md +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/entrypoint.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/novnc_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/x11vnc_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/xfce_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/entrypoint/xvfb_startup.sh +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/Code/User/globalStorage/state.vscdb +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/Code/User/settings.json +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Firefox Web Browser.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Terminal.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/image_home_dir/Desktop/Visual Studio Code.desktop +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_logger.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_run.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/_tool_result.py +0 -0
- /inspect_ai/tool/{beta → _tools}/_computer/_resources/tool/computer_tool.py +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/WHEEL +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/entry_points.txt +0 -0
- {inspect_ai-0.3.62.dist-info → inspect_ai-0.3.64.dist-info}/top_level.txt +0 -0
inspect_ai/_view/www/yarn.lock
CHANGED
@@ -10,126 +10,128 @@
|
|
10
10
|
"@jridgewell/gen-mapping" "^0.3.5"
|
11
11
|
"@jridgewell/trace-mapping" "^0.3.24"
|
12
12
|
|
13
|
-
"@babel/code-frame@^7.
|
14
|
-
version "7.
|
15
|
-
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.
|
16
|
-
integrity sha512-
|
13
|
+
"@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0", "@babel/code-frame@^7.26.2":
|
14
|
+
version "7.26.2"
|
15
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
|
16
|
+
integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
|
17
17
|
dependencies:
|
18
|
-
"@babel/
|
18
|
+
"@babel/helper-validator-identifier" "^7.25.9"
|
19
|
+
js-tokens "^4.0.0"
|
19
20
|
picocolors "^1.0.0"
|
20
21
|
|
21
|
-
"@babel/compat-data@^7.
|
22
|
-
version "7.
|
23
|
-
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.
|
24
|
-
integrity sha512-
|
22
|
+
"@babel/compat-data@^7.26.5":
|
23
|
+
version "7.26.5"
|
24
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.5.tgz#df93ac37f4417854130e21d72c66ff3d4b897fc7"
|
25
|
+
integrity sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==
|
25
26
|
|
26
|
-
"@babel/core@^7.
|
27
|
-
version "7.
|
28
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
29
|
-
integrity sha512-
|
27
|
+
"@babel/core@^7.26.0":
|
28
|
+
version "7.26.0"
|
29
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
|
30
|
+
integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
|
30
31
|
dependencies:
|
31
32
|
"@ampproject/remapping" "^2.2.0"
|
32
|
-
"@babel/code-frame" "^7.
|
33
|
-
"@babel/generator" "^7.
|
34
|
-
"@babel/helper-compilation-targets" "^7.25.
|
35
|
-
"@babel/helper-module-transforms" "^7.
|
36
|
-
"@babel/helpers" "^7.
|
37
|
-
"@babel/parser" "^7.
|
38
|
-
"@babel/template" "^7.25.
|
39
|
-
"@babel/traverse" "^7.25.
|
40
|
-
"@babel/types" "^7.
|
33
|
+
"@babel/code-frame" "^7.26.0"
|
34
|
+
"@babel/generator" "^7.26.0"
|
35
|
+
"@babel/helper-compilation-targets" "^7.25.9"
|
36
|
+
"@babel/helper-module-transforms" "^7.26.0"
|
37
|
+
"@babel/helpers" "^7.26.0"
|
38
|
+
"@babel/parser" "^7.26.0"
|
39
|
+
"@babel/template" "^7.25.9"
|
40
|
+
"@babel/traverse" "^7.25.9"
|
41
|
+
"@babel/types" "^7.26.0"
|
41
42
|
convert-source-map "^2.0.0"
|
42
43
|
debug "^4.1.0"
|
43
44
|
gensync "^1.0.0-beta.2"
|
44
45
|
json5 "^2.2.3"
|
45
46
|
semver "^6.3.1"
|
46
47
|
|
47
|
-
"@babel/generator@^7.
|
48
|
-
version "7.
|
49
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
50
|
-
integrity sha512-
|
48
|
+
"@babel/generator@^7.26.0", "@babel/generator@^7.26.5":
|
49
|
+
version "7.26.5"
|
50
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.5.tgz#e44d4ab3176bbcaf78a5725da5f1dc28802a9458"
|
51
|
+
integrity sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==
|
51
52
|
dependencies:
|
52
|
-
"@babel/
|
53
|
+
"@babel/parser" "^7.26.5"
|
54
|
+
"@babel/types" "^7.26.5"
|
53
55
|
"@jridgewell/gen-mapping" "^0.3.5"
|
54
56
|
"@jridgewell/trace-mapping" "^0.3.25"
|
55
|
-
jsesc "^
|
57
|
+
jsesc "^3.0.2"
|
56
58
|
|
57
|
-
"@babel/helper-compilation-targets@^7.25.
|
58
|
-
version "7.
|
59
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
60
|
-
integrity sha512-
|
59
|
+
"@babel/helper-compilation-targets@^7.25.9":
|
60
|
+
version "7.26.5"
|
61
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8"
|
62
|
+
integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==
|
61
63
|
dependencies:
|
62
|
-
"@babel/compat-data" "^7.
|
63
|
-
"@babel/helper-validator-option" "^7.
|
64
|
-
browserslist "^4.
|
64
|
+
"@babel/compat-data" "^7.26.5"
|
65
|
+
"@babel/helper-validator-option" "^7.25.9"
|
66
|
+
browserslist "^4.24.0"
|
65
67
|
lru-cache "^5.1.1"
|
66
68
|
semver "^6.3.1"
|
67
69
|
|
68
|
-
"@babel/helper-module-imports@^7.
|
69
|
-
version "7.
|
70
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.
|
71
|
-
integrity sha512-
|
72
|
-
dependencies:
|
73
|
-
"@babel/traverse" "^7.
|
74
|
-
"@babel/types" "^7.
|
75
|
-
|
76
|
-
"@babel/helper-module-transforms@^7.25.2":
|
77
|
-
version "7.25.2"
|
78
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6"
|
79
|
-
integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==
|
80
|
-
dependencies:
|
81
|
-
"@babel/helper-module-imports" "^7.24.7"
|
82
|
-
"@babel/helper-simple-access" "^7.24.7"
|
83
|
-
"@babel/helper-validator-identifier" "^7.24.7"
|
84
|
-
"@babel/traverse" "^7.25.2"
|
85
|
-
|
86
|
-
"@babel/helper-simple-access@^7.24.7":
|
87
|
-
version "7.24.7"
|
88
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3"
|
89
|
-
integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==
|
90
|
-
dependencies:
|
91
|
-
"@babel/traverse" "^7.24.7"
|
92
|
-
"@babel/types" "^7.24.7"
|
93
|
-
|
94
|
-
"@babel/helper-string-parser@^7.24.8":
|
95
|
-
version "7.24.8"
|
96
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d"
|
97
|
-
integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
|
98
|
-
|
99
|
-
"@babel/helper-validator-identifier@^7.24.7":
|
100
|
-
version "7.24.7"
|
101
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db"
|
102
|
-
integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
|
103
|
-
|
104
|
-
"@babel/helper-validator-option@^7.24.8":
|
105
|
-
version "7.24.8"
|
106
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d"
|
107
|
-
integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==
|
108
|
-
|
109
|
-
"@babel/helpers@^7.25.0":
|
110
|
-
version "7.25.0"
|
111
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.0.tgz#e69beb7841cb93a6505531ede34f34e6a073650a"
|
112
|
-
integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==
|
113
|
-
dependencies:
|
114
|
-
"@babel/template" "^7.25.0"
|
115
|
-
"@babel/types" "^7.25.0"
|
116
|
-
|
117
|
-
"@babel/highlight@^7.24.7":
|
118
|
-
version "7.24.7"
|
119
|
-
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d"
|
120
|
-
integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
|
121
|
-
dependencies:
|
122
|
-
"@babel/helper-validator-identifier" "^7.24.7"
|
123
|
-
chalk "^2.4.2"
|
124
|
-
js-tokens "^4.0.0"
|
125
|
-
picocolors "^1.0.0"
|
70
|
+
"@babel/helper-module-imports@^7.25.9":
|
71
|
+
version "7.25.9"
|
72
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
|
73
|
+
integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
|
74
|
+
dependencies:
|
75
|
+
"@babel/traverse" "^7.25.9"
|
76
|
+
"@babel/types" "^7.25.9"
|
126
77
|
|
127
|
-
"@babel/
|
128
|
-
version "7.
|
129
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
130
|
-
integrity sha512-
|
78
|
+
"@babel/helper-module-transforms@^7.26.0":
|
79
|
+
version "7.26.0"
|
80
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
|
81
|
+
integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==
|
82
|
+
dependencies:
|
83
|
+
"@babel/helper-module-imports" "^7.25.9"
|
84
|
+
"@babel/helper-validator-identifier" "^7.25.9"
|
85
|
+
"@babel/traverse" "^7.25.9"
|
86
|
+
|
87
|
+
"@babel/helper-plugin-utils@^7.25.9":
|
88
|
+
version "7.26.5"
|
89
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz#18580d00c9934117ad719392c4f6585c9333cc35"
|
90
|
+
integrity sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==
|
91
|
+
|
92
|
+
"@babel/helper-string-parser@^7.25.9":
|
93
|
+
version "7.25.9"
|
94
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
|
95
|
+
integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
|
96
|
+
|
97
|
+
"@babel/helper-validator-identifier@^7.25.9":
|
98
|
+
version "7.25.9"
|
99
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
|
100
|
+
integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
|
101
|
+
|
102
|
+
"@babel/helper-validator-option@^7.25.9":
|
103
|
+
version "7.25.9"
|
104
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72"
|
105
|
+
integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==
|
106
|
+
|
107
|
+
"@babel/helpers@^7.26.0":
|
108
|
+
version "7.26.0"
|
109
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4"
|
110
|
+
integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==
|
131
111
|
dependencies:
|
132
|
-
"@babel/
|
112
|
+
"@babel/template" "^7.25.9"
|
113
|
+
"@babel/types" "^7.26.0"
|
114
|
+
|
115
|
+
"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.5":
|
116
|
+
version "7.26.5"
|
117
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.5.tgz#6fec9aebddef25ca57a935c86dbb915ae2da3e1f"
|
118
|
+
integrity sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==
|
119
|
+
dependencies:
|
120
|
+
"@babel/types" "^7.26.5"
|
121
|
+
|
122
|
+
"@babel/plugin-transform-react-jsx-self@^7.25.9":
|
123
|
+
version "7.25.9"
|
124
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz#c0b6cae9c1b73967f7f9eb2fca9536ba2fad2858"
|
125
|
+
integrity sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==
|
126
|
+
dependencies:
|
127
|
+
"@babel/helper-plugin-utils" "^7.25.9"
|
128
|
+
|
129
|
+
"@babel/plugin-transform-react-jsx-source@^7.25.9":
|
130
|
+
version "7.25.9"
|
131
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz#4c6b8daa520b5f155b5fb55547d7c9fa91417503"
|
132
|
+
integrity sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==
|
133
|
+
dependencies:
|
134
|
+
"@babel/helper-plugin-utils" "^7.25.9"
|
133
135
|
|
134
136
|
"@babel/runtime@^7.21.0":
|
135
137
|
version "7.26.0"
|
@@ -138,41 +140,40 @@
|
|
138
140
|
dependencies:
|
139
141
|
regenerator-runtime "^0.14.0"
|
140
142
|
|
141
|
-
"@babel/template@^7.25.
|
142
|
-
version "7.25.
|
143
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.
|
144
|
-
integrity sha512-
|
145
|
-
dependencies:
|
146
|
-
"@babel/code-frame" "^7.
|
147
|
-
"@babel/parser" "^7.25.
|
148
|
-
"@babel/types" "^7.25.
|
149
|
-
|
150
|
-
"@babel/traverse@^7.
|
151
|
-
version "7.
|
152
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.
|
153
|
-
integrity sha512-
|
154
|
-
dependencies:
|
155
|
-
"@babel/code-frame" "^7.
|
156
|
-
"@babel/generator" "^7.
|
157
|
-
"@babel/parser" "^7.
|
158
|
-
"@babel/template" "^7.25.
|
159
|
-
"@babel/types" "^7.
|
143
|
+
"@babel/template@^7.25.9":
|
144
|
+
version "7.25.9"
|
145
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
|
146
|
+
integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
|
147
|
+
dependencies:
|
148
|
+
"@babel/code-frame" "^7.25.9"
|
149
|
+
"@babel/parser" "^7.25.9"
|
150
|
+
"@babel/types" "^7.25.9"
|
151
|
+
|
152
|
+
"@babel/traverse@^7.25.9":
|
153
|
+
version "7.26.5"
|
154
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.5.tgz#6d0be3e772ff786456c1a37538208286f6e79021"
|
155
|
+
integrity sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==
|
156
|
+
dependencies:
|
157
|
+
"@babel/code-frame" "^7.26.2"
|
158
|
+
"@babel/generator" "^7.26.5"
|
159
|
+
"@babel/parser" "^7.26.5"
|
160
|
+
"@babel/template" "^7.25.9"
|
161
|
+
"@babel/types" "^7.26.5"
|
160
162
|
debug "^4.3.1"
|
161
163
|
globals "^11.1.0"
|
162
164
|
|
163
|
-
"@babel/types@^7.
|
164
|
-
version "7.
|
165
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
166
|
-
integrity sha512-
|
165
|
+
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.5":
|
166
|
+
version "7.26.5"
|
167
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.5.tgz#7a1e1c01d28e26d1fe7f8ec9567b3b92b9d07747"
|
168
|
+
integrity sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==
|
167
169
|
dependencies:
|
168
|
-
"@babel/helper-string-parser" "^7.
|
169
|
-
"@babel/helper-validator-identifier" "^7.
|
170
|
-
to-fast-properties "^2.0.0"
|
170
|
+
"@babel/helper-string-parser" "^7.25.9"
|
171
|
+
"@babel/helper-validator-identifier" "^7.25.9"
|
171
172
|
|
172
|
-
"@codemirror/autocomplete@^6.0.0":
|
173
|
-
version "6.18.
|
174
|
-
resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.
|
175
|
-
integrity sha512-
|
173
|
+
"@codemirror/autocomplete@^6.0.0", "@codemirror/autocomplete@^6.18.4":
|
174
|
+
version "6.18.4"
|
175
|
+
resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.4.tgz#4394f55d6771727179f2e28a871ef46bbbeb11b1"
|
176
|
+
integrity sha512-sFAphGQIqyQZfP2ZBsSHV7xQvo9Py0rV0dW7W3IMRdS+zDuNb2l3no78CvUaWKGfzFjI4FTrLdUSj86IGb2hRA==
|
176
177
|
dependencies:
|
177
178
|
"@codemirror/language" "^6.0.0"
|
178
179
|
"@codemirror/state" "^6.0.0"
|
@@ -180,19 +181,19 @@
|
|
180
181
|
"@lezer/common" "^1.0.0"
|
181
182
|
|
182
183
|
"@codemirror/commands@^6.0.0":
|
183
|
-
version "6.
|
184
|
-
resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.
|
185
|
-
integrity sha512-
|
184
|
+
version "6.8.0"
|
185
|
+
resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.8.0.tgz#92f200b66f852939bd6ebb90d48c2d9e9c813d64"
|
186
|
+
integrity sha512-q8VPEFaEP4ikSlt6ZxjB3zW72+7osfAYW9i8Zu943uqbKuz6utc1+F170hyLUCUltXORjQXRyYQNfkckzA/bPQ==
|
186
187
|
dependencies:
|
187
188
|
"@codemirror/language" "^6.0.0"
|
188
189
|
"@codemirror/state" "^6.4.0"
|
189
190
|
"@codemirror/view" "^6.27.0"
|
190
191
|
"@lezer/common" "^1.1.0"
|
191
192
|
|
192
|
-
"@codemirror/language@^6.0.0":
|
193
|
-
version "6.10.
|
194
|
-
resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.10.
|
195
|
-
integrity sha512-
|
193
|
+
"@codemirror/language@^6.0.0", "@codemirror/language@^6.10.8":
|
194
|
+
version "6.10.8"
|
195
|
+
resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.10.8.tgz#3e3a346a2b0a8cf63ee1cfe03349eb1965dce5f9"
|
196
|
+
integrity sha512-wcP8XPPhDH2vTqf181U8MbZnW+tDyPYy0UzVOa+oHORjyT+mhhom9vBd7dApJwoDz9Nb/a8kHjJIsuA/t8vNFw==
|
196
197
|
dependencies:
|
197
198
|
"@codemirror/state" "^6.0.0"
|
198
199
|
"@codemirror/view" "^6.23.0"
|
@@ -201,7 +202,7 @@
|
|
201
202
|
"@lezer/lr" "^1.0.0"
|
202
203
|
style-mod "^4.0.0"
|
203
204
|
|
204
|
-
"@codemirror/lint@^6.0.0":
|
205
|
+
"@codemirror/lint@^6.0.0", "@codemirror/lint@^6.8.4":
|
205
206
|
version "6.8.4"
|
206
207
|
resolved "https://registry.yarnpkg.com/@codemirror/lint/-/lint-6.8.4.tgz#7d8aa5d1a6dec89ffcc23ad45ddca2e12e90982d"
|
207
208
|
integrity sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==
|
@@ -219,17 +220,19 @@
|
|
219
220
|
"@codemirror/view" "^6.0.0"
|
220
221
|
crelt "^1.0.5"
|
221
222
|
|
222
|
-
"@codemirror/state@^6.0.0", "@codemirror/state@^6.4.0":
|
223
|
-
version "6.
|
224
|
-
resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.
|
225
|
-
integrity sha512-
|
223
|
+
"@codemirror/state@^6.0.0", "@codemirror/state@^6.4.0", "@codemirror/state@^6.5.0", "@codemirror/state@^6.5.1":
|
224
|
+
version "6.5.1"
|
225
|
+
resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.5.1.tgz#e5c0599f7b43cf03f19e05861317df5425c07904"
|
226
|
+
integrity sha512-3rA9lcwciEB47ZevqvD8qgbzhM9qMb8vCcQCNmDfVRPQG4JT9mSb0Jg8H7YjKGGQcFnLN323fj9jdnG59Kx6bg==
|
227
|
+
dependencies:
|
228
|
+
"@marijn/find-cluster-break" "^1.0.0"
|
226
229
|
|
227
230
|
"@codemirror/view@^6.0.0", "@codemirror/view@^6.17.0", "@codemirror/view@^6.23.0", "@codemirror/view@^6.27.0", "@codemirror/view@^6.35.0":
|
228
|
-
version "6.
|
229
|
-
resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.
|
230
|
-
integrity sha512-
|
231
|
+
version "6.36.2"
|
232
|
+
resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.36.2.tgz#aeb644e161440734ac5a153bf6e5b4a4355047be"
|
233
|
+
integrity sha512-DZ6ONbs8qdJK0fdN7AB82CgI6tYXf4HWk1wSVa0+9bhVznCuuvhQtX8bFBoy3dv8rZSQqUd8GvhVAcielcidrA==
|
231
234
|
dependencies:
|
232
|
-
"@codemirror/state" "^6.
|
235
|
+
"@codemirror/state" "^6.5.0"
|
233
236
|
style-mod "^4.1.0"
|
234
237
|
w3c-keyname "^2.2.4"
|
235
238
|
|
@@ -349,30 +352,37 @@
|
|
349
352
|
integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
|
350
353
|
|
351
354
|
"@eslint-community/eslint-utils@^4.2.0":
|
352
|
-
version "4.4.
|
353
|
-
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.
|
354
|
-
integrity sha512-
|
355
|
+
version "4.4.1"
|
356
|
+
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz#d1145bf2c20132d6400495d6df4bf59362fd9d56"
|
357
|
+
integrity sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==
|
355
358
|
dependencies:
|
356
|
-
eslint-visitor-keys "^3.3
|
359
|
+
eslint-visitor-keys "^3.4.3"
|
357
360
|
|
358
|
-
"@eslint-community/regexpp@^4.
|
359
|
-
version "4.
|
360
|
-
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.
|
361
|
-
integrity sha512-
|
361
|
+
"@eslint-community/regexpp@^4.12.1":
|
362
|
+
version "4.12.1"
|
363
|
+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0"
|
364
|
+
integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==
|
362
365
|
|
363
|
-
"@eslint/config-array@^0.
|
364
|
-
version "0.
|
365
|
-
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.
|
366
|
-
integrity sha512-
|
366
|
+
"@eslint/config-array@^0.19.0":
|
367
|
+
version "0.19.1"
|
368
|
+
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.1.tgz#734aaea2c40be22bbb1f2a9dac687c57a6a4c984"
|
369
|
+
integrity sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==
|
367
370
|
dependencies:
|
368
|
-
"@eslint/object-schema" "^2.1.
|
371
|
+
"@eslint/object-schema" "^2.1.5"
|
369
372
|
debug "^4.3.1"
|
370
373
|
minimatch "^3.1.2"
|
371
374
|
|
372
|
-
"@eslint/
|
373
|
-
version "
|
374
|
-
resolved "https://registry.yarnpkg.com/@eslint/
|
375
|
-
integrity sha512-
|
375
|
+
"@eslint/core@^0.10.0":
|
376
|
+
version "0.10.0"
|
377
|
+
resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.10.0.tgz#23727063c21b335f752dbb3a16450f6f9cbc9091"
|
378
|
+
integrity sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==
|
379
|
+
dependencies:
|
380
|
+
"@types/json-schema" "^7.0.15"
|
381
|
+
|
382
|
+
"@eslint/eslintrc@^3.2.0":
|
383
|
+
version "3.2.0"
|
384
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.2.0.tgz#57470ac4e2e283a6bf76044d63281196e370542c"
|
385
|
+
integrity sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==
|
376
386
|
dependencies:
|
377
387
|
ajv "^6.12.4"
|
378
388
|
debug "^4.3.2"
|
@@ -384,15 +394,36 @@
|
|
384
394
|
minimatch "^3.1.2"
|
385
395
|
strip-json-comments "^3.1.1"
|
386
396
|
|
387
|
-
"@eslint/js@9.
|
388
|
-
version "9.
|
389
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.
|
390
|
-
integrity sha512-
|
397
|
+
"@eslint/js@9.18.0", "@eslint/js@^9.5.0":
|
398
|
+
version "9.18.0"
|
399
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.18.0.tgz#3356f85d18ed3627ab107790b53caf7e1e3d1e84"
|
400
|
+
integrity sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==
|
401
|
+
|
402
|
+
"@eslint/object-schema@^2.1.5":
|
403
|
+
version "2.1.5"
|
404
|
+
resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.5.tgz#8670a8f6258a2be5b2c620ff314a1d984c23eb2e"
|
405
|
+
integrity sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==
|
406
|
+
|
407
|
+
"@eslint/plugin-kit@^0.2.5":
|
408
|
+
version "0.2.5"
|
409
|
+
resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz#ee07372035539e7847ef834e3f5e7b79f09e3a81"
|
410
|
+
integrity sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==
|
411
|
+
dependencies:
|
412
|
+
"@eslint/core" "^0.10.0"
|
413
|
+
levn "^0.4.1"
|
391
414
|
|
392
|
-
"@
|
393
|
-
version "
|
394
|
-
resolved "https://registry.yarnpkg.com/@
|
395
|
-
integrity sha512-
|
415
|
+
"@humanfs/core@^0.19.1":
|
416
|
+
version "0.19.1"
|
417
|
+
resolved "https://registry.yarnpkg.com/@humanfs/core/-/core-0.19.1.tgz#17c55ca7d426733fe3c561906b8173c336b40a77"
|
418
|
+
integrity sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==
|
419
|
+
|
420
|
+
"@humanfs/node@^0.16.6":
|
421
|
+
version "0.16.6"
|
422
|
+
resolved "https://registry.yarnpkg.com/@humanfs/node/-/node-0.16.6.tgz#ee2a10eaabd1131987bf0488fd9b820174cd765e"
|
423
|
+
integrity sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==
|
424
|
+
dependencies:
|
425
|
+
"@humanfs/core" "^0.19.1"
|
426
|
+
"@humanwhocodes/retry" "^0.3.0"
|
396
427
|
|
397
428
|
"@humanwhocodes/module-importer@^1.0.1":
|
398
429
|
version "1.0.1"
|
@@ -400,14 +431,19 @@
|
|
400
431
|
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
|
401
432
|
|
402
433
|
"@humanwhocodes/retry@^0.3.0":
|
403
|
-
version "0.3.
|
404
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.
|
405
|
-
integrity sha512-
|
434
|
+
version "0.3.1"
|
435
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.1.tgz#c72a5c76a9fbaf3488e231b13dc52c0da7bab42a"
|
436
|
+
integrity sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==
|
437
|
+
|
438
|
+
"@humanwhocodes/retry@^0.4.1":
|
439
|
+
version "0.4.1"
|
440
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.4.1.tgz#9a96ce501bc62df46c4031fbd970e3cc6b10f07b"
|
441
|
+
integrity sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==
|
406
442
|
|
407
443
|
"@jridgewell/gen-mapping@^0.3.5":
|
408
|
-
version "0.3.
|
409
|
-
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.
|
410
|
-
integrity sha512-
|
444
|
+
version "0.3.8"
|
445
|
+
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142"
|
446
|
+
integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==
|
411
447
|
dependencies:
|
412
448
|
"@jridgewell/set-array" "^1.2.1"
|
413
449
|
"@jridgewell/sourcemap-codec" "^1.4.10"
|
@@ -441,7 +477,7 @@
|
|
441
477
|
resolved "https://registry.yarnpkg.com/@lezer/common/-/common-1.2.3.tgz#138fcddab157d83da557554851017c6c1e5667fd"
|
442
478
|
integrity sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==
|
443
479
|
|
444
|
-
"@lezer/highlight@^1.0.0":
|
480
|
+
"@lezer/highlight@^1.0.0", "@lezer/highlight@^1.2.1":
|
445
481
|
version "1.2.1"
|
446
482
|
resolved "https://registry.yarnpkg.com/@lezer/highlight/-/highlight-1.2.1.tgz#596fa8f9aeb58a608be0a563e960c373cbf23f8b"
|
447
483
|
integrity sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==
|
@@ -455,131 +491,247 @@
|
|
455
491
|
dependencies:
|
456
492
|
"@lezer/common" "^1.0.0"
|
457
493
|
|
458
|
-
"@
|
459
|
-
version "
|
460
|
-
resolved "https://registry.yarnpkg.com/@
|
461
|
-
integrity sha512-
|
462
|
-
dependencies:
|
463
|
-
"@nodelib/fs.stat" "2.0.5"
|
464
|
-
run-parallel "^1.1.9"
|
465
|
-
|
466
|
-
"@nodelib/fs.stat@2.0.5":
|
467
|
-
version "2.0.5"
|
468
|
-
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
|
469
|
-
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
|
470
|
-
|
471
|
-
"@nodelib/fs.walk@^1.2.8":
|
472
|
-
version "1.2.8"
|
473
|
-
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
|
474
|
-
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
|
475
|
-
dependencies:
|
476
|
-
"@nodelib/fs.scandir" "2.1.5"
|
477
|
-
fastq "^1.6.0"
|
494
|
+
"@marijn/find-cluster-break@^1.0.0":
|
495
|
+
version "1.0.2"
|
496
|
+
resolved "https://registry.yarnpkg.com/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz#775374306116d51c0c500b8c4face0f9a04752d8"
|
497
|
+
integrity sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==
|
478
498
|
|
479
|
-
"@popperjs/core@^2.11.8":
|
499
|
+
"@popperjs/core@^2.11.8", "@popperjs/core@^2.9.2":
|
480
500
|
version "2.11.8"
|
481
501
|
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f"
|
482
502
|
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
|
483
503
|
|
484
|
-
"@rollup/rollup-android-arm-eabi@4.
|
485
|
-
version "4.
|
486
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
487
|
-
integrity sha512-
|
488
|
-
|
489
|
-
"@rollup/rollup-android-arm64@4.
|
490
|
-
version "4.
|
491
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
492
|
-
integrity sha512-
|
493
|
-
|
494
|
-
"@rollup/rollup-darwin-arm64@4.
|
495
|
-
version "4.
|
496
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
497
|
-
integrity sha512-
|
498
|
-
|
499
|
-
"@rollup/rollup-darwin-x64@4.
|
500
|
-
version "4.
|
501
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
502
|
-
integrity sha512-
|
503
|
-
|
504
|
-
"@rollup/rollup-
|
505
|
-
version "4.
|
506
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-
|
507
|
-
integrity sha512-
|
508
|
-
|
509
|
-
"@rollup/rollup-
|
510
|
-
version "4.
|
511
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-
|
512
|
-
integrity sha512-
|
513
|
-
|
514
|
-
"@rollup/rollup-linux-
|
515
|
-
version "4.
|
516
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
517
|
-
integrity sha512-
|
518
|
-
|
519
|
-
"@rollup/rollup-linux-
|
520
|
-
version "4.
|
521
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
522
|
-
integrity sha512
|
523
|
-
|
524
|
-
"@rollup/rollup-linux-
|
525
|
-
version "4.
|
526
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
527
|
-
integrity sha512-
|
528
|
-
|
529
|
-
"@rollup/rollup-linux-
|
530
|
-
version "4.
|
531
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
532
|
-
integrity sha512-
|
533
|
-
|
534
|
-
"@rollup/rollup-linux-
|
535
|
-
version "4.
|
536
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
537
|
-
integrity sha512-
|
538
|
-
|
539
|
-
"@rollup/rollup-linux-
|
540
|
-
version "4.
|
541
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
542
|
-
integrity sha512-
|
543
|
-
|
544
|
-
"@rollup/rollup-linux-
|
545
|
-
version "4.
|
546
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-
|
547
|
-
integrity sha512-
|
548
|
-
|
549
|
-
"@rollup/rollup-
|
550
|
-
version "4.
|
551
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-
|
552
|
-
integrity sha512-
|
553
|
-
|
554
|
-
"@rollup/rollup-
|
555
|
-
version "4.
|
556
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-
|
557
|
-
integrity sha512-
|
558
|
-
|
559
|
-
"@rollup/rollup-
|
560
|
-
version "4.
|
561
|
-
resolved "https://registry.yarnpkg.com/@rollup/rollup-
|
562
|
-
integrity sha512-
|
504
|
+
"@rollup/rollup-android-arm-eabi@4.31.0":
|
505
|
+
version "4.31.0"
|
506
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.31.0.tgz#d4dd60da0075a6ce9a6c76d71b8204f3e1822285"
|
507
|
+
integrity sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==
|
508
|
+
|
509
|
+
"@rollup/rollup-android-arm64@4.31.0":
|
510
|
+
version "4.31.0"
|
511
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.31.0.tgz#25c4d33259a7a2ccd2f52a5ffcc0bb3ab3f0729d"
|
512
|
+
integrity sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==
|
513
|
+
|
514
|
+
"@rollup/rollup-darwin-arm64@4.31.0":
|
515
|
+
version "4.31.0"
|
516
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz#d137dff254b19163a6b52ac083a71cd055dae844"
|
517
|
+
integrity sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==
|
518
|
+
|
519
|
+
"@rollup/rollup-darwin-x64@4.31.0":
|
520
|
+
version "4.31.0"
|
521
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.31.0.tgz#58ff20b5dacb797d3adca19f02a21c532f9d55bf"
|
522
|
+
integrity sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==
|
523
|
+
|
524
|
+
"@rollup/rollup-freebsd-arm64@4.31.0":
|
525
|
+
version "4.31.0"
|
526
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.31.0.tgz#96ce1a241c591ec3e068f4af765d94eddb24e60c"
|
527
|
+
integrity sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==
|
528
|
+
|
529
|
+
"@rollup/rollup-freebsd-x64@4.31.0":
|
530
|
+
version "4.31.0"
|
531
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.31.0.tgz#e59e7ede505be41f0b4311b0b943f8eb44938467"
|
532
|
+
integrity sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==
|
533
|
+
|
534
|
+
"@rollup/rollup-linux-arm-gnueabihf@4.31.0":
|
535
|
+
version "4.31.0"
|
536
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.31.0.tgz#e455ca6e4ff35bd46d62201c153352e717000a7b"
|
537
|
+
integrity sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==
|
538
|
+
|
539
|
+
"@rollup/rollup-linux-arm-musleabihf@4.31.0":
|
540
|
+
version "4.31.0"
|
541
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.31.0.tgz#bc1a93d807d19e70b1e343a5bfea43723bcd6327"
|
542
|
+
integrity sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==
|
543
|
+
|
544
|
+
"@rollup/rollup-linux-arm64-gnu@4.31.0":
|
545
|
+
version "4.31.0"
|
546
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.31.0.tgz#f38bf843f1dc3d5de680caf31084008846e3efae"
|
547
|
+
integrity sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==
|
548
|
+
|
549
|
+
"@rollup/rollup-linux-arm64-musl@4.31.0":
|
550
|
+
version "4.31.0"
|
551
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.31.0.tgz#b3987a96c18b7287129cf735be2dbf83e94d9d05"
|
552
|
+
integrity sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==
|
553
|
+
|
554
|
+
"@rollup/rollup-linux-loongarch64-gnu@4.31.0":
|
555
|
+
version "4.31.0"
|
556
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.31.0.tgz#0f0324044e71c4f02e9f49e7ec4e347b655b34ee"
|
557
|
+
integrity sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==
|
558
|
+
|
559
|
+
"@rollup/rollup-linux-powerpc64le-gnu@4.31.0":
|
560
|
+
version "4.31.0"
|
561
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.31.0.tgz#809479f27f1fd5b4eecd2aa732132ad952d454ba"
|
562
|
+
integrity sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==
|
563
|
+
|
564
|
+
"@rollup/rollup-linux-riscv64-gnu@4.31.0":
|
565
|
+
version "4.31.0"
|
566
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.31.0.tgz#7bc75c4f22db04d3c972f83431739cfa41c6a36e"
|
567
|
+
integrity sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==
|
568
|
+
|
569
|
+
"@rollup/rollup-linux-s390x-gnu@4.31.0":
|
570
|
+
version "4.31.0"
|
571
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.31.0.tgz#cfe8052345c55864d83ae343362cf1912480170e"
|
572
|
+
integrity sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==
|
573
|
+
|
574
|
+
"@rollup/rollup-linux-x64-gnu@4.31.0":
|
575
|
+
version "4.31.0"
|
576
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.31.0.tgz#c6b048f1e25f3fea5b4bd246232f4d07a159c5a0"
|
577
|
+
integrity sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==
|
578
|
+
|
579
|
+
"@rollup/rollup-linux-x64-musl@4.31.0":
|
580
|
+
version "4.31.0"
|
581
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.31.0.tgz#615273ac52d1a201f4de191cbd3389016a9d7d80"
|
582
|
+
integrity sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==
|
583
|
+
|
584
|
+
"@rollup/rollup-win32-arm64-msvc@4.31.0":
|
585
|
+
version "4.31.0"
|
586
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.31.0.tgz#32ed85810c1b831c648eca999d68f01255b30691"
|
587
|
+
integrity sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==
|
588
|
+
|
589
|
+
"@rollup/rollup-win32-ia32-msvc@4.31.0":
|
590
|
+
version "4.31.0"
|
591
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.31.0.tgz#d47effada68bcbfdccd30c4a788d42e4542ff4d3"
|
592
|
+
integrity sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==
|
593
|
+
|
594
|
+
"@rollup/rollup-win32-x64-msvc@4.31.0":
|
595
|
+
version "4.31.0"
|
596
|
+
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.31.0.tgz#7a2d89a82cf0388d60304964217dd7beac6de645"
|
597
|
+
integrity sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==
|
598
|
+
|
599
|
+
"@types/babel__core@^7.20.5":
|
600
|
+
version "7.20.5"
|
601
|
+
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017"
|
602
|
+
integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==
|
603
|
+
dependencies:
|
604
|
+
"@babel/parser" "^7.20.7"
|
605
|
+
"@babel/types" "^7.20.7"
|
606
|
+
"@types/babel__generator" "*"
|
607
|
+
"@types/babel__template" "*"
|
608
|
+
"@types/babel__traverse" "*"
|
609
|
+
|
610
|
+
"@types/babel__generator@*":
|
611
|
+
version "7.6.8"
|
612
|
+
resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab"
|
613
|
+
integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==
|
614
|
+
dependencies:
|
615
|
+
"@babel/types" "^7.0.0"
|
616
|
+
|
617
|
+
"@types/babel__template@*":
|
618
|
+
version "7.4.4"
|
619
|
+
resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f"
|
620
|
+
integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==
|
621
|
+
dependencies:
|
622
|
+
"@babel/parser" "^7.1.0"
|
623
|
+
"@babel/types" "^7.0.0"
|
624
|
+
|
625
|
+
"@types/babel__traverse@*":
|
626
|
+
version "7.20.6"
|
627
|
+
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7"
|
628
|
+
integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==
|
629
|
+
dependencies:
|
630
|
+
"@babel/types" "^7.20.7"
|
631
|
+
|
632
|
+
"@types/bootstrap@^5.2.10":
|
633
|
+
version "5.2.10"
|
634
|
+
resolved "https://registry.yarnpkg.com/@types/bootstrap/-/bootstrap-5.2.10.tgz#58506463bccc6602bc051487ad8d3a6458f94c6c"
|
635
|
+
integrity sha512-F2X+cd6551tep0MvVZ6nM8v7XgGN/twpdNDjqS1TUM7YFNEtQYWk+dKAnH+T1gr6QgCoGMPl487xw/9hXooa2g==
|
636
|
+
dependencies:
|
637
|
+
"@popperjs/core" "^2.9.2"
|
638
|
+
|
639
|
+
"@types/clipboard@^2.0.10":
|
640
|
+
version "2.0.10"
|
641
|
+
resolved "https://registry.yarnpkg.com/@types/clipboard/-/clipboard-2.0.10.tgz#f08bfa75f2352f629572ebbeccfff0e497c41141"
|
642
|
+
integrity sha512-6CIsNdBfOTN92GHhQ0BaGY9KoV4DPH7ynCk5eggSDy3HW7OHLKWJUskL72uoVxl2kZ/XCq28TEgI0HKxLbRxyQ==
|
643
|
+
dependencies:
|
644
|
+
clipboard "*"
|
645
|
+
|
646
|
+
"@types/codemirror@^5.60.15":
|
647
|
+
version "5.60.15"
|
648
|
+
resolved "https://registry.yarnpkg.com/@types/codemirror/-/codemirror-5.60.15.tgz#0f82be6f4126d1e59cf4c4830e56dcd49d3c3e8a"
|
649
|
+
integrity sha512-dTOvwEQ+ouKJ/rE9LT1Ue2hmP6H1mZv5+CCnNWu2qtiOe2LQa9lCprEY20HxiDmV/Bxh+dXjywmy5aKvoGjULA==
|
650
|
+
dependencies:
|
651
|
+
"@types/tern" "*"
|
652
|
+
|
653
|
+
"@types/css-modules@^1.0.5":
|
654
|
+
version "1.0.5"
|
655
|
+
resolved "https://registry.yarnpkg.com/@types/css-modules/-/css-modules-1.0.5.tgz#8e5e40cd9bfbd1f14063d61ebec564a39fd227ce"
|
656
|
+
integrity sha512-oeKafs/df9lwOvtfiXVliZsocFVOexK9PZtLQWuPeuVCFR7jwiqlg60lu80JTe5NFNtH3tnV6Fs/ySR8BUPHAw==
|
563
657
|
|
564
658
|
"@types/diff-match-patch@^1.0.36":
|
565
659
|
version "1.0.36"
|
566
660
|
resolved "https://registry.yarnpkg.com/@types/diff-match-patch/-/diff-match-patch-1.0.36.tgz#dcef10a69d357fe9d43ac4ff2eca6b85dbf466af"
|
567
661
|
integrity sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==
|
568
662
|
|
569
|
-
"@types/estree@1.0.
|
570
|
-
version "1.0.
|
571
|
-
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.
|
572
|
-
integrity sha512
|
663
|
+
"@types/estree@*", "@types/estree@1.0.6", "@types/estree@^1.0.6":
|
664
|
+
version "1.0.6"
|
665
|
+
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
|
666
|
+
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
|
667
|
+
|
668
|
+
"@types/json-schema@^7.0.15":
|
669
|
+
version "7.0.15"
|
670
|
+
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
|
671
|
+
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
|
672
|
+
|
673
|
+
"@types/linkify-it@^5":
|
674
|
+
version "5.0.0"
|
675
|
+
resolved "https://registry.yarnpkg.com/@types/linkify-it/-/linkify-it-5.0.0.tgz#21413001973106cda1c3a9b91eedd4ccd5469d76"
|
676
|
+
integrity sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==
|
677
|
+
|
678
|
+
"@types/markdown-it@^14.1.2":
|
679
|
+
version "14.1.2"
|
680
|
+
resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-14.1.2.tgz#57f2532a0800067d9b934f3521429a2e8bfb4c61"
|
681
|
+
integrity sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==
|
682
|
+
dependencies:
|
683
|
+
"@types/linkify-it" "^5"
|
684
|
+
"@types/mdurl" "^2"
|
685
|
+
|
686
|
+
"@types/mdurl@^2":
|
687
|
+
version "2.0.0"
|
688
|
+
resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-2.0.0.tgz#d43878b5b20222682163ae6f897b20447233bdfd"
|
689
|
+
integrity sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==
|
690
|
+
|
691
|
+
"@types/prismjs@^1.26.5":
|
692
|
+
version "1.26.5"
|
693
|
+
resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.5.tgz#72499abbb4c4ec9982446509d2f14fb8483869d6"
|
694
|
+
integrity sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==
|
695
|
+
|
696
|
+
"@types/react-dom@^19.0.3":
|
697
|
+
version "19.0.3"
|
698
|
+
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.0.3.tgz#0804dfd279a165d5a0ad8b53a5b9e65f338050a4"
|
699
|
+
integrity sha512-0Knk+HJiMP/qOZgMyNFamlIjw9OFCsyC2ZbigmEEyXXixgre6IQpm/4V+r3qH4GC1JPvRJKInw+on2rV6YZLeA==
|
700
|
+
|
701
|
+
"@types/react@^19.0.7":
|
702
|
+
version "19.0.8"
|
703
|
+
resolved "https://registry.yarnpkg.com/@types/react/-/react-19.0.8.tgz#7098e6159f2a61e4f4cef2c1223c044a9bec590e"
|
704
|
+
integrity sha512-9P/o1IGdfmQxrujGbIMDyYaaCykhLKc0NGCtYcECNUr9UAaDe4gwvV9bR6tvd5Br1SG0j+PBpbKr2UYY8CwqSw==
|
705
|
+
dependencies:
|
706
|
+
csstype "^3.0.2"
|
707
|
+
|
708
|
+
"@types/tern@*":
|
709
|
+
version "0.23.9"
|
710
|
+
resolved "https://registry.yarnpkg.com/@types/tern/-/tern-0.23.9.tgz#6f6093a4a9af3e6bb8dde528e024924d196b367c"
|
711
|
+
integrity sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==
|
712
|
+
dependencies:
|
713
|
+
"@types/estree" "*"
|
714
|
+
|
715
|
+
"@vitejs/plugin-react@^4.3.4":
|
716
|
+
version "4.3.4"
|
717
|
+
resolved "https://registry.yarnpkg.com/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz#c64be10b54c4640135a5b28a2432330e88ad7c20"
|
718
|
+
integrity sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==
|
719
|
+
dependencies:
|
720
|
+
"@babel/core" "^7.26.0"
|
721
|
+
"@babel/plugin-transform-react-jsx-self" "^7.25.9"
|
722
|
+
"@babel/plugin-transform-react-jsx-source" "^7.25.9"
|
723
|
+
"@types/babel__core" "^7.20.5"
|
724
|
+
react-refresh "^0.14.2"
|
573
725
|
|
574
726
|
acorn-jsx@^5.3.2:
|
575
727
|
version "5.3.2"
|
576
728
|
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
|
577
729
|
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
|
578
730
|
|
579
|
-
acorn@^8.
|
580
|
-
version "8.
|
581
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.
|
582
|
-
integrity sha512-
|
731
|
+
acorn@^8.14.0:
|
732
|
+
version "8.14.0"
|
733
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
|
734
|
+
integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
|
583
735
|
|
584
736
|
ajv@^6.12.4:
|
585
737
|
version "6.12.6"
|
@@ -591,17 +743,10 @@ ajv@^6.12.4:
|
|
591
743
|
json-schema-traverse "^0.4.1"
|
592
744
|
uri-js "^4.2.2"
|
593
745
|
|
594
|
-
ansi-
|
595
|
-
version "
|
596
|
-
resolved "https://registry.yarnpkg.com/ansi-
|
597
|
-
integrity sha512-
|
598
|
-
|
599
|
-
ansi-styles@^3.2.1:
|
600
|
-
version "3.2.1"
|
601
|
-
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
602
|
-
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
603
|
-
dependencies:
|
604
|
-
color-convert "^1.9.0"
|
746
|
+
ansi-output@^0.0.9:
|
747
|
+
version "0.0.9"
|
748
|
+
resolved "https://registry.yarnpkg.com/ansi-output/-/ansi-output-0.0.9.tgz#a09c2ea6ca690e77730c6358b36081e224f066e5"
|
749
|
+
integrity sha512-6kLL1/P4hukih+MU2U0faECoH4F2gGDQy00gjCAaW9ojj6voOdlHtFtmZxYC0HFAtPxzUFt/etZAZLV2GaXWoA==
|
605
750
|
|
606
751
|
ansi-styles@^4.1.0:
|
607
752
|
version "4.3.0"
|
@@ -615,19 +760,14 @@ argparse@^2.0.1:
|
|
615
760
|
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
|
616
761
|
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
|
617
762
|
|
618
|
-
asciinema-player@^3.8.
|
619
|
-
version "3.8.
|
620
|
-
resolved "https://registry.yarnpkg.com/asciinema-player/-/asciinema-player-3.8.
|
621
|
-
integrity sha512-
|
763
|
+
asciinema-player@^3.8.2:
|
764
|
+
version "3.8.2"
|
765
|
+
resolved "https://registry.yarnpkg.com/asciinema-player/-/asciinema-player-3.8.2.tgz#12fbf475ddaeee0051ace17532e5f003475f6dfa"
|
766
|
+
integrity sha512-Lgcnj9u/H6sRpGRX1my7Azcay6llLmB/GVkCGcDbPwdTVTisS1ir8SQ9jRWRvjlLUjpSJkN0euruvy3sLRM8tw==
|
622
767
|
dependencies:
|
623
768
|
"@babel/runtime" "^7.21.0"
|
624
769
|
solid-js "^1.3.0"
|
625
770
|
|
626
|
-
babel-plugin-prismjs@^2.1.0:
|
627
|
-
version "2.1.0"
|
628
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-prismjs/-/babel-plugin-prismjs-2.1.0.tgz#ade627896106326ad04d6d77fba92877618de571"
|
629
|
-
integrity sha512-ehzSKYfeAz4U78zi/sfwsjDPlq0LvDKxNefcZTJ/iKBu+plsHsLqZhUeGf1+82LAcA35UZGbU6ksEx2Utphc/g==
|
630
|
-
|
631
771
|
balanced-match@^1.0.0:
|
632
772
|
version "1.0.2"
|
633
773
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
|
@@ -651,34 +791,25 @@ brace-expansion@^1.1.7:
|
|
651
791
|
balanced-match "^1.0.0"
|
652
792
|
concat-map "0.0.1"
|
653
793
|
|
654
|
-
browserslist@^4.
|
655
|
-
version "4.
|
656
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
657
|
-
integrity sha512-
|
794
|
+
browserslist@^4.24.0:
|
795
|
+
version "4.24.4"
|
796
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.4.tgz#c6b2865a3f08bcb860a0e827389003b9fe686e4b"
|
797
|
+
integrity sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==
|
658
798
|
dependencies:
|
659
|
-
caniuse-lite "^1.0.
|
660
|
-
electron-to-chromium "^1.5.
|
661
|
-
node-releases "^2.0.
|
662
|
-
update-browserslist-db "^1.1.
|
799
|
+
caniuse-lite "^1.0.30001688"
|
800
|
+
electron-to-chromium "^1.5.73"
|
801
|
+
node-releases "^2.0.19"
|
802
|
+
update-browserslist-db "^1.1.1"
|
663
803
|
|
664
804
|
callsites@^3.0.0:
|
665
805
|
version "3.1.0"
|
666
806
|
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
|
667
807
|
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
|
668
808
|
|
669
|
-
caniuse-lite@^1.0.
|
670
|
-
version "1.0.
|
671
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
672
|
-
integrity sha512-
|
673
|
-
|
674
|
-
chalk@^2.4.2:
|
675
|
-
version "2.4.2"
|
676
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
677
|
-
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
678
|
-
dependencies:
|
679
|
-
ansi-styles "^3.2.1"
|
680
|
-
escape-string-regexp "^1.0.5"
|
681
|
-
supports-color "^5.3.0"
|
809
|
+
caniuse-lite@^1.0.30001688:
|
810
|
+
version "1.0.30001695"
|
811
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz#39dfedd8f94851132795fdf9b79d29659ad9c4d4"
|
812
|
+
integrity sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==
|
682
813
|
|
683
814
|
chalk@^4.0.0:
|
684
815
|
version "4.1.2"
|
@@ -689,11 +820,11 @@ chalk@^4.0.0:
|
|
689
820
|
supports-color "^7.1.0"
|
690
821
|
|
691
822
|
chalk@^5.3.0:
|
692
|
-
version "5.
|
693
|
-
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.
|
694
|
-
integrity sha512-
|
823
|
+
version "5.4.1"
|
824
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.4.1.tgz#1b48bf0963ec158dce2aacf69c093ae2dd2092d8"
|
825
|
+
integrity sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==
|
695
826
|
|
696
|
-
clipboard@^2.0.11:
|
827
|
+
clipboard@*, clipboard@^2.0.11:
|
697
828
|
version "2.0.11"
|
698
829
|
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.11.tgz#62180360b97dd668b6b3a84ec226975762a70be5"
|
699
830
|
integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==
|
@@ -702,6 +833,11 @@ clipboard@^2.0.11:
|
|
702
833
|
select "^1.1.2"
|
703
834
|
tiny-emitter "^2.0.0"
|
704
835
|
|
836
|
+
clsx@^2.1.1:
|
837
|
+
version "2.1.1"
|
838
|
+
resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999"
|
839
|
+
integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
|
840
|
+
|
705
841
|
codemirror@^6.0.1:
|
706
842
|
version "6.0.1"
|
707
843
|
resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-6.0.1.tgz#62b91142d45904547ee3e0e0e4c1a79158035a29"
|
@@ -715,13 +851,6 @@ codemirror@^6.0.1:
|
|
715
851
|
"@codemirror/state" "^6.0.0"
|
716
852
|
"@codemirror/view" "^6.0.0"
|
717
853
|
|
718
|
-
color-convert@^1.9.0:
|
719
|
-
version "1.9.3"
|
720
|
-
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
721
|
-
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
|
722
|
-
dependencies:
|
723
|
-
color-name "1.1.3"
|
724
|
-
|
725
854
|
color-convert@^2.0.1:
|
726
855
|
version "2.0.1"
|
727
856
|
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
@@ -729,11 +858,6 @@ color-convert@^2.0.1:
|
|
729
858
|
dependencies:
|
730
859
|
color-name "~1.1.4"
|
731
860
|
|
732
|
-
color-name@1.1.3:
|
733
|
-
version "1.1.3"
|
734
|
-
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
735
|
-
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
|
736
|
-
|
737
861
|
color-name@~1.1.4:
|
738
862
|
version "1.1.4"
|
739
863
|
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
@@ -754,16 +878,16 @@ crelt@^1.0.5:
|
|
754
878
|
resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72"
|
755
879
|
integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==
|
756
880
|
|
757
|
-
cross-spawn@^7.0.
|
758
|
-
version "7.0.
|
759
|
-
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.
|
760
|
-
integrity sha512-
|
881
|
+
cross-spawn@^7.0.6:
|
882
|
+
version "7.0.6"
|
883
|
+
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
|
884
|
+
integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
|
761
885
|
dependencies:
|
762
886
|
path-key "^3.1.0"
|
763
887
|
shebang-command "^2.0.0"
|
764
888
|
which "^2.0.1"
|
765
889
|
|
766
|
-
csstype@^3.1.0:
|
890
|
+
csstype@^3.0.2, csstype@^3.1.0:
|
767
891
|
version "3.1.3"
|
768
892
|
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
|
769
893
|
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
|
@@ -773,19 +897,12 @@ cuint@^0.2.2:
|
|
773
897
|
resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b"
|
774
898
|
integrity sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==
|
775
899
|
|
776
|
-
debug@^4.1.0:
|
777
|
-
version "4.
|
778
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.
|
779
|
-
integrity sha512-
|
780
|
-
dependencies:
|
781
|
-
ms "2.1.2"
|
782
|
-
|
783
|
-
debug@^4.3.1, debug@^4.3.2:
|
784
|
-
version "4.3.5"
|
785
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e"
|
786
|
-
integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==
|
900
|
+
debug@^4.1.0, debug@^4.3.1, debug@^4.3.2:
|
901
|
+
version "4.4.0"
|
902
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a"
|
903
|
+
integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
|
787
904
|
dependencies:
|
788
|
-
ms "2.1.
|
905
|
+
ms "^2.1.3"
|
789
906
|
|
790
907
|
deep-is@^0.1.3:
|
791
908
|
version "0.1.4"
|
@@ -802,10 +919,10 @@ diff-match-patch@^1.0.5:
|
|
802
919
|
resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37"
|
803
920
|
integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==
|
804
921
|
|
805
|
-
electron-to-chromium@^1.5.
|
806
|
-
version "1.5.
|
807
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.
|
808
|
-
integrity sha512-
|
922
|
+
electron-to-chromium@^1.5.73:
|
923
|
+
version "1.5.87"
|
924
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.87.tgz#3a89bec85e43a8b32445ec938228e4ec982e0f79"
|
925
|
+
integrity sha512-mPFwmEWmRivw2F8x3w3l2m6htAUN97Gy0kwpO++2m9iT1Gt8RCFVUfv9U/sIbHJ6rY4P6/ooqFL/eL7ock+pPg==
|
809
926
|
|
810
927
|
entities@^4.4.0:
|
811
928
|
version "4.5.0"
|
@@ -841,60 +958,59 @@ esbuild@^0.21.3:
|
|
841
958
|
"@esbuild/win32-ia32" "0.21.5"
|
842
959
|
"@esbuild/win32-x64" "0.21.5"
|
843
960
|
|
844
|
-
escalade@^3.
|
845
|
-
version "3.
|
846
|
-
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.
|
847
|
-
integrity sha512-
|
848
|
-
|
849
|
-
escape-string-regexp@^1.0.5:
|
850
|
-
version "1.0.5"
|
851
|
-
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
852
|
-
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
|
961
|
+
escalade@^3.2.0:
|
962
|
+
version "3.2.0"
|
963
|
+
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
|
964
|
+
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
|
853
965
|
|
854
966
|
escape-string-regexp@^4.0.0:
|
855
967
|
version "4.0.0"
|
856
968
|
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
|
857
969
|
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
|
858
970
|
|
859
|
-
eslint-scope@^8.0
|
860
|
-
version "8.0
|
861
|
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.0.
|
862
|
-
integrity sha512-
|
971
|
+
eslint-scope@^8.2.0:
|
972
|
+
version "8.2.0"
|
973
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.2.0.tgz#377aa6f1cb5dc7592cfd0b7f892fd0cf352ce442"
|
974
|
+
integrity sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==
|
863
975
|
dependencies:
|
864
976
|
esrecurse "^4.3.0"
|
865
977
|
estraverse "^5.2.0"
|
866
978
|
|
867
|
-
eslint-visitor-keys@^3.3
|
979
|
+
eslint-visitor-keys@^3.4.3:
|
868
980
|
version "3.4.3"
|
869
981
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
|
870
982
|
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
|
871
983
|
|
872
|
-
eslint-visitor-keys@^4.
|
873
|
-
version "4.
|
874
|
-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.
|
875
|
-
integrity sha512-
|
984
|
+
eslint-visitor-keys@^4.2.0:
|
985
|
+
version "4.2.0"
|
986
|
+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45"
|
987
|
+
integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==
|
876
988
|
|
877
989
|
eslint@9.x:
|
878
|
-
version "9.
|
879
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.
|
880
|
-
integrity sha512
|
990
|
+
version "9.18.0"
|
991
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.18.0.tgz#c95b24de1183e865de19f607fda6518b54827850"
|
992
|
+
integrity sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==
|
881
993
|
dependencies:
|
882
994
|
"@eslint-community/eslint-utils" "^4.2.0"
|
883
|
-
"@eslint-community/regexpp" "^4.
|
884
|
-
"@eslint/config-array" "^0.
|
885
|
-
"@eslint/
|
886
|
-
"@eslint/
|
995
|
+
"@eslint-community/regexpp" "^4.12.1"
|
996
|
+
"@eslint/config-array" "^0.19.0"
|
997
|
+
"@eslint/core" "^0.10.0"
|
998
|
+
"@eslint/eslintrc" "^3.2.0"
|
999
|
+
"@eslint/js" "9.18.0"
|
1000
|
+
"@eslint/plugin-kit" "^0.2.5"
|
1001
|
+
"@humanfs/node" "^0.16.6"
|
887
1002
|
"@humanwhocodes/module-importer" "^1.0.1"
|
888
|
-
"@humanwhocodes/retry" "^0.
|
889
|
-
"@
|
1003
|
+
"@humanwhocodes/retry" "^0.4.1"
|
1004
|
+
"@types/estree" "^1.0.6"
|
1005
|
+
"@types/json-schema" "^7.0.15"
|
890
1006
|
ajv "^6.12.4"
|
891
1007
|
chalk "^4.0.0"
|
892
|
-
cross-spawn "^7.0.
|
1008
|
+
cross-spawn "^7.0.6"
|
893
1009
|
debug "^4.3.2"
|
894
1010
|
escape-string-regexp "^4.0.0"
|
895
|
-
eslint-scope "^8.0
|
896
|
-
eslint-visitor-keys "^4.
|
897
|
-
espree "^10.
|
1011
|
+
eslint-scope "^8.2.0"
|
1012
|
+
eslint-visitor-keys "^4.2.0"
|
1013
|
+
espree "^10.3.0"
|
898
1014
|
esquery "^1.5.0"
|
899
1015
|
esutils "^2.0.2"
|
900
1016
|
fast-deep-equal "^3.1.3"
|
@@ -904,24 +1020,20 @@ eslint@9.x:
|
|
904
1020
|
ignore "^5.2.0"
|
905
1021
|
imurmurhash "^0.1.4"
|
906
1022
|
is-glob "^4.0.0"
|
907
|
-
is-path-inside "^3.0.3"
|
908
1023
|
json-stable-stringify-without-jsonify "^1.0.1"
|
909
|
-
levn "^0.4.1"
|
910
1024
|
lodash.merge "^4.6.2"
|
911
1025
|
minimatch "^3.1.2"
|
912
1026
|
natural-compare "^1.4.0"
|
913
1027
|
optionator "^0.9.3"
|
914
|
-
strip-ansi "^6.0.1"
|
915
|
-
text-table "^0.2.0"
|
916
1028
|
|
917
|
-
espree@^10.0.1, espree@^10.
|
918
|
-
version "10.
|
919
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-10.
|
920
|
-
integrity sha512-
|
1029
|
+
espree@^10.0.1, espree@^10.3.0:
|
1030
|
+
version "10.3.0"
|
1031
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-10.3.0.tgz#29267cf5b0cb98735b65e64ba07e0ed49d1eed8a"
|
1032
|
+
integrity sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==
|
921
1033
|
dependencies:
|
922
|
-
acorn "^8.
|
1034
|
+
acorn "^8.14.0"
|
923
1035
|
acorn-jsx "^5.3.2"
|
924
|
-
eslint-visitor-keys "^4.
|
1036
|
+
eslint-visitor-keys "^4.2.0"
|
925
1037
|
|
926
1038
|
esquery@^1.5.0:
|
927
1039
|
version "1.6.0"
|
@@ -967,13 +1079,6 @@ fast-levenshtein@^2.0.6:
|
|
967
1079
|
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
|
968
1080
|
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
|
969
1081
|
|
970
|
-
fastq@^1.6.0:
|
971
|
-
version "1.17.1"
|
972
|
-
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
|
973
|
-
integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
|
974
|
-
dependencies:
|
975
|
-
reusify "^1.0.4"
|
976
|
-
|
977
1082
|
fflate@^0.8.2:
|
978
1083
|
version "0.8.2"
|
979
1084
|
resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.8.2.tgz#fc8631f5347812ad6028bbe4a2308b2792aa1dea"
|
@@ -1008,9 +1113,9 @@ flat-cache@^4.0.0:
|
|
1008
1113
|
keyv "^4.5.4"
|
1009
1114
|
|
1010
1115
|
flatted@^3.2.9:
|
1011
|
-
version "3.3.
|
1012
|
-
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.
|
1013
|
-
integrity sha512-
|
1116
|
+
version "3.3.2"
|
1117
|
+
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.2.tgz#adba1448a9841bec72b42c532ea23dbbedef1a27"
|
1118
|
+
integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==
|
1014
1119
|
|
1015
1120
|
fsevents@~2.3.2, fsevents@~2.3.3:
|
1016
1121
|
version "2.3.3"
|
@@ -1040,9 +1145,9 @@ globals@^14.0.0:
|
|
1040
1145
|
integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==
|
1041
1146
|
|
1042
1147
|
globals@^15.6.0:
|
1043
|
-
version "15.
|
1044
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-15.
|
1045
|
-
integrity sha512-
|
1148
|
+
version "15.14.0"
|
1149
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-15.14.0.tgz#b8fd3a8941ff3b4d38f3319d433b61bbb482e73f"
|
1150
|
+
integrity sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==
|
1046
1151
|
|
1047
1152
|
good-listener@^1.2.2:
|
1048
1153
|
version "1.2.2"
|
@@ -1051,11 +1156,6 @@ good-listener@^1.2.2:
|
|
1051
1156
|
dependencies:
|
1052
1157
|
delegate "^3.1.2"
|
1053
1158
|
|
1054
|
-
has-flag@^3.0.0:
|
1055
|
-
version "3.0.0"
|
1056
|
-
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
1057
|
-
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
|
1058
|
-
|
1059
1159
|
has-flag@^4.0.0:
|
1060
1160
|
version "4.0.0"
|
1061
1161
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
@@ -1067,9 +1167,9 @@ htm@^3.1.1:
|
|
1067
1167
|
integrity sha512-983Vyg8NwUE7JkZ6NmOqpCZ+sh1bKv2iYTlUkzlWmA5JD2acKoxd4KVxbMmxX/85mtfdnDmTFoNKcg5DGAvxNQ==
|
1068
1168
|
|
1069
1169
|
ignore@^5.2.0:
|
1070
|
-
version "5.3.
|
1071
|
-
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.
|
1072
|
-
integrity sha512-
|
1170
|
+
version "5.3.2"
|
1171
|
+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
|
1172
|
+
integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
|
1073
1173
|
|
1074
1174
|
import-fresh@^3.2.1:
|
1075
1175
|
version "3.3.0"
|
@@ -1096,11 +1196,6 @@ is-glob@^4.0.0, is-glob@^4.0.3:
|
|
1096
1196
|
dependencies:
|
1097
1197
|
is-extglob "^2.1.1"
|
1098
1198
|
|
1099
|
-
is-path-inside@^3.0.3:
|
1100
|
-
version "3.0.3"
|
1101
|
-
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
|
1102
|
-
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
|
1103
|
-
|
1104
1199
|
isexe@^2.0.0:
|
1105
1200
|
version "2.0.0"
|
1106
1201
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
@@ -1118,10 +1213,10 @@ js-yaml@^4.1.0:
|
|
1118
1213
|
dependencies:
|
1119
1214
|
argparse "^2.0.1"
|
1120
1215
|
|
1121
|
-
jsesc@^
|
1122
|
-
version "
|
1123
|
-
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-
|
1124
|
-
integrity sha512
|
1216
|
+
jsesc@^3.0.2:
|
1217
|
+
version "3.1.0"
|
1218
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d"
|
1219
|
+
integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==
|
1125
1220
|
|
1126
1221
|
json-buffer@3.0.1:
|
1127
1222
|
version "3.0.1"
|
@@ -1241,30 +1336,30 @@ minimatch@~3.0.4:
|
|
1241
1336
|
dependencies:
|
1242
1337
|
brace-expansion "^1.1.7"
|
1243
1338
|
|
1244
|
-
ms
|
1245
|
-
version "2.1.
|
1246
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.
|
1247
|
-
integrity sha512-
|
1339
|
+
ms@^2.1.3:
|
1340
|
+
version "2.1.3"
|
1341
|
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
1342
|
+
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
1248
1343
|
|
1249
1344
|
murmurhash@^2.0.1:
|
1250
1345
|
version "2.0.1"
|
1251
1346
|
resolved "https://registry.yarnpkg.com/murmurhash/-/murmurhash-2.0.1.tgz#4097720e08cf978872194ad84ea5be2dec9b610f"
|
1252
1347
|
integrity sha512-5vQEh3y+DG/lMPM0mCGPDnyV8chYg/g7rl6v3Gd8WMF9S429ox3Xk8qrk174kWhG767KQMqqxLD1WnGd77hiew==
|
1253
1348
|
|
1254
|
-
nanoid@^3.3.
|
1255
|
-
version "3.3.
|
1256
|
-
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.
|
1257
|
-
integrity sha512-
|
1349
|
+
nanoid@^3.3.8:
|
1350
|
+
version "3.3.8"
|
1351
|
+
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
|
1352
|
+
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
|
1258
1353
|
|
1259
1354
|
natural-compare@^1.4.0:
|
1260
1355
|
version "1.4.0"
|
1261
1356
|
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
1262
1357
|
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
|
1263
1358
|
|
1264
|
-
node-releases@^2.0.
|
1265
|
-
version "2.0.
|
1266
|
-
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.
|
1267
|
-
integrity sha512-
|
1359
|
+
node-releases@^2.0.19:
|
1360
|
+
version "2.0.19"
|
1361
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
|
1362
|
+
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
|
1268
1363
|
|
1269
1364
|
optionator@^0.9.3:
|
1270
1365
|
version "0.9.4"
|
@@ -1309,10 +1404,10 @@ path-key@^3.1.0:
|
|
1309
1404
|
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
|
1310
1405
|
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
|
1311
1406
|
|
1312
|
-
picocolors@^1.0.0, picocolors@^1.
|
1313
|
-
version "1.
|
1314
|
-
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.
|
1315
|
-
integrity sha512-
|
1407
|
+
picocolors@^1.0.0, picocolors@^1.1.1:
|
1408
|
+
version "1.1.1"
|
1409
|
+
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
|
1410
|
+
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
|
1316
1411
|
|
1317
1412
|
postcss-url@^10.1.3:
|
1318
1413
|
version "10.1.3"
|
@@ -1324,19 +1419,14 @@ postcss-url@^10.1.3:
|
|
1324
1419
|
minimatch "~3.0.4"
|
1325
1420
|
xxhashjs "~0.2.2"
|
1326
1421
|
|
1327
|
-
postcss@^8.4.
|
1328
|
-
version "8.
|
1329
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.
|
1330
|
-
integrity sha512-
|
1422
|
+
postcss@^8.4.43:
|
1423
|
+
version "8.5.1"
|
1424
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.1.tgz#e2272a1f8a807fafa413218245630b5db10a3214"
|
1425
|
+
integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==
|
1331
1426
|
dependencies:
|
1332
|
-
nanoid "^3.3.
|
1333
|
-
picocolors "^1.
|
1334
|
-
source-map-js "^1.2.
|
1335
|
-
|
1336
|
-
preact@^10.24.3:
|
1337
|
-
version "10.25.1"
|
1338
|
-
resolved "https://registry.yarnpkg.com/preact/-/preact-10.25.1.tgz#1c4b84253c42dee874bfbf6a92bdce45e3662665"
|
1339
|
-
integrity sha512-frxeZV2vhQSohQwJ7FvlqC40ze89+8friponWUFeVEkaCfhC6Eu4V0iND5C9CXz8JLndV07QRDeXzH1+Anz5Og==
|
1427
|
+
nanoid "^3.3.8"
|
1428
|
+
picocolors "^1.1.1"
|
1429
|
+
source-map-js "^1.2.1"
|
1340
1430
|
|
1341
1431
|
prelude-ls@^1.2.1:
|
1342
1432
|
version "1.2.1"
|
@@ -1344,9 +1434,9 @@ prelude-ls@^1.2.1:
|
|
1344
1434
|
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
|
1345
1435
|
|
1346
1436
|
prettier@^3.3.3:
|
1347
|
-
version "3.
|
1348
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.
|
1349
|
-
integrity sha512-
|
1437
|
+
version "3.4.2"
|
1438
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f"
|
1439
|
+
integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==
|
1350
1440
|
|
1351
1441
|
prismjs@^1.29.0:
|
1352
1442
|
version "1.29.0"
|
@@ -1363,10 +1453,22 @@ punycode@^2.1.0:
|
|
1363
1453
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
|
1364
1454
|
integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
|
1365
1455
|
|
1366
|
-
|
1367
|
-
version "
|
1368
|
-
resolved "https://registry.yarnpkg.com/
|
1369
|
-
integrity sha512-
|
1456
|
+
react-dom@^19.0.0:
|
1457
|
+
version "19.0.0"
|
1458
|
+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.0.tgz#43446f1f01c65a4cd7f7588083e686a6726cfb57"
|
1459
|
+
integrity sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==
|
1460
|
+
dependencies:
|
1461
|
+
scheduler "^0.25.0"
|
1462
|
+
|
1463
|
+
react-refresh@^0.14.2:
|
1464
|
+
version "0.14.2"
|
1465
|
+
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.2.tgz#3833da01ce32da470f1f936b9d477da5c7028bf9"
|
1466
|
+
integrity sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==
|
1467
|
+
|
1468
|
+
react@^19.0.0:
|
1469
|
+
version "19.0.0"
|
1470
|
+
resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd"
|
1471
|
+
integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==
|
1370
1472
|
|
1371
1473
|
regenerator-runtime@^0.14.0:
|
1372
1474
|
version "0.14.1"
|
@@ -1378,42 +1480,38 @@ resolve-from@^4.0.0:
|
|
1378
1480
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
|
1379
1481
|
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
|
1380
1482
|
|
1381
|
-
|
1382
|
-
version "
|
1383
|
-
resolved "https://registry.yarnpkg.com/
|
1384
|
-
integrity sha512-
|
1385
|
-
|
1386
|
-
rollup@^4.13.0:
|
1387
|
-
version "4.20.0"
|
1388
|
-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.20.0.tgz#f9d602161d29e178f0bf1d9f35f0a26f83939492"
|
1389
|
-
integrity sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==
|
1483
|
+
rollup@^4.20.0:
|
1484
|
+
version "4.31.0"
|
1485
|
+
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.31.0.tgz#b84af969a0292cb047dce2c0ec5413a9457597a4"
|
1486
|
+
integrity sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==
|
1390
1487
|
dependencies:
|
1391
|
-
"@types/estree" "1.0.
|
1488
|
+
"@types/estree" "1.0.6"
|
1392
1489
|
optionalDependencies:
|
1393
|
-
"@rollup/rollup-android-arm-eabi" "4.
|
1394
|
-
"@rollup/rollup-android-arm64" "4.
|
1395
|
-
"@rollup/rollup-darwin-arm64" "4.
|
1396
|
-
"@rollup/rollup-darwin-x64" "4.
|
1397
|
-
"@rollup/rollup-
|
1398
|
-
"@rollup/rollup-
|
1399
|
-
"@rollup/rollup-linux-
|
1400
|
-
"@rollup/rollup-linux-
|
1401
|
-
"@rollup/rollup-linux-
|
1402
|
-
"@rollup/rollup-linux-
|
1403
|
-
"@rollup/rollup-linux-
|
1404
|
-
"@rollup/rollup-linux-
|
1405
|
-
"@rollup/rollup-linux-
|
1406
|
-
"@rollup/rollup-
|
1407
|
-
"@rollup/rollup-
|
1408
|
-
"@rollup/rollup-
|
1490
|
+
"@rollup/rollup-android-arm-eabi" "4.31.0"
|
1491
|
+
"@rollup/rollup-android-arm64" "4.31.0"
|
1492
|
+
"@rollup/rollup-darwin-arm64" "4.31.0"
|
1493
|
+
"@rollup/rollup-darwin-x64" "4.31.0"
|
1494
|
+
"@rollup/rollup-freebsd-arm64" "4.31.0"
|
1495
|
+
"@rollup/rollup-freebsd-x64" "4.31.0"
|
1496
|
+
"@rollup/rollup-linux-arm-gnueabihf" "4.31.0"
|
1497
|
+
"@rollup/rollup-linux-arm-musleabihf" "4.31.0"
|
1498
|
+
"@rollup/rollup-linux-arm64-gnu" "4.31.0"
|
1499
|
+
"@rollup/rollup-linux-arm64-musl" "4.31.0"
|
1500
|
+
"@rollup/rollup-linux-loongarch64-gnu" "4.31.0"
|
1501
|
+
"@rollup/rollup-linux-powerpc64le-gnu" "4.31.0"
|
1502
|
+
"@rollup/rollup-linux-riscv64-gnu" "4.31.0"
|
1503
|
+
"@rollup/rollup-linux-s390x-gnu" "4.31.0"
|
1504
|
+
"@rollup/rollup-linux-x64-gnu" "4.31.0"
|
1505
|
+
"@rollup/rollup-linux-x64-musl" "4.31.0"
|
1506
|
+
"@rollup/rollup-win32-arm64-msvc" "4.31.0"
|
1507
|
+
"@rollup/rollup-win32-ia32-msvc" "4.31.0"
|
1508
|
+
"@rollup/rollup-win32-x64-msvc" "4.31.0"
|
1409
1509
|
fsevents "~2.3.2"
|
1410
1510
|
|
1411
|
-
|
1412
|
-
version "
|
1413
|
-
resolved "https://registry.yarnpkg.com/
|
1414
|
-
integrity sha512-
|
1415
|
-
dependencies:
|
1416
|
-
queue-microtask "^1.2.2"
|
1511
|
+
scheduler@^0.25.0:
|
1512
|
+
version "0.25.0"
|
1513
|
+
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015"
|
1514
|
+
integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==
|
1417
1515
|
|
1418
1516
|
select@^1.1.2:
|
1419
1517
|
version "1.1.2"
|
@@ -1426,14 +1524,14 @@ semver@^6.0.0, semver@^6.3.1:
|
|
1426
1524
|
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
1427
1525
|
|
1428
1526
|
seroval-plugins@^1.1.0:
|
1429
|
-
version "1.
|
1430
|
-
resolved "https://registry.yarnpkg.com/seroval-plugins/-/seroval-plugins-1.
|
1431
|
-
integrity sha512-
|
1527
|
+
version "1.2.0"
|
1528
|
+
resolved "https://registry.yarnpkg.com/seroval-plugins/-/seroval-plugins-1.2.0.tgz#7fcf8537938e0446f843897172fc64f01322c33f"
|
1529
|
+
integrity sha512-hULTbfzSe81jGWLH8TAJjkEvw6JWMqOo9Uq+4V4vg+HNq53hyHldM9ZOfjdzokcFysiTp9aFdV2vJpZFqKeDjQ==
|
1432
1530
|
|
1433
1531
|
seroval@^1.1.0:
|
1434
|
-
version "1.
|
1435
|
-
resolved "https://registry.yarnpkg.com/seroval/-/seroval-1.
|
1436
|
-
integrity sha512-
|
1532
|
+
version "1.2.0"
|
1533
|
+
resolved "https://registry.yarnpkg.com/seroval/-/seroval-1.2.0.tgz#742d642750abd0d279fe86bde20137096ead8400"
|
1534
|
+
integrity sha512-GURoU99ko2UiAgUC3qDCk59Jb3Ss4Po8VIMGkG8j5PFo2Q7y0YSMP8QG9NuL/fJCoTz9V1XZUbpNIMXPOfaGpA==
|
1437
1535
|
|
1438
1536
|
shebang-command@^2.0.0:
|
1439
1537
|
version "2.0.0"
|
@@ -1448,25 +1546,18 @@ shebang-regex@^3.0.0:
|
|
1448
1546
|
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
|
1449
1547
|
|
1450
1548
|
solid-js@^1.3.0:
|
1451
|
-
version "1.9.
|
1452
|
-
resolved "https://registry.yarnpkg.com/solid-js/-/solid-js-1.9.
|
1453
|
-
integrity sha512-
|
1549
|
+
version "1.9.4"
|
1550
|
+
resolved "https://registry.yarnpkg.com/solid-js/-/solid-js-1.9.4.tgz#da9b5645f10875a631d93335cd50525ff36b6c27"
|
1551
|
+
integrity sha512-ipQl8FJ31bFUoBNScDQTG3BjN6+9Rg+Q+f10bUbnO6EOTTf5NGerJeHc7wyu5I4RMHEl/WwZwUmy/PTRgxxZ8g==
|
1454
1552
|
dependencies:
|
1455
1553
|
csstype "^3.1.0"
|
1456
1554
|
seroval "^1.1.0"
|
1457
1555
|
seroval-plugins "^1.1.0"
|
1458
1556
|
|
1459
|
-
source-map-js@^1.2.
|
1460
|
-
version "1.2.
|
1461
|
-
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.
|
1462
|
-
integrity sha512-
|
1463
|
-
|
1464
|
-
strip-ansi@^6.0.1:
|
1465
|
-
version "6.0.1"
|
1466
|
-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
|
1467
|
-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
|
1468
|
-
dependencies:
|
1469
|
-
ansi-regex "^5.0.1"
|
1557
|
+
source-map-js@^1.2.1:
|
1558
|
+
version "1.2.1"
|
1559
|
+
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
|
1560
|
+
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
1470
1561
|
|
1471
1562
|
strip-json-comments@^3.1.1:
|
1472
1563
|
version "3.1.1"
|
@@ -1478,13 +1569,6 @@ style-mod@^4.0.0, style-mod@^4.1.0:
|
|
1478
1569
|
resolved "https://registry.yarnpkg.com/style-mod/-/style-mod-4.1.2.tgz#ca238a1ad4786520f7515a8539d5a63691d7bf67"
|
1479
1570
|
integrity sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==
|
1480
1571
|
|
1481
|
-
supports-color@^5.3.0:
|
1482
|
-
version "5.5.0"
|
1483
|
-
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
1484
|
-
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
|
1485
|
-
dependencies:
|
1486
|
-
has-flag "^3.0.0"
|
1487
|
-
|
1488
1572
|
supports-color@^7.1.0:
|
1489
1573
|
version "7.2.0"
|
1490
1574
|
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
@@ -1492,21 +1576,11 @@ supports-color@^7.1.0:
|
|
1492
1576
|
dependencies:
|
1493
1577
|
has-flag "^4.0.0"
|
1494
1578
|
|
1495
|
-
text-table@^0.2.0:
|
1496
|
-
version "0.2.0"
|
1497
|
-
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
1498
|
-
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
|
1499
|
-
|
1500
1579
|
tiny-emitter@^2.0.0:
|
1501
1580
|
version "2.1.0"
|
1502
1581
|
resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
|
1503
1582
|
integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
|
1504
1583
|
|
1505
|
-
to-fast-properties@^2.0.0:
|
1506
|
-
version "2.0.0"
|
1507
|
-
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
1508
|
-
integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
|
1509
|
-
|
1510
1584
|
type-check@^0.4.0, type-check@~0.4.0:
|
1511
1585
|
version "0.4.0"
|
1512
1586
|
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
|
@@ -1514,18 +1588,23 @@ type-check@^0.4.0, type-check@~0.4.0:
|
|
1514
1588
|
dependencies:
|
1515
1589
|
prelude-ls "^1.2.1"
|
1516
1590
|
|
1591
|
+
typescript@^5.7.3:
|
1592
|
+
version "5.7.3"
|
1593
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e"
|
1594
|
+
integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==
|
1595
|
+
|
1517
1596
|
uc.micro@^2.0.0, uc.micro@^2.1.0:
|
1518
1597
|
version "2.1.0"
|
1519
1598
|
resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee"
|
1520
1599
|
integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==
|
1521
1600
|
|
1522
|
-
update-browserslist-db@^1.1.
|
1523
|
-
version "1.1.
|
1524
|
-
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.
|
1525
|
-
integrity sha512-
|
1601
|
+
update-browserslist-db@^1.1.1:
|
1602
|
+
version "1.1.2"
|
1603
|
+
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz#97e9c96ab0ae7bcac08e9ae5151d26e6bc6b5580"
|
1604
|
+
integrity sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==
|
1526
1605
|
dependencies:
|
1527
|
-
escalade "^3.
|
1528
|
-
picocolors "^1.
|
1606
|
+
escalade "^3.2.0"
|
1607
|
+
picocolors "^1.1.1"
|
1529
1608
|
|
1530
1609
|
uri-js@^4.2.2:
|
1531
1610
|
version "4.4.1"
|
@@ -1534,22 +1613,14 @@ uri-js@^4.2.2:
|
|
1534
1613
|
dependencies:
|
1535
1614
|
punycode "^2.1.0"
|
1536
1615
|
|
1537
|
-
vite-plugin-prismjs@^0.0.11:
|
1538
|
-
version "0.0.11"
|
1539
|
-
resolved "https://registry.yarnpkg.com/vite-plugin-prismjs/-/vite-plugin-prismjs-0.0.11.tgz#132d2dcbc8eb61ce75363ca521f4e9147a894d9a"
|
1540
|
-
integrity sha512-20NBQxg/zH+3FTrlU6BQTob720xkuXNYtrx7psAQ4E6pMcRDeLEK77QU9kXURU587+f2To7ASH1JVTGbXVV/vQ==
|
1541
|
-
dependencies:
|
1542
|
-
"@babel/core" "^7.15.5"
|
1543
|
-
babel-plugin-prismjs "^2.1.0"
|
1544
|
-
|
1545
1616
|
vite@^5.3.2:
|
1546
|
-
version "5.4.
|
1547
|
-
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.
|
1548
|
-
integrity sha512-
|
1617
|
+
version "5.4.14"
|
1618
|
+
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.14.tgz#ff8255edb02134df180dcfca1916c37a6abe8408"
|
1619
|
+
integrity sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==
|
1549
1620
|
dependencies:
|
1550
1621
|
esbuild "^0.21.3"
|
1551
|
-
postcss "^8.4.
|
1552
|
-
rollup "^4.
|
1622
|
+
postcss "^8.4.43"
|
1623
|
+
rollup "^4.20.0"
|
1553
1624
|
optionalDependencies:
|
1554
1625
|
fsevents "~2.3.3"
|
1555
1626
|
|