diff --git a/.vscode/settings.json b/.vscode/settings.json
index 5a1b7686e..050d43e84 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -8,5 +8,6 @@
"editor.formatOnSave": true,
"workbench.editor.revealIfOpen": true,
"terminal.integrated.scrollback": 10000,
- "editor.minimap.enabled": false
+ "editor.minimap.enabled": false,
+ "editor.foldingImportsByDefault": true
}
diff --git a/README.md b/README.md
index b294dd820..f5c23df63 100644
--- a/README.md
+++ b/README.md
@@ -72,13 +72,13 @@ Important Project changes and notes about the project's history are found [here]
These are the current versions of packages from this repository and their alignment with **@codingame/monaco-vscode-api** **monaco-editor** and **vscode**:
-- **monaco-languageclient**: `10.7.0` (release date: 2026-02-04)
-- **@typefox/monaco-editor-react**: `7.7.0` (release date: 2026-02-04)
+- **monaco-languageclient**: `11.0.0-next.0` (release date: unreleased)
+- **@typefox/monaco-editor-react**: `8.0.0-next.0` (release date: unreleased)
- Aligned with:
- - **@codingame/monaco-vscode-[editor]-api**: `31.0.0`
- - **vscode**: `1.117.0`
+ - **@codingame/monaco-vscode-[editor]-api**: `34.0.1`
+ - **vscode**: `1.124.0`
- **monaco-editor**: `0.55.1`
-- **vscode-ws-jsonrpc**: `3.5.0` (release date: 2025-08-11)
+- **vscode-ws-jsonrpc**: `4.0.0-next.0` (release date: unreleased)
Check find the [full compatibility table](https://github.com/TypeFox/monaco-languageclient/blob/main/docs/versions-and-history.md#monaco-editor--codingamemonaco-vscode-api-compatibility-table) with all previous versions.
diff --git a/docs/guides/examples.md b/docs/guides/examples.md
index 2050467de..b0bbd4d64 100644
--- a/docs/guides/examples.md
+++ b/docs/guides/examples.md
@@ -254,7 +254,7 @@ async function createMultiLanguageEditor() {
Running a language server in a Web Worker:
```typescript
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
async function createWebWorkerClient() {
// Create worker
diff --git a/docs/guides/troubleshooting.md b/docs/guides/troubleshooting.md
index ec06db50a..ff95c6f8d 100644
--- a/docs/guides/troubleshooting.md
+++ b/docs/guides/troubleshooting.md
@@ -11,7 +11,7 @@ Whenever you use `monaco-editor`/`@codingame/monaco-vscode-editor-api` `vscode`/
If you use pnpm or yarn, you have to add `vscode` / `@codingame/monaco-vscode-api` as direct dependency, otherwise the installation will fail:
```json
-"vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1"
+"vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1"
```
### Missing Overrides or Resolutions
@@ -23,7 +23,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
```json
{
"overrides": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"
}
}
```
@@ -33,7 +33,7 @@ To ensure all Monaco-related packages use a single, compatible version, you must
```json
{
"resolutions": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"
}
}
```
@@ -50,7 +50,7 @@ Additionally, if you see a message in the browser console starting with `Another
### @codingame/monaco-vscode-editor-api / monaco-editor usage
-When you use the libraries from this project you are no longer required to proxy `monaco-editor` like `"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"` in you `package.json`. You can directly use it like so:
+When you use the libraries from this project you are no longer required to proxy `monaco-editor` like `"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"` in you `package.json`. You can directly use it like so:
```js
import * as monaco from '@codingame/monaco-vscode-editor-api';
@@ -60,7 +60,7 @@ If your dependency stack already contains a reference `monaco-editor` you must e
```json
"overrides": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"
}
```
diff --git a/docs/installation.md b/docs/installation.md
index 09fbe7b49..5785104c4 100644
--- a/docs/installation.md
+++ b/docs/installation.md
@@ -57,7 +57,7 @@ If using npm or pnpm, and your dependencies already contain a reference to `mona
```json
{
"overrides": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"
}
}
```
@@ -71,7 +71,7 @@ In yarn you have to specify `resolutions` instead of `overrides`:
```json
{
"resolutions": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@^34.0.1"
}
}
```
@@ -83,17 +83,17 @@ If using pnpm, you have to add more transitive dependencies that npm or yarn aut
```json
{
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-configuration-service-override": "^31.0.1",
- "@codingame/monaco-vscode-editor-api": "^31.0.1",
- "@codingame/monaco-vscode-editor-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extension-api": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-languages-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-model-service-override": "^31.0.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1"
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extension-api": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1"
}
}
```
diff --git a/docs/versions-and-history.md b/docs/versions-and-history.md
index 9c40429ab..63151f04e 100644
--- a/docs/versions-and-history.md
+++ b/docs/versions-and-history.md
@@ -4,89 +4,89 @@
The following table describes which version of **monaco-languageclient** and **@codingame/monaco-vscode-api** are compatible with a specific version of **monaco-editor** and **vscode**. The listing starts with version 2.0.0 because **@codingame/monaco-vscode-api** was introduced for the first time.
-| monaco-languageclient | vscode-ws-jsonrpc | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
-| :-------------------- | :---------------- | :-------------------- | :------------------ | :----------------------------- | :------ | :------------ | :----------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| 10.8.0 | 3.5.0 | 7.8.0 | | 31.0.0 | 1.117.0 | 0.55.1 | unreleased | |
-| 10.7.0 | 3.5.0 | 7.7.0 | | 25.1.2 | 1.108.2 | 0.55.1 | 2026-02-04 | |
-| 10.6.0 | 3.5.0 | 7.6.0 | | 25.0.0 | 1.108.0 | 0.55.1 | 2026-01-14 | |
-| 10.5.0 | 3.5.0 | 7.5.0 | | 24.2.0 | 1.107.1 | 0.55.1 | 2025-12-23 | |
-| 10.4.0 | 3.5.0 | 7.4.0 | | 23.2.2 | 1.106.2 | 0.55.1 | 2025-11-26 | |
-| 10.3.0 | 3.5.0 | 7.3.0 | | 23.0.0 | 1.106.0 | 0.54.0 | 2025-11-16 | |
-| 10.2.0 | 3.5.0 | 7.2.0 | | 22.1.0 | 1.105.0 | 0.54.0 | 2025-10-20 | |
-| 10.1.0 | 3.5.0 | 7.1.0 | | 21.3.2 | 1.104.2 | 0.53.0 | 2025-09-30 | |
-| 10.0.0 | 3.5.0 | 7.0.0 | | 21.1.0 | 1.104.0 | 0.53.0 | 2025-09-19 | |
-| 9.11.0 | 3.5.0 | 6.12.0 | 6.12.0 | 20.2.1 | 1.103.1 | 0.52.2 | 2025-08-21 | |
-| 9.10.0 | 3.5.0 | 6.11.0 | 6.11.0 | 20.1.1 | 1.103.1 | 0.52.2 | 2025-08-14 | |
-| 9.9.0 | 3.5.0 | 6.10.0 | 6.10.0 | 19.1.4 | 1.102.3 | 0.52.2 | 2025-08-11 | |
-| 9.8.0 | 3.4.0 | 6.9.0 | 6.9.0 | 18.1.0 | 1.101.1 | 0.52.2 | 2025-06-24 | |
-| 9.7.1 | 3.4.0 | 6.8.1 | 6.8.1 | 17.2.1 | 1.100.3 | 0.52.2 | 2025-06-17 | |
-| 9.7.0 | 3.4.0 | 6.8.0 | 6.8.0 | 17.1.2 | 1.100.2 | 0.52.2 | 2025-05-28 | |
-| 9.6.0 | 3.4.0 | 6.7.0 | 6.7.0 | 16.1.1 | 1.99.3 | 0.52.2 | 2025-05-06 | |
-| 9.5.0 | 3.4.0 | 6.6.0 | 6.6.0 | 15.0.2 | 1.97.2 | 0.52.2 | 2025-03-13 | |
-| 9.4.0 | 3.4.0 | 6.4.0 | 6.4.0 | 14.0.4 | 1.97.2 | 0.52.2 | 2025-02-18 | |
-| 9.3.0 | 3.4.0 | 6.3.0 | 6.3.0 | 14.0.2 | 1.97.0 | 0.52.2 | 2025-02-12 | |
-| 9.2.5 | 3.4.0 | 6.2.5 | 6.2.5 | 13.1.6 | 1.96.4 | 0.52.2 | 2025-02-08 | |
-| 9.2.4 | 3.4.0 | 6.2.4 | 6.2.4 | 13.1.4 | 1.96.4 | 0.52.2 | 2025-02-06 | |
-| 9.2.3 | 3.4.0 | 6.2.3 | 6.2.3 | 13.1.3 | 1.96.4 | 0.52.2 | 2025-02-04 | |
-| 9.2.2 | 3.4.0 | 6.2.2 | 6.2.2 | 13.1.2 | 1.96.4 | 0.52.2 | 2025-02-03 | |
-| 9.2.1 | 3.4.0 | 6.2.1 | 6.2.1 | 13.1.1 | 1.96.4 | 0.52.2 | 2025-01-31 | |
-| 9.2.0 | 3.4.0 | 6.2.0 | 6.2.0 | 13.1.1 | 1.96.4 | 0.52.2 | 2025-01-31 | |
-| 9.1.1 | 3.4.0 | 6.1.1 | 6.1.1 | 11.1.2 | 1.95.3 | 0.52.0 | 2025-01-20 | |
-| 9.1.0 | 3.4.0 | 6.1.0 | 6.1.0 | 11.1.2 | 1.95.3 | 0.52.0 | 2025-01-10 | |
-| 9.0.0 | 3.4.0 | 6.0.0 | 6.0.0 | 11.1.2 | 1.95.3 | 0.52.0 | 2024-12-18 | |
-| 8.8.3 | 3.3.2 | 5.5.3 | 4.5.3 | 8.0.4 | 1.92.2 | 0.51.0 | 2024-08-26 | |
-| 8.8.2 | 3.3.2 | 5.5.2 | 4.5.2 | 8.0.2 | 1.92.2 | 0.50.0 | 2024-08-21 | |
-| 8.8.1 | 3.3.2 | 5.5.1 | 4.5.1 | 8.0.1 | 1.92.1 | 0.50.0 | 2024-08-12 | |
-| 8.8.0 | 3.3.2 | 5.5.0 | 4.5.0 | 8.0.0 | 1.92.0 | 0.50.0 | 2024-08-08 | |
-| 8.7.0 | 3.3.2 | 5.4.0 | 4.4.0 | 7.0.7 | 1.91.1 | 0.50.0 | 2024-07-16 | |
-| 8.6.0 | 3.3.2 | 5.3.1 | 4.3.2 | 6.0.3 | 1.90.0 | 0.50.0 | 2024-07-02 | |
-| 8.6.0 | 3.3.2 | 5.3.0 | 4.3.0 | 6.0.3 | 1.90.0 | 0.50.0 | 2024-06-29 | |
-| 8.5.0 | 3.3.2 | 5.2.0 | 4.2.0 | 5.2.0 | 1.89.1 | 0.48.0 | 2024-06-04 | |
-| 8.4.0 | 3.3.1 | 5.1.2 | 4.1.2 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-17 | |
-| 8.4.0 | 3.3.1 | 5.1.1 | 4.1.1 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
-| 8.4.0 | 3.3.1 | 5.1.0 | 4.1.0 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
-| 8.4.0 | 3.3.1 | 5.0.0 | 4.0.0 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
-| 8.3.1 | 3.3.1 | 4.2.1 | 3.2.1 | 4.3.2 | 1.88.1 | 0.47.0 | 2024-04-17 | |
-| 8.3.0 | 3.3.1 | 4.2.0 | 3.2.0 | 4.2.1 | 1.88.1 | 0.47.0 | 2024-04-12 | |
-| 8.2.0 | 3.3.1 | 4.1.0 | 3.1.0 | 4.1.2 | 1.88.0 | 0.47.0 | 2024-04-10 | |
-| 8.1.1 | 3.3.0 | 4.0.2 | 3.0.2 | 3.2.3 | 1.87.2 | 0.47.0 | 2024-04-03 | |
-| 8.1.0 | 3.3.0 | 4.0.1 | 3.0.1 | 3.2.1 | 1.87.2 | 0.47.0 | 2024-03-22 | |
-| 8.0.0 | 3.3.0 | 4.0.0 | 3.0.0 | 3.1.2 | 1.87.2 | 0.47.0 | 2024-03-18 | `@codingame/monaco-vscode-api` implements its own versioning scheme
`@codingame/monaco-vscode-editor-api` replaces
`@codingame/monaco-editor-treemended`
Added `monaco-editor-wrapper` and `@typefox/monaco-editor-react` to the table |
-| 7.3.0 | 3.2.0 | | | 1.85.0 | 1.85.0 | 0.45.0 | 2024-01-04 | |
-| 7.2.0 | 3.1.0 | | | 1.83.16 | 1.83.16 | 0.44.0 | 2023-12-07 | |
-| 7.1.0 | 3.1.0 | | | 1.83.12 | 1.83.12 | 0.44.0 | 2023-11-27 | |
-| 7.0.2 | 3.1.0 | | | 1.83.7 | 1.83.7 | 0.44.0 | 2023-11-02 | |
-| 7.0.1 | 3.1.0 | | | 1.83.5 | 1.83.5 | 0.44.0 | 2023-11-10 | |
-| 7.0.0 | 3.1.0 | | | 1.83.5 | 1.83.5 | 0.44.0 | 2023-11-02 | Introduction of `@codingame/monaco-editor-treemended` |
-| 6.6.1 | 3.0.0 | | | 1.83.3 | | 0.44.0 | 2023-10-20 | |
-| 6.6.0 | 3.0.0 | | | 1.83.2 | | 0.44.0 | 2023-10-16 | |
-| 6.5.3 | 3.0.0 | | | 1.82.5 | | 0.43.0 | 2023-10-11 | |
-| 6.5.2 | 3.0.0 | | | 1.82.4 | | 0.43.0 | 2023-10-07 | |
-| 6.5.1 | 3.0.0 | | | 1.82.3 | | 0.43.0 | 2023-10-04 | |
-| 6.5.0 | 3.0.0 | | | 1.82.2 | | 0.43.0 | 2023-09-29 | |
-| 6.4.6 | 3.0.0 | | | 1.81.7 | | 0.41.0 | 2023-09-05 | |
-| 6.4.5 | 3.0.0 | | | 1.81.5 | | 0.41.0 | 2023-08-30 | |
-| 6.4.4 | 3.0.0 | | | 1.81.5 | | 0.41.0 | 2023-08-24 | |
-| 6.4.3 | 3.0.0 | | | 1.81.3 | | 0.41.0 | 2023-08-22 | |
-| 6.4.2 | 3.0.0 | | | 1.81.2 | | 0.41.0 | 2023-08-19 | |
-| 6.4.1 | 3.0.0 | | | 1.81.1 | | 0.41.0 | 2023-08-18 | |
-| 6.4.0 | 3.0.0 | | | 1.81.0 | | 0.41.0 | 2023-08-10 | |
-| 6.3.0 | 3.0.0 | | | 1.80.2 | | 0.40.0 | 2023-08-04 | |
-| 6.2.0 | 3.0.0 | | | 1.79.3 | | 0.39.0 | 2023-06-16 | |
-| 6.1.0 | 3.0.0 | | | 1.79.1 | | 0.38.0 | 2023-06-12 | |
-| 6.0.3 | 3.0.0 | | | 1.78.8 | | 0.37.1 | 2023-05-31 | |
-| 6.0.2 | 3.0.0 | | | 1.78.6 | | 0.37.1 | 2023-05-24 | |
-| 6.0.1 | 3.0.0 | | | 1.78.6 | | 0.37.1 | 2023-05-12 | |
-| 6.0.0 | 3.0.0 | | | 1.78.5 | | 0.37.1 | 2023-05-04 | |
-| 5.0.1 | 3.0.0 | | | 1.76.6 | | 0.36.1 | 2023-04-05 | |
-| 5.0.0 | 3.0.0 | | | 1.76.6 | | 0.36.1 | 2023-04-04 | |
-| 4.0.3 | 2.0.2 | | | 1.69.13 | | 0.34.1 | | |
-| 4.0.1 | 2.0.2 | | | 1.69.12 | | 0.34.1 | | |
-| 4.0.0 | 2.0.2 | | | 1.69.10 | | 0.34.0 | | |
-| 3.0.1 | 2.0.2 | | | 1.69.9 | | 0.34.0 | | |
-| 3.0.0 | 2.0.2 | | | 1.69.0 | | 0.34.0 | | |
-| 2.1.0 | 2.0.2 | | | 1.67.20 | | 0.33.0 | | monaco-editor and vscode compatible again |
-| 2.0.0 - 2.0.2 | 2.0.2 | | | 1.68.4 | | 0.33.0 | | monaco-editor and vscode incompatible |
+| monaco-languageclient | vscode-ws-jsonrpc | monaco-editor-wrapper | monaco-editor-react | monaco-vscode-api / editor-api | vscode | monaco-editor | release date | comment |
+| :-------------------- | :---------------- | :-------------------- | :------------------ | :----------------------------- | :------ | :------------ | :----------- | :---------------------------------------------------- |
+| 11.0.0-next.0 | 4.0.0-next.0 | | 8.0.0-next.0 | 34.0.1 | 1.124.0 | 0.55.1 | unreleased | |
+| 10.7.0 | 3.5.0 | | 7.7.0 | 25.1.2 | 1.108.2 | 0.55.1 | 2026-02-04 | |
+| 10.6.0 | 3.5.0 | | 7.6.0 | 25.0.0 | 1.108.0 | 0.55.1 | 2026-01-14 | |
+| 10.5.0 | 3.5.0 | | 7.5.0 | 24.2.0 | 1.107.1 | 0.55.1 | 2025-12-23 | |
+| 10.4.0 | 3.5.0 | | 7.4.0 | 23.2.2 | 1.106.2 | 0.55.1 | 2025-11-26 | |
+| 10.3.0 | 3.5.0 | | 7.3.0 | 23.0.0 | 1.106.0 | 0.54.0 | 2025-11-16 | |
+| 10.2.0 | 3.5.0 | | 7.2.0 | 22.1.0 | 1.105.0 | 0.54.0 | 2025-10-20 | |
+| 10.1.0 | 3.5.0 | | 7.1.0 | 21.3.2 | 1.104.2 | 0.53.0 | 2025-09-30 | |
+| 10.0.0 | 3.5.0 | | 7.0.0 | 21.1.0 | 1.104.0 | 0.53.0 | 2025-09-19 | |
+| 9.11.0 | 3.5.0 | 6.12.0 | 6.12.0 | 20.2.1 | 1.103.1 | 0.52.2 | 2025-08-21 | |
+| 9.10.0 | 3.5.0 | 6.11.0 | 6.11.0 | 20.1.1 | 1.103.1 | 0.52.2 | 2025-08-14 | |
+| 9.9.0 | 3.5.0 | 6.10.0 | 6.10.0 | 19.1.4 | 1.102.3 | 0.52.2 | 2025-08-11 | |
+| 9.8.0 | 3.4.0 | 6.9.0 | 6.9.0 | 18.1.0 | 1.101.1 | 0.52.2 | 2025-06-24 | |
+| 9.7.1 | 3.4.0 | 6.8.1 | 6.8.1 | 17.2.1 | 1.100.3 | 0.52.2 | 2025-06-17 | |
+| 9.7.0 | 3.4.0 | 6.8.0 | 6.8.0 | 17.1.2 | 1.100.2 | 0.52.2 | 2025-05-28 | |
+| 9.6.0 | 3.4.0 | 6.7.0 | 6.7.0 | 16.1.1 | 1.99.3 | 0.52.2 | 2025-05-06 | |
+| 9.5.0 | 3.4.0 | 6.6.0 | 6.6.0 | 15.0.2 | 1.97.2 | 0.52.2 | 2025-03-13 | |
+| 9.4.0 | 3.4.0 | 6.4.0 | 6.4.0 | 14.0.4 | 1.97.2 | 0.52.2 | 2025-02-18 | |
+| 9.3.0 | 3.4.0 | 6.3.0 | 6.3.0 | 14.0.2 | 1.97.0 | 0.52.2 | 2025-02-12 | |
+| 9.2.5 | 3.4.0 | 6.2.5 | 6.2.5 | 13.1.6 | 1.96.4 | 0.52.2 | 2025-02-08 | |
+| 9.2.4 | 3.4.0 | 6.2.4 | 6.2.4 | 13.1.4 | 1.96.4 | 0.52.2 | 2025-02-06 | |
+| 9.2.3 | 3.4.0 | 6.2.3 | 6.2.3 | 13.1.3 | 1.96.4 | 0.52.2 | 2025-02-04 | |
+| 9.2.2 | 3.4.0 | 6.2.2 | 6.2.2 | 13.1.2 | 1.96.4 | 0.52.2 | 2025-02-03 | |
+| 9.2.1 | 3.4.0 | 6.2.1 | 6.2.1 | 13.1.1 | 1.96.4 | 0.52.2 | 2025-01-31 | |
+| 9.2.0 | 3.4.0 | 6.2.0 | 6.2.0 | 13.1.1 | 1.96.4 | 0.52.2 | 2025-01-31 | |
+| 9.1.1 | 3.4.0 | 6.1.1 | 6.1.1 | 11.1.2 | 1.95.3 | 0.52.0 | 2025-01-20 | |
+| 9.1.0 | 3.4.0 | 6.1.0 | 6.1.0 | 11.1.2 | 1.95.3 | 0.52.0 | 2025-01-10 | |
+| 9.0.0 | 3.4.0 | 6.0.0 | 6.0.0 | 11.1.2 | 1.95.3 | 0.52.0 | 2024-12-18 | |
+| 8.8.3 | 3.3.2 | 5.5.3 | 4.5.3 | 8.0.4 | 1.92.2 | 0.51.0 | 2024-08-26 | |
+| 8.8.2 | 3.3.2 | 5.5.2 | 4.5.2 | 8.0.2 | 1.92.2 | 0.50.0 | 2024-08-21 | |
+| 8.8.1 | 3.3.2 | 5.5.1 | 4.5.1 | 8.0.1 | 1.92.1 | 0.50.0 | 2024-08-12 | |
+| 8.8.0 | 3.3.2 | 5.5.0 | 4.5.0 | 8.0.0 | 1.92.0 | 0.50.0 | 2024-08-08 | |
+| 8.7.0 | 3.3.2 | 5.4.0 | 4.4.0 | 7.0.7 | 1.91.1 | 0.50.0 | 2024-07-16 | |
+| 8.6.0 | 3.3.2 | 5.3.1 | 4.3.2 | 6.0.3 | 1.90.0 | 0.50.0 | 2024-07-02 | |
+| 8.6.0 | 3.3.2 | 5.3.0 | 4.3.0 | 6.0.3 | 1.90.0 | 0.50.0 | 2024-06-29 | |
+| 8.5.0 | 3.3.2 | 5.2.0 | 4.2.0 | 5.2.0 | 1.89.1 | 0.48.0 | 2024-06-04 | |
+| 8.4.0 | 3.3.1 | 5.1.2 | 4.1.2 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-17 | |
+| 8.4.0 | 3.3.1 | 5.1.1 | 4.1.1 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
+| 8.4.0 | 3.3.1 | 5.1.0 | 4.1.0 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
+| 8.4.0 | 3.3.1 | 5.0.0 | 4.0.0 | 5.1.1 | 1.89.1 | 0.48.0 | 2024-05-15 | |
+| 8.3.1 | 3.3.1 | 4.2.1 | 3.2.1 | 4.3.2 | 1.88.1 | 0.47.0 | 2024-04-17 | |
+| 8.3.0 | 3.3.1 | 4.2.0 | 3.2.0 | 4.2.1 | 1.88.1 | 0.47.0 | 2024-04-12 | |
+| 8.2.0 | 3.3.1 | 4.1.0 | 3.1.0 | 4.1.2 | 1.88.0 | 0.47.0 | 2024-04-10 | |
+| 8.1.1 | 3.3.0 | 4.0.2 | 3.0.2 | 3.2.3 | 1.87.2 | 0.47.0 | 2024-04-03 | |
+| 8.1.0 | 3.3.0 | 4.0.1 | 3.0.1 | 3.2.1 | 1.87.2 | 0.47.0 | 2024-03-22 | |
+| 8.0.0 | 3.3.0 | 4.0.0 | 3.0.0 | 3.1.2 | 1.87.2 | 0.47.0 | 2024-03-18 | see #[March 2024 (v8.0.0)](#march-2024-v800) |
+| 7.3.0 | 3.2.0 | | | 1.85.0 | 1.85.0 | 0.45.0 | 2024-01-04 | |
+| 7.2.0 | 3.1.0 | | | 1.83.16 | 1.83.16 | 0.44.0 | 2023-12-07 | |
+| 7.1.0 | 3.1.0 | | | 1.83.12 | 1.83.12 | 0.44.0 | 2023-11-27 | |
+| 7.0.2 | 3.1.0 | | | 1.83.7 | 1.83.7 | 0.44.0 | 2023-11-02 | |
+| 7.0.1 | 3.1.0 | | | 1.83.5 | 1.83.5 | 0.44.0 | 2023-11-10 | |
+| 7.0.0 | 3.1.0 | | | 1.83.5 | 1.83.5 | 0.44.0 | 2023-11-02 | Introduction of `@codingame/monaco-editor-treemended` |
+| 6.6.1 | 3.0.0 | | | 1.83.3 | | 0.44.0 | 2023-10-20 | |
+| 6.6.0 | 3.0.0 | | | 1.83.2 | | 0.44.0 | 2023-10-16 | |
+| 6.5.3 | 3.0.0 | | | 1.82.5 | | 0.43.0 | 2023-10-11 | |
+| 6.5.2 | 3.0.0 | | | 1.82.4 | | 0.43.0 | 2023-10-07 | |
+| 6.5.1 | 3.0.0 | | | 1.82.3 | | 0.43.0 | 2023-10-04 | |
+| 6.5.0 | 3.0.0 | | | 1.82.2 | | 0.43.0 | 2023-09-29 | |
+| 6.4.6 | 3.0.0 | | | 1.81.7 | | 0.41.0 | 2023-09-05 | |
+| 6.4.5 | 3.0.0 | | | 1.81.5 | | 0.41.0 | 2023-08-30 | |
+| 6.4.4 | 3.0.0 | | | 1.81.5 | | 0.41.0 | 2023-08-24 | |
+| 6.4.3 | 3.0.0 | | | 1.81.3 | | 0.41.0 | 2023-08-22 | |
+| 6.4.2 | 3.0.0 | | | 1.81.2 | | 0.41.0 | 2023-08-19 | |
+| 6.4.1 | 3.0.0 | | | 1.81.1 | | 0.41.0 | 2023-08-18 | |
+| 6.4.0 | 3.0.0 | | | 1.81.0 | | 0.41.0 | 2023-08-10 | |
+| 6.3.0 | 3.0.0 | | | 1.80.2 | | 0.40.0 | 2023-08-04 | |
+| 6.2.0 | 3.0.0 | | | 1.79.3 | | 0.39.0 | 2023-06-16 | |
+| 6.1.0 | 3.0.0 | | | 1.79.1 | | 0.38.0 | 2023-06-12 | |
+| 6.0.3 | 3.0.0 | | | 1.78.8 | | 0.37.1 | 2023-05-31 | |
+| 6.0.2 | 3.0.0 | | | 1.78.6 | | 0.37.1 | 2023-05-24 | |
+| 6.0.1 | 3.0.0 | | | 1.78.6 | | 0.37.1 | 2023-05-12 | |
+| 6.0.0 | 3.0.0 | | | 1.78.5 | | 0.37.1 | 2023-05-04 | |
+| 5.0.1 | 3.0.0 | | | 1.76.6 | | 0.36.1 | 2023-04-05 | |
+| 5.0.0 | 3.0.0 | | | 1.76.6 | | 0.36.1 | 2023-04-04 | |
+| 4.0.3 | 2.0.2 | | | 1.69.13 | | 0.34.1 | | |
+| 4.0.1 | 2.0.2 | | | 1.69.12 | | 0.34.1 | | |
+| 4.0.0 | 2.0.2 | | | 1.69.10 | | 0.34.0 | | |
+| 3.0.1 | 2.0.2 | | | 1.69.9 | | 0.34.0 | | |
+| 3.0.0 | 2.0.2 | | | 1.69.0 | | 0.34.0 | | |
+| 2.1.0 | 2.0.2 | | | 1.67.20 | | 0.33.0 | | monaco-editor and vscode compatible again |
+| 2.0.0 - 2.0.2 | 2.0.2 | | | 1.68.4 | | 0.33.0 | | monaco-editor and vscode incompatible |
## Important Project Changes
@@ -101,7 +101,9 @@ The following table describes which version of **monaco-languageclient** and **@
### March 2024 (v8.0.0)
-`@codingame/monaco-editor-treemended` is replaced by self-standing `@codingame/monaco-vscode-editor-api`. `monaco-editor-wrapper` and `@typefox/monaco-editor-react` have been moved into this repository.
+- `monaco-editor-wrapper` and `@typefox/monaco-editor-react` were integrated into this repository and were released from here for the first time.
+- `@codingame/monaco-vscode-api` started to implement its own versioning scheme.
+- `@codingame/monaco-editor-treemended` is replaced by self-standing `@codingame/monaco-vscode-editor-api`. `monaco-editor-wrapper` and `@typefox/monaco-editor-react` have been moved into this repository.
### October 2023 (v7.0.0)
diff --git a/knip.json b/knip.json
index 5d910829d..fda455962 100644
--- a/knip.json
+++ b/knip.json
@@ -5,7 +5,7 @@
"entry": ["scripts/clean.ts", "scripts/helper.ts"]
},
"packages/vscode-ws-jsonrpc": {
- "entry": ["src/server/index.ts", "src/socket/index.ts", "src/index.ts"]
+ "entry": ["src/server/index.ts", "src/index.ts"]
},
"packages/client": {
"entry": [
@@ -32,6 +32,7 @@
"src/appPlayground/reactMain.tsx",
"src/browser/main.ts",
"src/clangd/client/main.ts",
+ "src/clangd/worker/clangd-server.ts",
"src/debugger/server/debugServer.ts",
"src/eclipse.jdt.ls/client/main.ts",
"src/groovy/client/main.ts",
@@ -61,5 +62,5 @@
"packages/examples/resources/**": ["exports", "types"]
},
"ignoreBinaries": ["playwright"],
- "ignoreDependencies": ["pyright"]
+ "ignoreDependencies": ["pyright", "emscripten"]
}
diff --git a/mise.toml b/mise.toml
index 191ee923c..47a083919 100644
--- a/mise.toml
+++ b/mise.toml
@@ -1,5 +1,5 @@
[tools]
-node = "24.15.0"
-npm = "11.12.1"
-pnpm = "10"
+node = "24"
+npm = "11"
+pnpm = "11"
yarn = "4"
diff --git a/package-lock.json b/package-lock.json
index b6cb368cd..82015b13a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11,40 +11,40 @@
"packages/examples"
],
"devDependencies": {
- "@codingame/monaco-vscode-rollup-vsix-plugin": "^31.0.1",
+ "@codingame/monaco-vscode-rollup-vsix-plugin": "^34.0.1",
"@testing-library/react": "~16.3.2",
"@types/node": "~24.10.15",
- "@types/react": "~19.2.14",
+ "@types/react": "~19.2.17",
"@types/react-dom": "~19.2.3",
"@typescript/native-preview": "beta",
- "@vitest/browser": "~4.1.6",
- "@vitest/browser-playwright": "~4.1.6",
- "@vitest/coverage-v8": "~4.1.6",
- "knip": "^6.12.2",
+ "@vitest/browser": "~4.1.9",
+ "@vitest/browser-playwright": "~4.1.9",
+ "@vitest/coverage-v8": "~4.1.9",
+ "knip": "~6.16.1",
"minimatch": "~10.2.5",
- "oxfmt": "~0.49.0",
- "oxlint": "~1.64.0",
- "oxlint-tsgolint": "~0.22.1",
+ "oxfmt": "~0.55.0",
+ "oxlint": "~1.70.0",
+ "oxlint-tsgolint": "~0.23.0",
"shx": "~0.4.0",
- "tsx": "~4.21.0",
+ "tsx": "~4.22.4",
"typescript": "~6.0.3",
- "vite": "~8.0.12",
- "vitest": "~4.1.6"
+ "vite": "~8.0.16",
+ "vitest": "~4.1.9"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
},
"node_modules/@babel/code-frame": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
- "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
- "@babel/helper-validator-identifier": "^7.28.5",
+ "@babel/helper-validator-identifier": "^7.29.7",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
@@ -53,9 +53,9 @@
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -63,9 +63,9 @@
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -73,13 +73,13 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.29.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
- "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.29.0"
+ "@babel/types": "^7.29.7"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -89,9 +89,9 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.29.2",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
- "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
+ "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -99,14 +99,14 @@
}
},
"node_modules/@babel/types": {
- "version": "7.29.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
- "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-string-parser": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.28.5"
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
@@ -167,503 +167,518 @@
"license": "Apache-2.0"
},
"node_modules/@codingame/monaco-vscode-api": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-31.0.1.tgz",
- "integrity": "sha512-ZvNruAV3e594knX+Q9ugoP5SnrwrFLKnvLSzZGuoRxrBWpnMn5AhWHWVFWlgfsVoATf87fFUZGLyS32xIsbhHw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-base-service-override": "31.0.1",
- "@codingame/monaco-vscode-environment-service-override": "31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1",
- "@codingame/monaco-vscode-host-service-override": "31.0.1",
- "@codingame/monaco-vscode-layout-service-override": "31.0.1",
- "@codingame/monaco-vscode-quickaccess-service-override": "31.0.1",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-34.0.1.tgz",
+ "integrity": "sha512-LiFstXqNw1PPabjrV3g09/Wu8Ss5f2IlDH2lHlEZaQmhDVdxpDZUKqKaD1hLDKiYwx8lYeHs1yNUab5uUQh4bQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-base-service-override": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1",
+ "@codingame/monaco-vscode-host-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@vscode/diff": "0.0.2-7",
"@vscode/iconv-lite-umd": "0.7.1",
- "dompurify": "3.4.1",
+ "dompurify": "3.4.9",
"jschardet": "3.1.4",
"marked": "14.0.0"
}
},
"node_modules/@codingame/monaco-vscode-base-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-31.0.1.tgz",
- "integrity": "sha512-ypFJzuTwhP2x/+BAeMe33GlCtwDRSMv6QRfC/+7vHYaPwv2AfHZY6ExZABLtyHImB7OTSWJeCK81ocjtH0vR6A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-34.0.1.tgz",
+ "integrity": "sha512-f7QLFt9W5xPx03y7bmmo4IrQNyGHZSICunmBbRVP3T+F8KAD3X5JhMgun6490MT6I25MCtmxrwreQ5xvTHRqUg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-bulk-edit-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-31.0.1.tgz",
- "integrity": "sha512-KiLZKbSCdFlIMyeA1v7XQROTKr9mtI0Ny+RoFxvRjXgeZns4uWNenrWoBa8IUS4TIrCg7tPML+CklPF2Ja3OvQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-34.0.1.tgz",
+ "integrity": "sha512-UyNajMSftU4UbBdycPGBpt2xco5m1cgIiXJ5CqIK9giyF04SShW27cPi3XSQGUaN040h2yCzgysHw9byB/RlJA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-configuration-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-31.0.1.tgz",
- "integrity": "sha512-1gJKiBsHFdCjxCZ8DX4Ljn1FRwVAaeDHzp0VIC3EesY1UgrLBa+x6ftsQJ2gbdOAbxj516LV2w1j8iE75CWS6Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-34.0.1.tgz",
+ "integrity": "sha512-xLzUFDgzeEnNpuP9UHri5AgPHT2uy5EGZp3lFJuoBAb+ATpWwRebRRQRpf6BtiiwmMkp3NYvSfHb2TWL/x8pGA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-cpp-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-cpp-default-extension/-/monaco-vscode-cpp-default-extension-31.0.1.tgz",
- "integrity": "sha512-mO7UR/jFssemQM9IXsxmGk/MoRHeshRp9May9yrPtc7eVekVqFi+7UxCam3pQu0Q93MJSqxn69FK/YgWU4n0EA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-cpp-default-extension/-/monaco-vscode-cpp-default-extension-34.0.1.tgz",
+ "integrity": "sha512-aiTWaYxsTyJBld4w+ebGD0eJjGLVW9hiwMFOPnozwnQ9JSFl9N+Fj65TLJP70P4aL/3LD6hGAuKPaPP1qq2o5A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-debug-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-debug-service-override/-/monaco-vscode-debug-service-override-31.0.1.tgz",
- "integrity": "sha512-I/+CGtjxAjIV6QbOsp9H3vja3DCBtib3GEsZudq/FBKx7ZU6PqJRE7aV+POsJTq7nq8GKfE9YXYY3CawX09SEw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-debug-service-override/-/monaco-vscode-debug-service-override-34.0.1.tgz",
+ "integrity": "sha512-DcIN008LPWo5AN505vnxtoPBP0TTxSgcCkOIhyvgOqUvNuLD0yRKQ0KZYYOmgGAzONwah+3dbq2goX4Inj/MHQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-editor-api": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-31.0.1.tgz",
- "integrity": "sha512-fM8fMfIdKXNNDN4mJ5JodFn0GqU+yGZn2dpNy+4UXg/kgoXuxse91iEAF6LN9cXq1DVYX/JZxBqM+BlknPV0Cg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-34.0.1.tgz",
+ "integrity": "sha512-o/7ECILQ5eOViHkK6LrKT0TAZb6ZgZwL8C/+ZqITGb7e3vUBNjPoYPJ+RVb8h2vM9ihfbWBuKjaGyd/pP+BjDg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-editor-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-31.0.1.tgz",
- "integrity": "sha512-XCL2hOJ5QYKq3b1u9J9V/nrELElR+QNt9gnFreqfrgNPEMPWsy3Hw+a+cJ9y3YCwrR3g3MLRAbQf7N3+ICOqlA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-34.0.1.tgz",
+ "integrity": "sha512-+u1AWE51kv3Fr/q169spoZ6A4Ixnu9OAQyK/rNO7v7Oj6Z3INHouZQjJx9KaECHFalzhih4cUSSkRETvXxbPVA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-environment-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-31.0.1.tgz",
- "integrity": "sha512-E5Hpg8kIxG9TmbZM3e3qqxUorzcTZJWtbp9FU7ezKuxeUr5lmeRhrFIjjpBcS0HDM4Gr7cY/Wc6h8Y32NIo7HQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-34.0.1.tgz",
+ "integrity": "sha512-cxN+MbUlV1IK0IXp3MerahdoVtLudkpBAwEyfn2uyzkiuRRHtCsNdcf/9Hyy2shFp3kuRRpQLbtIt6ODfYfX6g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-explorer-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-explorer-service-override/-/monaco-vscode-explorer-service-override-31.0.1.tgz",
- "integrity": "sha512-IzfOnDnxrHYJtkDmBXeuULHbAGDygrlv4f37Cr2fdCVvtabv+3jrEiQqG04UmKQcUStb9vofKd82lsLRhX9c4w==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-explorer-service-override/-/monaco-vscode-explorer-service-override-34.0.1.tgz",
+ "integrity": "sha512-/QIeIKZI4ApKA9WqmBUhFEgOwi0WmvELUeG5DR/my4V19Ou3/0DgADNZVgaXeVp0anUE0c4H/0TwcPAU3mbaoQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-extensions-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-31.0.1.tgz",
- "integrity": "sha512-tIOhsT2mr6UIfqzyDGU5w0nXubQKa5g96LxYdZnFkAjLRkRg8jU349Wst2fVTRe7UHzM7nTddoFJm5jvB2zd6g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-34.0.1.tgz",
+ "integrity": "sha512-wHDZmFEtOahYXk1H0TeGIV2Ssl6yurYQFX33L5Im1CtypxTMkEm0sP+IvOHLmJbT4X5u5xi7FWNcgoVhbVnYaQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-files-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-31.0.1.tgz",
- "integrity": "sha512-scRcbTQg/riMEI7gHG1t/fosLRwFhP7uEpdijqv7fX2Ib0dzfCwWTeo+0KlrQu3yEoC4asXHazm5FDJytcH3Xw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-34.0.1.tgz",
+ "integrity": "sha512-oqWQ0WiQDQRZoA9G68+G+QMAxtCwPFf0RXDD5aUqhXYOXhW/lqwCBwwqdQLoKQyiALfIXF6wU944fkspWPfa3g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-groovy-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-groovy-default-extension/-/monaco-vscode-groovy-default-extension-31.0.1.tgz",
- "integrity": "sha512-1XStirz+Oha0CvQdNq1HVWF9f3W7MPzF3mUG9bRRLyoqcNS2tyQzrab+q3ktxzUUOqOTvsn+nyPxH9+uLhFt2Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-groovy-default-extension/-/monaco-vscode-groovy-default-extension-34.0.1.tgz",
+ "integrity": "sha512-kJQGHiwedtHa9QMjgVSnf64dmZ/rsNyhMRltE2ZKhoMjU9gDL36LN40G8twCABKwxDyvU02f6A8lKPyI5CG21w==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-host-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-31.0.1.tgz",
- "integrity": "sha512-jM+T/k4wemPDOaoyBSln+pkwhjGiuR/ov1KhVBUjOntrnU/fqq6CuaDd9LWqf8Aq2/9rn1iEjlAsGp9C3acLoA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-34.0.1.tgz",
+ "integrity": "sha512-lVho3RwV0kAtSALAdB0UeglApr/KJQShbGB91KUBjKeOx4J5XGfPL2k2y9yNtGjE8NKuuJ2XaxmhSDdcOkuWDA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-java-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-java-default-extension/-/monaco-vscode-java-default-extension-31.0.1.tgz",
- "integrity": "sha512-bNuwIQHL+nvLFU+5K7/82xdCMwSgGPJFWPIl6YvGt68NEA5xY7p2Fbp1s854VGKY0R/AWwlMsCOM46XwOM09Ww==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-java-default-extension/-/monaco-vscode-java-default-extension-34.0.1.tgz",
+ "integrity": "sha512-JbzLL59eF37hTbvtsbU2jBbd30Fd7S153E6bOdk7cggkIVSLGnH7hlkbCYnhddeF9ZjZoVUkmNl51hHKaKkcPw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-javascript-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-javascript-default-extension/-/monaco-vscode-javascript-default-extension-31.0.1.tgz",
- "integrity": "sha512-9ZX6A+QNolqb5rmiR9H0rB4m10zZe0ptubCOlN08kSCM/OqC1tsGUZTG8PgCOb8XccbYqZQQiiL67sDR7RKNRA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-javascript-default-extension/-/monaco-vscode-javascript-default-extension-34.0.1.tgz",
+ "integrity": "sha512-vrYvQNr5q//oQd2c7nPHjay08tV5WePU5HoCK4y4sW0J6jfrlYV2bwAElM66rhmeeTgMeo9usFo+2U0rS/h+0A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-json-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-31.0.1.tgz",
- "integrity": "sha512-v5k95l0boCgIU6JCWxKr4yTWM0pl/TFHaCXefR5VSOw0lvoQO+BqCzRBm2Xyc9EXL4f3jfDtyD7qjAjft/bU+g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-34.0.1.tgz",
+ "integrity": "sha512-dwI9HGXaJwVa22Hjb9Rla0vOJh6BqUYlG7nFtLuAf7NEQQzJkFaR4gHk4hd91QCaxJvJB0xtCG4nWL0VE3moJA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-json-language-features-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-language-features-default-extension/-/monaco-vscode-json-language-features-default-extension-31.0.1.tgz",
- "integrity": "sha512-FQodwmtXFJTyxyuZ+CxnqOvV1PROSLvst6nJVoGk/fSHsCkCn7k1HYlA9CBFSgr1CnAcO2Vd7YTHFxjkoOdsFw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-language-features-default-extension/-/monaco-vscode-json-language-features-default-extension-34.0.1.tgz",
+ "integrity": "sha512-wJy0gTTR+kinoM0Wj5GI0ANeGseEg9HpSJEq1A9xl/XrUmVYSb5SEw8cximcknt6KPmd97aNRe/lGwlxTKOkJA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-keybindings-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-31.0.1.tgz",
- "integrity": "sha512-ikCsWIrQfWUvMZtqeTZzkJSmEHVcOM8YyzZKI4Rxn0NKcRiog16uEZz6SSglqrX59i6sRF50iFHBfA4VFxXX2g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-34.0.1.tgz",
+ "integrity": "sha512-YKD3sGZL9oFsV1hWoLKJp02CWUbQT7d6jn2X1IykuGH1awWMTm3VQMMnkxGU+pSSvCmQ/wuGoAYe3DfjEygJIQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-cs": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-31.0.1.tgz",
- "integrity": "sha512-QgIN+YTf/F6jpupBPsaGNNOjsch8kjlqYVEQQ62ieoBDhLymm/NnrWqV9gXaX6dI367fAFIxK05KVazt3satbA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-34.0.1.tgz",
+ "integrity": "sha512-zi2jNOP4vMN2lhJ+JUfKrooY7egKMqoB0e0vH2awNV18+qttFZYlBbKrKC5DbuelhgpJtLzFO0jyxUBUHmIs8Q==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-de": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-31.0.1.tgz",
- "integrity": "sha512-VAg+7S+bL8YttSk213zJ5MRyhwA/dAKH+IjNOZ746gEQJSBgoVggbSMQc4CsvODYfWom60cBG+idP95e/KIwXA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-34.0.1.tgz",
+ "integrity": "sha512-tztb60pekwh/wS8085vNZiDQkZ+zBZ8Cf6nzEtJX9GrXezC9kWNpKkRSDt/bmugWH0//HQeEtZ3aCw7hIte40A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-es": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-31.0.1.tgz",
- "integrity": "sha512-MW2LMvORMpp5daGufQPOMik8iCHZE9npU3c/kSEpzGqahtnU/drZuWdpspe5zODtil4OLgB3Uqtr9GKcFtxZHw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-34.0.1.tgz",
+ "integrity": "sha512-UHo897MoZD4Qsvz4Wj53XwJDTVnWbo9kwdDDU6DSISDDXu0xmNiyEKDBBy83pgfb3JL8sUk1+9t7MNxT0PmXYA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-fr": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-31.0.1.tgz",
- "integrity": "sha512-drYyq4+ayMdSoOeSxpapBUpu4ajeEkuZ8P0DZHtvlEJDF5UNFlHxNfmYcLxydczdcO/02GViBsm41dnYvPP26w==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-34.0.1.tgz",
+ "integrity": "sha512-u3Wvai16YVcYD317jZgsNxDEpm4AeS45Css/aghpNY6RL03AZ2yalo4725zovVO5kw6LqtHiTShz++iwrkrfcA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-it": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-31.0.1.tgz",
- "integrity": "sha512-Yr96PxqfsX8dMX4ayEDjV9Ypidt+yoq2MoPj56KyGy0Pmv10GL/hlQa1CeNOGQSfgHfx1cX4yT9pfZ5qwzGV9w==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-34.0.1.tgz",
+ "integrity": "sha512-ZAn/4Bf3KfVlle/tv5GXGJX+S/GzwJQW06dMU565KqpcNYvyiads5ssniBKVm//DjIFML4m+/TqyqRwlrw4FDg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-ja": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-31.0.1.tgz",
- "integrity": "sha512-5KfXr7jNlFkBebcDnvy8W5V3sh0AqQe6MfxbU0F7uQzSMLQIw9LzdcLcjF9ca/movOqavrR+7+dDw+10JHwn2A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-34.0.1.tgz",
+ "integrity": "sha512-f30rvO/PtdmRPTl9+j1XhTZd3k2gE0ZRPIS0G2qau4Q7Yo+7wHZDyTsX+eGH/iThaBKO9PcIKi0b0Bd/fsIAeA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-ko": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-31.0.1.tgz",
- "integrity": "sha512-FscUX/YYDmyFJ/G2DlPy6bUxsAeGP/p/RJ81YdBCSk+RHgnLiUuGo9fnQWv32ejxtaaqgyq9FCq6Glgrr/dzNA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-34.0.1.tgz",
+ "integrity": "sha512-0YbTNs0+seHpaDEn6rk/TPfS8uVpv42HP1XHeu5qWRlP2g16e+6UGyQR/MgOlc7ZA4jrTvdOw6GLazOXod8sSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-pl": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-31.0.1.tgz",
- "integrity": "sha512-YsXxWhNDsysBYGhd2ndE7+VjuAwW2qPavJIBQXZ+fL4h1cZ+QZdeTaSLvQRNnVkXmIjii+GTYvQ9aZjkJYExUg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-34.0.1.tgz",
+ "integrity": "sha512-+r6fzotACJsOVOZlTx8clZC/JPLQxiYUCi7/fZf9rTDITJvvn5wRXJtFLkMr+Hrvfek3ub6wg28a7/I8UbnRDw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-pt-br": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-31.0.1.tgz",
- "integrity": "sha512-hxNHmPP5pPkZoAe0532VfqAEU4Q2D0R34mDwS1BbAJmrQcVO384uJoqG4L7zRO7ER+CKqGf47TXXi1shuVFgww==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-34.0.1.tgz",
+ "integrity": "sha512-88ur9nSoFjRpl96ayCcMxudkJ52J5cCGEIv0f1SbDMQt/qAkwJW+XC4uyvtrfS2D3ns9XucxlzigYMUlaMmDJw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-qps-ploc": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-31.0.1.tgz",
- "integrity": "sha512-8hq6g3/gLSIESGbxkmGc6VkLkfj2g3tt3GcUl+necJeGJ7CLI1kXItNBAqF+c8JkT6aftqoxKJAWjVdvDCj1AA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-34.0.1.tgz",
+ "integrity": "sha512-hn0XvA4QvcIREyUBOPxCxBTy++6Ps9h8Wh6jslaVPZzoNqKKrpRXBDYQqVFJhlq1+uZAKmYlaNkYVM8pQI9tIg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-ru": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-31.0.1.tgz",
- "integrity": "sha512-iGsCBhSsRDQPBiThqw81YkKCh+oRI/NGOMYSkddPfuLJweGWm6Uu8M//cqEg9ka9LsGhgY+ubK+2D0is+myGZw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-34.0.1.tgz",
+ "integrity": "sha512-XBVnwlCbOVbOencngpMjGb1MYXtIV+cLkCE8zujQZT2sFXTwvDSgYUvMt7yBJ9BN9MZkAJhRQi5YNmnU8n+V/g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-tr": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-31.0.1.tgz",
- "integrity": "sha512-fmviA3BqeH/D5cyidxVIjeOMNuSYDTOrjZVohx6J9vXwRr4y27QSS9h7ItRZiTjBXnH4soyksguOFsZBYnwM9A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-34.0.1.tgz",
+ "integrity": "sha512-qeteD9NEWKwS/AgKmjUE8Yr/cAzP+FgYSZQRawoQ59QQbsex6lEhX/qvwNVD+cLhDwcnOsLTTvq0KZ1SPEAiSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-zh-hans": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-31.0.1.tgz",
- "integrity": "sha512-lEV74oobVAZHVKFV0DoRolNJuy+JJ12D2J7aAMg2RgU45gki9nDJDT7HMMgXlxIjMrKjd7nLCnb4mNsoesX3xA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-34.0.1.tgz",
+ "integrity": "sha512-24DCtVzPBitXijX8muGi0tfEgZItJgiTD7WYV81gP2nDm+QC9fKqYYIqc96WJXGahexZq68lBvIWq8uZpE25OA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-language-pack-zh-hant": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-31.0.1.tgz",
- "integrity": "sha512-Nw+Y9BTlxWSQcmsD/0UMEjBIi1J53mUwMvn7Jy1GYiHAlR39/VwhneeJR5MzXkQdf7Zl5/+/PKYI69mX3tKilw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-34.0.1.tgz",
+ "integrity": "sha512-QpDUVIr19PxGsiRaxgeoJ/Mx8i1MVzWhJqiaVtvO/ln/q3LV9nCk0UzR0SDxhlE9aaj1R+PybirQcbCANMgNBA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-languages-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-31.0.1.tgz",
- "integrity": "sha512-zGtJz+J/4xgkMTNoZY+jc6rSl23KFx2cYU808UmcOsJyVnTsLAMxigcE+0oK4C56d3lKL8j4s27Io+dtizMwhQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-34.0.1.tgz",
+ "integrity": "sha512-DzYJuc8xlq/nYT33s5SydO+GoVOnyIiMFydVcSodU2acRPWVeswb5LGlKl8kbEHkc3AKPbA846pKjtvFQOeqsQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-layout-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-31.0.1.tgz",
- "integrity": "sha512-fbio+xRryvaambNaWuy89OUl6hj5YJxPUL/pMNd+NdLhmy+buWsKIazG3Afe607QroNOPu9S1HM85RQM1W0h1A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-34.0.1.tgz",
+ "integrity": "sha512-5K0xlg5MurqI/qotIye/lq3dynZZ+9uSu8Kz884m6soH08/zIY7peMYj44qhxgv2BRTDlEl1bnR98lDWNv3oSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-lifecycle-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-lifecycle-service-override/-/monaco-vscode-lifecycle-service-override-31.0.1.tgz",
- "integrity": "sha512-3BH1PF5qHBCWAeZryxXvy65sAQtXrj7RvgKKOBMf2gUSjhrVsl2haL2/kZXWO3bn4VzqEShMAdGWeAy8w8+/Dw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-lifecycle-service-override/-/monaco-vscode-lifecycle-service-override-34.0.1.tgz",
+ "integrity": "sha512-bkZA88NB5qxHyFfjew1nd3Wb3Rf4fgYN5rGesGASdsXMsZo8uYxW0eYSxrR4OG1IJCxFugrW4X6DrPS2WPKqIA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-localization-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-31.0.1.tgz",
- "integrity": "sha512-1zOGBN1GlzFdUYXSYTHejqMbh4WMO/llKjAq9r9Y+w/ZxQJRekDW+JxQi22OQ6YBJRCMK4UnEopxGbBeHHJXFw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-34.0.1.tgz",
+ "integrity": "sha512-Uv17ZDeFUO+1x4YlOgHf+9KCOW6vRJAruG6s/2i90m+fyk9ufyn4zUZ4a1L18UeNhdqtCmWaLTCrdcRZfvmEpA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-log-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-31.0.1.tgz",
- "integrity": "sha512-afv95GLTF2ETBNJcR831S0wSGgGZCN9v1v/CW2kHJxmjzmVs/wFcJAnBxa4PV5/z9wZBUjBq0bazIsv/GPc/sg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-34.0.1.tgz",
+ "integrity": "sha512-3RMVpqHUzE9+coN+EHzBG+8agl0eHoDEsnYni5Eel7fulDZsU9FKp75FU+p8WC4UjwnSn0l+Cl5qb0HInSjSfA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-environment-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-model-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-31.0.1.tgz",
- "integrity": "sha512-952j0HKVPzSkeBQwcxSghTFiXHiSPVcRcfIyf7YXoG/M4UGLrANXTS9A50pHuoSwbTNw6s+TZlQhnkRNuyHAcA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-34.0.1.tgz",
+ "integrity": "sha512-LH2uYCZ6Ypt0QmE6fs10+ir3qRpvXOHBW5stCEQ5sGVNU0iM6YO50MSt8TZn8uvy8PQGKDcxl5PWqSbSqzJJ4A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-monarch-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-31.0.1.tgz",
- "integrity": "sha512-drMbOlskYrLALxJnICtlwVSJthDO/E8IaAj0yLBo3xARfn3ayqIJkOUa6AAJHJgB8ZrKfuQdeTsNRE7ORPYFrg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-34.0.1.tgz",
+ "integrity": "sha512-PTASnH+/jVjvUzl/EXYpy/g/CZftX9KD6DwT+TLnzm1Ck21SJiWMWo+RL/6EsF3gorCc89fcCDMqM6c31EBqMw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-outline-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-outline-service-override/-/monaco-vscode-outline-service-override-31.0.1.tgz",
- "integrity": "sha512-GrnRXkz0BvFo/JfPYyYPolcibW+20y6UoTtQQu0YgVs89KOch3CKiCGVTOhIRoYknD+JLPJhR0HFjuHxmI720Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-outline-service-override/-/monaco-vscode-outline-service-override-34.0.1.tgz",
+ "integrity": "sha512-9fLRjQKrHLhn9+c6dsfN6zuoTeeD5waE4oqqusk0Lvcu/qrpLGuk4HdmmTBLGxnu4cMgQMgDYe24YIHuwn+lRg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-preferences-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-preferences-service-override/-/monaco-vscode-preferences-service-override-31.0.1.tgz",
- "integrity": "sha512-Q6pQvzPYWATASGcY84e+fQgmRlRhzssFNjNMMCB+uHexU6nHKTjJM9Y/BI7mrEitEYOpaoD2WQwXbMA0mZhQfg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-preferences-service-override/-/monaco-vscode-preferences-service-override-34.0.1.tgz",
+ "integrity": "sha512-aP6v3P3Q3MboK3LG2Y8UY0W99zImrgkL8RKiJFJ6+CQGbFttFnt5zSQmYihjYJR1GJS379P0mgvdPI+13GVQgw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-python-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-python-default-extension/-/monaco-vscode-python-default-extension-31.0.1.tgz",
- "integrity": "sha512-MFclrUHinW/q6wdn06DUUmAi7S3nb9dSh6AbHi4WnOsrKd5oc0HnRvF2lJxPxdbfYGYF+/H/qnchLZgXktvsOw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-python-default-extension/-/monaco-vscode-python-default-extension-34.0.1.tgz",
+ "integrity": "sha512-5ODEW9q+G8QHgsbKJ/I5NZXVVIUGRY6+Q99zxScutiHIlia4EhM0qd/9hsf2neVgJoKjlNQcY9n5dHpiDwOrQw==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-quickaccess-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-31.0.1.tgz",
- "integrity": "sha512-muU05JyiVTW6M6fQhxCtfED989BojAtYLToQu1LXCghFPjkoUaX2fmT5w1wcz7CBUZaTH8GTMuqaxV0fn752aA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-34.0.1.tgz",
+ "integrity": "sha512-6IONyHH5wJHCaZ7CKTL2iz4DpoKmj2SmsHEAjE59OtcgLhqrCYhqBFb/dbse97HMbfYbvQyiMZb/kH3cJf89jQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-remote-agent-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-remote-agent-service-override/-/monaco-vscode-remote-agent-service-override-31.0.1.tgz",
- "integrity": "sha512-ALvbp4snalIhznrVMg/FpiYbctzzBslYNf8ocqaKJm5ZILb0l6pH+cYorkQxNcRWRGwZY3F6ma2sxfkCw7IdSg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-remote-agent-service-override/-/monaco-vscode-remote-agent-service-override-34.0.1.tgz",
+ "integrity": "sha512-ZtRswVTtNFwYuL41i+ixuIQeCXcaMuEtVGYlGU5EOVXwWSshNeO3nkqoapWe/sHcNlEX6JxeDLfiVt4fpIEY1g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-environment-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-rollup-vsix-plugin": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-rollup-vsix-plugin/-/monaco-vscode-rollup-vsix-plugin-31.0.1.tgz",
- "integrity": "sha512-J5Tnd/kOR6PQ+yIwUTD/JT/srWBkggF+nPwnp7bPSzlM2niWD/aCrfkxGPeChIsgOBqMQNHwXqiebVOEMkAKcA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-rollup-vsix-plugin/-/monaco-vscode-rollup-vsix-plugin-34.0.1.tgz",
+ "integrity": "sha512-sarB5tAgsvgg9gq8iYEJBr8FVJyG2iVg5ueKjTco8fQpKK6LvZizp1N49BeAwZmo7ch7RxQOOsPOrmquV2IMgQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@rollup/pluginutils": "^5.3.0",
+ "@rollup/pluginutils": "^5.4.0",
"css-url-parser": "^1.1.4",
- "memfs": "^4.57.2",
+ "memfs": "^4.57.7",
"mime-types": "^3.0.2",
"thenby": "^1.4.1",
- "yauzl": "^3.0.0"
+ "yauzl": "^3.3.1"
}
},
"node_modules/@codingame/monaco-vscode-search-result-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-result-default-extension/-/monaco-vscode-search-result-default-extension-31.0.1.tgz",
- "integrity": "sha512-NHHdkWXFRDtAl/CStdAOebrBeUvdIeI375Qc8rV/fOw8Kp0HZvTc+qx55BarY2TzD0LfA/gQnPYUKZ/p8hvAvw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-result-default-extension/-/monaco-vscode-search-result-default-extension-34.0.1.tgz",
+ "integrity": "sha512-4TbeZggaSjAgJDblNEHRcdZnSEUGr4mt1eTOVAlYWdwVRBtA7fFRPNICBsofP4z1aWtA4MiTVPQAsWt7A2TGQg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-search-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-service-override/-/monaco-vscode-search-service-override-31.0.1.tgz",
- "integrity": "sha512-357CQj2AdnpiA/iU5ZbWZE73LLjk0gl9qw7u64nxEBPxFbZ3OnL8YaVw60DjSYQ7MJyh6GubQmjwLulY4OmkyQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-service-override/-/monaco-vscode-search-service-override-34.0.1.tgz",
+ "integrity": "sha512-ZATAISy0nIxgP5D3rkvBZYP7fIKmME92K1TzE6Hbnn5t/51mMzMACqTEXr366Bnmy9LJ/ggkzT+DGwpZy0z3kQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-secret-storage-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-secret-storage-service-override/-/monaco-vscode-secret-storage-service-override-31.0.1.tgz",
- "integrity": "sha512-u5fj2dlhoi6XQqQjf9YvKoKWtj0i8dPrzn6jvMI/x3s8dwlQQPesMlh2cdN6g5RhXVH4rEgcUTmYmjoI4km6Ew==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-secret-storage-service-override/-/monaco-vscode-secret-storage-service-override-34.0.1.tgz",
+ "integrity": "sha512-w64QPTj8g0RyB3gXy6pASZKB1QDiQOXCXiGInaNOWwrnAY/TzlRBBjDGJdMg2A+R5N0+BRO4C4JKeb7ipuaruQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-standalone-css-language-features": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-css-language-features/-/monaco-vscode-standalone-css-language-features-31.0.1.tgz",
- "integrity": "sha512-N5IXGzq0DnpnPPnMfC2g8hCv4lh1jVf0umM25uZaQ8vljKOyMlNOg3vVqOFYnT1OgGPCchoQhflNkC/v8bqNPA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-css-language-features/-/monaco-vscode-standalone-css-language-features-34.0.1.tgz",
+ "integrity": "sha512-bW6N+kTfUUH6Tqf9bmEgUdRLbe4Zpa2rRcC4mueAc8bUA68fsxBUERUCV38HiDdplzI4jpsuU9LAkhtwldXR5w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@31.0.1",
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@34.0.1",
"vscode-css-languageservice": "6.2.14",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-languageserver-types": "3.17.5"
}
},
+ "node_modules/@codingame/monaco-vscode-standalone-css-language-features/node_modules/vscode-languageserver-types": {
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
+ "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@codingame/monaco-vscode-standalone-html-language-features": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-html-language-features/-/monaco-vscode-standalone-html-language-features-31.0.1.tgz",
- "integrity": "sha512-0otrnIemKcjN8atVWLKm/PO4mwEwLDCSzqErmOMlWFSairAPgDrd1l/AOqp1jgp7e7NkhrOTTQwLHI1XUa+Grg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-html-language-features/-/monaco-vscode-standalone-html-language-features-34.0.1.tgz",
+ "integrity": "sha512-6yUCqhZbwZlpdXafsaV2r7Vaxm6gYYQiqRm4pRQMG9y8KOv6kWFfpq5Dgxd00PmyTjeHmQLHPkIOrdcc+ZY4Qw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@31.0.1",
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@34.0.1",
"vscode-html-languageservice": "5.2.0",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-languageserver-types": "3.17.5"
}
},
+ "node_modules/@codingame/monaco-vscode-standalone-html-language-features/node_modules/vscode-languageserver-types": {
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
+ "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@codingame/monaco-vscode-standalone-json-language-features": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-json-language-features/-/monaco-vscode-standalone-json-language-features-31.0.1.tgz",
- "integrity": "sha512-7QowD94JeJwHwVuMRNXAdQgPzu/RkI1de6Adz4VN1SIQy243o7BDhkH07worQJXUqLPKW8adSB3MMYhTdWpfEA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-json-language-features/-/monaco-vscode-standalone-json-language-features-34.0.1.tgz",
+ "integrity": "sha512-ikvvUAKC4Xc7aVJoma1ZIHDOu0UyBaEtrUJC/3J7KeZ/ceQUDPOOvlcSPZmcWJql9dneKjb0N7S0QqYzmU+9QA==",
"dev": true,
"license": "MIT",
"dependencies": {
"jsonc-parser": "3.3.1",
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@31.0.1",
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@34.0.1",
"vscode-json-languageservice": "5.3.11",
"vscode-languageserver-textdocument": "1.0.12",
"vscode-languageserver-types": "3.17.5",
@@ -684,6 +699,13 @@
"vscode-uri": "^3.0.8"
}
},
+ "node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-languageserver-types": {
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
+ "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-uri": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz",
@@ -692,200 +714,200 @@
"license": "MIT"
},
"node_modules/@codingame/monaco-vscode-standalone-languages": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-languages/-/monaco-vscode-standalone-languages-31.0.1.tgz",
- "integrity": "sha512-M3UMn5muykPjCB/hxlyM+VRIZyddHqy4dMiWlWFZd1Y51y7B8+/KTzDB9/JzUYPCqkBT7tiLHXF9znUNkvvZig==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-languages/-/monaco-vscode-standalone-languages-34.0.1.tgz",
+ "integrity": "sha512-2qWAVn1UJx+mEciGlJGlMo8V95bHYXfuvQbRYNhAfTB41DGq4BHQWPiLKpgPoBoE6hZLbaP+hj25Yk1gTu7ICw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-standalone-typescript-language-features": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-typescript-language-features/-/monaco-vscode-standalone-typescript-language-features-31.0.1.tgz",
- "integrity": "sha512-8BvgLjWjNmXR5AVFMSWKI9mJ3mj+xlxLnNWYj/kZKQoA1yes0PKG9hwrePYKcOCf31A3G21VYA+VWPoxpzfPfQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-typescript-language-features/-/monaco-vscode-standalone-typescript-language-features-34.0.1.tgz",
+ "integrity": "sha512-OgihFfeDAppOU5zcsrMa+iKDSaOEqzD4kIuZ0AZ8TN/R2IOkCG+Myh/Kl1KwVqpQTKlVrhSPA6hWJX5dEx0W4w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@31.0.1"
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-storage-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-storage-service-override/-/monaco-vscode-storage-service-override-31.0.1.tgz",
- "integrity": "sha512-XGgOT9Be1Jgp7gpYYUY0FyV8bYQWvbtagkfZh5YeRQ4MgVtL+Odepybvum/R4CO9ysGkgUy2nDzkOBXrNzrg9g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-storage-service-override/-/monaco-vscode-storage-service-override-34.0.1.tgz",
+ "integrity": "sha512-fUZfrIC73ciUKfW1AlTtdMQWjZN261LQtZfUuOkzziZWdB7QGfdDKaGOzeDClcRQ5J0GVfzD/vhzQvDGQE3uvg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-terminal-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-terminal-service-override/-/monaco-vscode-terminal-service-override-31.0.1.tgz",
- "integrity": "sha512-BHcVjv+6VMn1t/rQnSzDFkoDADec+l5Fqp0s4Gxc7skf9xfdYZm9cGmRSD7/CEXv0pSTblHiUHIij71AIaRmMA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-terminal-service-override/-/monaco-vscode-terminal-service-override-34.0.1.tgz",
+ "integrity": "sha512-dTG1WHqTAUmTZbI88Lu2H93YHaK76VlCAYZbEZv828n8cVxGnnkgs+v2mqHax/pmgi9KboqCQpQo9aGJTRFxzA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-xterm-addons-common": "31.0.1",
- "@codingame/monaco-vscode-xterm-common": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-xterm-addons-common": "34.0.1",
+ "@codingame/monaco-vscode-xterm-common": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-testing-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-testing-service-override/-/monaco-vscode-testing-service-override-31.0.1.tgz",
- "integrity": "sha512-QUDFVvpDYA1dTY6Z8n7Qbdz8gIKr2RLJceMrPVZ66UKljQ56x7FVuGqA5wKv4xGr+BSgIryZsQxERNHq1ri3Ew==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-testing-service-override/-/monaco-vscode-testing-service-override-34.0.1.tgz",
+ "integrity": "sha512-oIYT2/+eONyHIJ/IsvqbfrEJ+vNp2Rn9dk2W3S/slm/t2FrQpROZ/K0kTm8hFnIHmV/4pyaBpD2ICGF4a6lYWQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-terminal-service-override": "31.0.1",
- "@codingame/monaco-vscode-xterm-addons-common": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-terminal-service-override": "34.0.1",
+ "@codingame/monaco-vscode-xterm-addons-common": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-textmate-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-31.0.1.tgz",
- "integrity": "sha512-mEifjtkqJggKLNTvM09NgXPqnHwL72OlO0NcveVZHzwL0MD7JasNaitsIQyorNkbX+cI8y1UJVAHcCjNkqXVDA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-34.0.1.tgz",
+ "integrity": "sha512-iVo3dxlHic30CMQsG834PtDj1rVWbvk5ORqEzI7HnRUsw2TYtXy8al7MgLs/95JFsla0hQ071ShyvChaEkPUIg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-theme-defaults-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-31.0.1.tgz",
- "integrity": "sha512-AzNtspCshfRnJ7Pg8K/NbAPFTQT2MBXhWvlBWFdWidDPJGOXrfyjNZegFOx/FceRzsyg7dVP95F7Sp9Vsfy5/w==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-34.0.1.tgz",
+ "integrity": "sha512-EQIo8wAkRCGGpPdA0uflpcF2QhdU6Ml5Ub0fB7XfxyIJLFVVDDQZg/t0NlZbqJWz9DvzCi5N/2Gc48Pw3uRsYQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-theme-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-31.0.1.tgz",
- "integrity": "sha512-uB9EL/OAKhL6MtzI2LqxkGRwvRpB9znnlN7yTm3Z3HmxmRPzTA1PuChjLM5tiwU+PFk8ECmi6Ug6YN08wI39hA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-34.0.1.tgz",
+ "integrity": "sha512-zO3Xmn+eG4X6otG+/ywtb15BJQCT270DolW53brPpnpUmjgZJVDOhiwQtM2yc7j0VSV7Ufp6gr4KR4wlLbdZhA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-files-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-typescript-basics-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-31.0.1.tgz",
- "integrity": "sha512-Lef3BtfOwd3qw2g5Rx25wojyREMVE+1K1chSgpUymJUwCXRHWkEZHBdejwAm2uWgLqiltPkQrE5lo3AvwN7I2Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-34.0.1.tgz",
+ "integrity": "sha512-VBsZR5K+rvip7MefSM/R2QnBQWTEEHCEuOexNe0YSQvzlMPEnxDY7H84PlyQeW+0TxNaRozPIe9nomQoefIuLg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-typescript-language-features-default-extension": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-31.0.1.tgz",
- "integrity": "sha512-7HIV1gochxdiZfYGXRz7rPKvlGaio02CgT7TwevJ6xqWSm8tDTRBackWLs+KLaPXZXW5OX2N3GbHBlk3fBvZMg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-34.0.1.tgz",
+ "integrity": "sha512-6I3lQbEeQz/g0qcCQOCsbc+CIsPUsJTYtDPC89NJHv7UmosS3Y+hTmJMLFlV4W/E+NYICkyEpRMSmod7S+xz2A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-view-banner-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-31.0.1.tgz",
- "integrity": "sha512-JKNQYMR7OG06dCIaPxFgpYnS5JpsVOYeziCOq1C2Y8bQeIAhKqKyUWRRgHoF2TiFRrIQXvwTrE4ihGrBhfosMA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-34.0.1.tgz",
+ "integrity": "sha512-K8ZIk0iFpF3ftHWBzZcAkdVrLUAVtl0DcdeJQ3LcyFjEwo+n9re8trGhaPDI1tpLDkHogEeCcaPe7Lm6bCtBxg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-view-common-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-31.0.1.tgz",
- "integrity": "sha512-G0dAwMlqCgjavJ7dJBZ7M5KPz0dpFHSupLGyf5Qxm0eSWnxUjjL70sg9o4rGnVUHdhAaBBD5C9OEkp+ciw1D0g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-34.0.1.tgz",
+ "integrity": "sha512-ZlhZq85TqQK1MhYtrhdMF89xgDeb7T/3iPecO0nphMozGoA3q3PFLmrKgQ9m3b5jXFZFwlyUNK8+HqDPlID13A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-bulk-edit-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-bulk-edit-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-view-status-bar-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-31.0.1.tgz",
- "integrity": "sha512-lpHncd+WjM9rI+gqU440WkN9nUgyUiGkqyHfQFlyBuRJYsZH74pff/3d8Hq+TG/Mhw9VP4yuwupvThAcFK6FKQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-34.0.1.tgz",
+ "integrity": "sha512-Ux+bdswBzLTcdLwxv1t6hfVnLaGW9SoAIgy5Heh4jM7vNiE5FE9sNzG+RI1hMBd9xMQJhi4JdD6Rtdw/4XtiEg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-view-title-bar-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-31.0.1.tgz",
- "integrity": "sha512-X2oLSfEX02NMF6bLG3kEpXmygjvO/vQDt8sd7JpuqFNIsAmg7wPoAuDCkw8gr1VcJFZWdRKNe8fpYS8JzTu/Gg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-34.0.1.tgz",
+ "integrity": "sha512-x4oE7Gj3GKFgsdIkWYlf3ghol+o6+ksp95pJI0LWBPuYyK41DjiJ+AITb2PQVLWZ/6av7gMQeiWaEaCt9td3qA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-views-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-31.0.1.tgz",
- "integrity": "sha512-MKnzOr3e5ZyODAgVXpB9NZkx7Sgvf/VszkiGgilMyKMNYAxEXHpMoc2dBD7Ti80LAfjjJPxPKSZ/iLx1HlxAYQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-34.0.1.tgz",
+ "integrity": "sha512-0CR1sJUJS/uC/Cx1GOPr5DgIwSnwyluaAtKv9SAe2Au7BJ5cvG7HFPitI+bgsheNnVLBhu1SZF/H8Y7X7ImCvA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-keybindings-service-override": "31.0.1",
- "@codingame/monaco-vscode-layout-service-override": "31.0.1",
- "@codingame/monaco-vscode-quickaccess-service-override": "31.0.1",
- "@codingame/monaco-vscode-view-common-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-common-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-workbench-service-override": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-31.0.1.tgz",
- "integrity": "sha512-Bba7UFPp7T21uhgI9ljvxX6YSO+Tei9ZYSCJxsyl5BA7MIuTAfIKqb1Imb2T3m0KOHkE61UO+0OT4OwpJU9w7g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-34.0.1.tgz",
+ "integrity": "sha512-8aNKJtai1sAEYnhr5OEqHZe478e7LwMEtApzAv7igTW+wy1vWL+5pLMBjcwue1wZjQiI+kIU762Pk65sIcJRoA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-keybindings-service-override": "31.0.1",
- "@codingame/monaco-vscode-quickaccess-service-override": "31.0.1",
- "@codingame/monaco-vscode-view-banner-service-override": "31.0.1",
- "@codingame/monaco-vscode-view-common-service-override": "31.0.1",
- "@codingame/monaco-vscode-view-status-bar-service-override": "31.0.1",
- "@codingame/monaco-vscode-view-title-bar-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-banner-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-common-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-status-bar-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-title-bar-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-xterm-addons-common": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-addons-common/-/monaco-vscode-xterm-addons-common-31.0.1.tgz",
- "integrity": "sha512-2BmHsQyqd1MOtL/46rBw1SQzqfGWE+25ozDIjdYTcmLVrlFE3CnSlFIxilTI5yS3FJUWyG0ZbSoPw6vRAP8WSw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-addons-common/-/monaco-vscode-xterm-addons-common-34.0.1.tgz",
+ "integrity": "sha512-h81Vr9QhUwLRkZb9W0ZcTbKOJrbev/BFk3p++UyBJ2QSuvTtU5CEp0mepA23DFZuiFbH8GoA57G+GI/ajttcxg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@xterm/addon-clipboard": "0.3.0-beta.204",
- "@xterm/addon-image": "0.10.0-beta.204",
- "@xterm/addon-ligatures": "0.11.0-beta.204",
- "@xterm/addon-progress": "0.3.0-beta.204",
- "@xterm/addon-search": "0.17.0-beta.204",
- "@xterm/addon-serialize": "0.15.0-beta.204",
- "@xterm/addon-unicode11": "0.10.0-beta.204",
- "@xterm/addon-webgl": "0.20.0-beta.203"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@xterm/addon-clipboard": "0.3.0-beta.285",
+ "@xterm/addon-image": "0.10.0-beta.285",
+ "@xterm/addon-ligatures": "0.11.0-beta.285",
+ "@xterm/addon-progress": "0.3.0-beta.285",
+ "@xterm/addon-search": "0.17.0-beta.285",
+ "@xterm/addon-serialize": "0.15.0-beta.285",
+ "@xterm/addon-unicode11": "0.10.0-beta.285",
+ "@xterm/addon-webgl": "0.20.0-beta.284"
}
},
"node_modules/@codingame/monaco-vscode-xterm-common": {
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-common/-/monaco-vscode-xterm-common-31.0.1.tgz",
- "integrity": "sha512-tfQL1ccWdqd/MsVSydHg8EJvevjLNAuDuPQcMu/RaeqbLwBcQTjER9pEU21t/2IIuOn+byYOzIp2k0k1nxgY2g==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-common/-/monaco-vscode-xterm-common-34.0.1.tgz",
+ "integrity": "sha512-8YPohEBDq/zbn3YdP/RfmFAwSgwQv0HoYjpy5xAn17KWA1XLzJffHVAPCOhi4JOZbAMtNMJQ9Q+BzQcJPhaXBA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-xterm-addons-common": "31.0.1",
- "@xterm/xterm": "6.1.0-beta.204"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-xterm-addons-common": "34.0.1",
+ "@xterm/xterm": "6.1.0-beta.285"
}
},
"node_modules/@codingame/monaco-vscode-xterm-common/node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.204.tgz",
- "integrity": "sha512-NV6os+3b1xCG0IOZ5VpKNmiBU2E+y4ODTHo4hTxp178LsJDBoPDMuD/KfNvkYEkzN1NnWNu71P7+jounZzrnKQ==",
+ "version": "6.1.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.285.tgz",
+ "integrity": "sha512-S3K58tepMkbpWRBzOGKd0In6AVvt9QPAnNs8DJ8rPUPODYtsCYWAtINHKYtC2OpXcE5EBKM35dl+Dgv03OoE/w==",
"license": "MIT",
"workspaces": [
"addons/*"
@@ -926,9 +948,9 @@
}
},
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
- "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz",
+ "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==",
"cpu": [
"ppc64"
],
@@ -943,9 +965,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
- "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz",
+ "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==",
"cpu": [
"arm"
],
@@ -960,9 +982,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
- "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz",
+ "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==",
"cpu": [
"arm64"
],
@@ -977,9 +999,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
- "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz",
+ "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==",
"cpu": [
"x64"
],
@@ -994,9 +1016,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
- "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz",
+ "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==",
"cpu": [
"arm64"
],
@@ -1011,9 +1033,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
- "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz",
+ "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==",
"cpu": [
"x64"
],
@@ -1028,9 +1050,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
- "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==",
"cpu": [
"arm64"
],
@@ -1045,9 +1067,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
- "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz",
+ "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==",
"cpu": [
"x64"
],
@@ -1062,9 +1084,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
- "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz",
+ "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==",
"cpu": [
"arm"
],
@@ -1079,9 +1101,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
- "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz",
+ "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==",
"cpu": [
"arm64"
],
@@ -1096,9 +1118,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
- "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz",
+ "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==",
"cpu": [
"ia32"
],
@@ -1113,9 +1135,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
- "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz",
+ "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==",
"cpu": [
"loong64"
],
@@ -1130,9 +1152,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
- "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz",
+ "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==",
"cpu": [
"mips64el"
],
@@ -1147,9 +1169,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
- "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz",
+ "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==",
"cpu": [
"ppc64"
],
@@ -1164,9 +1186,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
- "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz",
+ "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==",
"cpu": [
"riscv64"
],
@@ -1181,9 +1203,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
- "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz",
+ "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==",
"cpu": [
"s390x"
],
@@ -1198,9 +1220,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
- "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz",
+ "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==",
"cpu": [
"x64"
],
@@ -1215,9 +1237,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
- "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==",
"cpu": [
"arm64"
],
@@ -1232,9 +1254,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
- "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz",
+ "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==",
"cpu": [
"x64"
],
@@ -1249,9 +1271,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
- "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz",
+ "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==",
"cpu": [
"arm64"
],
@@ -1266,9 +1288,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
- "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz",
+ "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==",
"cpu": [
"x64"
],
@@ -1283,9 +1305,9 @@
}
},
"node_modules/@esbuild/openharmony-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
- "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz",
+ "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==",
"cpu": [
"arm64"
],
@@ -1300,9 +1322,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
- "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz",
+ "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==",
"cpu": [
"x64"
],
@@ -1317,9 +1339,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
- "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz",
+ "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==",
"cpu": [
"arm64"
],
@@ -1334,9 +1356,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
- "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz",
+ "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==",
"cpu": [
"ia32"
],
@@ -1351,9 +1373,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
- "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz",
+ "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==",
"cpu": [
"x64"
],
@@ -1447,14 +1469,14 @@
}
},
"node_modules/@jsonjoy.com/fs-core": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.2.tgz",
- "integrity": "sha512-SVjwklkpIV5wrynpYtuYnfYH1QF4/nDuLBX7VXdb+3miglcAgBVZb/5y0cOsehRV/9Vb+3UqhkMq3/NR3ztdkQ==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.7.tgz",
+ "integrity": "sha512-GDKuYHjP7vAI1kjBo73V+STKr9XIMZknW/xirpRW/EcShX0IKSev/ALafeRfC8Q331nodrXUFu04PugPB0MAhw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-builtins": "4.57.2",
- "@jsonjoy.com/fs-node-utils": "4.57.2",
+ "@jsonjoy.com/fs-node-builtins": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
"thingies": "^2.5.0"
},
"engines": {
@@ -1469,15 +1491,15 @@
}
},
"node_modules/@jsonjoy.com/fs-fsa": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.2.tgz",
- "integrity": "sha512-fhO8+iR2I+OCw668ISDJdn1aArc9zx033sWejIyzQ8RBeXa9bDSaUeA3ix0poYOfrj1KdOzytmYNv2/uLDfV6g==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.7.tgz",
+ "integrity": "sha512-1rWsah2nZtRbNeP+c61QcfGfVrJXBmBD0Hm7Akvv4C9MKEasXnbiOS//iH3T3HwUSSBATGrfSp0Xi8nlNhATeQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.2",
- "@jsonjoy.com/fs-node-builtins": "4.57.2",
- "@jsonjoy.com/fs-node-utils": "4.57.2",
+ "@jsonjoy.com/fs-core": "4.57.7",
+ "@jsonjoy.com/fs-node-builtins": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
"thingies": "^2.5.0"
},
"engines": {
@@ -1492,17 +1514,17 @@
}
},
"node_modules/@jsonjoy.com/fs-node": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.2.tgz",
- "integrity": "sha512-nX2AdL6cOFwLdju9G4/nbRnYevmCJbh7N7hvR3gGm97Cs60uEjyd0rpR+YBS7cTg175zzl22pGKXR5USaQMvKg==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.7.tgz",
+ "integrity": "sha512-xhnyeyEVTiIOibFvda/5n89nChMLCPKHHM2WQ+GGDf6+U/IrQBW3Qx6x+Uq1bkDbxBkybLOdIGoBtVBrE8Nngg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.2",
- "@jsonjoy.com/fs-node-builtins": "4.57.2",
- "@jsonjoy.com/fs-node-utils": "4.57.2",
- "@jsonjoy.com/fs-print": "4.57.2",
- "@jsonjoy.com/fs-snapshot": "4.57.2",
+ "@jsonjoy.com/fs-core": "4.57.7",
+ "@jsonjoy.com/fs-node-builtins": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-print": "4.57.7",
+ "@jsonjoy.com/fs-snapshot": "4.57.7",
"glob-to-regex.js": "^1.0.0",
"thingies": "^2.5.0"
},
@@ -1518,9 +1540,9 @@
}
},
"node_modules/@jsonjoy.com/fs-node-builtins": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.2.tgz",
- "integrity": "sha512-xhiegylRmhw43Ki2HO1ZBL7DQ5ja/qpRsL29VtQ2xuUHiuDGbgf2uD4p9Qd8hJI5P6RCtGYD50IXHXVq/Ocjcg==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.7.tgz",
+ "integrity": "sha512-LWqfY1m+uAosjwM1RrKhMkUnP9jcq1RUczHsNO779ovm1E9v8I/pmj04eBAcoBjhC7ltcPbNFGyRJ5JqSJ7Jdg==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -1535,15 +1557,15 @@
}
},
"node_modules/@jsonjoy.com/fs-node-to-fsa": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.2.tgz",
- "integrity": "sha512-18LmWTSONhoAPW+IWRuf8w/+zRolPFGPeGwMxlAhhfY11EKzX+5XHDBPAw67dBF5dxDErHJbl40U+3IXSDRXSQ==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.7.tgz",
+ "integrity": "sha512-9T0zC9LKcAWXDoTLRdLMoJ0seOvJ5bgDKq1tSBoQAFQpPDstQUeV1Oe7PLypdu7F2D3ddRstmwgeNUEN/VaZ4Q==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-fsa": "4.57.2",
- "@jsonjoy.com/fs-node-builtins": "4.57.2",
- "@jsonjoy.com/fs-node-utils": "4.57.2"
+ "@jsonjoy.com/fs-fsa": "4.57.7",
+ "@jsonjoy.com/fs-node-builtins": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.7"
},
"engines": {
"node": ">=10.0"
@@ -1557,13 +1579,13 @@
}
},
"node_modules/@jsonjoy.com/fs-node-utils": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.2.tgz",
- "integrity": "sha512-rsPSJgekz43IlNbLyAM/Ab+ouYLWGp5DDBfYBNNEqDaSpsbXfthBn29Q4muFA9L0F+Z3mKo+CWlgSCXrf+mOyQ==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.7.tgz",
+ "integrity": "sha512-jjWSDOsfcog2cZnUCwX5AHmlIq6b6wx5Pz/2LAcNjJ62Rajwg89Fy7ubN+lDHew0/1reLDa9Z5urybYadhh37g==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-builtins": "4.57.2"
+ "@jsonjoy.com/fs-node-builtins": "4.57.7"
},
"engines": {
"node": ">=10.0"
@@ -1577,13 +1599,13 @@
}
},
"node_modules/@jsonjoy.com/fs-print": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.2.tgz",
- "integrity": "sha512-wK9NSow48i4DbDl9F1CQE5TqnyZOJ04elU3WFG5aJ76p+YxO/ulyBBQvKsessPxdo381Bc2pcEoyPujMOhcRqQ==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.7.tgz",
+ "integrity": "sha512-mFM4P4Gjq0QQHkLnXzPYPEMFrAoe6a5Myedgb6+CmL+nGd3MKvTxYPuD7N1dLIH9RBy1fLdzxd80qvuK8xrx3Q==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-node-utils": "4.57.2",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
"tree-dump": "^1.1.0"
},
"engines": {
@@ -1598,14 +1620,14 @@
}
},
"node_modules/@jsonjoy.com/fs-snapshot": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.2.tgz",
- "integrity": "sha512-GdduDZuoP5V/QCgJkx9+BZ6SC0EZ/smXAdTS7PfMqgMTGXLlt/bH/FqMYaqB9JmLf05sJPtO0XRbAwwkEEPbVw==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.7.tgz",
+ "integrity": "sha512-1GS3+plfm2giB3PqokiqyydyqYTPLcCQIKSkp0TdMNRh3KVk7rqRM6U785FLlVRG7XLmkc0KWr215OY+22K3QA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@jsonjoy.com/buffers": "^17.65.0",
- "@jsonjoy.com/fs-node-utils": "4.57.2",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
"@jsonjoy.com/json-pack": "^17.65.0",
"@jsonjoy.com/util": "^17.65.0"
},
@@ -1826,14 +1848,14 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
- "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@tybys/wasm-util": "^0.10.1"
+ "@tybys/wasm-util": "^0.10.2"
},
"funding": {
"type": "github",
@@ -1883,9 +1905,9 @@
}
},
"node_modules/@oxc-parser/binding-android-arm-eabi": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.130.0.tgz",
- "integrity": "sha512-h/xYU8/7ADWzVSf5I+YalLpj33LOy9CI/zgbJNIZ5eunRBG+Czqa3lZsvuPHHf3rOt6z1c5+UzoxjbAzAvhwVw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.133.0.tgz",
+ "integrity": "sha512-l/44caGse+VpnY9gx0yvvc5QnnG3yG1FO3KZgYvNL1GZrfK86zIwAOgGEVlxDyRymzrU/KHiblPFpevKOmJmUA==",
"cpu": [
"arm"
],
@@ -1900,9 +1922,9 @@
}
},
"node_modules/@oxc-parser/binding-android-arm64": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.130.0.tgz",
- "integrity": "sha512-oFWFJrsGv9siFM4HjMqKNB7IuIZD/SMmZdCXl8xyx7lDplGvPKyewpOo272rSWgMXe2Wx7bWI0Yj+gkHv4qbeg==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.133.0.tgz",
+ "integrity": "sha512-KUHmPMziLBp4u+zbrLdB7iWS7KshuZe+RAp7ELnY9SI9nNXBZ+dp8fiBqWOxhXqn+FQg3a4UcQhwmsJOKV8Jjg==",
"cpu": [
"arm64"
],
@@ -1917,9 +1939,9 @@
}
},
"node_modules/@oxc-parser/binding-darwin-arm64": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.130.0.tgz",
- "integrity": "sha512-sGUzupdTplK9jQg7eJZ878HfEgQjJNBc6dAYVWJ9W5aU+J8rLfRJhTVsKThiu1pNwm6Y1qKCcbC6WhNWSXR3Ig==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.133.0.tgz",
+ "integrity": "sha512-q8dWmnU/8ea2tga9w2f1PinQ5rcMPDUGkF64T189b65YMjUomET4oy5oRldOr4AwOQkneOG/Zttnz1Dvrc62wg==",
"cpu": [
"arm64"
],
@@ -1934,9 +1956,9 @@
}
},
"node_modules/@oxc-parser/binding-darwin-x64": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.130.0.tgz",
- "integrity": "sha512-PsB4cdCISbC00Uy8eiD8bc2AkGWjZqrSrJnkBFuG2ptrrf6mZ2F5gLFSjOAVMMgZPg8B1D7OydJwLWSfyI2Plg==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.133.0.tgz",
+ "integrity": "sha512-cOKeIELIB2bJnCKwqx4Rdj+1Lss/U6uCbLxRySZrhyOOQa1flKhwZFjEHRHxk8fU1NKmhK5OnTdPQ4CpjuFuVw==",
"cpu": [
"x64"
],
@@ -1951,9 +1973,9 @@
}
},
"node_modules/@oxc-parser/binding-freebsd-x64": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.130.0.tgz",
- "integrity": "sha512-DgABp3l38hS77JbXCV4qk1+n6DPym5u8zzwuweokezm2tX194nDSJDENbDRECxVsiNbprKATLbk+Z5wlHT0OHw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.133.0.tgz",
+ "integrity": "sha512-OpaSv4pW3KgFrMYQxTaS0aOE4T1DQF3qZE/4B6uqqv1KgPWWd4UQhJALi8PJPX1RRV5K7ThKXRfF7qGg2+3l1A==",
"cpu": [
"x64"
],
@@ -1968,9 +1990,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.130.0.tgz",
- "integrity": "sha512-4Kn3CTEmwFrzhTSC/JuUW16qovmaMdX7jeSKbL8w0pLtLww7To1a2XJi9Z5uD8QWUkfUHhqfV+VD6dVzBnWzoA==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.133.0.tgz",
+ "integrity": "sha512-JGK1wlGrGwxBIlVSF7KWTX1/ru6BEtf28fRROztDRkLfiW+Kxa4onnriezMIiogfn9hVw2KzYcKiLjkLR2ns8A==",
"cpu": [
"arm"
],
@@ -1985,9 +2007,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-arm-musleabihf": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.130.0.tgz",
- "integrity": "sha512-D35KZM3F4rRu1uAFKyBlg3Gaf/ybCjyaPR1hfgvk5ex8NtcTmRgc0JgSighEyNg96TPrFhemFba68SZuxaha8w==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.133.0.tgz",
+ "integrity": "sha512-yuZO533Ftonxn/iyoqQzURzLQHMspvsIyfiCSNi1t/ER4eIQaR0SsmUOUm5b/lmSig7IWIUa5/BrbEkAPwcilQ==",
"cpu": [
"arm"
],
@@ -2002,9 +2024,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-arm64-gnu": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.130.0.tgz",
- "integrity": "sha512-Q9o7oVlo955KHwS8l1u0bCzIx+JsZUA3XToLXC+MsMhye/9LeBQbt84nh120cl2XLy+TEzvugYDiHShg5yaX6Q==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.133.0.tgz",
+ "integrity": "sha512-hvpbqT5pN2rR+3+xtWeizwfR/aZ0vGceg6TqYMl+ToxMpk9/tmnX7kSvQnfEUkoua8mhogzvIKsAkn0wxgblBA==",
"cpu": [
"arm64"
],
@@ -2022,9 +2044,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-arm64-musl": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.130.0.tgz",
- "integrity": "sha512-EiJ/gC0ljbcwVpycC8YWw6ggMbtsPX8XMOt0mPx0aqWeMsNR+L9m05Flbvd5T+GlivG+GkSWQL7tM9SRFpM/dw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.133.0.tgz",
+ "integrity": "sha512-wJQGamIosQBoJHW9+S5XxrtKRo3eyJxsnS1XCPrqN0LHi8uw1pTqqTfn3t/NVuvbBg7Pumn4ez9Eidgcn0xbEg==",
"cpu": [
"arm64"
],
@@ -2042,9 +2064,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-ppc64-gnu": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.130.0.tgz",
- "integrity": "sha512-b+h/lsLLurp756dMGizNs5uPaJfyEdWrTcV5t8M609jWm1DEHB1StpRXCkyvwtkJx3m+qL5BNQ0dEKan/4yGFA==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.133.0.tgz",
+ "integrity": "sha512-Koaz32/O5+abIfrNGdyndgRvdOZ9jEf5/z3Ep9h3h2QWpdDiUQpVwgH0OcMXCs+l9aXxPLtkupqyVig9W6FDKw==",
"cpu": [
"ppc64"
],
@@ -2062,9 +2084,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-riscv64-gnu": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.130.0.tgz",
- "integrity": "sha512-O19Cil83XAyjEFfo8WhkMwY58ALqZ7ckjGL+25mjMIuF84urWBeANH0FC8B8BsSSygWU3/1aY3ADdDbp+wlBnw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.133.0.tgz",
+ "integrity": "sha512-R4vOjWzxhnNWHnVLeiB6jNuIifdy9vcMXZGPc7StXcxBovI+U2zg1QhZ9o8OjV80oGivs1lX5NfPLzk4IPqlRA==",
"cpu": [
"riscv64"
],
@@ -2082,9 +2104,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-riscv64-musl": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.130.0.tgz",
- "integrity": "sha512-BgXRVC0+83n3YzCscLQjj6nbyeBIVeZYPTI4fFMAE4WNm2+4RXhWp03IVizL7esIz36kgmT48aebk1iM+cs8sw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.133.0.tgz",
+ "integrity": "sha512-iwgBNUTHiMdxARLYuM0SBlnYeb19iw1Ea5M+4ERZupCsBMLArti6FyZ6UfFjJxIiTDr2oW2DGQFxlQVQ/dW9rA==",
"cpu": [
"riscv64"
],
@@ -2102,9 +2124,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-s390x-gnu": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.130.0.tgz",
- "integrity": "sha512-6tJz0xvnGhsokE7N1WlUSBXibpYmT9xSJFS1Ce41Km/+8gQvdlW8MLhRv8PD0L7ix8vRG0FDDepp3jdOFzdVdw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.133.0.tgz",
+ "integrity": "sha512-ZwZNo8FZmB/gVfboQl+wXilBigGl+6nQQs+nITOeAP/HcAOjiHl6XZJL9F/KXNEspODQcbjAiyjUbeCJd9a0fA==",
"cpu": [
"s390x"
],
@@ -2122,9 +2144,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-x64-gnu": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.130.0.tgz",
- "integrity": "sha512-9aCWj83dp3heTQGmGnZGdIWgxjZrr/7VQ0TGFHH5PKByxJKF2Hcr4qvaSUHhhGEa3MSsDjTL1YDP8RAgdL5/Cg==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.133.0.tgz",
+ "integrity": "sha512-govCvWx1dBlED3uu4qXctxpRcouu9I8Kn+DBktGCl760JtlGJzc9l/OmPJKlYWSbrRqKkMZehNeZ/4Wfma7uSA==",
"cpu": [
"x64"
],
@@ -2142,9 +2164,9 @@
}
},
"node_modules/@oxc-parser/binding-linux-x64-musl": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.130.0.tgz",
- "integrity": "sha512-afXt87aZBqrUVli8TB/I8H1G50RDWcwirjWtXGXYqJ2ZqWEiErH7V72j3LUSDZaivmtu2OLX0KQ/mbhP81mr7A==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.133.0.tgz",
+ "integrity": "sha512-ssTlpXD5Mq9uCssDJPzlRWqBt4Y7Zzd9i+XZhWmK/9Y6KUIuAxVYTYiI8lxcGWi0+3/Cz4A8q9UrD4NK9Y2j7g==",
"cpu": [
"x64"
],
@@ -2162,9 +2184,9 @@
}
},
"node_modules/@oxc-parser/binding-openharmony-arm64": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.130.0.tgz",
- "integrity": "sha512-I0NCrZV/YZuCGWgqwNN/GO/iXlLF2z+Wgc7u+Aa9N4P51oYeIa0XT+zVBUne4csO9GqxskXgI4g8JzzWGRpfOw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.133.0.tgz",
+ "integrity": "sha512-51aByfXhPtLEdWG4a2Ihdw6cPWV1ei1AarALpFdDP8MLWDLE2NuUMgbo3DERR2Kt8fT/ok1GUvBiLxVGke9uUQ==",
"cpu": [
"arm64"
],
@@ -2179,9 +2201,9 @@
}
},
"node_modules/@oxc-parser/binding-wasm32-wasi": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.130.0.tgz",
- "integrity": "sha512-sJgQkGaBX0WJvPUDfwciex6IcTk5O5NLQ1bhEb6f3nBruh1GshKMRSMt2bxZlYrgBzjyBbJzsnO+InPG0bg+fA==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.133.0.tgz",
+ "integrity": "sha512-2e16tkKp+wDO2GTAmXfxbBcCmGEaFPIJEIRBBmVKNVXSc8/fJsSIaBGyFTPHM9ST5GNWgJcYIt94rDTks+PLwA==",
"cpu": [
"wasm32"
],
@@ -2198,9 +2220,9 @@
}
},
"node_modules/@oxc-parser/binding-win32-arm64-msvc": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.130.0.tgz",
- "integrity": "sha512-bjcma99sQrNh6RY4mPO9yTkfxql6TDFoN3HWdK31RCKXwNhcDgJXW/l8PUtzKNiQ+9vpKJfJtQq+LklBuxSOBA==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.133.0.tgz",
+ "integrity": "sha512-KPTNDKbxH1cglrqTyVeXHb4Pk4oksz8EcE1/v8zqU7N4UXbiHfA/IwtXZ2U77fnRAWBbgVkl/lZbL7o3hRdejg==",
"cpu": [
"arm64"
],
@@ -2215,9 +2237,9 @@
}
},
"node_modules/@oxc-parser/binding-win32-ia32-msvc": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.130.0.tgz",
- "integrity": "sha512-hRYbv6HhpSTzT4xTiIkadLI7upLQxuOdLPR/9nL1fTjwhgutBTPXrwaAPb/jTFVx6/8C7Jb5HcUKhmNwloTbFA==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.133.0.tgz",
+ "integrity": "sha512-Una1bNYv9zCavQrfnDR9wuZVB3itLjCEH4Oz7i6CwAJN/Xq9b+zbbcxmvdkKvvJt4Ngc/MBmIYlbLo3zS4TQ0A==",
"cpu": [
"ia32"
],
@@ -2232,9 +2254,9 @@
}
},
"node_modules/@oxc-parser/binding-win32-x64-msvc": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.130.0.tgz",
- "integrity": "sha512-RBpA9TsRucJq6HNVNCFF1iKg+QeTkLdZf7hi4xaOGCPvMZWvDHjQgSOEZMUpuW4JNciHbxNhLEYmz5CVygjVGQ==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.133.0.tgz",
+ "integrity": "sha512-kjBhCiOGSYTwDJQuuZa7a94JbP8htWu7J0X1KwH74kV2K5eYf6eyJRYmkpCDvr0XEL8tMxYI4WU1VekblFCLgg==",
"cpu": [
"x64"
],
@@ -2249,9 +2271,9 @@
}
},
"node_modules/@oxc-project/types": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.130.0.tgz",
- "integrity": "sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -2259,9 +2281,9 @@
}
},
"node_modules/@oxc-resolver/binding-android-arm-eabi": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.19.1.tgz",
- "integrity": "sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm-eabi/-/binding-android-arm-eabi-11.20.0.tgz",
+ "integrity": "sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==",
"cpu": [
"arm"
],
@@ -2273,9 +2295,9 @@
]
},
"node_modules/@oxc-resolver/binding-android-arm64": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.19.1.tgz",
- "integrity": "sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-android-arm64/-/binding-android-arm64-11.20.0.tgz",
+ "integrity": "sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==",
"cpu": [
"arm64"
],
@@ -2287,9 +2309,9 @@
]
},
"node_modules/@oxc-resolver/binding-darwin-arm64": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.19.1.tgz",
- "integrity": "sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-arm64/-/binding-darwin-arm64-11.20.0.tgz",
+ "integrity": "sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==",
"cpu": [
"arm64"
],
@@ -2301,9 +2323,9 @@
]
},
"node_modules/@oxc-resolver/binding-darwin-x64": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.19.1.tgz",
- "integrity": "sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-darwin-x64/-/binding-darwin-x64-11.20.0.tgz",
+ "integrity": "sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==",
"cpu": [
"x64"
],
@@ -2315,9 +2337,9 @@
]
},
"node_modules/@oxc-resolver/binding-freebsd-x64": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.19.1.tgz",
- "integrity": "sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-freebsd-x64/-/binding-freebsd-x64-11.20.0.tgz",
+ "integrity": "sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==",
"cpu": [
"x64"
],
@@ -2329,9 +2351,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-arm-gnueabihf": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.19.1.tgz",
- "integrity": "sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-11.20.0.tgz",
+ "integrity": "sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==",
"cpu": [
"arm"
],
@@ -2343,9 +2365,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-arm-musleabihf": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.19.1.tgz",
- "integrity": "sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-11.20.0.tgz",
+ "integrity": "sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==",
"cpu": [
"arm"
],
@@ -2357,9 +2379,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-arm64-gnu": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.19.1.tgz",
- "integrity": "sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-11.20.0.tgz",
+ "integrity": "sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==",
"cpu": [
"arm64"
],
@@ -2374,9 +2396,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-arm64-musl": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.19.1.tgz",
- "integrity": "sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-arm64-musl/-/binding-linux-arm64-musl-11.20.0.tgz",
+ "integrity": "sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==",
"cpu": [
"arm64"
],
@@ -2391,9 +2413,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-ppc64-gnu": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.19.1.tgz",
- "integrity": "sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-11.20.0.tgz",
+ "integrity": "sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==",
"cpu": [
"ppc64"
],
@@ -2408,9 +2430,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-riscv64-gnu": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.19.1.tgz",
- "integrity": "sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-11.20.0.tgz",
+ "integrity": "sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==",
"cpu": [
"riscv64"
],
@@ -2425,9 +2447,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-riscv64-musl": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.19.1.tgz",
- "integrity": "sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-11.20.0.tgz",
+ "integrity": "sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==",
"cpu": [
"riscv64"
],
@@ -2442,9 +2464,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-s390x-gnu": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.19.1.tgz",
- "integrity": "sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-11.20.0.tgz",
+ "integrity": "sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==",
"cpu": [
"s390x"
],
@@ -2459,9 +2481,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-x64-gnu": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.19.1.tgz",
- "integrity": "sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-gnu/-/binding-linux-x64-gnu-11.20.0.tgz",
+ "integrity": "sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==",
"cpu": [
"x64"
],
@@ -2476,9 +2498,9 @@
]
},
"node_modules/@oxc-resolver/binding-linux-x64-musl": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.19.1.tgz",
- "integrity": "sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-linux-x64-musl/-/binding-linux-x64-musl-11.20.0.tgz",
+ "integrity": "sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==",
"cpu": [
"x64"
],
@@ -2493,9 +2515,9 @@
]
},
"node_modules/@oxc-resolver/binding-openharmony-arm64": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.19.1.tgz",
- "integrity": "sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-openharmony-arm64/-/binding-openharmony-arm64-11.20.0.tgz",
+ "integrity": "sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==",
"cpu": [
"arm64"
],
@@ -2507,9 +2529,9 @@
]
},
"node_modules/@oxc-resolver/binding-wasm32-wasi": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.19.1.tgz",
- "integrity": "sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-wasm32-wasi/-/binding-wasm32-wasi-11.20.0.tgz",
+ "integrity": "sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==",
"cpu": [
"wasm32"
],
@@ -2517,16 +2539,18 @@
"license": "MIT",
"optional": true,
"dependencies": {
- "@napi-rs/wasm-runtime": "^1.1.1"
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@oxc-resolver/binding-win32-arm64-msvc": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.19.1.tgz",
- "integrity": "sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-11.20.0.tgz",
+ "integrity": "sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==",
"cpu": [
"arm64"
],
@@ -2537,24 +2561,10 @@
"win32"
]
},
- "node_modules/@oxc-resolver/binding-win32-ia32-msvc": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-11.19.1.tgz",
- "integrity": "sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
"node_modules/@oxc-resolver/binding-win32-x64-msvc": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.19.1.tgz",
- "integrity": "sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/@oxc-resolver/binding-win32-x64-msvc/-/binding-win32-x64-msvc-11.20.0.tgz",
+ "integrity": "sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==",
"cpu": [
"x64"
],
@@ -2566,9 +2576,9 @@
]
},
"node_modules/@oxfmt/binding-android-arm-eabi": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm-eabi/-/binding-android-arm-eabi-0.49.0.tgz",
- "integrity": "sha512-HbifJ84prIh9+55CTPAU35JdRQrwg47y16cGerCC+iejSKOuHXYo2WDql6l7cQlzrYVtc3f4UWY+dBj2lRmOeA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm-eabi/-/binding-android-arm-eabi-0.55.0.tgz",
+ "integrity": "sha512-+rFDOqQe5LOWgxrAJaZgLRudr6GQm0wGI6gtu7vVkrdLGjNMUSGbAlaCr8j7F2H2Er97vYQCU8WDb30onqMM1g==",
"cpu": [
"arm"
],
@@ -2583,9 +2593,9 @@
}
},
"node_modules/@oxfmt/binding-android-arm64": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm64/-/binding-android-arm64-0.49.0.tgz",
- "integrity": "sha512-Ef7SKJqAaH2d7E6eXZZa2OffIShbhFMxnGK0zd93p4qiyTJr75B0qf7lrPD+qQOwcf04BrjYJ0JUxq8d5+yZwg==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-android-arm64/-/binding-android-arm64-0.55.0.tgz",
+ "integrity": "sha512-ctulLq8s3x8Zmvw6+iccB09TIKERAklRSmbJ10gk8mlAn05qZxoyo52dj3Hi9IJcmDSwF54fQaTVh2CbL6PInw==",
"cpu": [
"arm64"
],
@@ -2600,9 +2610,9 @@
}
},
"node_modules/@oxfmt/binding-darwin-arm64": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-arm64/-/binding-darwin-arm64-0.49.0.tgz",
- "integrity": "sha512-8x5DN9CsFfb432sHa9NyqX5XisGUdA53LPEGSdv/VniS+v4uEOR8Orv7A9QSB98Xxgp0t6r31DzQA/wpIobGqQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-arm64/-/binding-darwin-arm64-0.55.0.tgz",
+ "integrity": "sha512-xDQczLH9pw/RBk1h/GH0qcGMm8hQtmtVHBNLSH3lk1gEIR09hZ4L+mJQl4VqiVAvPK9VG9PYrWWuSQLt7xTbiA==",
"cpu": [
"arm64"
],
@@ -2617,9 +2627,9 @@
}
},
"node_modules/@oxfmt/binding-darwin-x64": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-x64/-/binding-darwin-x64-0.49.0.tgz",
- "integrity": "sha512-e0+DSVzk4ewhMVKNYDaRTmP81jNMBWR1X9al0cVKWS+hDM/dElNqD5zjTOCuLOZc4oOdp2Gx2ldrVL+yYo9TZQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-darwin-x64/-/binding-darwin-x64-0.55.0.tgz",
+ "integrity": "sha512-JaNoFCkF2CJdGgpPSMbuO9HVyXyoNGIhMHPvp6NYAjeVKw9XEYc0HcUWJLPQa3Q69WV5wMa9m5jPMJPtbLtcRg==",
"cpu": [
"x64"
],
@@ -2634,9 +2644,9 @@
}
},
"node_modules/@oxfmt/binding-freebsd-x64": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-freebsd-x64/-/binding-freebsd-x64-0.49.0.tgz",
- "integrity": "sha512-W+mjtYtrQvFbXT/uNT+221OBhGRZ8UqNsLxjTWsjZ4GsQnRdvRC/N2NCK86BcamWr7lsTxwpwN3PULnr78sgcQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-freebsd-x64/-/binding-freebsd-x64-0.55.0.tgz",
+ "integrity": "sha512-DNbszhpg6S2MIzax5azdHFTTBIVkR5xr8yyRZuA4yoDAwOkzIp3tmldgKZM2+VlT+hJIG0xUksA+elISzMEAfA==",
"cpu": [
"x64"
],
@@ -2651,9 +2661,9 @@
}
},
"node_modules/@oxfmt/binding-linux-arm-gnueabihf": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.49.0.tgz",
- "integrity": "sha512-Rtv6UevV7czDlLqil+NZUe4d8gs8jQo/zScSpumwyf7I+fSdLc+hc8AF3MQC7ymxSMMD9+vfiqQlsIf7wOAzXA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.55.0.tgz",
+ "integrity": "sha512-2snoaoRfFFyGnbOcKUK36rREBYxe/Xgz3uHbiA5zbCB/s6R4DQj4mHqYAaWWhgizCUSDxV8cE9zAZ0XleNpKGw==",
"cpu": [
"arm"
],
@@ -2668,9 +2678,9 @@
}
},
"node_modules/@oxfmt/binding-linux-arm-musleabihf": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.49.0.tgz",
- "integrity": "sha512-sBi+8C/Q/MdKa5FL8ibAUCdhFBGFH7HFN/Qoyd5xQbZ/0ky3NMPpKfIBpaH0lhK2dXkGLczVQUoZ+xuNSerCdQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.55.0.tgz",
+ "integrity": "sha512-q1aktHF/WRpSK81BX1dE/9vWrS2jGw1Nax2kb4DBLGAewubCLcoNyp4Zl/NSMgbv3vUS46Z33wIQkBVYOP3PYg==",
"cpu": [
"arm"
],
@@ -2685,9 +2695,9 @@
}
},
"node_modules/@oxfmt/binding-linux-arm64-gnu": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.49.0.tgz",
- "integrity": "sha512-JIfWenFhlzx+O8YygyZhoHFzTsdgDhxhbDRnE2iJLnnM5pWKScFvPECO2vOlA7JqJ/9S1g3uzEKuRCkHFwTjvA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.55.0.tgz",
+ "integrity": "sha512-VD0y36aENezl/3tsclA/4G53Cc7iV+7Uoh7gz4yvcOTaEYBtJpQsE6PKDGTtUtOvGS4kv51ybfXY/nWZejO5IA==",
"cpu": [
"arm64"
],
@@ -2705,9 +2715,9 @@
}
},
"node_modules/@oxfmt/binding-linux-arm64-musl": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.49.0.tgz",
- "integrity": "sha512-iNzkMPG18jPkwBOZ4/HEjwqfzAjq4RrUQ0CgId/fC1ENvYD5jLVAaU/gWgpiqP1ys07kxSsSggDd1fp3E7mQHw==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.55.0.tgz",
+ "integrity": "sha512-r8xlKJFcsRmn0H5jZrdORae6RX9jDBrZVvOoxF+bCQtampQJClv80aZEHsv+NsLsp2KCE5ql79O7DpPVzYWpXA==",
"cpu": [
"arm64"
],
@@ -2725,9 +2735,9 @@
}
},
"node_modules/@oxfmt/binding-linux-ppc64-gnu": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.49.0.tgz",
- "integrity": "sha512-BPHA/NN3LvoIXiid+iz3BHt5V0Rzx0tXAqRUovwE1NsbDaLG9e8mtv7evDGRIkVQacqTDBv0XL25THHsxSJosQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.55.0.tgz",
+ "integrity": "sha512-GRKv/HXHcwIVld/WU61rF0g0R16hl5EJ+ScKdpjevT57lnLnagj/U2YUbXf2mT+2Pg1uCzWC+mvGicPV3CDdLQ==",
"cpu": [
"ppc64"
],
@@ -2745,9 +2755,9 @@
}
},
"node_modules/@oxfmt/binding-linux-riscv64-gnu": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.49.0.tgz",
- "integrity": "sha512-3Eroshe+s69htC9JIL0+zLGQczLtRKezkMhwqQC21VC5Z/fuLvzLfbAOLgJLUq601H8gDYjy7deYycfOBjCvWg==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.55.0.tgz",
+ "integrity": "sha512-rdv57enTiPtpSYRMKfAiEbQb0Puw5t9N7isVinDoo5qeLDScro2gznmZqSgSWbVZRzLisTeCTW8Qwgw0bOHv3A==",
"cpu": [
"riscv64"
],
@@ -2765,9 +2775,9 @@
}
},
"node_modules/@oxfmt/binding-linux-riscv64-musl": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.49.0.tgz",
- "integrity": "sha512-fnaERGgsxGm0lKAmO72EYR4BA3qBnzBTJBTi6EtUMq1D4R7EexRBMU4voXnx4TXla3SEDl9x4uNp/18SbkPjGg==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.55.0.tgz",
+ "integrity": "sha512-7v1nNrlD43VY6+sYQ6efYyb3lE6QY182304PD/768ZxTjOmFd/3dQa3u/nGBUAXYdGSWOQc5N3PnS0QzUXyEIA==",
"cpu": [
"riscv64"
],
@@ -2785,9 +2795,9 @@
}
},
"node_modules/@oxfmt/binding-linux-s390x-gnu": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.49.0.tgz",
- "integrity": "sha512-rBwasMl1Uul1MCCeTGEFKnOTL7VUxHf+634jWStrQAbzpBJgd5Yz5m4F7exVCsoI8PHn57dNjssXagXLCLB5yA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.55.0.tgz",
+ "integrity": "sha512-f4lJLUSPOgScjFl9LiflKCTocyNRwE25JmTMbN4XQdDjoZzEHjqf3wA3VESF1/csg7i8m7+EQLbrZyYDqe10UQ==",
"cpu": [
"s390x"
],
@@ -2805,9 +2815,9 @@
}
},
"node_modules/@oxfmt/binding-linux-x64-gnu": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.49.0.tgz",
- "integrity": "sha512-BoC/F9xHe2y/deuBGA5Aw7bes07OD2gcL2wlpzTrfImR92vPP7S/k3LBTyspQZCNIVNdagkELcqKELwMLGIfAg==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.55.0.tgz",
+ "integrity": "sha512-MihqiPziJNoWy4MqNSV+jVA1g+07iQDjZiR0vaCaDoPgFEiJpCMsxamktzLV07cEeQsSJ04vQaU4CzCQwIvtDA==",
"cpu": [
"x64"
],
@@ -2825,9 +2835,9 @@
}
},
"node_modules/@oxfmt/binding-linux-x64-musl": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-musl/-/binding-linux-x64-musl-0.49.0.tgz",
- "integrity": "sha512-umY6jFADAo/oztFKl8D/S6vSrG6oBpEskcentiRuz42kZVU2kfDXMWCYavxyZR2bwPjqkHpcHZ6EZFiH3Qj9ZA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-linux-x64-musl/-/binding-linux-x64-musl-0.55.0.tgz",
+ "integrity": "sha512-Yqghym7KYAVjP9MmSrNZiDeerMuoejNjo0r3ox5H3GDKk8eAfl8VyJm9i+pWCLDCTnAbcTUMMN2ZKjUYXH1v3g==",
"cpu": [
"x64"
],
@@ -2845,9 +2855,9 @@
}
},
"node_modules/@oxfmt/binding-openharmony-arm64": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-openharmony-arm64/-/binding-openharmony-arm64-0.49.0.tgz",
- "integrity": "sha512-J85zQMiw2pXiGPK+OusmDvSnJ/dgpgN7VgmB2zOBtgS8F+nsOUfSg9ZEBrwbQscjZ7tkPbm38CG4VF5f53MsiA==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-openharmony-arm64/-/binding-openharmony-arm64-0.55.0.tgz",
+ "integrity": "sha512-s5SDvVVSbyQl1V5UU3Yl12M+XLUQ3rl5SglNqgAA2K4PXUtQhyNSS00wivONPEnNo5W01rCou8WkDNyvI/RGHg==",
"cpu": [
"arm64"
],
@@ -2862,9 +2872,9 @@
}
},
"node_modules/@oxfmt/binding-win32-arm64-msvc": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.49.0.tgz",
- "integrity": "sha512-38K67XR++CoFFORDd4sMFwUVAnD6msYBdGTei+qvKGrRPO6S2PbrYPNL/eQQ1RgnnxOegNba0YQwg6uRkNcw6A==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.55.0.tgz",
+ "integrity": "sha512-7p9FB5R32tw2KyyNX3wpQrR2WHwEHvMEiBlGXxeTCaRMCVNx3UtFMAUbaQ/pRNWIrEUZmYhJ6tcUH52uPTRYjQ==",
"cpu": [
"arm64"
],
@@ -2879,9 +2889,9 @@
}
},
"node_modules/@oxfmt/binding-win32-ia32-msvc": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.49.0.tgz",
- "integrity": "sha512-rXVe0HICwQF0dBgbQtBCoYf8x/SidPIdhyQl+iPuJlV7suV+qDv7yUEB3wQ4qC3nOeNxz287SwFXKzyr0kWgEg==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.55.0.tgz",
+ "integrity": "sha512-ZYqj3fDnOT1IaVGMP5kpmkQl4F3tQIm2ZyAxvqkJYmI0xgWWak4ss4XYwv3VDfM+TWXeC9K4uQ/wW5jm/5XABA==",
"cpu": [
"ia32"
],
@@ -2896,9 +2906,9 @@
}
},
"node_modules/@oxfmt/binding-win32-x64-msvc": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.49.0.tgz",
- "integrity": "sha512-gwWLwSEmBBfIK/Wh7GGd658161o4RKAvHWRaRQbJm571iQXGKfyr7UKsI1vsWvDlNLc30CxJDc8mMmCvJ/kczQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/@oxfmt/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.55.0.tgz",
+ "integrity": "sha512-eEYT5tivGnGbPHuOHuQpi6CGLObhh0re/5jcNQHihD2GRYkTM85dyi5a19zjP8Q00t1uqAx+/QGLUGdHeqzWyg==",
"cpu": [
"x64"
],
@@ -2913,9 +2923,9 @@
}
},
"node_modules/@oxlint-tsgolint/darwin-arm64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/darwin-arm64/-/darwin-arm64-0.22.1.tgz",
- "integrity": "sha512-4150Lpgc1YM09GcjA6GSrra1JoPjC7aOpfywLjWEY4vW0Sd1qKzqHF1WRaiw0/qUZ40OATYdv3aRd7ipPkWQbw==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/darwin-arm64/-/darwin-arm64-0.23.0.tgz",
+ "integrity": "sha512-gOs9PVr2wEg4ox9z0aJo+RKhhImW86YL5N6yav8BK/rgPsIrwN/igSZ+pbRr723NFvUNKde9fgMhRA6JrXAOZw==",
"cpu": [
"arm64"
],
@@ -2927,9 +2937,9 @@
]
},
"node_modules/@oxlint-tsgolint/darwin-x64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/darwin-x64/-/darwin-x64-0.22.1.tgz",
- "integrity": "sha512-vFWcPWYOgZs4HWcgS1EjUZg33NLcNfEYU49KGImmCfZWkflENrmBYV4HN/C0YeAPum6ZZ/goPSvQrB/cOD+NfA==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/darwin-x64/-/darwin-x64-0.23.0.tgz",
+ "integrity": "sha512-kjJ8B+7n4tB9VJdxS5A9GdJt6/bYpzbu4lXp2uO1S3sRmCB5gDEABlGoiePNApRWaW+xqL4b4xgiE727jSLhuA==",
"cpu": [
"x64"
],
@@ -2941,9 +2951,9 @@
]
},
"node_modules/@oxlint-tsgolint/linux-arm64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/linux-arm64/-/linux-arm64-0.22.1.tgz",
- "integrity": "sha512-6LiUpP0Zir3+29FvBm7Y28q/dBjSHqTZ5MhG1Ckw4fGhI4cAvbcwXaKvbjx1TP7rRmBNOoq/M5xdpHjTb+GAew==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/linux-arm64/-/linux-arm64-0.23.0.tgz",
+ "integrity": "sha512-6dCZuKNu135seMXilkRk9SpCx6i1XgmiipYGalLij5WVRX6ZYS8c4xI7preN/zv9fCXhsQclTIMDu2Y/cytTjw==",
"cpu": [
"arm64"
],
@@ -2955,9 +2965,9 @@
]
},
"node_modules/@oxlint-tsgolint/linux-x64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/linux-x64/-/linux-x64-0.22.1.tgz",
- "integrity": "sha512-fuX1hEQfpHauUbXADsfqVhRzrUrGabzGXbj5wsp2vKhV5uk/Rze8Mba9GdjFGECzvXudMGqHqxB4r6jGRdhxVA==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/linux-x64/-/linux-x64-0.23.0.tgz",
+ "integrity": "sha512-3bdilnyA7kmSTjK27rvjIjSxL5SIg3wt7vwNiRkouWB83ytssyKnuGvxSYJxgMEmFpSutzaBzcCUM2jDtPGcgA==",
"cpu": [
"x64"
],
@@ -2969,9 +2979,9 @@
]
},
"node_modules/@oxlint-tsgolint/win32-arm64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/win32-arm64/-/win32-arm64-0.22.1.tgz",
- "integrity": "sha512-8SZidAj+jrbZf9ZjBEYW0tiNZ+KasqB2zgW26qdiPpQSF/DzURnPmXz651IeA9YsmbVdHGIooEHUmev6QJdquA==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/win32-arm64/-/win32-arm64-0.23.0.tgz",
+ "integrity": "sha512-j+OEp44SVYiQ+ZD+uttsX7u6L9SvmbbQ77SO1pSFCcJlsVMeCk8qZsjhKfGKuT/jIA+ipOJMVs/+pqUfObBWNw==",
"cpu": [
"arm64"
],
@@ -2983,9 +2993,9 @@
]
},
"node_modules/@oxlint-tsgolint/win32-x64": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/win32-x64/-/win32-x64-0.22.1.tgz",
- "integrity": "sha512-QweSk9H5lFh5Y+WUf2Kq/OAN88V6+62ZwGhP38gqdRotI90luXSMkruFTj7Q2rYrzH4ZVNaSqx7NY8JpSfIzqg==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/@oxlint-tsgolint/win32-x64/-/win32-x64-0.23.0.tgz",
+ "integrity": "sha512-5MyjFuqf+g8OUPJBSGWHJtmoWnzFJYyOg4To9WMQshZYEWig/vtu7JtJ03VWnzHv9LJkAUeApY0gVCOywFR/iQ==",
"cpu": [
"x64"
],
@@ -2997,9 +3007,9 @@
]
},
"node_modules/@oxlint/binding-android-arm-eabi": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.64.0.tgz",
- "integrity": "sha512-2r6Nq3XXGLHEXKkSj8JtmJ6N4gDw431DPFOg0ZoJHlNjnG6HVMm/ksQ10m0HJ8WBvwgMe1L50UHPaYZutCRPCw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm-eabi/-/binding-android-arm-eabi-1.70.0.tgz",
+ "integrity": "sha512-zFh0P4cswmRvw6nkyb89dr18rRanuaCPAsEXsFDoQY8WdaquI8Pt4NWFjaMJg6L23cy5NeN8J9cBnREbWzZhaw==",
"cpu": [
"arm"
],
@@ -3014,9 +3024,9 @@
}
},
"node_modules/@oxlint/binding-android-arm64": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm64/-/binding-android-arm64-1.64.0.tgz",
- "integrity": "sha512-ePJMpePgg7fBv+L/hVx1xXRU5/5gd5m0obLA6hPEfLXF3GjpR8idIDbY1dhQYhyz1ms2wdTccSboo6KEd2Oxtg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-android-arm64/-/binding-android-arm64-1.70.0.tgz",
+ "integrity": "sha512-qI8o4HZjeGiBrWv+pJv4lH0Yi2Gl/JSp/EumBUApezJprIKa5PS4nU0lQsQngtky8k+SplQIOjv6hwu0SSxeyg==",
"cpu": [
"arm64"
],
@@ -3031,9 +3041,9 @@
}
},
"node_modules/@oxlint/binding-darwin-arm64": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.64.0.tgz",
- "integrity": "sha512-U4DMLQd10gJLuoSTLSGbfv3bGjTlUNsScm9Dgb8wwBqmCzidf1pE1pXV4doGNxqwH3KtVng1AGTINA0NvkGLvQ==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-arm64/-/binding-darwin-arm64-1.70.0.tgz",
+ "integrity": "sha512-8KjgVVHI5F9nVwHCRwwA78Ty7zNKP4Wd9OeN5PSv3iu/F/u1RVXoOCgLhWqust6HmwQG6xc8c+RCyaWENy24+w==",
"cpu": [
"arm64"
],
@@ -3048,9 +3058,9 @@
}
},
"node_modules/@oxlint/binding-darwin-x64": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.64.0.tgz",
- "integrity": "sha512-GoRIL48QWm4/TAvjN8pB1nAG+1/uqc9EdnWT9zqHeb6wsmjZtywj8VRe5aGW47Fdb64YtLOsdLqVxOvQuz98Wg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-darwin-x64/-/binding-darwin-x64-1.70.0.tgz",
+ "integrity": "sha512-WVydssv5PSUBXFJTdNBWlmGkbNmvPGaFt/2SUT/EZRB6bq6bEOHmMlbnupZD5jmlEvi9+mZJHi8TCw15lyfSfQ==",
"cpu": [
"x64"
],
@@ -3065,9 +3075,9 @@
}
},
"node_modules/@oxlint/binding-freebsd-x64": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.64.0.tgz",
- "integrity": "sha512-5dFkv4tkg7PxJJGS9/OjrJwjhuHczrd3OQOkRE0wHcLM+ncUnULtzEPWjqGOxTXxZnLWcB91bGiIznx89TVXyQ==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-freebsd-x64/-/binding-freebsd-x64-1.70.0.tgz",
+ "integrity": "sha512-hJucmUf8OlinHNb1R7fI4Fw6WsAstOz7i8nmkWQfiHoZXtbufNm+MxiDTIMk1ggh2Ro4vLzgQ+bKvRY54MZoRA==",
"cpu": [
"x64"
],
@@ -3082,9 +3092,9 @@
}
},
"node_modules/@oxlint/binding-linux-arm-gnueabihf": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.64.0.tgz",
- "integrity": "sha512-jsBqMLl/uOL5+Kq/+BtK9FrmiNGUbx8SiyZXv+WlUxA45KuwcLu9BfiSIL3I3DBDgWM3yZizDITnTK9BcqNBQg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.70.0.tgz",
+ "integrity": "sha512-1BnS7wbCYDSXwWzJJ+mc3NURoha6m6m6RT5c6vgAY3oz7C3OVXP+S0awo2mRq97arrJkVvO3qRQfyAHL+76xtQ==",
"cpu": [
"arm"
],
@@ -3099,9 +3109,9 @@
}
},
"node_modules/@oxlint/binding-linux-arm-musleabihf": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.64.0.tgz",
- "integrity": "sha512-1lrj8At/Uuc9GhjrVFBQo0NEjfBrTkzpmtHIGAhNnIXqn1CAyGL+qrztUsXb2GIluJrpl9Q7qRLJOb/NqydacQ==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-1.70.0.tgz",
+ "integrity": "sha512-yKy/UdbR55+M2yEcuiV5DCNC/gdQAjr/GioUy50QwBzSrKm8ueWADqyRLS9Xk+qjNeCYGg6A8FvUBds56ttfqg==",
"cpu": [
"arm"
],
@@ -3116,9 +3126,9 @@
}
},
"node_modules/@oxlint/binding-linux-arm64-gnu": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.64.0.tgz",
- "integrity": "sha512-HpSQbubwh03mMhAdy2BYtad/fsY8vDFHDAb6bUwuCYg2VD3xCQgn6ArKcO0oZyLCheacKTv4PrF3Mfu5hgoE2g==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.70.0.tgz",
+ "integrity": "sha512-0A5XJ4alvmqFUFP/4oYSyaO+qLto/HrKEWTSaegiVl+HOufFngK2BjYw9x4RbwBt/du5QG6l5q1zeWiJYYG5yg==",
"cpu": [
"arm64"
],
@@ -3136,9 +3146,9 @@
}
},
"node_modules/@oxlint/binding-linux-arm64-musl": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.64.0.tgz",
- "integrity": "sha512-00QQ0h0Y7u0G69BgiH3+ky2aaq/QvkDL6DYok8htIuJHxybiux5aQ8jwmg8qIk9wha6UagUP2BAwAzbemcJbpg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.70.0.tgz",
+ "integrity": "sha512-JiylyurlB0CLSedNtx1gzv3FvfWPF1h/2Y3BJszPLNt5XQFlBsH5ke0Jle3iJb3uqu5m2e7A/DwzpuCAHdiU+A==",
"cpu": [
"arm64"
],
@@ -3156,9 +3166,9 @@
}
},
"node_modules/@oxlint/binding-linux-ppc64-gnu": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.64.0.tgz",
- "integrity": "sha512-2GaimTV6EMW+s5HS0An3oGbQme3BgHswvfVdGk3EB57Xe9+/gyT+Qd7lNVzb3rtir52vbIPzXfaYArzs5b5zcw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.70.0.tgz",
+ "integrity": "sha512-J8VPG7I3/HmgaU4u8pNU2kFx2+0U+vPLS1dXFxXOaR/2TQ0f8AC7DRz0SRGRI1bfphnX2hVYTTtLuhL4nYKL+Q==",
"cpu": [
"ppc64"
],
@@ -3176,9 +3186,9 @@
}
},
"node_modules/@oxlint/binding-linux-riscv64-gnu": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.64.0.tgz",
- "integrity": "sha512-H46AtFb9wypjoVwGdlxrm0DsD809NGmtiK9HiyPKTxkSte2YjhC4S+00rOIrwCaxcyPiGid3Y3OMXp5KMAkGZw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-1.70.0.tgz",
+ "integrity": "sha512-N2+4lV2KLN+oXTIIIwmWDhwkrnvqf5oX7Hw0zPjk+RuIVgiBQSOlJWF7uQoFx2siEYX0ZQ5cfSbEAHm+J3t7Wg==",
"cpu": [
"riscv64"
],
@@ -3196,9 +3206,9 @@
}
},
"node_modules/@oxlint/binding-linux-riscv64-musl": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.64.0.tgz",
- "integrity": "sha512-HEgsidjjvvyzdg82icYkuFCf7REDV7B9JFwbIMbVwrKLBY0MrXX+bku3POn/hduZ2yW91IyVDUMq0Bf02KwXQw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-1.70.0.tgz",
+ "integrity": "sha512-1e2L7cFCvx9QDzq6NPP+0tABKb5z6nWHyddWTNKprEsjO9xNrAtPowuCGpjNXxkTdsMiZ4jc8YQ5SstZd4XK6g==",
"cpu": [
"riscv64"
],
@@ -3216,9 +3226,9 @@
}
},
"node_modules/@oxlint/binding-linux-s390x-gnu": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.64.0.tgz",
- "integrity": "sha512-Axvm8qryotmKN00P5w4JapaSjvP2LOSbdbBJiX+2SuHd3QzhW7TUc8skqgw+ahQZ5DmzEYeHCqauvW8f32Ns6Q==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.70.0.tgz",
+ "integrity": "sha512-Kwu/l/8GcYibCWA9m9N5pRXMIKVSsL/YbgpLzYkqDhWTiqdRfnNJ/+nqIKRKQiFbHWsdlHEhzMwruJK+qcEruA==",
"cpu": [
"s390x"
],
@@ -3236,9 +3246,9 @@
}
},
"node_modules/@oxlint/binding-linux-x64-gnu": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.64.0.tgz",
- "integrity": "sha512-cR60vSd7+m+KRZ3GQGfDxWwahW5RMXg0qlGvAluZr0fTUYvw0H9N9AXAF/M/PMqgytyqvVNmBAkJG9l7U30Y1g==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.70.0.tgz",
+ "integrity": "sha512-tap04CsHYOl0nSAQJfPNIuBxqEPB2HnhQqwaOXLg1jnp2XfRo8Fa814dA4QC4zpvTWXCjAAaCY1W5LOORkEQuQ==",
"cpu": [
"x64"
],
@@ -3256,9 +3266,9 @@
}
},
"node_modules/@oxlint/binding-linux-x64-musl": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.64.0.tgz",
- "integrity": "sha512-2u/aPZ9pEg7HnvZPDsHxUGNnrpr4qaHi+mCgLgpt+LYRzPrS4Px4wPfkIdRdr2GvKnaYyt+XSlto0Vm5sbStTg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-linux-x64-musl/-/binding-linux-x64-musl-1.70.0.tgz",
+ "integrity": "sha512-hzJa/WgvtJpbBD9rgfy0qe+MjbxOXNUT0bfR1S6EQQzfTtBFA9xg5q8KSwRrQ2QfSS+TaP4j+4mVPQrfNc6UNg==",
"cpu": [
"x64"
],
@@ -3276,9 +3286,9 @@
}
},
"node_modules/@oxlint/binding-openharmony-arm64": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.64.0.tgz",
- "integrity": "sha512-kfhkGfCdoXLSxEkrhDlJrvBYajGmq+ma4EMc53dsOWTq+rIBOlI0vTBmpZNnM5oH2LY/K/w1HAK+UQEgjgpVUg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-openharmony-arm64/-/binding-openharmony-arm64-1.70.0.tgz",
+ "integrity": "sha512-xbsaNSNzVSnaJACCUYr1HQMyY/Q/Q1LkePmHG3UvZPvGCYGNxrsZp9OmtA6ick8xH47ltRRbRrPCM1YXYcyC+A==",
"cpu": [
"arm64"
],
@@ -3293,9 +3303,9 @@
}
},
"node_modules/@oxlint/binding-win32-arm64-msvc": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.64.0.tgz",
- "integrity": "sha512-r/cNKBFieONoVu2bb1KkVouq9W+edDUgHumXJGphCRRj+U0xaD4nanrw8ZOqo0IsutPkEM4vCcGBpak6x5aXMg==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.70.0.tgz",
+ "integrity": "sha512-icAEsUI7JbW1TMRdEXV83mVAInhRVQYuuAlPpxdGwJ95chNdnCzjloRW8GglT0WvzOEZSio6fnYSk2DJ2Hv7LQ==",
"cpu": [
"arm64"
],
@@ -3310,9 +3320,9 @@
}
},
"node_modules/@oxlint/binding-win32-ia32-msvc": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.64.0.tgz",
- "integrity": "sha512-tUw0xUUwEFVZbpJoeCblkv8SJA4Xz3CdXCJbAnBsiNLyxDrk2tLcxEAS6M73Q7hHHDg3OtwI8vZVK3t5RJt4Gw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-1.70.0.tgz",
+ "integrity": "sha512-FHMSWbVsPVs/f+Jcl04ws4JJ2wUnauyTzlpxWRG/lSO/8GpX08Fo2gQZqdA6CrRFI+zvkxl+N/KwJGWfUwYVZA==",
"cpu": [
"ia32"
],
@@ -3327,9 +3337,9 @@
}
},
"node_modules/@oxlint/binding-win32-x64-msvc": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.64.0.tgz",
- "integrity": "sha512-9CBR+LO0JVST87fNTzzNxS5I29jIUO5gxT9i9+M3SDHHALElj9sY1Prf12tad3vIRC6OD7Ehtvvh+sn13vSwHw==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/@oxlint/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.70.0.tgz",
+ "integrity": "sha512-ptOlKwCz7n4AKs5VweMqG6DAg677FmKOK+vBkkL9DMNgFATIQ+upqUYBTOEwRQyRAx1ncGlPlXleV2hIcm3z4g==",
"cpu": [
"x64"
],
@@ -3351,9 +3361,9 @@
"license": "MIT"
},
"node_modules/@rolldown/binding-android-arm64": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0.tgz",
- "integrity": "sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
"cpu": [
"arm64"
],
@@ -3368,9 +3378,9 @@
}
},
"node_modules/@rolldown/binding-darwin-arm64": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0.tgz",
- "integrity": "sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
"cpu": [
"arm64"
],
@@ -3385,9 +3395,9 @@
}
},
"node_modules/@rolldown/binding-darwin-x64": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0.tgz",
- "integrity": "sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
"cpu": [
"x64"
],
@@ -3402,9 +3412,9 @@
}
},
"node_modules/@rolldown/binding-freebsd-x64": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0.tgz",
- "integrity": "sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
"cpu": [
"x64"
],
@@ -3419,9 +3429,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0.tgz",
- "integrity": "sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
"cpu": [
"arm"
],
@@ -3436,9 +3446,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-gnu": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0.tgz",
- "integrity": "sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
"cpu": [
"arm64"
],
@@ -3456,9 +3466,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-musl": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0.tgz",
- "integrity": "sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
"cpu": [
"arm64"
],
@@ -3476,9 +3486,9 @@
}
},
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0.tgz",
- "integrity": "sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
"cpu": [
"ppc64"
],
@@ -3496,9 +3506,9 @@
}
},
"node_modules/@rolldown/binding-linux-s390x-gnu": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0.tgz",
- "integrity": "sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
"cpu": [
"s390x"
],
@@ -3516,9 +3526,9 @@
}
},
"node_modules/@rolldown/binding-linux-x64-gnu": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0.tgz",
- "integrity": "sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
"cpu": [
"x64"
],
@@ -3536,9 +3546,9 @@
}
},
"node_modules/@rolldown/binding-linux-x64-musl": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0.tgz",
- "integrity": "sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
"cpu": [
"x64"
],
@@ -3556,9 +3566,9 @@
}
},
"node_modules/@rolldown/binding-openharmony-arm64": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0.tgz",
- "integrity": "sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
"cpu": [
"arm64"
],
@@ -3573,9 +3583,9 @@
}
},
"node_modules/@rolldown/binding-wasm32-wasi": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0.tgz",
- "integrity": "sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
"cpu": [
"wasm32"
],
@@ -3592,9 +3602,9 @@
}
},
"node_modules/@rolldown/binding-win32-arm64-msvc": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0.tgz",
- "integrity": "sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
"cpu": [
"arm64"
],
@@ -3609,9 +3619,9 @@
}
},
"node_modules/@rolldown/binding-win32-x64-msvc": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0.tgz",
- "integrity": "sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
"cpu": [
"x64"
],
@@ -3626,16 +3636,16 @@
}
},
"node_modules/@rolldown/pluginutils": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0.tgz",
- "integrity": "sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
"dev": true,
"license": "MIT"
},
"node_modules/@rollup/pluginutils": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz",
- "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==",
+ "version": "5.4.0",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.4.0.tgz",
+ "integrity": "sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3854,9 +3864,9 @@
"license": "MIT"
},
"node_modules/@types/react": {
- "version": "19.2.14",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
- "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
+ "version": "19.2.17",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4029,15 +4039,15 @@
]
},
"node_modules/@vitest/browser": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/browser/-/browser-4.1.6.tgz",
- "integrity": "sha512-ynsspTubXGSpa58JFJ24xIQt4z4A25epSbugEyaTmmrV1//Wec9EgE/LtoaC6yxUrXi5P7erGHRrkdZIHaVQuA==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/browser/-/browser-4.1.9.tgz",
+ "integrity": "sha512-j1BKtWmPcqpMhmx/L9EPLgAJpCb0zKfwoWLmqBbxaogCXHjOwHFSEoHCBfnGtx93xKQwilZ26m+UOsHqHMkRNg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@blazediff/core": "1.9.1",
- "@vitest/mocker": "4.1.6",
- "@vitest/utils": "4.1.6",
+ "@vitest/mocker": "4.1.9",
+ "@vitest/utils": "4.1.9",
"magic-string": "^0.30.21",
"pngjs": "^7.0.0",
"sirv": "^3.0.2",
@@ -4048,18 +4058,18 @@
"url": "https://opencollective.com/vitest"
},
"peerDependencies": {
- "vitest": "4.1.6"
+ "vitest": "4.1.9"
}
},
"node_modules/@vitest/browser-playwright": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/browser-playwright/-/browser-playwright-4.1.6.tgz",
- "integrity": "sha512-4csoeyl/qwHyxU2zNL0++WaoDr8YJDXOQPwWPNJoTZ+QzcdO3INYKgF5Zfz730Io7zbkuv914aZmfQ+QE+1Hvw==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/browser-playwright/-/browser-playwright-4.1.9.tgz",
+ "integrity": "sha512-Bq1rOGf9waevzG3EOkO/dene6bvKTUsZMVg8S1i+WH3JcMjuXEjiahP9rAqZRELUqjBySOJsvvSWqK/B3wjKQw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/browser": "4.1.6",
- "@vitest/mocker": "4.1.6",
+ "@vitest/browser": "4.1.9",
+ "@vitest/mocker": "4.1.9",
"tinyrainbow": "^3.1.0"
},
"funding": {
@@ -4067,7 +4077,7 @@
},
"peerDependencies": {
"playwright": "*",
- "vitest": "4.1.6"
+ "vitest": "4.1.9"
},
"peerDependenciesMeta": {
"playwright": {
@@ -4076,14 +4086,14 @@
}
},
"node_modules/@vitest/coverage-v8": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-4.1.6.tgz",
- "integrity": "sha512-36l628fQ/9a/8ihy97eOtEnvWQEdqULQOJtcaxtoNq0G1w3Mxd4szSahOaMM9/NGyZ+hyKcMtIW/WIxq0XQViQ==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-4.1.9.tgz",
+ "integrity": "sha512-G9/lgqibheLVBDRuya45EbsEXTYcWoSG+TLg7i2axuzx0Eq62eXn+aWXyaVdV5vKvFSWd6ywcX8hA7la9Pvu8g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@bcoe/v8-coverage": "^1.0.2",
- "@vitest/utils": "4.1.6",
+ "@vitest/utils": "4.1.9",
"ast-v8-to-istanbul": "^1.0.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
@@ -4097,8 +4107,8 @@
"url": "https://opencollective.com/vitest"
},
"peerDependencies": {
- "@vitest/browser": "4.1.6",
- "vitest": "4.1.6"
+ "@vitest/browser": "4.1.9",
+ "vitest": "4.1.9"
},
"peerDependenciesMeta": {
"@vitest/browser": {
@@ -4107,16 +4117,16 @@
}
},
"node_modules/@vitest/expect": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.6.tgz",
- "integrity": "sha512-7EHDquPthALSV0jhhjgEW8FXaviMx7rSqu8W6oqCoAuOhKov814P99QDV1pxMA3QPv21YudvJngIhjrNI4opLg==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-4.1.9.tgz",
+ "integrity": "sha512-vl/rYsUKcBr3SnQn166+XR5ZQcgMx3DQhFWdfli/cWpLnLUmbxZvyrJZotLFUryib+LtArYMSTJ5RbQ57ZqrlA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"@types/chai": "^5.2.2",
- "@vitest/spy": "4.1.6",
- "@vitest/utils": "4.1.6",
+ "@vitest/spy": "4.1.9",
+ "@vitest/utils": "4.1.9",
"chai": "^6.2.2",
"tinyrainbow": "^3.1.0"
},
@@ -4125,13 +4135,13 @@
}
},
"node_modules/@vitest/mocker": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.6.tgz",
- "integrity": "sha512-MCFc63czMjEInOlcY2cpQCvCN+KgbAn+60xu9cMgP4sKaLC5JNAKw7JH8QdAnoAC88hW1IiSNZ+GgVXlN1UcMQ==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-4.1.9.tgz",
+ "integrity": "sha512-EVkXzBjrPGM+cK8/ANWgBrkUCfJfb38/EfTSO8h7pWvKkyPkpWxvR7BkD2MyItMF62C97zAEoqdpUixwR/e+Rw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/spy": "4.1.6",
+ "@vitest/spy": "4.1.9",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.21"
},
@@ -4162,9 +4172,9 @@
}
},
"node_modules/@vitest/pretty-format": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.6.tgz",
- "integrity": "sha512-h5SxD/IzNhZYnrSZRsUZQIC+vD0GY8cUvq0iwsmkFKixRCKLLWqCXa/FIQ4S1R+sI+PGoojkHsdNrbZiM9Qpgw==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-4.1.9.tgz",
+ "integrity": "sha512-s0iufns3iIFitdgm+YR7g1whCAaGtXz459VS9/PqyKDEEFgYIhsHOQmXgIgDuYCt7DeQmiZT0Qe2OA2p4ZPu5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4175,13 +4185,13 @@
}
},
"node_modules/@vitest/runner": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.6.tgz",
- "integrity": "sha512-nOPCmn2+yD0ZNmKdsXGv/UxMMWbMuKeD6GyYncNwdkYDxpQvrPSKYj2rWuDjC2Y4b6w6hjip5dBKFzEUuZe3vA==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-4.1.9.tgz",
+ "integrity": "sha512-KXLMDtc7oe70+3mJfGrPUWPesswH+3sTxAMAMl8DG7I8IUQT4XW718dY5ID3vPUcmlu27CcKfY4P3h3I29SLJg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/utils": "4.1.6",
+ "@vitest/utils": "4.1.9",
"pathe": "^2.0.3"
},
"funding": {
@@ -4189,14 +4199,14 @@
}
},
"node_modules/@vitest/snapshot": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.6.tgz",
- "integrity": "sha512-YhsdE6xAVfTDmzjxL2ZDUvjj+ZsgyOKe+TdQzqkD72wIOmHka8NuGQ6NpTNZv9D2Z63fbwWKJPeVpEw4EQgYxw==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-4.1.9.tgz",
+ "integrity": "sha512-Jc7RKGNBo8Z28WYIm0Niej4xdSPByRf6mU58VpHQkd6Zh05rlnA+twjbK5HyeIGHxrzsc3mJgS43uM0CZKzaIA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/pretty-format": "4.1.6",
- "@vitest/utils": "4.1.6",
+ "@vitest/pretty-format": "4.1.9",
+ "@vitest/utils": "4.1.9",
"magic-string": "^0.30.21",
"pathe": "^2.0.3"
},
@@ -4205,9 +4215,9 @@
}
},
"node_modules/@vitest/spy": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.6.tgz",
- "integrity": "sha512-JFKxMx6udhwKh/Ldo270e17QX710vgunMkuPAvXjHSvC6oqLWAHhVhjg/I71q0u0CBSErIODV1Kjv0FQNSWjdg==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-4.1.9.tgz",
+ "integrity": "sha512-fHpsS6mIi+PiEW+vcRVOMkX1oSaPKne3VOclSFICPcGOmfKgXPU5iAah+wcNcj2xPrCCmfq99IDGf+EojhhvhA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -4215,13 +4225,13 @@
}
},
"node_modules/@vitest/utils": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.6.tgz",
- "integrity": "sha512-FxIY+U81R3LGKCxaHHFRQ5+g6/iRgGLmeHWdp2Amj4ljQRrEIWHmZyDfDYBRZlpyqA7qKxtS9DD1dhk8RnRIVQ==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-4.1.9.tgz",
+ "integrity": "sha512-A51o8ymO5PpqlWNnBP9ZHPXDIpuMtTLlGSjN7la4US+LJzoUMyhwjA5QXlm39JexgwHKW4Xjs8Z2d3dLCXOeuA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/pretty-format": "4.1.6",
+ "@vitest/pretty-format": "4.1.9",
"convert-source-map": "^2.0.0",
"tinyrainbow": "^3.1.0"
},
@@ -4229,6 +4239,12 @@
"url": "https://opencollective.com/vitest"
}
},
+ "node_modules/@vscode/diff": {
+ "version": "0.0.2-7",
+ "resolved": "https://registry.npmjs.org/@vscode/diff/-/diff-0.0.2-7.tgz",
+ "integrity": "sha512-zGPIPeUAmQs79u7g6FTLmhlXFIocUTtuHYmCV5lRZf6vlDk7SWEOpBlYY6SsShC3TB/lm2KxXMj9tP32YOPrhg==",
+ "license": "MIT"
+ },
"node_modules/@vscode/iconv-lite-umd": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.1.tgz",
@@ -4242,91 +4258,88 @@
"license": "MIT"
},
"node_modules/@xterm/addon-clipboard": {
- "version": "0.3.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-clipboard/-/addon-clipboard-0.3.0-beta.204.tgz",
- "integrity": "sha512-3ciSUDjoAOmbd4W+20kh3HXKUajrJa62Z1vn2TyfTXqitbUm7fe8T/rvXLl342LenZEJJwaIEhG1fZKDAoClEw==",
+ "version": "0.3.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-clipboard/-/addon-clipboard-0.3.0-beta.285.tgz",
+ "integrity": "sha512-3Sw2VvUqTc8r7OWzizLlbVcbJXUwduWqS7jQzWyIVZiRer+olG1++oyE5tD6VLbt5mFwTEm1jdINYE0HRjF26w==",
"license": "MIT",
- "dependencies": {
- "js-base64": "^3.7.5"
- },
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-image": {
- "version": "0.10.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-image/-/addon-image-0.10.0-beta.204.tgz",
- "integrity": "sha512-rcnjA0jRzW8ZnywaRkadkHvJO5P5c+Gw7THBssbPMITUVA0LHFCZJ8rb5BjHUjq+q3Mddzerudavu07fSEji4g==",
+ "version": "0.10.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-image/-/addon-image-0.10.0-beta.285.tgz",
+ "integrity": "sha512-ffpIrUlFj88FVBLdZCThdbwDOAeuKadHNpaJdXbDo5O0ObYyfnXYTL1JmVQxqusJToROnogTPL/MMoqP2oA49g==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-ligatures": {
- "version": "0.11.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-ligatures/-/addon-ligatures-0.11.0-beta.204.tgz",
- "integrity": "sha512-AaoDpmFqVtPU4U7w3LCwnnw3dCaW0QK/dXX7FdXkJ8sr1xMo9oopmTRTffJfVGJQpvqnUvr+agkWOxz402yXXA==",
+ "version": "0.11.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-ligatures/-/addon-ligatures-0.11.0-beta.285.tgz",
+ "integrity": "sha512-ZBqrv60zrIKGspVfv5+m3lRGHeAGDW2U/imu6vER8D2vhxs75FXh/bA+X2/oSdDJQVgpygsN8G3gNQqt16v3eg==",
"license": "MIT",
"dependencies": {
- "lru-cache": "^6.0.0",
- "opentype.js": "^0.8.0"
+ "lru-cache": "^11.3.6",
+ "opentype.js": "^2.0.0"
},
"engines": {
"node": ">8.0.0"
},
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-progress": {
- "version": "0.3.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-progress/-/addon-progress-0.3.0-beta.204.tgz",
- "integrity": "sha512-7qu2wGdeB5fcAuER97KMhBSiqAFQFKIY64N64gWzNH6nae0bLw9aenRmr/Quq1o4ktLVEoynHGWTxSds/kj9iw==",
+ "version": "0.3.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-progress/-/addon-progress-0.3.0-beta.285.tgz",
+ "integrity": "sha512-5iD2ANyyIgSexa+Hkf4OmMwNxfpLrPuDAQihGoMXMMjALgESBb6JYvob4C6H+4o5uoNSMV33sb+iwlkCqww32A==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-search": {
- "version": "0.17.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-search/-/addon-search-0.17.0-beta.204.tgz",
- "integrity": "sha512-N28Me4xd0sFPIFMXrnmpvhUvOF+m0CIje+BDL6mqqLdQO3MCwxmAYHRPoWYq98kEIi5EgZ6Olb8Bw/K6mpuCyg==",
+ "version": "0.17.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-search/-/addon-search-0.17.0-beta.285.tgz",
+ "integrity": "sha512-cGjvwxsCnzlLbDWhMaHF9ZxTbYt6foAvUlURe63XyonXR2DVYH6/sr4YoUhM4S5tUMtdIhPxJhtQ8uF6r+ch3g==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-serialize": {
- "version": "0.15.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-serialize/-/addon-serialize-0.15.0-beta.204.tgz",
- "integrity": "sha512-b9zCtQoha1rvA5xLkfJT0be2JKpDQR5tlQ3FCXzDH1qxd4EnJQ/mIJGPXJpK+up+ZXPMAggjNtJDSNvGra0ayg==",
+ "version": "0.15.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-serialize/-/addon-serialize-0.15.0-beta.285.tgz",
+ "integrity": "sha512-ae1Fi0Rceby+Ctf39aCjVlJ5+K3OJMEdeU3LIw0Su4z58k6Yz577laM4OJ7CIAUQTCp7K7WliYaTo29vNVCdBw==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-unicode11": {
- "version": "0.10.0-beta.204",
- "resolved": "https://registry.npmjs.org/@xterm/addon-unicode11/-/addon-unicode11-0.10.0-beta.204.tgz",
- "integrity": "sha512-2O6nGF1vTWSoMcDg/PYujpRXJRV8RrFJ4OgyAKfJJhkTIR6IbaX3e3N4b1CA6ixxFmSWTh7ck73L2Q2GaZEqZA==",
+ "version": "0.10.0-beta.285",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-unicode11/-/addon-unicode11-0.10.0-beta.285.tgz",
+ "integrity": "sha512-rfijFu7UcYpaFx5wzxvTpQbIyyq/amf2PuS9pktywcFQr4ITxRgid5EVzKLRG1vchkApNcQplWeYxGEtjiw0Cw==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/addon-webgl": {
- "version": "0.20.0-beta.203",
- "resolved": "https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.20.0-beta.203.tgz",
- "integrity": "sha512-hTdqbpRFPHY21rc7apR0mLAyufiNJdqYU91fV95pNoxh/jKsgGQyebSljH8vY5JMf3TjioFw08Cfwte8qBr6gA==",
+ "version": "0.20.0-beta.284",
+ "resolved": "https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.20.0-beta.284.tgz",
+ "integrity": "sha512-tzkUiEfdpHCY8mXCbuIaP9V67QDfBJvDr9jdxs5jjxNCIQvw+NCoKD97y5sUrQhrIlr7xrDGniPgPYThQ/1FWg==",
"license": "MIT",
"peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.204"
+ "@xterm/xterm": "^6.1.0-beta.285"
}
},
"node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.219",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.219.tgz",
- "integrity": "sha512-cQDv5UMEooIqjlybDPfNO0uI0sB0SWaaOxubHcFNXah8umLHR8SfKQbj5BPaa5gqoTKGYFkVdpowyhZlV+xywQ==",
+ "version": "6.1.0-beta.287",
+ "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.287.tgz",
+ "integrity": "sha512-3aOHVlxlRVb3tOHI4b/z2O/OsRnqpW5u0qq8OqpqbwLVTbUhThmQ7mBKaehGdbsmcCCBTP1cBwhG0qcvuOjowA==",
"license": "MIT",
"peer": true,
"workspaces": [
@@ -4420,9 +4433,9 @@
}
},
"node_modules/ast-v8-to-istanbul": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/ast-v8-to-istanbul/-/ast-v8-to-istanbul-1.0.0.tgz",
- "integrity": "sha512-1fSfIwuDICFA4LKkCzRPO7F0hzFf0B7+Xqrl27ynQaa+Rh0e1Es0v6kWHPott3lU10AyAr7oKHa65OppjLn3Rg==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/ast-v8-to-istanbul/-/ast-v8-to-istanbul-1.0.4.tgz",
+ "integrity": "sha512-0bC0/4bTSrnwdhU3IsZDwEdojvuPrSg59OYZfKsLRtJZ0u8VBx9DebfqqG8bRdCC0I7vjgxmPi41P0lpkhJHtA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4452,7 +4465,6 @@
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
- "dev": true,
"license": "MIT",
"engines": {
"node": "18 || 20 || >=22"
@@ -4499,7 +4511,6 @@
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
- "dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^4.0.2"
@@ -4521,16 +4532,6 @@
"node": ">=8"
}
},
- "node_modules/buffer-crc32": {
- "version": "0.2.13",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
- "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "*"
- }
- },
"node_modules/bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
@@ -4646,13 +4647,13 @@
}
},
"node_modules/commander": {
- "version": "14.0.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz",
- "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-15.0.0.tgz",
+ "integrity": "sha512-z67u4ZhzCL/Tydu1lJARtEZYWbWaN7oYLHbsuzocr6y4N6WZAagG3RQ4FW61V1/0+jImpj293XfrcYnd1qxtPg==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=20"
+ "node": ">=22.12.0"
}
},
"node_modules/content-disposition": {
@@ -4822,9 +4823,9 @@
"peer": true
},
"node_modules/dompurify": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.1.tgz",
- "integrity": "sha512-JahakDAIg1gyOm7dlgWSDjV4n7Ip2PKR55NIT6jrMfIgLFgWo81vdr1/QGqWtFNRqXP9UV71oVePtjqS2ebnPw==",
+ "version": "3.4.9",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.9.tgz",
+ "integrity": "sha512-4dPSRMRDqHvs0V4YDFCsaIZo4if5u0xM+llyxiM2fwuZFdKArUBAF3VtI2+n8NKg9P870WMdYk0UhqQNoWXbfQ==",
"license": "(MPL-2.0 OR Apache-2.0)",
"optionalDependencies": {
"@types/trusted-types": "^2.0.7"
@@ -4895,9 +4896,9 @@
"license": "MIT"
},
"node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0"
@@ -4907,9 +4908,9 @@
}
},
"node_modules/esbuild": {
- "version": "0.27.7",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
- "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
+ "version": "0.28.1",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz",
+ "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -4920,32 +4921,32 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.27.7",
- "@esbuild/android-arm": "0.27.7",
- "@esbuild/android-arm64": "0.27.7",
- "@esbuild/android-x64": "0.27.7",
- "@esbuild/darwin-arm64": "0.27.7",
- "@esbuild/darwin-x64": "0.27.7",
- "@esbuild/freebsd-arm64": "0.27.7",
- "@esbuild/freebsd-x64": "0.27.7",
- "@esbuild/linux-arm": "0.27.7",
- "@esbuild/linux-arm64": "0.27.7",
- "@esbuild/linux-ia32": "0.27.7",
- "@esbuild/linux-loong64": "0.27.7",
- "@esbuild/linux-mips64el": "0.27.7",
- "@esbuild/linux-ppc64": "0.27.7",
- "@esbuild/linux-riscv64": "0.27.7",
- "@esbuild/linux-s390x": "0.27.7",
- "@esbuild/linux-x64": "0.27.7",
- "@esbuild/netbsd-arm64": "0.27.7",
- "@esbuild/netbsd-x64": "0.27.7",
- "@esbuild/openbsd-arm64": "0.27.7",
- "@esbuild/openbsd-x64": "0.27.7",
- "@esbuild/openharmony-arm64": "0.27.7",
- "@esbuild/sunos-x64": "0.27.7",
- "@esbuild/win32-arm64": "0.27.7",
- "@esbuild/win32-ia32": "0.27.7",
- "@esbuild/win32-x64": "0.27.7"
+ "@esbuild/aix-ppc64": "0.28.1",
+ "@esbuild/android-arm": "0.28.1",
+ "@esbuild/android-arm64": "0.28.1",
+ "@esbuild/android-x64": "0.28.1",
+ "@esbuild/darwin-arm64": "0.28.1",
+ "@esbuild/darwin-x64": "0.28.1",
+ "@esbuild/freebsd-arm64": "0.28.1",
+ "@esbuild/freebsd-x64": "0.28.1",
+ "@esbuild/linux-arm": "0.28.1",
+ "@esbuild/linux-arm64": "0.28.1",
+ "@esbuild/linux-ia32": "0.28.1",
+ "@esbuild/linux-loong64": "0.28.1",
+ "@esbuild/linux-mips64el": "0.28.1",
+ "@esbuild/linux-ppc64": "0.28.1",
+ "@esbuild/linux-riscv64": "0.28.1",
+ "@esbuild/linux-s390x": "0.28.1",
+ "@esbuild/linux-x64": "0.28.1",
+ "@esbuild/netbsd-arm64": "0.28.1",
+ "@esbuild/netbsd-x64": "0.28.1",
+ "@esbuild/openbsd-arm64": "0.28.1",
+ "@esbuild/openbsd-x64": "0.28.1",
+ "@esbuild/openharmony-arm64": "0.28.1",
+ "@esbuild/sunos-x64": "0.28.1",
+ "@esbuild/win32-arm64": "0.28.1",
+ "@esbuild/win32-ia32": "0.28.1",
+ "@esbuild/win32-x64": "0.28.1"
}
},
"node_modules/escape-html": {
@@ -5339,9 +5340,9 @@
}
},
"node_modules/hasown": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
- "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.2"
@@ -5574,12 +5575,6 @@
"jiti": "lib/jiti-cli.mjs"
}
},
- "node_modules/js-base64": {
- "version": "3.7.8",
- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.8.tgz",
- "integrity": "sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==",
- "license": "BSD-3-Clause"
- },
"node_modules/js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
@@ -5639,9 +5634,9 @@
}
},
"node_modules/knip": {
- "version": "6.13.0",
- "resolved": "https://registry.npmjs.org/knip/-/knip-6.13.0.tgz",
- "integrity": "sha512-FeBSpXspbHpjFQxpBmpUkEpveb4ee9+lPcHTiLq0PaFOzmtxG+/Rf+mIptuCcz0C+nGjaq+XlIlx8VA4r6um8w==",
+ "version": "6.16.1",
+ "resolved": "https://registry.npmjs.org/knip/-/knip-6.16.1.tgz",
+ "integrity": "sha512-TKMn1rxgH6h9vXR9Y0B+Cq7AdPTr9EI02IwoT65NzqYUkvoDQAaJ/aPybiFpAhZ1px6cNYYwXf86iHkBgzCo9w==",
"dev": true,
"funding": [
{
@@ -5659,9 +5654,8 @@
"formatly": "^0.3.0",
"get-tsconfig": "4.14.0",
"jiti": "^2.7.0",
- "minimist": "^1.2.8",
- "oxc-parser": "^0.130.0",
- "oxc-resolver": "^11.19.1",
+ "oxc-parser": "^0.133.0",
+ "oxc-resolver": "^11.20.0",
"picomatch": "^4.0.4",
"smol-toml": "^1.6.1",
"strip-json-comments": "5.0.3",
@@ -5679,19 +5673,18 @@
}
},
"node_modules/langium": {
- "version": "4.2.4",
- "resolved": "https://registry.npmjs.org/langium/-/langium-4.2.4.tgz",
- "integrity": "sha512-J0M9BkTOZ9Izee2YL0eXkUKFdWhrmTYYVLgiZTz6Z3KvK03ooM+vjVrfphKcdGVPWmM2cFYtDnNyIsIIZPrHNA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/langium/-/langium-4.3.0.tgz",
+ "integrity": "sha512-ehV704taQKTYTuNdKRNjv1sD8huezTW8uTlDuQN6FFK5Cu7qR29vbA1JAibXxLznQXZCAliGO342jH58OzywZA==",
"license": "MIT",
"dependencies": {
"@chevrotain/regexp-to-ast": "~12.0.0",
"chevrotain": "~12.0.0",
"chevrotain-allstar": "~0.4.3",
- "vscode-jsonrpc": "~8.2.0",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-languageserver-textdocument": "~1.0.12",
- "vscode-languageserver-types": "~3.17.5",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-languageserver-textdocument": "~1.0.13",
+ "vscode-languageserver-types": "~3.18.0",
"vscode-uri": "~3.1.0"
},
"engines": {
@@ -5700,18 +5693,18 @@
}
},
"node_modules/langium-cli": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/langium-cli/-/langium-cli-4.2.1.tgz",
- "integrity": "sha512-npo1fSoP/wUf4cxUcKUYph48+jHFPEjeLQJ3pQ1UnA4QRuz8JpOxWsLHB/fdmViZSnI0mb98f06Wo7PKecqoUw==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/langium-cli/-/langium-cli-4.3.0.tgz",
+ "integrity": "sha512-+TtgkhX8Z3exRBJvTFWV1semhWUCnWMhMP+ZKjpKIeyY6GgnQHehf3ZWyCvVL5T95uqgWZb77aoq9rhI2MPNTA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "chalk": "~5.6.0",
- "commander": "~14.0.0",
- "fs-extra": "~11.3.0",
+ "chalk": "~5.6.2",
+ "commander": "~15.0.0",
+ "fs-extra": "~11.3.5",
"jsonschema": "~1.5.0",
- "langium": "~4.2.0",
- "langium-railroad": "~4.2.0",
+ "langium": "~4.3.0",
+ "langium-railroad": "~4.3.0",
"lodash": "~4.18.1"
},
"bin": {
@@ -5723,16 +5716,22 @@
}
},
"node_modules/langium-railroad": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/langium-railroad/-/langium-railroad-4.2.0.tgz",
- "integrity": "sha512-LYR22GV14iz0GTUtR91pZY6yNImYRk1HbAuHBP8k8GESMcSkCJh+iewJooH9k8H8dJOteXvvI7aFkz6rfU9oLQ==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/langium-railroad/-/langium-railroad-4.3.0.tgz",
+ "integrity": "sha512-dbuv149MQe8XcgM48FagH22JBaqN0MvN9RRJKBdRQWDeHUYAASliiOtLdMfgOl3kV+nLx7idSc+LLdcBSduvHw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "langium": "~4.2.0",
+ "langium": "~4.3.0",
"railroad-diagrams": "~1.0.0"
}
},
+ "node_modules/langium/node_modules/vscode-languageserver-textdocument": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.13.tgz",
+ "integrity": "sha512-nx0ZHwMGIsVkzFG3/VLeJYBLTaFBRuNdGDvevvjuoayU5EOS2fEYazOhtCM3PI9ClMMg5igc0uwXtAq4tJj+Dw==",
+ "license": "MIT"
+ },
"node_modules/lie": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
@@ -6029,15 +6028,12 @@
"license": "MIT"
},
"node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
+ "license": "BlueOak-1.0.0",
"engines": {
- "node": ">=10"
+ "node": "20 || >=22"
}
},
"node_modules/lz-string": {
@@ -6062,13 +6058,13 @@
}
},
"node_modules/magicast": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.2.tgz",
- "integrity": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==",
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.5.3.tgz",
+ "integrity": "sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.29.0",
+ "@babel/parser": "^7.29.3",
"@babel/types": "^7.29.0",
"source-map-js": "^1.2.1"
}
@@ -6120,20 +6116,20 @@
}
},
"node_modules/memfs": {
- "version": "4.57.2",
- "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.57.2.tgz",
- "integrity": "sha512-2nWzSsJzrukurSDna4Z0WywuScK4Id3tSKejgu74u8KCdW4uNrseKRSIDg75C6Yw5ZRqBe0F0EtMNlTbUq8bAQ==",
+ "version": "4.57.7",
+ "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.57.7.tgz",
+ "integrity": "sha512-YZPphUQZSRGk6ddPlsNuMbztrLwsbUATFNZcqKscSbSJZ4g0+Y3vSZLJ/rfnGZaB1FFhC7SrywZXev6i8lnHgg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
- "@jsonjoy.com/fs-core": "4.57.2",
- "@jsonjoy.com/fs-fsa": "4.57.2",
- "@jsonjoy.com/fs-node": "4.57.2",
- "@jsonjoy.com/fs-node-builtins": "4.57.2",
- "@jsonjoy.com/fs-node-to-fsa": "4.57.2",
- "@jsonjoy.com/fs-node-utils": "4.57.2",
- "@jsonjoy.com/fs-print": "4.57.2",
- "@jsonjoy.com/fs-snapshot": "4.57.2",
+ "@jsonjoy.com/fs-core": "4.57.7",
+ "@jsonjoy.com/fs-fsa": "4.57.7",
+ "@jsonjoy.com/fs-node": "4.57.7",
+ "@jsonjoy.com/fs-node-builtins": "4.57.7",
+ "@jsonjoy.com/fs-node-to-fsa": "4.57.7",
+ "@jsonjoy.com/fs-node-utils": "4.57.7",
+ "@jsonjoy.com/fs-print": "4.57.7",
+ "@jsonjoy.com/fs-snapshot": "4.57.7",
"@jsonjoy.com/json-pack": "^1.11.0",
"@jsonjoy.com/util": "^1.9.0",
"glob-to-regex.js": "^1.0.1",
@@ -6240,7 +6236,6 @@
"version": "10.2.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
- "dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
"brace-expansion": "^5.0.5"
@@ -6264,13 +6259,13 @@
},
"node_modules/monaco-editor": {
"name": "@codingame/monaco-vscode-editor-api",
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-31.0.1.tgz",
- "integrity": "sha512-fM8fMfIdKXNNDN4mJ5JodFn0GqU+yGZn2dpNy+4UXg/kgoXuxse91iEAF6LN9cXq1DVYX/JZxBqM+BlknPV0Cg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-34.0.1.tgz",
+ "integrity": "sha512-o/7ECILQ5eOViHkK6LrKT0TAZb6ZgZwL8C/+ZqITGb7e3vUBNjPoYPJ+RVb8h2vM9ihfbWBuKjaGyd/pP+BjDg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/monaco-languageclient": {
@@ -6377,15 +6372,18 @@
}
},
"node_modules/obug": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.1.tgz",
- "integrity": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==",
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.3.tgz",
+ "integrity": "sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==",
"dev": true,
"funding": [
"https://github.com/sponsors/sxzz",
"https://opencollective.com/debug"
],
- "license": "MIT"
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20.0"
+ }
},
"node_modules/on-finished": {
"version": "2.4.1",
@@ -6409,25 +6407,22 @@
}
},
"node_modules/opentype.js": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/opentype.js/-/opentype.js-0.8.0.tgz",
- "integrity": "sha512-FQHR4oGP+a0m/f6yHoRpBOIbn/5ZWxKd4D/djHVJu8+KpBTYrJda0b7mLcgDEMWXE9xBCJm+qb0yv6FcvPjukg==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/opentype.js/-/opentype.js-2.0.0.tgz",
+ "integrity": "sha512-kCyjv6xdDY1W/jLWZ/L3QhhTlKUqDZMQ5+Jdlw12b3dXkKNpYBqqlMMj0YDQPShWFTMwgZI1hG14kN3XUDSg/A==",
"license": "MIT",
- "dependencies": {
- "tiny-inflate": "^1.0.2"
- },
"bin": {
"ot": "bin/ot"
}
},
"node_modules/oxc-parser": {
- "version": "0.130.0",
- "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.130.0.tgz",
- "integrity": "sha512-X0PJ+NmOok8qP3vK9uaW431ngkdM9UPEK7KG466urtIL2+EYTEgbZK2yqe2MWKJKBjRlFweP/pJPx0x9muMEVw==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.133.0.tgz",
+ "integrity": "sha512-661RSx+ZcjBmjBYid+Fpp/2F5EbtildpeoZh5HdgnGs+jZ03nqQEQW8yGkt4BGyOC3OMPDQQRl8M5kqD2/g6jw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/types": "^0.130.0"
+ "@oxc-project/types": "^0.133.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
@@ -6436,64 +6431,63 @@
"url": "https://github.com/sponsors/Boshen"
},
"optionalDependencies": {
- "@oxc-parser/binding-android-arm-eabi": "0.130.0",
- "@oxc-parser/binding-android-arm64": "0.130.0",
- "@oxc-parser/binding-darwin-arm64": "0.130.0",
- "@oxc-parser/binding-darwin-x64": "0.130.0",
- "@oxc-parser/binding-freebsd-x64": "0.130.0",
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.130.0",
- "@oxc-parser/binding-linux-arm-musleabihf": "0.130.0",
- "@oxc-parser/binding-linux-arm64-gnu": "0.130.0",
- "@oxc-parser/binding-linux-arm64-musl": "0.130.0",
- "@oxc-parser/binding-linux-ppc64-gnu": "0.130.0",
- "@oxc-parser/binding-linux-riscv64-gnu": "0.130.0",
- "@oxc-parser/binding-linux-riscv64-musl": "0.130.0",
- "@oxc-parser/binding-linux-s390x-gnu": "0.130.0",
- "@oxc-parser/binding-linux-x64-gnu": "0.130.0",
- "@oxc-parser/binding-linux-x64-musl": "0.130.0",
- "@oxc-parser/binding-openharmony-arm64": "0.130.0",
- "@oxc-parser/binding-wasm32-wasi": "0.130.0",
- "@oxc-parser/binding-win32-arm64-msvc": "0.130.0",
- "@oxc-parser/binding-win32-ia32-msvc": "0.130.0",
- "@oxc-parser/binding-win32-x64-msvc": "0.130.0"
+ "@oxc-parser/binding-android-arm-eabi": "0.133.0",
+ "@oxc-parser/binding-android-arm64": "0.133.0",
+ "@oxc-parser/binding-darwin-arm64": "0.133.0",
+ "@oxc-parser/binding-darwin-x64": "0.133.0",
+ "@oxc-parser/binding-freebsd-x64": "0.133.0",
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.133.0",
+ "@oxc-parser/binding-linux-arm-musleabihf": "0.133.0",
+ "@oxc-parser/binding-linux-arm64-gnu": "0.133.0",
+ "@oxc-parser/binding-linux-arm64-musl": "0.133.0",
+ "@oxc-parser/binding-linux-ppc64-gnu": "0.133.0",
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.133.0",
+ "@oxc-parser/binding-linux-riscv64-musl": "0.133.0",
+ "@oxc-parser/binding-linux-s390x-gnu": "0.133.0",
+ "@oxc-parser/binding-linux-x64-gnu": "0.133.0",
+ "@oxc-parser/binding-linux-x64-musl": "0.133.0",
+ "@oxc-parser/binding-openharmony-arm64": "0.133.0",
+ "@oxc-parser/binding-wasm32-wasi": "0.133.0",
+ "@oxc-parser/binding-win32-arm64-msvc": "0.133.0",
+ "@oxc-parser/binding-win32-ia32-msvc": "0.133.0",
+ "@oxc-parser/binding-win32-x64-msvc": "0.133.0"
}
},
"node_modules/oxc-resolver": {
- "version": "11.19.1",
- "resolved": "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-11.19.1.tgz",
- "integrity": "sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==",
+ "version": "11.20.0",
+ "resolved": "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-11.20.0.tgz",
+ "integrity": "sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==",
"dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/Boshen"
},
"optionalDependencies": {
- "@oxc-resolver/binding-android-arm-eabi": "11.19.1",
- "@oxc-resolver/binding-android-arm64": "11.19.1",
- "@oxc-resolver/binding-darwin-arm64": "11.19.1",
- "@oxc-resolver/binding-darwin-x64": "11.19.1",
- "@oxc-resolver/binding-freebsd-x64": "11.19.1",
- "@oxc-resolver/binding-linux-arm-gnueabihf": "11.19.1",
- "@oxc-resolver/binding-linux-arm-musleabihf": "11.19.1",
- "@oxc-resolver/binding-linux-arm64-gnu": "11.19.1",
- "@oxc-resolver/binding-linux-arm64-musl": "11.19.1",
- "@oxc-resolver/binding-linux-ppc64-gnu": "11.19.1",
- "@oxc-resolver/binding-linux-riscv64-gnu": "11.19.1",
- "@oxc-resolver/binding-linux-riscv64-musl": "11.19.1",
- "@oxc-resolver/binding-linux-s390x-gnu": "11.19.1",
- "@oxc-resolver/binding-linux-x64-gnu": "11.19.1",
- "@oxc-resolver/binding-linux-x64-musl": "11.19.1",
- "@oxc-resolver/binding-openharmony-arm64": "11.19.1",
- "@oxc-resolver/binding-wasm32-wasi": "11.19.1",
- "@oxc-resolver/binding-win32-arm64-msvc": "11.19.1",
- "@oxc-resolver/binding-win32-ia32-msvc": "11.19.1",
- "@oxc-resolver/binding-win32-x64-msvc": "11.19.1"
+ "@oxc-resolver/binding-android-arm-eabi": "11.20.0",
+ "@oxc-resolver/binding-android-arm64": "11.20.0",
+ "@oxc-resolver/binding-darwin-arm64": "11.20.0",
+ "@oxc-resolver/binding-darwin-x64": "11.20.0",
+ "@oxc-resolver/binding-freebsd-x64": "11.20.0",
+ "@oxc-resolver/binding-linux-arm-gnueabihf": "11.20.0",
+ "@oxc-resolver/binding-linux-arm-musleabihf": "11.20.0",
+ "@oxc-resolver/binding-linux-arm64-gnu": "11.20.0",
+ "@oxc-resolver/binding-linux-arm64-musl": "11.20.0",
+ "@oxc-resolver/binding-linux-ppc64-gnu": "11.20.0",
+ "@oxc-resolver/binding-linux-riscv64-gnu": "11.20.0",
+ "@oxc-resolver/binding-linux-riscv64-musl": "11.20.0",
+ "@oxc-resolver/binding-linux-s390x-gnu": "11.20.0",
+ "@oxc-resolver/binding-linux-x64-gnu": "11.20.0",
+ "@oxc-resolver/binding-linux-x64-musl": "11.20.0",
+ "@oxc-resolver/binding-openharmony-arm64": "11.20.0",
+ "@oxc-resolver/binding-wasm32-wasi": "11.20.0",
+ "@oxc-resolver/binding-win32-arm64-msvc": "11.20.0",
+ "@oxc-resolver/binding-win32-x64-msvc": "11.20.0"
}
},
"node_modules/oxfmt": {
- "version": "0.49.0",
- "resolved": "https://registry.npmjs.org/oxfmt/-/oxfmt-0.49.0.tgz",
- "integrity": "sha512-IAHFMdlJSWe+oAr65dx22UvjCtV9DBMisAuLnKpDqMQrctzCkGnj3QRwNHm0d+uwSWPalsDF8ZYLz9rh6nH2IQ==",
+ "version": "0.55.0",
+ "resolved": "https://registry.npmjs.org/oxfmt/-/oxfmt-0.55.0.tgz",
+ "integrity": "sha512-jSj2wCTakwgPMxkfiVZX0jf+nX+Nz6xlyAZjqNE0qXTFdCBPYlP6JAN+ODjmealw7DXBjOzYbdsqwBMAZnPZ6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6509,39 +6503,43 @@
"url": "https://github.com/sponsors/Boshen"
},
"optionalDependencies": {
- "@oxfmt/binding-android-arm-eabi": "0.49.0",
- "@oxfmt/binding-android-arm64": "0.49.0",
- "@oxfmt/binding-darwin-arm64": "0.49.0",
- "@oxfmt/binding-darwin-x64": "0.49.0",
- "@oxfmt/binding-freebsd-x64": "0.49.0",
- "@oxfmt/binding-linux-arm-gnueabihf": "0.49.0",
- "@oxfmt/binding-linux-arm-musleabihf": "0.49.0",
- "@oxfmt/binding-linux-arm64-gnu": "0.49.0",
- "@oxfmt/binding-linux-arm64-musl": "0.49.0",
- "@oxfmt/binding-linux-ppc64-gnu": "0.49.0",
- "@oxfmt/binding-linux-riscv64-gnu": "0.49.0",
- "@oxfmt/binding-linux-riscv64-musl": "0.49.0",
- "@oxfmt/binding-linux-s390x-gnu": "0.49.0",
- "@oxfmt/binding-linux-x64-gnu": "0.49.0",
- "@oxfmt/binding-linux-x64-musl": "0.49.0",
- "@oxfmt/binding-openharmony-arm64": "0.49.0",
- "@oxfmt/binding-win32-arm64-msvc": "0.49.0",
- "@oxfmt/binding-win32-ia32-msvc": "0.49.0",
- "@oxfmt/binding-win32-x64-msvc": "0.49.0"
+ "@oxfmt/binding-android-arm-eabi": "0.55.0",
+ "@oxfmt/binding-android-arm64": "0.55.0",
+ "@oxfmt/binding-darwin-arm64": "0.55.0",
+ "@oxfmt/binding-darwin-x64": "0.55.0",
+ "@oxfmt/binding-freebsd-x64": "0.55.0",
+ "@oxfmt/binding-linux-arm-gnueabihf": "0.55.0",
+ "@oxfmt/binding-linux-arm-musleabihf": "0.55.0",
+ "@oxfmt/binding-linux-arm64-gnu": "0.55.0",
+ "@oxfmt/binding-linux-arm64-musl": "0.55.0",
+ "@oxfmt/binding-linux-ppc64-gnu": "0.55.0",
+ "@oxfmt/binding-linux-riscv64-gnu": "0.55.0",
+ "@oxfmt/binding-linux-riscv64-musl": "0.55.0",
+ "@oxfmt/binding-linux-s390x-gnu": "0.55.0",
+ "@oxfmt/binding-linux-x64-gnu": "0.55.0",
+ "@oxfmt/binding-linux-x64-musl": "0.55.0",
+ "@oxfmt/binding-openharmony-arm64": "0.55.0",
+ "@oxfmt/binding-win32-arm64-msvc": "0.55.0",
+ "@oxfmt/binding-win32-ia32-msvc": "0.55.0",
+ "@oxfmt/binding-win32-x64-msvc": "0.55.0"
},
"peerDependencies": {
- "svelte": "^5.0.0"
+ "svelte": "^5.0.0",
+ "vite-plus": "*"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
+ },
+ "vite-plus": {
+ "optional": true
}
}
},
"node_modules/oxlint": {
- "version": "1.64.0",
- "resolved": "https://registry.npmjs.org/oxlint/-/oxlint-1.64.0.tgz",
- "integrity": "sha512-Star3SNpWPeWFPw7kRXIhXUSn6fdiAl25q15CQzH/9WaOtG6e9CWTc25vNZOCr4PE1yEP1GtKJKIKglhj3OmEQ==",
+ "version": "1.70.0",
+ "resolved": "https://registry.npmjs.org/oxlint/-/oxlint-1.70.0.tgz",
+ "integrity": "sha512-D6JgHtzkhRwvEC+A0Nw5AEc5bk8x5i1pHzvZIEf/a0C4hOzmAACNGtkDGPyFaxxX3ZVGxCPeig3P3rMM8XU3/g==",
"dev": true,
"license": "MIT",
"bin": {
@@ -6554,51 +6552,55 @@
"url": "https://github.com/sponsors/Boshen"
},
"optionalDependencies": {
- "@oxlint/binding-android-arm-eabi": "1.64.0",
- "@oxlint/binding-android-arm64": "1.64.0",
- "@oxlint/binding-darwin-arm64": "1.64.0",
- "@oxlint/binding-darwin-x64": "1.64.0",
- "@oxlint/binding-freebsd-x64": "1.64.0",
- "@oxlint/binding-linux-arm-gnueabihf": "1.64.0",
- "@oxlint/binding-linux-arm-musleabihf": "1.64.0",
- "@oxlint/binding-linux-arm64-gnu": "1.64.0",
- "@oxlint/binding-linux-arm64-musl": "1.64.0",
- "@oxlint/binding-linux-ppc64-gnu": "1.64.0",
- "@oxlint/binding-linux-riscv64-gnu": "1.64.0",
- "@oxlint/binding-linux-riscv64-musl": "1.64.0",
- "@oxlint/binding-linux-s390x-gnu": "1.64.0",
- "@oxlint/binding-linux-x64-gnu": "1.64.0",
- "@oxlint/binding-linux-x64-musl": "1.64.0",
- "@oxlint/binding-openharmony-arm64": "1.64.0",
- "@oxlint/binding-win32-arm64-msvc": "1.64.0",
- "@oxlint/binding-win32-ia32-msvc": "1.64.0",
- "@oxlint/binding-win32-x64-msvc": "1.64.0"
+ "@oxlint/binding-android-arm-eabi": "1.70.0",
+ "@oxlint/binding-android-arm64": "1.70.0",
+ "@oxlint/binding-darwin-arm64": "1.70.0",
+ "@oxlint/binding-darwin-x64": "1.70.0",
+ "@oxlint/binding-freebsd-x64": "1.70.0",
+ "@oxlint/binding-linux-arm-gnueabihf": "1.70.0",
+ "@oxlint/binding-linux-arm-musleabihf": "1.70.0",
+ "@oxlint/binding-linux-arm64-gnu": "1.70.0",
+ "@oxlint/binding-linux-arm64-musl": "1.70.0",
+ "@oxlint/binding-linux-ppc64-gnu": "1.70.0",
+ "@oxlint/binding-linux-riscv64-gnu": "1.70.0",
+ "@oxlint/binding-linux-riscv64-musl": "1.70.0",
+ "@oxlint/binding-linux-s390x-gnu": "1.70.0",
+ "@oxlint/binding-linux-x64-gnu": "1.70.0",
+ "@oxlint/binding-linux-x64-musl": "1.70.0",
+ "@oxlint/binding-openharmony-arm64": "1.70.0",
+ "@oxlint/binding-win32-arm64-msvc": "1.70.0",
+ "@oxlint/binding-win32-ia32-msvc": "1.70.0",
+ "@oxlint/binding-win32-x64-msvc": "1.70.0"
},
"peerDependencies": {
- "oxlint-tsgolint": ">=0.22.1"
+ "oxlint-tsgolint": ">=0.22.1",
+ "vite-plus": "*"
},
"peerDependenciesMeta": {
"oxlint-tsgolint": {
"optional": true
+ },
+ "vite-plus": {
+ "optional": true
}
}
},
"node_modules/oxlint-tsgolint": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/oxlint-tsgolint/-/oxlint-tsgolint-0.22.1.tgz",
- "integrity": "sha512-YUSGSLUnoolsu8gxISEDio3q1rtsCozwfOzASUn3DT2mR2EeQ93uEEnen7s+6LpF+lyTQFln1pQfqwBh/fsVEg==",
+ "version": "0.23.0",
+ "resolved": "https://registry.npmjs.org/oxlint-tsgolint/-/oxlint-tsgolint-0.23.0.tgz",
+ "integrity": "sha512-3mBv3CoPbh8dFbzfDGIWa2ytZjn2v+3EX4aKRXjIhsoGFzG8GCjfRirz3rwZf1wYbZzsNLTSgpw8VjQuWdp/jA==",
"dev": true,
"license": "MIT",
"bin": {
"tsgolint": "bin/tsgolint.js"
},
"optionalDependencies": {
- "@oxlint-tsgolint/darwin-arm64": "0.22.1",
- "@oxlint-tsgolint/darwin-x64": "0.22.1",
- "@oxlint-tsgolint/linux-arm64": "0.22.1",
- "@oxlint-tsgolint/linux-x64": "0.22.1",
- "@oxlint-tsgolint/win32-arm64": "0.22.1",
- "@oxlint-tsgolint/win32-x64": "0.22.1"
+ "@oxlint-tsgolint/darwin-arm64": "0.23.0",
+ "@oxlint-tsgolint/darwin-x64": "0.23.0",
+ "@oxlint-tsgolint/linux-arm64": "0.23.0",
+ "@oxlint-tsgolint/linux-x64": "0.23.0",
+ "@oxlint-tsgolint/win32-arm64": "0.23.0",
+ "@oxlint-tsgolint/win32-x64": "0.23.0"
}
},
"node_modules/p-finally": {
@@ -6701,14 +6703,14 @@
}
},
"node_modules/playwright": {
- "version": "1.60.0",
- "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.60.0.tgz",
- "integrity": "sha512-hheHdokM8cdqCb0lcE3s+zT4t4W+vvjpGxsZlDnikarzx8tSzMebh3UiFtgqwFwnTnjYQcsyMF8ei2mCO/tpeA==",
+ "version": "1.61.0",
+ "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.61.0.tgz",
+ "integrity": "sha512-Z+7BeeqQPRRzklHsVFP4KTGIyMxKUmfeRA4WisM6G3/XW6nwGeX6fX9qYaDa+CiUqpOkb2f6X3nar05R3kSuJQ==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
"dependencies": {
- "playwright-core": "1.60.0"
+ "playwright-core": "1.61.0"
},
"bin": {
"playwright": "cli.js"
@@ -6721,9 +6723,9 @@
}
},
"node_modules/playwright-core": {
- "version": "1.60.0",
- "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.60.0.tgz",
- "integrity": "sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==",
+ "version": "1.61.0",
+ "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.61.0.tgz",
+ "integrity": "sha512-caX7TrY3Ml6egyDX0WUcTHDxodl/b51y5wJOdCEA36QviK/s2g081hvmGs8eaE3DWb6NYZQ6BjO/QkNRPenoPA==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
@@ -6745,9 +6747,9 @@
}
},
"node_modules/postcss": {
- "version": "8.5.14",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
- "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
+ "version": "8.5.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"dev": true,
"funding": [
{
@@ -6765,7 +6767,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.11",
+ "nanoid": "^3.3.12",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -6820,9 +6822,9 @@
}
},
"node_modules/pyright": {
- "version": "1.1.409",
- "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.409.tgz",
- "integrity": "sha512-13VFQyw4mJzshZxcxiYbNjo1hG/WHSRDj70Y3lbJEHqCkI2dvBAUTti8VV6Ezsr5gT93pFvC0e/jAQS4JdHarA==",
+ "version": "1.1.410",
+ "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.410.tgz",
+ "integrity": "sha512-3ImEV3F3YPMJZDwmouvKj3Ytxkw/adZFGlsOsNKiS+B97Th4h7TFElFKpBG/j1nqx6kXFPQjnzOU+zTBOkki2g==",
"license": "MIT",
"bin": {
"pyright": "index.js",
@@ -6850,9 +6852,9 @@
}
},
"node_modules/qs": {
- "version": "6.15.1",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
- "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
+ "version": "6.15.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
+ "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
"license": "BSD-3-Clause",
"dependencies": {
"side-channel": "^1.1.0"
@@ -6917,24 +6919,24 @@
}
},
"node_modules/react": {
- "version": "19.2.6",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.6.tgz",
- "integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==",
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-dom": {
- "version": "19.2.6",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.6.tgz",
- "integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==",
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
"license": "MIT",
"dependencies": {
"scheduler": "^0.27.0"
},
"peerDependencies": {
- "react": "^19.2.6"
+ "react": "^19.2.7"
}
},
"node_modules/react-is": {
@@ -7048,14 +7050,14 @@
}
},
"node_modules/rolldown": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0.tgz",
- "integrity": "sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/types": "=0.129.0",
- "@rolldown/pluginutils": "1.0.0"
+ "@oxc-project/types": "=0.133.0",
+ "@rolldown/pluginutils": "^1.0.0"
},
"bin": {
"rolldown": "bin/cli.mjs"
@@ -7064,31 +7066,21 @@
"node": "^20.19.0 || >=22.12.0"
},
"optionalDependencies": {
- "@rolldown/binding-android-arm64": "1.0.0",
- "@rolldown/binding-darwin-arm64": "1.0.0",
- "@rolldown/binding-darwin-x64": "1.0.0",
- "@rolldown/binding-freebsd-x64": "1.0.0",
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.0",
- "@rolldown/binding-linux-arm64-gnu": "1.0.0",
- "@rolldown/binding-linux-arm64-musl": "1.0.0",
- "@rolldown/binding-linux-ppc64-gnu": "1.0.0",
- "@rolldown/binding-linux-s390x-gnu": "1.0.0",
- "@rolldown/binding-linux-x64-gnu": "1.0.0",
- "@rolldown/binding-linux-x64-musl": "1.0.0",
- "@rolldown/binding-openharmony-arm64": "1.0.0",
- "@rolldown/binding-wasm32-wasi": "1.0.0",
- "@rolldown/binding-win32-arm64-msvc": "1.0.0",
- "@rolldown/binding-win32-x64-msvc": "1.0.0"
- }
- },
- "node_modules/rolldown/node_modules/@oxc-project/types": {
- "version": "0.129.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.129.0.tgz",
- "integrity": "sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/Boshen"
+ "@rolldown/binding-android-arm64": "1.0.3",
+ "@rolldown/binding-darwin-arm64": "1.0.3",
+ "@rolldown/binding-darwin-x64": "1.0.3",
+ "@rolldown/binding-freebsd-x64": "1.0.3",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
}
},
"node_modules/router": {
@@ -7150,9 +7142,9 @@
"license": "MIT"
},
"node_modules/semver": {
- "version": "7.8.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz",
- "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==",
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -7278,14 +7270,14 @@
}
},
"node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
+ "object-inspect": "^1.13.4",
+ "side-channel-list": "^1.0.1",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2"
},
@@ -7519,12 +7511,6 @@
"tslib": "^2"
}
},
- "node_modules/tiny-inflate": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
- "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
- "license": "MIT"
- },
"node_modules/tinybench": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz",
@@ -7533,9 +7519,9 @@
"license": "MIT"
},
"node_modules/tinyexec": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.1.2.tgz",
- "integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==",
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-1.2.4.tgz",
+ "integrity": "sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7543,9 +7529,9 @@
}
},
"node_modules/tinyglobby": {
- "version": "0.2.16",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
- "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7636,14 +7622,13 @@
"license": "0BSD"
},
"node_modules/tsx": {
- "version": "4.21.0",
- "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz",
- "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
+ "version": "4.22.4",
+ "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.4.tgz",
+ "integrity": "sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "esbuild": "~0.27.0",
- "get-tsconfig": "^4.7.5"
+ "esbuild": "~0.28.0"
},
"bin": {
"tsx": "dist/cli.mjs"
@@ -7671,17 +7656,34 @@
}
},
"node_modules/type-is": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
"license": "MIT",
"dependencies": {
- "content-type": "^1.0.5",
+ "content-type": "^2.0.0",
"media-typer": "^1.1.0",
"mime-types": "^3.0.0"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">= 18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/type-is/node_modules/content-type": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/typescript": {
@@ -7750,17 +7752,17 @@
}
},
"node_modules/vite": {
- "version": "8.0.12",
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.12.tgz",
- "integrity": "sha512-w2dDofOWv2QB09ZITZBsvKTVAlYvPR4IAmrY/v0ir9KvLs0xybR7i48wxhM1/oyBWO34wPns+bPGw5ZrZqDpZg==",
+ "version": "8.0.16",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
"dev": true,
"license": "MIT",
"dependencies": {
"lightningcss": "^1.32.0",
"picomatch": "^4.0.4",
- "postcss": "^8.5.14",
- "rolldown": "1.0.0",
- "tinyglobby": "^0.2.16"
+ "postcss": "^8.5.15",
+ "rolldown": "1.0.3",
+ "tinyglobby": "^0.2.17"
},
"bin": {
"vite": "bin/vite.js"
@@ -7828,16 +7830,16 @@
}
},
"node_modules/vite-plugin-static-copy": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-4.1.0.tgz",
- "integrity": "sha512-9XOarNV7LgP0KBB7AApxdgFikLXx3daZdqjC3AevYsL6MrUH62zphonLUs2a6LZc1HN1GY+vQdheZ8VVJb6dQQ==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/vite-plugin-static-copy/-/vite-plugin-static-copy-4.1.1.tgz",
+ "integrity": "sha512-GrlA8YklrAfSyxJ4M3fdQLOo9oNkp56IM9FYgX/WtEgeIFkPwhu4wzpufBCIuNKCa6Fn77FkRdYxkHqV0FwjAw==",
"dev": true,
"license": "MIT",
"dependencies": {
"chokidar": "^3.6.0",
"p-map": "^7.0.4",
"picocolors": "^1.1.1",
- "tinyglobby": "^0.2.15"
+ "tinyglobby": "^0.2.17"
},
"engines": {
"node": "^22.0.0 || >=24.0.0"
@@ -7866,19 +7868,19 @@
}
},
"node_modules/vitest": {
- "version": "4.1.6",
- "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.6.tgz",
- "integrity": "sha512-6lvjbS3p9b4CrdCmguzbh2/4uoXhGE2q71R4OX5sqF9R1bo9Xd6fGrMAfvp5wnCzlBnFVdCOp6onuTQVbo8iUQ==",
+ "version": "4.1.9",
+ "resolved": "https://registry.npmjs.org/vitest/-/vitest-4.1.9.tgz",
+ "integrity": "sha512-nE3/LEyc0z87uHYLZebqCUOaJr2hdtuPp7BQ4BosVFnfltxgAvMG08NyrSGlPpOUWvR27c5flSmYFTNr78L9GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@vitest/expect": "4.1.6",
- "@vitest/mocker": "4.1.6",
- "@vitest/pretty-format": "4.1.6",
- "@vitest/runner": "4.1.6",
- "@vitest/snapshot": "4.1.6",
- "@vitest/spy": "4.1.6",
- "@vitest/utils": "4.1.6",
+ "@vitest/expect": "4.1.9",
+ "@vitest/mocker": "4.1.9",
+ "@vitest/pretty-format": "4.1.9",
+ "@vitest/runner": "4.1.9",
+ "@vitest/snapshot": "4.1.9",
+ "@vitest/spy": "4.1.9",
+ "@vitest/utils": "4.1.9",
"es-module-lexer": "^2.0.0",
"expect-type": "^1.3.0",
"magic-string": "^0.30.21",
@@ -7906,12 +7908,12 @@
"@edge-runtime/vm": "*",
"@opentelemetry/api": "^1.9.0",
"@types/node": "^20.0.0 || ^22.0.0 || >=24.0.0",
- "@vitest/browser-playwright": "4.1.6",
- "@vitest/browser-preview": "4.1.6",
- "@vitest/browser-webdriverio": "4.1.6",
- "@vitest/coverage-istanbul": "4.1.6",
- "@vitest/coverage-v8": "4.1.6",
- "@vitest/ui": "4.1.6",
+ "@vitest/browser-playwright": "4.1.9",
+ "@vitest/browser-preview": "4.1.9",
+ "@vitest/browser-webdriverio": "4.1.9",
+ "@vitest/coverage-istanbul": "4.1.9",
+ "@vitest/coverage-v8": "4.1.9",
+ "@vitest/ui": "4.1.9",
"happy-dom": "*",
"jsdom": "*",
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
@@ -7957,13 +7959,13 @@
},
"node_modules/vscode": {
"name": "@codingame/monaco-vscode-extension-api",
- "version": "31.0.1",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-31.0.1.tgz",
- "integrity": "sha512-4xvN1p1VvyfOW9bmU2fkd76ex7vgU+ySjBdP2QS+prkgWmDiJnErVmh2uZke0cwkdOrcD+AxXsLUYBpiibzXDQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-34.0.1.tgz",
+ "integrity": "sha512-rXGKdTx8XSIr77M5Z+7KsL8YWtCIZJ4ckQ4nVn5lWODsH2uEn8XmPucyWCTR1cmct2D0JWZY+ahLgQ9B/qDENg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "31.0.1"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1"
}
},
"node_modules/vscode-css-languageservice": {
@@ -7979,6 +7981,13 @@
"vscode-uri": "^3.0.8"
}
},
+ "node_modules/vscode-css-languageservice/node_modules/vscode-languageserver-types": {
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
+ "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/vscode-html-languageservice": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.2.0.tgz",
@@ -8006,84 +8015,55 @@
}
},
"node_modules/vscode-jsonrpc": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz",
- "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-9.0.0.tgz",
+ "integrity": "sha512-+VvMmQPJhtvJ+8O+zu2JKIRiLxXF8NW7krWgyMGeOHrp4Cn23T5hc0v2LknNeopDOB70wghHAds7mKtcZ0I4Sg==",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/vscode-languageclient": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz",
- "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-10.0.0.tgz",
+ "integrity": "sha512-3yRHFkktZQCCg8ehHnD2Z4DZ4mZ17FNo8bxM4OFt8wtpxNBAOZGHmpbIflZSkicvCxi+ozuWntbdeWiY0gP77w==",
"license": "MIT",
"dependencies": {
- "minimatch": "^5.1.0",
- "semver": "^7.3.7",
- "vscode-languageserver-protocol": "3.17.5"
+ "minimatch": "^10.2.5",
+ "semver": "^7.8.1",
+ "vscode-languageserver-protocol": "3.18.0",
+ "vscode-languageserver-textdocument": "1.0.13"
},
"engines": {
- "vscode": "^1.82.0"
+ "vscode": "^1.91.0"
}
},
- "node_modules/vscode-languageclient/node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "node_modules/vscode-languageclient/node_modules/vscode-languageserver-textdocument": {
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.13.tgz",
+ "integrity": "sha512-nx0ZHwMGIsVkzFG3/VLeJYBLTaFBRuNdGDvevvjuoayU5EOS2fEYazOhtCM3PI9ClMMg5igc0uwXtAq4tJj+Dw==",
"license": "MIT"
},
- "node_modules/vscode-languageclient/node_modules/brace-expansion": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz",
- "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/vscode-languageclient/node_modules/minimatch": {
- "version": "5.1.9",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.9.tgz",
- "integrity": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/vscode-languageserver": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz",
- "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-10.0.0.tgz",
+ "integrity": "sha512-KOdOVuBnNO5EZSejlEDdRPJWpJn/X87vR2TmOXneHsxSYY7mYjgc1SxeZPMoHICcBKTUnM0V19+WP4J92zDd1w==",
"license": "MIT",
"dependencies": {
- "vscode-languageserver-protocol": "3.17.5"
+ "vscode-languageserver-protocol": "3.18.0"
},
"bin": {
"installServerIntoExtension": "bin/installServerIntoExtension"
}
},
"node_modules/vscode-languageserver-protocol": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz",
- "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==",
+ "version": "3.18.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.18.0.tgz",
+ "integrity": "sha512-Zdz+kJ12Iz6tc11xfZyEo501bBATHXrCjmMfnaR3pMnf1CoqZBKIynba3P+/bi9VEdrMbNtAVKYpKhbODvqy+Q==",
"license": "MIT",
"dependencies": {
- "vscode-jsonrpc": "8.2.0",
- "vscode-languageserver-types": "3.17.5"
- }
- },
- "node_modules/vscode-languageserver-protocol/node_modules/vscode-jsonrpc": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz",
- "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
+ "vscode-jsonrpc": "9.0.0",
+ "vscode-languageserver-types": "3.18.0"
}
},
"node_modules/vscode-languageserver-textdocument": {
@@ -8093,9 +8073,9 @@
"license": "MIT"
},
"node_modules/vscode-languageserver-types": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
- "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "version": "3.18.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.18.0.tgz",
+ "integrity": "sha512-8TsGPNMIMiiBdkORgRSvLjuiEIiAFtO+KssmYWxQ+uSVvlf7RjK8YKCOjPzZ+YA04jXEV7+7LvkSmHkhpNS99g==",
"license": "MIT"
},
"node_modules/vscode-uri": {
@@ -8155,9 +8135,9 @@
"license": "ISC"
},
"node_modules/ws": {
- "version": "8.20.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz",
- "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
+ "version": "8.21.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
+ "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
@@ -8181,12 +8161,6 @@
"integrity": "sha512-q6sV6Slw47bwlhwbztot0MklWaVzywUAi0wAKWwOuL/LTY4IpVFgoHQ+cnlhG2ZUms/OkJUhyfhsfoHNYkKjzA==",
"license": "MIT"
},
- "node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "license": "ISC"
- },
"node_modules/yaml": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
@@ -8204,13 +8178,12 @@
}
},
"node_modules/yauzl": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.3.0.tgz",
- "integrity": "sha512-PtGEvEP30p7sbIBJKUBjUnqgTVOyMURc4dLo9iNyAJnNIEz9pm88cCXF21w94Kg3k6RXkeZh5DHOGS0qEONvNQ==",
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-3.4.0.tgz",
+ "integrity": "sha512-jIH9yLR9wqr0wOS0TpBvo/g/2UgZH5qePVbjgRliiF0BYvOZyaBknKsF+x9Iht0O6sqgnB93rCICdOZFecJuDw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "buffer-crc32": "~0.2.3",
"pend": "~1.2.0"
},
"engines": {
@@ -8229,113 +8202,113 @@
},
"packages/client": {
"name": "monaco-languageclient",
- "version": "10.7.0",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-configuration-service-override": "^31.0.1",
- "@codingame/monaco-vscode-editor-api": "^31.0.1",
- "@codingame/monaco-vscode-editor-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-files-service-override": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-cs": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-de": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-es": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-fr": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-it": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ja": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ko": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-pl": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-pt-br": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ru": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-tr": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^31.0.1",
- "@codingame/monaco-vscode-languages-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-model-service-override": "^31.0.1",
- "@codingame/monaco-vscode-monarch-service-override": "^31.0.1",
- "@codingame/monaco-vscode-textmate-service-override": "^31.0.1",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-theme-service-override": "^31.0.1",
- "@codingame/monaco-vscode-views-service-override": "^31.0.1",
- "@codingame/monaco-vscode-workbench-service-override": "^31.0.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
+ "version": "11.0.0-next.0",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-cs": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-de": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-es": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-fr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-it": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ja": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ko": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pl": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pt-br": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-qps-ploc": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ru": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-tr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hans": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hant": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-monarch-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-theme-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-workbench-service-override": "^34.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0"
},
"devDependencies": {
- "@codingame/monaco-vscode-standalone-css-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-html-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-json-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-languages": "^31.0.1",
- "@codingame/monaco-vscode-standalone-typescript-language-features": "^31.0.1",
+ "@codingame/monaco-vscode-standalone-css-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-html-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-json-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-languages": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-typescript-language-features": "^34.0.1",
"monaco-languageclient-examples": "../examples"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
},
"packages/examples": {
"name": "monaco-languageclient-examples",
- "version": "2026.2.1",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-cpp-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-debug-service-override": "^31.0.1",
- "@codingame/monaco-vscode-environment-service-override": "^31.0.1",
- "@codingame/monaco-vscode-explorer-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-files-service-override": "^31.0.1",
- "@codingame/monaco-vscode-groovy-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-java-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-javascript-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-json-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-json-language-features-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-keybindings-service-override": "^31.0.1",
- "@codingame/monaco-vscode-lifecycle-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-outline-service-override": "^31.0.1",
- "@codingame/monaco-vscode-preferences-service-override": "^31.0.1",
- "@codingame/monaco-vscode-python-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-remote-agent-service-override": "^31.0.1",
- "@codingame/monaco-vscode-search-result-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-search-service-override": "^31.0.1",
- "@codingame/monaco-vscode-secret-storage-service-override": "^31.0.1",
- "@codingame/monaco-vscode-storage-service-override": "^31.0.1",
- "@codingame/monaco-vscode-testing-service-override": "^31.0.1",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-view-banner-service-override": "^31.0.1",
- "@codingame/monaco-vscode-view-status-bar-service-override": "^31.0.1",
- "@codingame/monaco-vscode-view-title-bar-service-override": "^31.0.1",
- "@codingame/monaco-vscode-views-service-override": "^31.0.1",
- "@typefox/monaco-editor-react": "~7.7.0",
+ "version": "2026.6.1",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-cpp-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-debug-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-explorer-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-groovy-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-java-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-javascript-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-lifecycle-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-outline-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-preferences-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-python-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-remote-agent-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-search-result-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-search-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-secret-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-testing-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-view-banner-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-status-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-title-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "~8.0.0-next.0",
"cors": "~2.8.6",
"express": "~5.2.1",
"jszip": "~3.10.1",
- "langium": "~4.2.1",
- "monaco-languageclient": "~10.7.0",
- "pyright": "~1.1.409",
- "react": "~19.2.6",
- "react-dom": "~19.2.6",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "~11.0.0-next.0",
+ "pyright": "~1.1.410",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
"request-light": "~0.8.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
"vscode-json-languageservice": "~5.7.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
"vscode-languageserver-textdocument": "~1.0.12",
"vscode-uri": "~3.1.0",
- "vscode-ws-jsonrpc": "~3.5.0",
- "ws": "~8.20.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0",
+ "ws": "~8.21.0",
"wtd-core": "~4.0.1"
},
"devDependencies": {
@@ -8343,44 +8316,44 @@
"@types/emscripten": "~1.41.5",
"@types/express": "~5.0.6",
"@types/ws": "~8.18.1",
- "langium-cli": "~4.2.0",
+ "langium-cli": "~4.3.0",
"mini-coi": "~0.4.2",
- "vite-plugin-static-copy": "~4.1.0",
- "vscode-languageserver-types": "~3.17.5"
+ "vite-plugin-static-copy": "~4.1.1",
+ "vscode-languageserver-types": "~3.18.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
},
"packages/vscode-ws-jsonrpc": {
- "version": "3.5.0",
+ "version": "4.0.0-next.0",
"license": "MIT",
"dependencies": {
- "vscode-jsonrpc": "~8.2.1"
+ "vscode-jsonrpc": "~9.0.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
},
"packages/wrapper-react": {
"name": "@typefox/monaco-editor-react",
- "version": "7.7.0",
+ "version": "8.0.0-next.0",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "monaco-languageclient": "~10.7.0",
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "monaco-languageclient": "~11.0.0-next.0",
"react": ">=18.0.0 || <20.0.0",
- "vscode-languageclient": "~9.0.1"
+ "vscode-languageclient": "~10.0.0"
},
"devDependencies": {
"monaco-languageclient-examples": "../examples"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
}
diff --git a/package.json b/package.json
index 9749c0789..ce25e0104 100644
--- a/package.json
+++ b/package.json
@@ -54,31 +54,35 @@
"knip": "knip"
},
"devDependencies": {
- "@codingame/monaco-vscode-rollup-vsix-plugin": "^31.0.1",
+ "@codingame/monaco-vscode-rollup-vsix-plugin": "^34.0.1",
"@testing-library/react": "~16.3.2",
"@types/node": "~24.10.15",
- "@types/react": "~19.2.14",
+ "@types/react": "~19.2.17",
"@types/react-dom": "~19.2.3",
"@typescript/native-preview": "beta",
- "@vitest/browser": "~4.1.6",
- "@vitest/browser-playwright": "~4.1.6",
- "@vitest/coverage-v8": "~4.1.6",
- "knip": "^6.12.2",
+ "@vitest/browser": "~4.1.9",
+ "@vitest/browser-playwright": "~4.1.9",
+ "@vitest/coverage-v8": "~4.1.9",
+ "knip": "~6.16.1",
"minimatch": "~10.2.5",
- "oxfmt": "~0.49.0",
- "oxlint": "~1.64.0",
- "oxlint-tsgolint": "~0.22.1",
+ "oxfmt": "~0.55.0",
+ "oxlint": "~1.70.0",
+ "oxlint-tsgolint": "~0.23.0",
"shx": "~0.4.0",
- "tsx": "~4.21.0",
+ "tsx": "~4.22.4",
"typescript": "~6.0.3",
- "vite": "~8.0.12",
- "vitest": "~4.1.6"
+ "vite": "~8.0.16",
+ "vitest": "~4.1.9"
},
"overrides": {
+ "esbuild": "~0.28.1",
"minimatch": "~10.2.5"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
+ },
+ "allowScripts": {
+ "esbuild": false
}
}
diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md
index 1d3583c6f..513596f2e 100644
--- a/packages/client/CHANGELOG.md
+++ b/packages/client/CHANGELOG.md
@@ -2,9 +2,10 @@
All notable changes to this npm module are documented in this file.
-## [10.8.0] - unreleased
+## [11.0.0-next.0] - unreleased
-- Updated all `@codingame/monaco-vscode` packages to `31.0.0`
+- Updated all `@codingame/monaco-vscode` packages to `34.0.1`
+- Updated `vscode-languageclient` and `vscode-languageserver` to `10.0.0`, `vscode-languageserver-protocol` to `3.18.0` and `vscode-jsonrpc` to `9.0.0`.
- Dropped eslint and rely fully on oxlint.
## [10.7.0] - 2026-02-04
diff --git a/packages/client/package.json b/packages/client/package.json
index 3d9405d2a..51cdc054a 100644
--- a/packages/client/package.json
+++ b/packages/client/package.json
@@ -1,6 +1,6 @@
{
"name": "monaco-languageclient",
- "version": "10.7.0",
+ "version": "11.0.0-next.0",
"description": "Monaco Language client implementation",
"homepage": "https://github.com/TypeFox/monaco-languageclient/blob/main/packages/client/README.md",
"bugs": {
@@ -80,51 +80,51 @@
"build": "npm run build:msg && npm run clean && npm run compile"
},
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-configuration-service-override": "^31.0.1",
- "@codingame/monaco-vscode-editor-api": "^31.0.1",
- "@codingame/monaco-vscode-editor-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-files-service-override": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-cs": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-de": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-es": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-fr": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-it": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ja": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ko": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-pl": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-pt-br": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-ru": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-tr": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^31.0.1",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^31.0.1",
- "@codingame/monaco-vscode-languages-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-model-service-override": "^31.0.1",
- "@codingame/monaco-vscode-monarch-service-override": "^31.0.1",
- "@codingame/monaco-vscode-textmate-service-override": "^31.0.1",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-theme-service-override": "^31.0.1",
- "@codingame/monaco-vscode-views-service-override": "^31.0.1",
- "@codingame/monaco-vscode-workbench-service-override": "^31.0.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-cs": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-de": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-es": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-fr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-it": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ja": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ko": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pl": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pt-br": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-qps-ploc": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ru": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-tr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hans": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hant": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-monarch-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-theme-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-workbench-service-override": "^34.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0"
},
"devDependencies": {
- "@codingame/monaco-vscode-standalone-css-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-html-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-json-language-features": "^31.0.1",
- "@codingame/monaco-vscode-standalone-languages": "^31.0.1",
- "@codingame/monaco-vscode-standalone-typescript-language-features": "^31.0.1",
+ "@codingame/monaco-vscode-standalone-css-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-html-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-json-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-languages": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-typescript-language-features": "^34.0.1",
"monaco-languageclient-examples": "../examples"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/packages/client/src/common/commonTypes.ts b/packages/client/src/common/commonTypes.ts
index 5b326eb94..38ab56094 100644
--- a/packages/client/src/common/commonTypes.ts
+++ b/packages/client/src/common/commonTypes.ts
@@ -3,7 +3,7 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import type { BaseLanguageClient } from 'vscode-languageclient/browser.js';
+import type { BaseLanguageClient } from 'vscode-languageclient/browser';
export type ConnectionConfigOptions =
| WebSocketConfigOptionsDirect
diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts
index b1d0c687e..d1239bc0c 100644
--- a/packages/client/src/index.ts
+++ b/packages/client/src/index.ts
@@ -3,7 +3,7 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import { BaseLanguageClient, MessageTransports, ProposedFeatures, type LanguageClientOptions } from 'vscode-languageclient/browser.js';
+import { BaseLanguageClient, MessageTransports, ProposedFeatures, type LanguageClientOptions } from 'vscode-languageclient/browser';
export type MonacoLanguageClientOptions = {
name: string;
diff --git a/packages/client/src/wrapper/lcconfig.ts b/packages/client/src/wrapper/lcconfig.ts
index 61b41bfdd..83f533ea3 100644
--- a/packages/client/src/wrapper/lcconfig.ts
+++ b/packages/client/src/wrapper/lcconfig.ts
@@ -5,7 +5,7 @@
import { LogLevel } from '@codingame/monaco-vscode-api';
import { type ConnectionConfigOptions } from 'monaco-languageclient/common';
-import type { DynamicFeature, LanguageClientOptions, MessageTransports, StaticFeature } from 'vscode-languageclient/browser.js';
+import type { DynamicFeature, LanguageClientOptions, MessageTransports, StaticFeature } from 'vscode-languageclient/browser';
export interface ConnectionConfig {
options: ConnectionConfigOptions;
diff --git a/packages/client/src/wrapper/lcwrapper.ts b/packages/client/src/wrapper/lcwrapper.ts
index 54fecd084..092ccbe99 100644
--- a/packages/client/src/wrapper/lcwrapper.ts
+++ b/packages/client/src/wrapper/lcwrapper.ts
@@ -7,8 +7,8 @@ import { LogLevel } from '@codingame/monaco-vscode-api';
import { ConsoleLogger, type ILogger } from '@codingame/monaco-vscode-log-service-override';
import { MonacoLanguageClient, MonacoLanguageClientWithProposedFeatures } from 'monaco-languageclient';
import { createUrl, type WorkerConfigOptionsDirect, type WorkerConfigOptionsParams } from 'monaco-languageclient/common';
-import { CloseAction, ErrorAction, MessageTransports, State } from 'vscode-languageclient/browser.js';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver-protocol/browser.js';
+import { CloseAction, ErrorAction, MessageTransports, State } from 'vscode-languageclient/browser';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver-protocol/browser';
import { toSocket, WebSocketMessageReader, WebSocketMessageWriter } from 'vscode-ws-jsonrpc';
import type { LanguageClientConfig, LanguageClientRestartOptions } from './lcconfig.js';
diff --git a/packages/client/test/support/helper.ts b/packages/client/test/support/helper.ts
index 4c3187bda..0d9f23dfd 100644
--- a/packages/client/test/support/helper.ts
+++ b/packages/client/test/support/helper.ts
@@ -7,7 +7,7 @@ import type { CodeResources, EditorAppConfig } from 'monaco-languageclient/edito
import type { LanguageClientConfig } from 'monaco-languageclient/lcwrapper';
import type { MonacoVscodeApiConfig, OverallConfigType, ViewsConfigTypes } from 'monaco-languageclient/vscodeApiWrapper';
import { configureDefaultWorkerFactory } from 'monaco-languageclient/workerFactory';
-import { MessageTransports } from 'vscode-languageclient/browser.js';
+import { MessageTransports } from 'vscode-languageclient/browser';
export const createMonacoEditorDiv = () => {
const div = document.createElement('div');
diff --git a/packages/client/test/wrapper/lcmanager.test.ts b/packages/client/test/wrapper/lcmanager.test.ts
index 97122af24..39335face 100644
--- a/packages/client/test/wrapper/lcmanager.test.ts
+++ b/packages/client/test/wrapper/lcmanager.test.ts
@@ -11,7 +11,7 @@ import { delayExecution } from 'monaco-languageclient/common';
import { LanguageClientManager } from 'monaco-languageclient/lcwrapper';
import { MonacoVscodeApiWrapper, type MonacoVscodeApiConfig } from 'monaco-languageclient/vscodeApiWrapper';
import { beforeAll, describe, expect, test } from 'vitest';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
import { createDefaultLcWorkerConfig, createMonacoEditorDiv } from '../support/helper.js';
describe('Test LanguageClientWrapper', () => {
diff --git a/packages/client/test/wrapper/lcwrapper.test.ts b/packages/client/test/wrapper/lcwrapper.test.ts
index c4b600494..831ef95a4 100644
--- a/packages/client/test/wrapper/lcwrapper.test.ts
+++ b/packages/client/test/wrapper/lcwrapper.test.ts
@@ -10,7 +10,7 @@ import type { ILogger } from '@codingame/monaco-vscode-log-service-override';
import { LanguageClientWrapper } from 'monaco-languageclient/lcwrapper';
import { MonacoVscodeApiWrapper, type MonacoVscodeApiConfig } from 'monaco-languageclient/vscodeApiWrapper';
import { beforeAll, describe, expect, test } from 'vitest';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
import {
createDefaultLcUnreachableUrlConfig,
createDefaultLcWorkerConfig,
diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md
index 9a9bf78be..b36de2de2 100644
--- a/packages/examples/CHANGELOG.md
+++ b/packages/examples/CHANGELOG.md
@@ -2,10 +2,12 @@
All notable changes to this npm module are documented in this file.
-## [2026.2.2] - unreleased
+## [2026.6.1] - unreleased
-- Updated all `@codingame/monaco-vscode` packages to `31.0.0`.
-- Updated to `monaco-languageclient@10.8.0` and `@typefox/monaco-editor-react@7.8.0`.
+- Updated all `@codingame/monaco-vscode` packages to `34.0.1`.
+- Updated to `monaco-languageclient@11.0.0-next.0` and `@typefox/monaco-editor-react@8.0.0-next.0`.
+- Updated `langium`to `4.3.0`.
+- Updated `vscode-languageclient` and `vscode-languageserver` to `10.0.0`, `vscode-languageserver-protocol` to `3.18.0` and `vscode-jsonrpc` to `9.0.0`.
- Dropped eslint and rely fully on oxlint.
## [2026.2.1] - 2026-02-04
diff --git a/packages/examples/package.json b/packages/examples/package.json
index ac6e06e15..199151f25 100644
--- a/packages/examples/package.json
+++ b/packages/examples/package.json
@@ -1,6 +1,6 @@
{
"name": "monaco-languageclient-examples",
- "version": "2026.2.1",
+ "version": "2026.6.1",
"description": "Monaco Language client examples",
"homepage": "https://github.com/TypeFox/monaco-languageclient/blob/main/packages/examples/README.md",
"bugs": {
@@ -80,57 +80,57 @@
"production:preview": "vite --config vite.config.preview.ts preview -d"
},
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-cpp-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-debug-service-override": "^31.0.1",
- "@codingame/monaco-vscode-environment-service-override": "^31.0.1",
- "@codingame/monaco-vscode-explorer-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-files-service-override": "^31.0.1",
- "@codingame/monaco-vscode-groovy-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-java-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-javascript-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-json-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-json-language-features-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-keybindings-service-override": "^31.0.1",
- "@codingame/monaco-vscode-lifecycle-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-outline-service-override": "^31.0.1",
- "@codingame/monaco-vscode-preferences-service-override": "^31.0.1",
- "@codingame/monaco-vscode-python-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-remote-agent-service-override": "^31.0.1",
- "@codingame/monaco-vscode-search-result-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-search-service-override": "^31.0.1",
- "@codingame/monaco-vscode-secret-storage-service-override": "^31.0.1",
- "@codingame/monaco-vscode-storage-service-override": "^31.0.1",
- "@codingame/monaco-vscode-testing-service-override": "^31.0.1",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-view-banner-service-override": "^31.0.1",
- "@codingame/monaco-vscode-view-status-bar-service-override": "^31.0.1",
- "@codingame/monaco-vscode-view-title-bar-service-override": "^31.0.1",
- "@codingame/monaco-vscode-views-service-override": "^31.0.1",
- "@typefox/monaco-editor-react": "~7.7.0",
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-cpp-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-debug-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-explorer-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-groovy-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-java-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-javascript-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-lifecycle-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-outline-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-preferences-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-python-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-remote-agent-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-search-result-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-search-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-secret-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-testing-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-view-banner-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-status-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-title-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "~8.0.0-next.0",
"cors": "~2.8.6",
"express": "~5.2.1",
"jszip": "~3.10.1",
- "langium": "~4.2.1",
- "monaco-languageclient": "~10.7.0",
- "pyright": "~1.1.409",
- "react": "~19.2.6",
- "react-dom": "~19.2.6",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "~11.0.0-next.0",
+ "pyright": "~1.1.410",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
"request-light": "~0.8.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
"vscode-json-languageservice": "~5.7.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
"vscode-languageserver-textdocument": "~1.0.12",
"vscode-uri": "~3.1.0",
- "vscode-ws-jsonrpc": "~3.5.0",
- "ws": "~8.20.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0",
+ "ws": "~8.21.0",
"wtd-core": "~4.0.1"
},
"devDependencies": {
@@ -138,13 +138,13 @@
"@types/emscripten": "~1.41.5",
"@types/express": "~5.0.6",
"@types/ws": "~8.18.1",
- "langium-cli": "~4.2.0",
+ "langium-cli": "~4.3.0",
"mini-coi": "~0.4.2",
- "vite-plugin-static-copy": "~4.1.0",
- "vscode-languageserver-types": "~3.17.5"
+ "vite-plugin-static-copy": "~4.1.1",
+ "vscode-languageserver-types": "~3.18.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/packages/examples/resources/debugger/package.json b/packages/examples/resources/debugger/package.json
index 9f5320209..abe4b9385 100644
--- a/packages/examples/resources/debugger/package.json
+++ b/packages/examples/resources/debugger/package.json
@@ -29,14 +29,14 @@
},
"dependencies": {
"express": "~4.21.2",
- "monaco-languageclient": "~10.5.0",
+ "monaco-languageclient": "~11.0.0-next.0",
"ws": "~8.18.0"
},
"devDependencies": {
"tsx": "~4.19.2"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/packages/examples/resources/json/coffeelint.json b/packages/examples/resources/json/coffeelint.json
new file mode 100644
index 000000000..382f2974e
--- /dev/null
+++ b/packages/examples/resources/json/coffeelint.json
@@ -0,0 +1,394 @@
+{
+ "$schema": "http://json-schema.org/draft-04/schema#",
+ "additionalProperties": true,
+ "definitions": {
+ "base": {
+ "type": "object",
+ "properties": {
+ "level": {
+ "description": "Determines the error level",
+ "type": "string",
+ "enum": ["error", "warn", "ignore"]
+ }
+ }
+ }
+ },
+ "id": "https://json.schemastore.org/coffeelint.json",
+ "properties": {
+ "arrow_spacing": {
+ "description": "This rule checks to see that there is spacing before and after the arrow operator that declares a function. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "braces_spacing": {
+ "description": "This rule checks to see that there is the proper spacing inside curly braces. The spacing amount is specified by `spaces`. The spacing amount for empty objects is specified by `empty_object_spaces`. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "empty_object_spaces": {
+ "type": "integer",
+ "enum": [0, 1]
+ },
+ "spaces": {
+ "type": "integer",
+ "enum": [0, 1]
+ }
+ }
+ },
+ "camel_case_classes": {
+ "description": "This rule mandates that all class names are CamelCased. Camel casing class names is a generally accepted way of distinguishing constructor functions - which require the `new` prefix to behave properly - from plain old functions. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "coffeescript_error": {
+ "description": "[default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "colon_assignment_spacing": {
+ "description": "This rule checks to see that there is spacing before and after the colon in a colon assignment (i.e., classes, objects). [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "spacing": {
+ "type": "object",
+ "properties": {
+ "left": {
+ "type": "integer",
+ "enum": [0, 1]
+ },
+ "right": {
+ "type": "integer",
+ "enum": [0, 1]
+ }
+ }
+ }
+ }
+ },
+ "cyclomatic_complexity": {
+ "description": "Examine the complexity of your application. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "value": {
+ "type": "integer"
+ }
+ }
+ },
+ "duplicate_key": {
+ "description": "Prevents defining duplicate keys in object literals and classes. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "empty_constructor_needs_parens": {
+ "description": "Requires constructors with no parameters to include the parens. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "ensure_comprehensions": {
+ "description": "This rule makes sure that parentheses are around comprehensions. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "eol_last": {
+ "description": "Checks that the file ends with a single newline. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "indentation": {
+ "description": "This rule imposes a standard number of spaces to be used for indentation. Since whitespace is significant in CoffeeScript, it's critical that a project chooses a standard indentation format and stays consistent. Other roads lead to darkness. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "value": {
+ "type": "integer"
+ }
+ }
+ },
+ "line_endings": {
+ "description": "This rule ensures your project uses only windows or unix line endings. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "value": {
+ "type": "string",
+ "enum": ["unix", "windows"]
+ }
+ }
+ },
+ "max_line_length": {
+ "description": "This rule imposes a maximum line length on your code. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "value": {
+ "type": "integer"
+ },
+ "limitComments": {
+ "type": "boolean"
+ }
+ }
+ },
+ "missing_fat_arrows": {
+ "description": "Warns when you use `this` inside a function that wasn't defined with a fat arrow. This rule does not apply to methods defined in a class, since they have `this` bound to the class instance (or the class itself, for class methods). [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "newlines_after_classes": {
+ "description": "Checks the number of newlines between classes and other code. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "value": {
+ "type": "integer"
+ }
+ }
+ },
+ "no_backticks": {
+ "description": "Backticks allow snippets of JavaScript to be embedded in CoffeeScript. While some folks consider backticks useful in a few niche circumstances, they should be avoided because so none of JavaScript's 'bad parts', like with and eval, sneak into CoffeeScript. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_debugger": {
+ "description": "This rule detects the `debugger` statement. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_empty_functions": {
+ "description": "Disallows declaring empty functions. The goal of this rule is that unintentional empty callbacks can be detected. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_empty_param_list": {
+ "description": "This rule prohibits empty parameter lists in function definitions. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_implicit_braces": {
+ "description": "This rule prohibits implicit braces when declaring object literals. Implicit braces can make code more difficult to understand, especially when used in combination with optional parenthesis. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "strict": {
+ "type": "boolean"
+ }
+ }
+ },
+ "no_implicit_parens": {
+ "description": "This rule prohibits implicit parens on function calls. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_interpolation_in_single_quotes": {
+ "description": "This rule prohibits string interpolation in a single quoted string. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_nested_string_interpolation": {
+ "description": "This rule warns about nested string interpolation, as it tends to make code harder to read and understand. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_plusplus": {
+ "description": "This rule forbids the increment and decrement arithmetic operators. Some people believe the `++` and `--` to be cryptic and the cause of bugs due to misunderstandings of their precedence rules. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_private_function_fat_arrows": {
+ "description": "Warns when you use the fat arrow for a private function inside a class definition scope. It is not necessary and it does not do anything. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_stand_alone_at": {
+ "description": "This rule checks that no stand alone `@` are in use, they are discouraged. [default level: ignore]",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_tabs": {
+ "description": "This rule forbids tabs in indentation. Enough said. [default level: error]",
+ "type": "object",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_this": {
+ "description": "This rule prohibits `this`. Use `@` instead. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_throwing_strings": {
+ "description": "This rule forbids throwing string literals or interpolations. While JavaScript (and CoffeeScript by extension) allow any expression to be thrown, it is best to only throw `Error` objects, because they contain valuable debugging information like the stack trace. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_trailing_semicolons": {
+ "description": "This rule prohibits trailing semicolons, since they are needless cruft in CoffeeScript. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_trailing_whitespace": {
+ "description": "This rule forbids trailing whitespace in your code, since it is needless cruft. [default level: error]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ],
+ "properties": {
+ "allowed_in_comments": {
+ "type": "boolean"
+ },
+ "allowed_in_empty_lines": {
+ "type": "boolean"
+ }
+ }
+ },
+ "no_unnecessary_double_quotes": {
+ "description": "This rule prohibits double quotes unless string interpolation is used or the string contains single quotes. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "no_unnecessary_fat_arrows": {
+ "description": "Disallows defining functions with fat arrows when `this` is not used within the function. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "non_empty_constructor_needs_parens": {
+ "description": "Requires constructors with parameters to include the parens. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "prefer_english_operator": {
+ "description": "This rule prohibits `&&`, `||`, `==`, `!=` and `!`. Use `and`, `or`, `is`, `isnt`, and `not` instead. `!!` (for converting to a boolean) is ignored. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "space_operators": {
+ "description": "This rule enforces that operators have space around them. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "spacing_after_comma": {
+ "description": "This rule checks to make sure you have a space after commas. [default level: ignore]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ },
+ "transform_messes_up_line_numbers": {
+ "description": "This rule detects when changes are made by transform function, and warns that line numbers are probably incorrect. [default level: warn]",
+ "allOf": [
+ {
+ "$ref": "#/definitions/base"
+ }
+ ]
+ }
+ },
+ "title": "JSON schema for coffeelint.json files",
+ "type": "object"
+}
diff --git a/packages/vscode-ws-jsonrpc/src/socket/index.ts b/packages/examples/src/browser/fake-worker.ts
similarity index 63%
rename from packages/vscode-ws-jsonrpc/src/socket/index.ts
rename to packages/examples/src/browser/fake-worker.ts
index 01dc4757a..eea56ae0d 100644
--- a/packages/vscode-ws-jsonrpc/src/socket/index.ts
+++ b/packages/examples/src/browser/fake-worker.ts
@@ -1,9 +1,5 @@
/* --------------------------------------------------------------------------------------------
- * Copyright (c) 2024 TypeFox and others.
+ * Copyright (c) 2026 TypeFox and others.
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-
-export * from './socket.js';
-export * from './reader.js';
-export * from './writer.js';
-export * from './connection.js';
+///
diff --git a/packages/examples/src/browser/main.ts b/packages/examples/src/browser/main.ts
index 9bcc033cd..ca4fe73e3 100644
--- a/packages/examples/src/browser/main.ts
+++ b/packages/examples/src/browser/main.ts
@@ -3,25 +3,23 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import * as vscode from 'vscode';
+import { LogLevel } from '@codingame/monaco-vscode-api';
+import '@codingame/monaco-vscode-json-default-extension';
import getKeybindingsServiceOverride from '@codingame/monaco-vscode-keybindings-service-override';
import '@codingame/monaco-vscode-theme-defaults-default-extension';
-import '@codingame/monaco-vscode-json-default-extension';
+import * as vscode from 'vscode';
import { getLanguageService, TextDocument } from 'vscode-json-languageservice';
-import { createConverter as createCodeConverter } from 'vscode-languageclient/lib/common/codeConverter.js';
-import { createConverter as createProtocolConverter } from 'vscode-languageclient/lib/common/protocolConverter.js';
-import { LogLevel } from '@codingame/monaco-vscode-api';
import '../../resources/vsix/github-vscode-theme.vsix';
+import coffeelintJson from '../../resources/json/coffeelint.json?raw';
+import { MonacoLanguageClient } from 'monaco-languageclient';
import { EditorApp, type EditorAppConfig } from 'monaco-languageclient/editorApp';
-import { configureDefaultWorkerFactory } from 'monaco-languageclient/workerFactory';
import { MonacoVscodeApiWrapper, type MonacoVscodeApiConfig } from 'monaco-languageclient/vscodeApiWrapper';
+import { configureDefaultWorkerFactory } from 'monaco-languageclient/workerFactory';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver-protocol/browser';
export const runBrowserEditor = async () => {
- const codeConverter = createCodeConverter();
- const protocolConverter = createProtocolConverter(undefined, true, true);
-
let mainVscodeDocument: vscode.TextDocument | undefined;
const languageId = 'json';
const code = `{
@@ -64,6 +62,25 @@ export const runBrowserEditor = async () => {
const editorApp = new EditorApp(editorAppConfig);
+ // create a fake worker and a Language Client instance to get access
+ // to the converters. It became required after update from vscode-languageclient v9 to v10
+ const worker = new Worker(new URL('./fake-worker.ts', import.meta.url), {
+ type: 'module',
+ name: 'Fake LS'
+ });
+ const messageTransports = {
+ reader: new BrowserMessageReader(worker),
+ writer: new BrowserMessageWriter(worker)
+ };
+ const lc = new MonacoLanguageClient({
+ id: 'test',
+ name: 'test',
+ messageTransports,
+ clientOptions: {}
+ });
+ const c2p = lc.code2ProtocolConverter;
+ const p2c = lc.protocol2CodeConverter;
+
vscode.workspace.onDidOpenTextDocument((_event) => {
mainVscodeDocument = _event;
});
@@ -72,19 +89,14 @@ export const runBrowserEditor = async () => {
return TextDocument.create(vscodeDocument.uri.toString(), vscodeDocument.languageId, vscodeDocument.version, vscodeDocument.getText());
};
- const resolveSchema = (url: string): Promise => {
- const promise = new Promise((resolve, reject) => {
- const xhr = new XMLHttpRequest();
- xhr.onload = () => resolve(xhr.responseText);
- xhr.onerror = () => reject(xhr.statusText);
- xhr.open('GET', url, true);
- xhr.send();
- });
- return promise;
- };
-
+ const jsonSchemaUri = 'http://json.schemastore.org/coffeelint';
const jsonService = getLanguageService({
- schemaRequestService: resolveSchema
+ schemaRequestService: async (uri: string): Promise => {
+ if (uri === jsonSchemaUri) {
+ return Promise.resolve(coffeelintJson);
+ }
+ return Promise.reject(`Unable to load schema at: ${uri}`);
+ }
});
const pendingValidationRequests = new Map();
@@ -92,20 +104,20 @@ export const runBrowserEditor = async () => {
async provideCompletionItems(vscodeDocument, position, _token, _context) {
const document = createDocument(vscodeDocument);
const jsonDocument = jsonService.parseJSONDocument(document);
- const completionList = await jsonService.doComplete(document, codeConverter.asPosition(position), jsonDocument);
- return protocolConverter.asCompletionResult(completionList);
+ const completionList = await jsonService.doComplete(document, c2p.asPosition(position), jsonDocument);
+ return p2c.asCompletionResult(completionList);
},
async resolveCompletionItem(item, _token) {
- return await jsonService.doResolve(codeConverter.asCompletionItem(item)).then((result) => protocolConverter.asCompletionItem(result));
+ return await jsonService.doResolve(c2p.asCompletionItem(item)).then((result) => p2c.asCompletionItem(result));
}
});
vscode.languages.registerDocumentRangeFormattingEditProvider(languageId, {
provideDocumentRangeFormattingEdits(vscodeDocument, range, options, _token) {
const document = createDocument(vscodeDocument);
- const edits = jsonService.format(document, codeConverter.asRange(range), codeConverter.asFormattingOptions(options, {}));
- return protocolConverter.asTextEdits(edits);
+ const edits = jsonService.format(document, c2p.asRange(range), c2p.asFormattingOptions(options, {}));
+ return p2c.asTextEdits(edits);
}
});
@@ -113,7 +125,7 @@ export const runBrowserEditor = async () => {
provideDocumentSymbols(vscodeDocument, _token) {
const document = createDocument(vscodeDocument);
const jsonDocument = jsonService.parseJSONDocument(document);
- return protocolConverter.asSymbolInformations(jsonService.findDocumentSymbols(document, jsonDocument));
+ return p2c.asSymbolInformations(jsonService.findDocumentSymbols(document, jsonDocument));
}
});
@@ -121,8 +133,8 @@ export const runBrowserEditor = async () => {
async provideHover(vscodeDocument, position, _token) {
const document = createDocument(vscodeDocument);
const jsonDocument = jsonService.parseJSONDocument(document);
- return await jsonService.doHover(document, codeConverter.asPosition(position), jsonDocument).then((hover) => {
- return protocolConverter.asHover(hover)!;
+ return await jsonService.doHover(document, c2p.asPosition(position), jsonDocument).then((hover) => {
+ return p2c.asHover(hover)!;
});
}
});
@@ -156,7 +168,7 @@ export const runBrowserEditor = async () => {
const jsonDocument = jsonService.parseJSONDocument(document);
jsonService.doValidation(document, jsonDocument).then(async (pDiagnostics) => {
- const diagnostics = await protocolConverter.asDiagnostics(pDiagnostics);
+ const diagnostics = await p2c.asDiagnostics(pDiagnostics);
diagnosticCollection.set(vscode.Uri.parse(codeUri), diagnostics);
});
};
diff --git a/packages/examples/src/clangd/worker/clangd-server.ts b/packages/examples/src/clangd/worker/clangd-server.ts
index 956450f24..eaba87cf4 100644
--- a/packages/examples/src/clangd/worker/clangd-server.ts
+++ b/packages/examples/src/clangd/worker/clangd-server.ts
@@ -7,7 +7,7 @@
import 'emscripten';
import JSZip from 'jszip';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageserver/browser';
import { ComChannelEndpoint, type ComRouter, RawPayload, WorkerMessage } from 'wtd-core';
import clangdConfig from '../../../resources/clangd/workspace/.clangd?raw';
import { WORKSPACE_PATH } from '../definitions.js';
diff --git a/packages/examples/src/common/node/server-commons.ts b/packages/examples/src/common/node/server-commons.ts
index f30cda104..efb7621bb 100644
--- a/packages/examples/src/common/node/server-commons.ts
+++ b/packages/examples/src/common/node/server-commons.ts
@@ -2,21 +2,23 @@
* Copyright (c) 2024 TypeFox and others.
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import { WebSocketServer, type ServerOptions } from 'ws';
+import * as cp from 'node:child_process';
import { IncomingMessage, Server } from 'node:http';
import { Socket } from 'node:net';
import { dirname } from 'node:path';
import { fileURLToPath, URL } from 'node:url';
-import * as cp from 'node:child_process';
-import { type IWebSocket, WebSocketMessageReader, WebSocketMessageWriter } from 'vscode-ws-jsonrpc';
-import { createConnection, createServerProcess, forward } from 'vscode-ws-jsonrpc/server';
import {
- Message,
InitializeRequest,
+ Message,
type InitializeParams,
type RequestMessage,
type ResponseMessage
} from 'vscode-languageserver-protocol';
+import { createConnection, forward, WebSocketMessageReader, WebSocketMessageWriter } from 'vscode-ws-jsonrpc';
+import { createServerProcess } from 'vscode-ws-jsonrpc/server';
+import type { IWebSocket } from 'vscode-ws-jsonrpc';
+
+import { WebSocketServer, type ServerOptions } from 'ws';
export interface LanguageServerRunConfig {
serverName: string;
diff --git a/packages/examples/src/json/server/json-server.ts b/packages/examples/src/json/server/json-server.ts
index eb8c0810d..046206326 100644
--- a/packages/examples/src/json/server/json-server.ts
+++ b/packages/examples/src/json/server/json-server.ts
@@ -6,13 +6,7 @@ import { readFile } from 'node:fs';
import requestLight, { type XHRResponse } from 'request-light';
import * as URI from 'vscode-uri';
import 'vscode-ws-jsonrpc';
-import {
- createConnection,
- type _Connection,
- TextDocuments,
- type DocumentSymbolParams,
- ProposedFeatures
-} from 'vscode-languageserver/lib/node/main.js';
+import { createConnection, type _Connection, TextDocuments, type DocumentSymbolParams, ProposedFeatures } from 'vscode-languageserver/node';
import {
Diagnostic,
Command,
diff --git a/packages/examples/src/langium/langium-dsl/config/langiumDslConfig.ts b/packages/examples/src/langium/langium-dsl/config/langiumDslConfig.ts
index f8dbfcf87..9f0477c73 100644
--- a/packages/examples/src/langium/langium-dsl/config/langiumDslConfig.ts
+++ b/packages/examples/src/langium/langium-dsl/config/langiumDslConfig.ts
@@ -15,7 +15,7 @@ import type { LanguageClientConfig } from 'monaco-languageclient/lcwrapper';
import { type MonacoVscodeApiConfig, type OverallConfigType } from 'monaco-languageclient/vscodeApiWrapper';
import { configureDefaultWorkerFactory } from 'monaco-languageclient/workerFactory';
import * as vscode from 'vscode';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
import langiumGrammarLangium from '../../../../resources/langium/langium-dsl/langium-grammar.langium?raw';
import langiumTypesLangium from '../../../../resources/langium/langium-dsl/langium-types.langium?raw';
import type { ExampleAppConfig } from '../../../common/client/utils.js';
diff --git a/packages/examples/src/langium/langium-dsl/worker/langium-server.ts b/packages/examples/src/langium/langium-dsl/worker/langium-server.ts
index 0b01c1915..1341340ff 100644
--- a/packages/examples/src/langium/langium-dsl/worker/langium-server.ts
+++ b/packages/examples/src/langium/langium-dsl/worker/langium-server.ts
@@ -7,7 +7,7 @@
import { EmptyFileSystem } from 'langium';
import { type DefaultSharedModuleContext, startLanguageServer } from 'langium/lsp';
import { createLangiumGrammarServices } from 'langium/grammar';
-import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser';
/* browser specific setup code */
const messageReader = new BrowserMessageReader(self as DedicatedWorkerGlobalScope);
diff --git a/packages/examples/src/langium/statemachine/ls/generated/ast.ts b/packages/examples/src/langium/statemachine/ls/generated/ast.ts
index 4811f23e2..732001e5a 100644
--- a/packages/examples/src/langium/statemachine/ls/generated/ast.ts
+++ b/packages/examples/src/langium/statemachine/ls/generated/ast.ts
@@ -1,9 +1,9 @@
/******************************************************************************
- * This file was generated by langium-cli 4.1.0.
+ * This file was generated by langium-cli 4.3.0-next.a52b426.
* DO NOT EDIT MANUALLY!
******************************************************************************/
-/* oxlint-disable */
+/* eslint-disable */
import * as langium from 'langium';
export const StatemachineTerminals = {
@@ -162,14 +162,16 @@ export class StatemachineAstReflection extends langium.AbstractAstReflection {
actions: {
name: State.actions,
defaultValue: [],
- referenceType: Command.$type
+ referenceType: Command.$type,
+ optional: true
},
name: {
name: State.name
},
transitions: {
name: State.transitions,
- defaultValue: []
+ defaultValue: [],
+ optional: true
}
},
superTypes: []
@@ -179,11 +181,13 @@ export class StatemachineAstReflection extends langium.AbstractAstReflection {
properties: {
commands: {
name: Statemachine.commands,
- defaultValue: []
+ defaultValue: [],
+ optional: true
},
events: {
name: Statemachine.events,
- defaultValue: []
+ defaultValue: [],
+ optional: true
},
init: {
name: Statemachine.init,
@@ -194,7 +198,8 @@ export class StatemachineAstReflection extends langium.AbstractAstReflection {
},
states: {
name: Statemachine.states,
- defaultValue: []
+ defaultValue: [],
+ optional: true
}
},
superTypes: []
diff --git a/packages/examples/src/langium/statemachine/ls/generated/grammar.ts b/packages/examples/src/langium/statemachine/ls/generated/grammar.ts
index 111739aab..ec8215375 100644
--- a/packages/examples/src/langium/statemachine/ls/generated/grammar.ts
+++ b/packages/examples/src/langium/statemachine/ls/generated/grammar.ts
@@ -1,5 +1,5 @@
/******************************************************************************
- * This file was generated by langium-cli 4.1.0.
+ * This file was generated by langium-cli 4.3.0-next.a52b426.
* DO NOT EDIT MANUALLY!
******************************************************************************/
diff --git a/packages/examples/src/langium/statemachine/ls/generated/module.ts b/packages/examples/src/langium/statemachine/ls/generated/module.ts
index ecea12659..84bcb2011 100644
--- a/packages/examples/src/langium/statemachine/ls/generated/module.ts
+++ b/packages/examples/src/langium/statemachine/ls/generated/module.ts
@@ -1,5 +1,5 @@
/******************************************************************************
- * This file was generated by langium-cli 4.1.0.
+ * This file was generated by langium-cli 4.3.0-next.a52b426.
* DO NOT EDIT MANUALLY!
******************************************************************************/
diff --git a/packages/examples/src/langium/statemachine/main-react.tsx b/packages/examples/src/langium/statemachine/main-react.tsx
index cc3ba03ab..6f3acea15 100644
--- a/packages/examples/src/langium/statemachine/main-react.tsx
+++ b/packages/examples/src/langium/statemachine/main-react.tsx
@@ -9,7 +9,7 @@ import { MonacoEditorReactComp } from '@typefox/monaco-editor-react';
import type { TextContents } from 'monaco-languageclient/editorApp';
import React, { StrictMode, useState } from 'react';
import ReactDOM from 'react-dom/client';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
import text from '../../../resources/langium/statemachine/example.statemachine?raw';
import { disableElement } from '../../common/client/utils.js';
import { createLangiumGlobalConfig } from './config/statemachineConfig.js';
diff --git a/packages/examples/src/langium/statemachine/main.ts b/packages/examples/src/langium/statemachine/main.ts
index 6a915b3ee..1c0e3ae3f 100644
--- a/packages/examples/src/langium/statemachine/main.ts
+++ b/packages/examples/src/langium/statemachine/main.ts
@@ -4,7 +4,7 @@
* ------------------------------------------------------------------------------------------ */
import * as vscode from 'vscode';
-import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter } from 'vscode-languageclient/browser';
import { EditorApp } from 'monaco-languageclient/editorApp';
import { createLangiumGlobalConfig } from './config/statemachineConfig.js';
import text from '../../../resources/langium/statemachine/example.statemachine?raw';
diff --git a/packages/examples/src/langium/statemachine/worker/statemachine-server-start.ts b/packages/examples/src/langium/statemachine/worker/statemachine-server-start.ts
index 0050d01f7..f80ea699f 100644
--- a/packages/examples/src/langium/statemachine/worker/statemachine-server-start.ts
+++ b/packages/examples/src/langium/statemachine/worker/statemachine-server-start.ts
@@ -7,7 +7,7 @@
import { EmptyFileSystem } from 'langium';
import { startLanguageServer } from 'langium/lsp';
-import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser';
import { createStatemachineServices } from '../ls/statemachine-module.js';
let messageReader: BrowserMessageReader | undefined;
diff --git a/packages/examples/src/multi/config.ts b/packages/examples/src/multi/config.ts
index 005cd6b56..a3aef6944 100644
--- a/packages/examples/src/multi/config.ts
+++ b/packages/examples/src/multi/config.ts
@@ -5,7 +5,7 @@
import * as vscode from 'vscode';
import type { LanguageClientConfig } from 'monaco-languageclient/lcwrapper';
-import type { BaseLanguageClient } from 'vscode-languageclient/browser.js';
+import type { BaseLanguageClient } from 'vscode-languageclient/browser';
export const createJsonLanguageClientConfig: () => LanguageClientConfig = () => {
return {
diff --git a/packages/examples/src/python/client/config.ts b/packages/examples/src/python/client/config.ts
index 17815a4ce..b8c07769d 100644
--- a/packages/examples/src/python/client/config.ts
+++ b/packages/examples/src/python/client/config.ts
@@ -38,7 +38,7 @@ import { createDefaultLocaleConfiguration } from 'monaco-languageclient/vscodeAp
import { defaultHtmlAugmentationInstructions, defaultViewsInit, type MonacoVscodeApiConfig } from 'monaco-languageclient/vscodeApiWrapper';
import { configureDefaultWorkerFactory } from 'monaco-languageclient/workerFactory';
import * as vscode from 'vscode';
-import type { BaseLanguageClient } from 'vscode-languageclient/browser.js';
+import type { BaseLanguageClient } from 'vscode-languageclient/browser';
import { toSocket, WebSocketMessageReader, WebSocketMessageWriter } from 'vscode-ws-jsonrpc';
import badPyCode from '../../../resources/python/bad.py?raw';
import helloPyCode from '../../../resources/python/hello.py?raw';
diff --git a/packages/vscode-ws-jsonrpc/CHANGELOG.md b/packages/vscode-ws-jsonrpc/CHANGELOG.md
index 00bcc1a22..acd8a7f69 100644
--- a/packages/vscode-ws-jsonrpc/CHANGELOG.md
+++ b/packages/vscode-ws-jsonrpc/CHANGELOG.md
@@ -2,9 +2,10 @@
All notable changes to this npm module are documented in this file.
-## [3.5.1] - unreleased
+## [4.0.0-next.0] - unreleased
- Dropped eslint and rely fully on oxlint.
+- Updatde `vscode-jsonrpc` to `9.0.0`.
## [3.5.0] - 2025-08-11
diff --git a/packages/vscode-ws-jsonrpc/package.json b/packages/vscode-ws-jsonrpc/package.json
index d7d97f191..a3534f5f8 100644
--- a/packages/vscode-ws-jsonrpc/package.json
+++ b/packages/vscode-ws-jsonrpc/package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-ws-jsonrpc",
- "version": "3.5.0",
+ "version": "4.0.0-next.0",
"description": "VSCode JSON RPC over WebSocket",
"homepage": "https://github.com/TypeFox/monaco-languageclient/blob/main/packages/vscode-ws-jsonrpc/README.md",
"bugs": {
@@ -36,11 +36,6 @@
"types": "./lib/server/index.d.ts",
"import": "./lib/server/index.js",
"default": "./lib/server/index.js"
- },
- "./socket": {
- "types": "./lib/socket/index.d.ts",
- "import": "./lib/socket/index.js",
- "default": "./lib/socket/index.js"
}
},
"scripts": {
@@ -50,10 +45,10 @@
"build": "npm run build:msg && npm run clean && npm run compile"
},
"dependencies": {
- "vscode-jsonrpc": "~8.2.1"
+ "vscode-jsonrpc": "~9.0.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/packages/vscode-ws-jsonrpc/src/server/connection.ts b/packages/vscode-ws-jsonrpc/src/common/connection.ts
similarity index 80%
rename from packages/vscode-ws-jsonrpc/src/server/connection.ts
rename to packages/vscode-ws-jsonrpc/src/common/connection.ts
index 141d0d438..018ee786d 100644
--- a/packages/vscode-ws-jsonrpc/src/server/connection.ts
+++ b/packages/vscode-ws-jsonrpc/src/common/connection.ts
@@ -3,15 +3,9 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import { MessageReader, MessageWriter, Disposable, Message } from 'vscode-jsonrpc';
-import { DisposableCollection } from '../disposable.js';
-
-export interface IConnection extends Disposable {
- readonly reader: MessageReader;
- readonly writer: MessageWriter;
- forward(to: IConnection, map?: (message: Message) => Message): void;
- onClose(callback: () => void): Disposable;
-}
+import { Disposable, Message, MessageReader, MessageWriter } from 'vscode-jsonrpc';
+import { DisposableCollection } from './disposable.js';
+import type { IConnection } from './types.js';
export function forward(clientConnection: IConnection, serverConnection: IConnection, map?: (message: Message) => Message): void {
clientConnection.forward(serverConnection, map);
diff --git a/packages/vscode-ws-jsonrpc/src/disposable.ts b/packages/vscode-ws-jsonrpc/src/common/disposable.ts
similarity index 100%
rename from packages/vscode-ws-jsonrpc/src/disposable.ts
rename to packages/vscode-ws-jsonrpc/src/common/disposable.ts
diff --git a/packages/vscode-ws-jsonrpc/src/logger.ts b/packages/vscode-ws-jsonrpc/src/common/logger.ts
similarity index 100%
rename from packages/vscode-ws-jsonrpc/src/logger.ts
rename to packages/vscode-ws-jsonrpc/src/common/logger.ts
diff --git a/packages/vscode-ws-jsonrpc/src/socket/socket.ts b/packages/vscode-ws-jsonrpc/src/common/types.ts
similarity index 70%
rename from packages/vscode-ws-jsonrpc/src/socket/socket.ts
rename to packages/vscode-ws-jsonrpc/src/common/types.ts
index 030216876..5d71ec153 100644
--- a/packages/vscode-ws-jsonrpc/src/socket/socket.ts
+++ b/packages/vscode-ws-jsonrpc/src/common/types.ts
@@ -3,8 +3,14 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import { Disposable } from 'vscode-jsonrpc';
-import type { IConnection } from '../server/connection.js';
+import { Disposable, Message, MessageReader, MessageWriter } from 'vscode-jsonrpc';
+
+export interface IConnection extends Disposable {
+ readonly reader: MessageReader;
+ readonly writer: MessageWriter;
+ forward(to: IConnection, map?: (message: Message) => Message): void;
+ onClose(callback: () => void): Disposable;
+}
export interface IWebSocket extends Disposable {
send(content: string): void;
diff --git a/packages/vscode-ws-jsonrpc/src/connection.ts b/packages/vscode-ws-jsonrpc/src/connection.ts
deleted file mode 100644
index c89fe88d4..000000000
--- a/packages/vscode-ws-jsonrpc/src/connection.ts
+++ /dev/null
@@ -1,40 +0,0 @@
-/* --------------------------------------------------------------------------------------------
- * Copyright (c) 2024 TypeFox and others.
- * Licensed under the MIT License. See LICENSE in the package root for license information.
- * ------------------------------------------------------------------------------------------ */
-
-import type { MessageConnection, Logger } from 'vscode-jsonrpc';
-import { createWebSocketConnection } from './socket/connection.js';
-import type { IWebSocket } from './socket/socket.js';
-import { ConsoleLogger } from './logger.js';
-
-export function listen(options: { webSocket: WebSocket; logger?: Logger; onConnection: (connection: MessageConnection) => void }) {
- const { webSocket, onConnection } = options;
- const logger = options.logger ?? new ConsoleLogger();
- webSocket.onopen = () => {
- const socket = toSocket(webSocket);
- const connection = createWebSocketConnection(socket, logger);
- onConnection(connection);
- };
-}
-
-export function toSocket(webSocket: WebSocket): IWebSocket {
- return {
- send: (content) => webSocket.send(content),
- onMessage: (cb) => {
- webSocket.onmessage = (event) => cb(event.data);
- },
- onError: (cb) => {
- // oxlint-disable-next-line @typescript-eslint/no-explicit-any
- webSocket.onerror = (event: any) => {
- if (Object.hasOwn(event, 'message')) {
- cb(event.message);
- }
- };
- },
- onClose: (cb) => {
- webSocket.onclose = (event) => cb(event.code, event.reason);
- },
- dispose: () => webSocket.close()
- };
-}
diff --git a/packages/vscode-ws-jsonrpc/src/index.ts b/packages/vscode-ws-jsonrpc/src/index.ts
index 364d3adbb..bd655ac17 100644
--- a/packages/vscode-ws-jsonrpc/src/index.ts
+++ b/packages/vscode-ws-jsonrpc/src/index.ts
@@ -3,7 +3,10 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-export * from './disposable.js';
-export * from './socket/index.js';
-export * from './logger.js';
-export * from './connection.js';
+export * from './common/connection.js';
+export * from './common/disposable.js';
+export * from './common/logger.js';
+export * from './common/types.js';
+export * from './socket/connection.js';
+export * from './socket/reader.js';
+export * from './socket/writer.js';
diff --git a/packages/vscode-ws-jsonrpc/src/server/index.ts b/packages/vscode-ws-jsonrpc/src/server/index.ts
index feb95c39d..738350e59 100644
--- a/packages/vscode-ws-jsonrpc/src/server/index.ts
+++ b/packages/vscode-ws-jsonrpc/src/server/index.ts
@@ -3,5 +3,63 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-export * from './connection.js';
-export * from './launch.js';
+import * as cp from 'node:child_process';
+import * as net from 'node:net';
+import * as stream from 'node:stream';
+import { SocketMessageReader, SocketMessageWriter, StreamMessageReader, StreamMessageWriter } from 'vscode-jsonrpc/node';
+import {
+ createConnection,
+ type IConnection,
+ type IWebSocket,
+ type IWebSocketConnection,
+ WebSocketMessageReader,
+ WebSocketMessageWriter
+} from 'vscode-ws-jsonrpc';
+
+export function createServerProcess(
+ serverName: string,
+ command: string,
+ args?: string[],
+ options?: cp.SpawnOptions
+): IConnection | undefined {
+ const serverProcess = cp.spawn(command, args ?? [], options ?? {});
+ serverProcess.on('error', (error) => console.error(`Launching ${serverName} Server failed: ${error}`));
+ if (serverProcess.stderr !== null) {
+ serverProcess.stderr.on('data', (data) => console.error(`${serverName} Server: ${data}`));
+ }
+ return createProcessStreamConnection(serverProcess);
+}
+
+export function createWebSocketConnection(socket: IWebSocket): IWebSocketConnection {
+ const reader = new WebSocketMessageReader(socket);
+ const writer = new WebSocketMessageWriter(socket);
+ return createConnection(reader, writer, () => socket.dispose(), { socket });
+}
+
+export function createProcessSocketConnection(
+ process: cp.ChildProcess,
+ outSocket: net.Socket,
+ inSocket: net.Socket = outSocket
+): IConnection {
+ return createSocketConnection(outSocket, inSocket, () => process.kill());
+}
+
+export function createSocketConnection(outSocket: net.Socket, inSocket: net.Socket, onDispose: () => void): IConnection {
+ const reader = new SocketMessageReader(outSocket);
+ const writer = new SocketMessageWriter(inSocket);
+ return createConnection(reader, writer, onDispose);
+}
+
+export function createProcessStreamConnection(process: cp.ChildProcess): IConnection | undefined {
+ if (process.stdout !== null && process.stdin !== null) {
+ return createStreamConnection(process.stdout, process.stdin, () => process.kill());
+ } else {
+ return undefined;
+ }
+}
+
+export function createStreamConnection(outStream: stream.Readable, inStream: stream.Writable, onDispose: () => void): IConnection {
+ const reader = new StreamMessageReader(outStream);
+ const writer = new StreamMessageWriter(inStream);
+ return createConnection(reader, writer, onDispose);
+}
diff --git a/packages/vscode-ws-jsonrpc/src/server/launch.ts b/packages/vscode-ws-jsonrpc/src/server/launch.ts
deleted file mode 100644
index f5e926394..000000000
--- a/packages/vscode-ws-jsonrpc/src/server/launch.ts
+++ /dev/null
@@ -1,61 +0,0 @@
-/* --------------------------------------------------------------------------------------------
- * Copyright (c) 2024 TypeFox and others.
- * Licensed under the MIT License. See LICENSE in the package root for license information.
- * ------------------------------------------------------------------------------------------ */
-
-import * as net from 'node:net';
-import * as stream from 'node:stream';
-import * as cp from 'node:child_process';
-import { StreamMessageReader, StreamMessageWriter, SocketMessageReader, SocketMessageWriter } from 'vscode-jsonrpc/node.js';
-import { type IConnection, createConnection } from './connection.js';
-import type { IWebSocket, IWebSocketConnection } from '../socket/socket.js';
-import { WebSocketMessageReader } from '../socket/reader.js';
-import { WebSocketMessageWriter } from '../socket/writer.js';
-
-export function createServerProcess(
- serverName: string,
- command: string,
- args?: string[],
- options?: cp.SpawnOptions
-): IConnection | undefined {
- const serverProcess = cp.spawn(command, args ?? [], options ?? {});
- serverProcess.on('error', (error) => console.error(`Launching ${serverName} Server failed: ${error}`));
- if (serverProcess.stderr !== null) {
- serverProcess.stderr.on('data', (data) => console.error(`${serverName} Server: ${data}`));
- }
- return createProcessStreamConnection(serverProcess);
-}
-
-export function createWebSocketConnection(socket: IWebSocket): IWebSocketConnection {
- const reader = new WebSocketMessageReader(socket);
- const writer = new WebSocketMessageWriter(socket);
- return createConnection(reader, writer, () => socket.dispose(), { socket });
-}
-
-export function createProcessSocketConnection(
- process: cp.ChildProcess,
- outSocket: net.Socket,
- inSocket: net.Socket = outSocket
-): IConnection {
- return createSocketConnection(outSocket, inSocket, () => process.kill());
-}
-
-export function createSocketConnection(outSocket: net.Socket, inSocket: net.Socket, onDispose: () => void): IConnection {
- const reader = new SocketMessageReader(outSocket);
- const writer = new SocketMessageWriter(inSocket);
- return createConnection(reader, writer, onDispose);
-}
-
-export function createProcessStreamConnection(process: cp.ChildProcess): IConnection | undefined {
- if (process.stdout !== null && process.stdin !== null) {
- return createStreamConnection(process.stdout, process.stdin, () => process.kill());
- } else {
- return undefined;
- }
-}
-
-export function createStreamConnection(outStream: stream.Readable, inStream: stream.Writable, onDispose: () => void): IConnection {
- const reader = new StreamMessageReader(outStream);
- const writer = new StreamMessageWriter(inStream);
- return createConnection(reader, writer, onDispose);
-}
diff --git a/packages/vscode-ws-jsonrpc/src/socket/connection.ts b/packages/vscode-ws-jsonrpc/src/socket/connection.ts
index 71eaf02cf..91c61a3e6 100644
--- a/packages/vscode-ws-jsonrpc/src/socket/connection.ts
+++ b/packages/vscode-ws-jsonrpc/src/socket/connection.ts
@@ -3,9 +3,8 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-import type { MessageConnection, Logger } from 'vscode-jsonrpc';
-import { createMessageConnection } from 'vscode-jsonrpc';
-import type { IWebSocket } from './socket.js';
+import { createMessageConnection, type Logger, type MessageConnection } from 'vscode-jsonrpc';
+import { ConsoleLogger, type IWebSocket } from 'vscode-ws-jsonrpc';
import { WebSocketMessageReader } from './reader.js';
import { WebSocketMessageWriter } from './writer.js';
@@ -16,3 +15,34 @@ export function createWebSocketConnection(socket: IWebSocket, logger: Logger): M
connection.onClose(() => connection.dispose());
return connection;
}
+
+export function listen(options: { webSocket: WebSocket; logger?: Logger; onConnection: (connection: MessageConnection) => void }) {
+ const { webSocket, onConnection } = options;
+ const logger = options.logger ?? new ConsoleLogger();
+ webSocket.onopen = () => {
+ const socket = toSocket(webSocket);
+ const connection = createWebSocketConnection(socket, logger);
+ onConnection(connection);
+ };
+}
+
+export function toSocket(webSocket: WebSocket): IWebSocket {
+ return {
+ send: (content) => webSocket.send(content),
+ onMessage: (cb) => {
+ webSocket.onmessage = (event) => cb(event.data);
+ },
+ onError: (cb) => {
+ // oxlint-disable-next-line @typescript-eslint/no-explicit-any
+ webSocket.onerror = (event: any) => {
+ if (Object.hasOwn(event, 'message')) {
+ cb(event.message);
+ }
+ };
+ },
+ onClose: (cb) => {
+ webSocket.onclose = (event) => cb(event.code, event.reason);
+ },
+ dispose: () => webSocket.close()
+ };
+}
diff --git a/packages/vscode-ws-jsonrpc/src/socket/reader.ts b/packages/vscode-ws-jsonrpc/src/socket/reader.ts
index 3c10ddf4c..319f925da 100644
--- a/packages/vscode-ws-jsonrpc/src/socket/reader.ts
+++ b/packages/vscode-ws-jsonrpc/src/socket/reader.ts
@@ -3,10 +3,8 @@
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */
-// TODO: Use environment-specific imports (vscode-jsonrpc/browser or vscode-jsonrpc/node)
-// when upgrading to vscode-jsonrpc@9.x.x-next.X which supports proper export maps
import { AbstractMessageReader, type DataCallback, Disposable, MessageReader } from 'vscode-jsonrpc';
-import type { IWebSocket } from './socket.js';
+import type { IWebSocket } from 'vscode-ws-jsonrpc';
export class WebSocketMessageReader extends AbstractMessageReader implements MessageReader {
protected readonly socket: IWebSocket;
diff --git a/packages/vscode-ws-jsonrpc/src/socket/writer.ts b/packages/vscode-ws-jsonrpc/src/socket/writer.ts
index eb50e6c7d..ccfa0112a 100644
--- a/packages/vscode-ws-jsonrpc/src/socket/writer.ts
+++ b/packages/vscode-ws-jsonrpc/src/socket/writer.ts
@@ -4,7 +4,7 @@
* ------------------------------------------------------------------------------------------ */
import { AbstractMessageWriter, Message, MessageWriter } from 'vscode-jsonrpc';
-import type { IWebSocket } from './socket.js';
+import type { IWebSocket } from 'vscode-ws-jsonrpc';
export class WebSocketMessageWriter extends AbstractMessageWriter implements MessageWriter {
protected errorCount = 0;
diff --git a/packages/vscode-ws-jsonrpc/tsconfig.src.json b/packages/vscode-ws-jsonrpc/tsconfig.src.json
index 567f6d89d..6de9d2197 100644
--- a/packages/vscode-ws-jsonrpc/tsconfig.src.json
+++ b/packages/vscode-ws-jsonrpc/tsconfig.src.json
@@ -1,6 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
+ // Workaround
+ "types": ["node"],
"noEmit": false,
"rootDir": "src",
"outDir": "lib",
diff --git a/packages/wrapper-react/CHANGELOG.md b/packages/wrapper-react/CHANGELOG.md
index f13e18819..22881c691 100644
--- a/packages/wrapper-react/CHANGELOG.md
+++ b/packages/wrapper-react/CHANGELOG.md
@@ -2,10 +2,11 @@
All notable changes to npm module [@typefox/monaco-editor-react](https://www.npmjs.com/package/@typefox/monaco-editor-react) are documented in this file.
-## [7.8.0] - unreleased
+## [8.0.0-next.0] - unreleased
-- Updated all `@codingame/monaco-vscode` packages to `31.0.0`.
-- Updated to `monaco-languageclient@10.8.0`.
+- Updated all `@codingame/monaco-vscode` packages to `34.0.1`.
+- Updated to `monaco-languageclient@11.0.0-next.0`.
+- Updated `vscode-languageclient` and `vscode-languageserver` to `10.0.0` and `vscode-languageserver-protocol` to `3.18.0`.
- Dropped eslint and rely fully on oxlint.
## [7.7.0] - 2026-02-04
diff --git a/packages/wrapper-react/package.json b/packages/wrapper-react/package.json
index e2fa5f12b..0af3f60ac 100644
--- a/packages/wrapper-react/package.json
+++ b/packages/wrapper-react/package.json
@@ -1,6 +1,6 @@
{
"name": "@typefox/monaco-editor-react",
- "version": "7.7.0",
+ "version": "8.0.0-next.0",
"description": "React component for Monaco-Editor and Monaco Languageclient",
"keywords": [
"monaco-editor",
@@ -43,17 +43,17 @@
"build": "npm run clean && npm run compile"
},
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "monaco-languageclient": "~10.7.0",
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "monaco-languageclient": "~11.0.0-next.0",
"react": ">=18.0.0 || <20.0.0",
- "vscode-languageclient": "~9.0.1"
+ "vscode-languageclient": "~10.0.0"
},
"devDependencies": {
"monaco-languageclient-examples": "../examples"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/packages/wrapper-react/src/index.tsx b/packages/wrapper-react/src/index.tsx
index c911ecf96..c18f20fdf 100644
--- a/packages/wrapper-react/src/index.tsx
+++ b/packages/wrapper-react/src/index.tsx
@@ -103,7 +103,7 @@ const kickQueue = () => {
await executeQueue();
stopQueue();
}
- }, queueIntervalMs);
+ }, queueIntervalMs) as unknown as number;
}
};
diff --git a/tsconfig.json b/tsconfig.json
index 50a1950f9..2fb7b7c8d 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,10 +1,9 @@
{
"compilerOptions": {
"target": "ES2022",
- "module": "node20",
+ "module": "nodenext",
"moduleResolution": "nodenext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
- // esModuleInterop=true sets allowSyntheticDefaultImports=true,
"esModuleInterop": true,
"resolveJsonModule": true,
// Enable project compilation
diff --git a/verify/angular/package-lock.json b/verify/angular/package-lock.json
index 0563c799f..5e64c4787 100644
--- a/verify/angular/package-lock.json
+++ b/verify/angular/package-lock.json
@@ -8,82 +8,135 @@
"name": "mlc-verify-angular",
"version": "0.0.0",
"dependencies": {
- "@angular/common": "^21.1.0",
- "@angular/compiler": "^21.1.0",
- "@angular/core": "^21.1.0",
- "@angular/platform-browser": "^21.1.0",
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-files-service-override": "^25.1.2",
- "@codingame/monaco-vscode-json-default-extension": "^25.1.2",
- "monaco-languageclient": "~10.7.0",
+ "@angular/common": "~22.0.1",
+ "@angular/compiler": "~22.0.1",
+ "@angular/core": "~22.0.1",
+ "@angular/platform-browser": "~22.0.1",
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "monaco-languageclient": "../../packages/client",
"rxjs": "~7.8.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "zone.js": "^0.16.0"
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "zone.js": "~0.16.2"
},
"devDependencies": {
- "@analogjs/vite-plugin-angular": "~2.2.3",
- "@angular/build": "^21.1.0",
- "@angular/cli": "^21.1.0",
- "@angular/compiler-cli": "^21.1.0",
+ "@analogjs/vite-plugin-angular": "~2.6.1",
+ "@angular/build": "~22.0.1",
+ "@angular/cli": "~22.0.1",
+ "@angular/compiler-cli": "~22.0.1",
"@codingame/esbuild-import-meta-url-plugin": "~1.0.3",
- "@types/node": "~24.10.10",
+ "@types/node": "~24.10.15",
"shx": "~0.4.0",
- "typescript": "~5.9.3",
- "vite": "~7.3.1"
+ "typescript": "~6.0.3",
+ "vite": "~8.0.16"
+ }
+ },
+ "../../packages/client": {
+ "name": "monaco-languageclient",
+ "version": "11.0.0-next.0",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-cs": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-de": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-es": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-fr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-it": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ja": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ko": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pl": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pt-br": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-qps-ploc": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ru": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-tr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hans": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hant": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-monarch-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-theme-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-workbench-service-override": "^34.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0"
+ },
+ "devDependencies": {
+ "@codingame/monaco-vscode-standalone-css-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-html-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-json-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-languages": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-typescript-language-features": "^34.0.1",
+ "monaco-languageclient-examples": "../examples"
+ },
+ "engines": {
+ "node": ">=22",
+ "npm": ">=10"
}
},
"node_modules/@algolia/abtesting": {
- "version": "1.12.2",
- "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.12.2.tgz",
- "integrity": "sha512-oWknd6wpfNrmRcH0vzed3UPX0i17o4kYLM5OMITyMVM2xLgaRbIafoxL0e8mcrNNb0iORCJA0evnNDKRYth5WQ==",
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.18.0.tgz",
+ "integrity": "sha512-8siuLG+FIns1AjZ/g2SDVwHz9S+ObacDQISEJvS8XsNei1zl3FXqfqQrBpmrG7ACWCyesXHbicMJtvRbg00FEw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-abtesting": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.46.2.tgz",
- "integrity": "sha512-oRSUHbylGIuxrlzdPA8FPJuwrLLRavOhAmFGgdAvMcX47XsyM+IOGa9tc7/K5SPvBqn4nhppOCEz7BrzOPWc4A==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.52.0.tgz",
+ "integrity": "sha512-wtwPgyPmO7b7sQPVgoK29c1VpfS08DnnJCmxX/oU1pV2DlMRJCzQcLN7JSloYpodyKHwM8+9wOzlAM0co3TDmA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-analytics": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.46.2.tgz",
- "integrity": "sha512-EPBN2Oruw0maWOF4OgGPfioTvd+gmiNwx0HmD9IgmlS+l75DatcBkKOPNJN+0z3wBQWUO5oq602ATxIfmTQ8bA==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.52.0.tgz",
+ "integrity": "sha512-9KY36bRl4AH7RjqSeDDOKnjsz4IxQFBEOB8/fWmEbdQe+Isbs5jGzVJu9NEPQ1Tgwxlf8Uf07Swj3jZyMNUZ2g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-common": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.46.2.tgz",
- "integrity": "sha512-Hj8gswSJNKZ0oyd0wWissqyasm+wTz1oIsv5ZmLarzOZAp3vFEda8bpDQ8PUhO+DfkbiLyVnAxsPe4cGzWtqkg==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.52.0.tgz",
+ "integrity": "sha512-3a/qM3dzJqqfTx7Yrw7uGQ98I3Q0rDfb4Vkv0wEzko96l7YQMxfBVz/VbLq2N+c59GweYv6Vhp8mPeqnWJSITw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -91,151 +144,151 @@
}
},
"node_modules/@algolia/client-insights": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.46.2.tgz",
- "integrity": "sha512-6dBZko2jt8FmQcHCbmNLB0kCV079Mx/DJcySTL3wirgDBUH7xhY1pOuUTLMiGkqM5D8moVZTvTdRKZUJRkrwBA==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.52.0.tgz",
+ "integrity": "sha512-Rki7ACbMcvbQW0BuM84x9dkGHY47ABmv4jU6tYssat2k02p3mIUms2YOLUAMeknhmnFsj6lb6ZzOXdMWMyc1sA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-personalization": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.46.2.tgz",
- "integrity": "sha512-1waE2Uqh/PHNeDXGn/PM/WrmYOBiUGSVxAWqiJIj73jqPqvfzZgzdakHscIVaDl6Cp+j5dwjsZ5LCgaUr6DtmA==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.52.0.tgz",
+ "integrity": "sha512-96s4Uzc3kk+/f4jJXIVVGWP5XlngOGNQ1x6hW9AT59pOixHlOs5tqJg+ZUS/GQ6h/iYP0ceQcmxDQeLyCLTaDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-query-suggestions": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.46.2.tgz",
- "integrity": "sha512-EgOzTZkyDcNL6DV0V/24+oBJ+hKo0wNgyrOX/mePBM9bc9huHxIY2352sXmoZ648JXXY2x//V1kropF/Spx83w==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.52.0.tgz",
+ "integrity": "sha512-lqeycNpSPe5Qa0OUWpejVvYQjQWV5nQuLT0a4aq7XzRAvCxprV/6Lf841EygdD2nrFnuS58ok7Au1uOtXzpnkg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-search": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.46.2.tgz",
- "integrity": "sha512-ZsOJqu4HOG5BlvIFnMU0YKjQ9ZI6r3C31dg2jk5kMWPSdhJpYL9xa5hEe7aieE+707dXeMI4ej3diy6mXdZpgA==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.52.0.tgz",
+ "integrity": "sha512-ly1wETVGRo30cx61O7fetESN+ElL9c9K+bD/AVgnT1ar4c6v+/Yqjrhdtu6Fm4D0s4NZP081Isf6tunH1wUXHg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/ingestion": {
- "version": "1.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.46.2.tgz",
- "integrity": "sha512-1Uw2OslTWiOFDtt83y0bGiErJYy5MizadV0nHnOoHFWMoDqWW0kQoMFI65pXqRSkVvit5zjXSLik2xMiyQJDWQ==",
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.52.0.tgz",
+ "integrity": "sha512-U4EeTvgmluRjj39ykZSAd5X+a6LD5m7/mcOWDmB7hqm1R6QY0yT8jLxpNVEjYhzgEN5hcDGW6X67EWQY8KiYGQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/monitoring": {
- "version": "1.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.46.2.tgz",
- "integrity": "sha512-xk9f+DPtNcddWN6E7n1hyNNsATBCHIqAvVGG2EAGHJc4AFYL18uM/kMTiOKXE/LKDPyy1JhIerrh9oYb7RBrgw==",
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.52.0.tgz",
+ "integrity": "sha512-FCPnDcILfpTE94u7BVlV4DmnSV5wE3+j25EEF+3dYPrVzkVCSoAHs318oWDGxnxsAgiL4HpL12Jc4XHmw9shpA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/recommend": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.46.2.tgz",
- "integrity": "sha512-NApbTPj9LxGzNw4dYnZmj2BoXiAc8NmbbH6qBNzQgXklGklt/xldTvu+FACN6ltFsTzoNU6j2mWNlHQTKGC5+Q==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.52.0.tgz",
+ "integrity": "sha512-br3DO7n4N8CXwTRbZS0MnB4WQ9YHfNjCwkCEzVR/wek/qNTDQKDb0nROmkFaNZ8ucUqUVKZi074dbwMwRDlK8Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/client-common": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-browser-xhr": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.46.2.tgz",
- "integrity": "sha512-ekotpCwpSp033DIIrsTpYlGUCF6momkgupRV/FA3m62SreTSZUKjgK6VTNyG7TtYfq9YFm/pnh65bATP/ZWJEg==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.52.0.tgz",
+ "integrity": "sha512-b0T/Ca2c9KyEslKsVrGZvbe1UrrKKSdfXhBZ2pbpKahFUzJfziRZ0urbOm7V65O0tO/jwU+Lo/+bIiiyhzGt8w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2"
+ "@algolia/client-common": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-fetch": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.46.2.tgz",
- "integrity": "sha512-gKE+ZFi/6y7saTr34wS0SqYFDcjHW4Wminv8PDZEi0/mE99+hSrbKgJWxo2ztb5eqGirQTgIh1AMVacGGWM1iw==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.52.0.tgz",
+ "integrity": "sha512-ozBT8J/mtD4H4IAojw8QPirlcL2gHrI1BGuZ4/ZXXO/rTE1yQ4VIPJj4mTTbwo4FbkS1MoJsD/DsrqLzhnc4/g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2"
+ "@algolia/client-common": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-node-http": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.46.2.tgz",
- "integrity": "sha512-ciPihkletp7ttweJ8Zt+GukSVLp2ANJHU+9ttiSxsJZThXc4Y2yJ8HGVWesW5jN1zrsZsezN71KrMx/iZsOYpg==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.52.0.tgz",
+ "integrity": "sha512-gyyWcLD22tnabmoit4iukCXuoRc5HYJuUjPSEa8a0D/f/NlRafpWi52AlAaa4Uu/rsl7saHsJFTNjTptWbu2+A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.46.2"
+ "@algolia/client-common": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
@@ -256,12 +309,16 @@
}
},
"node_modules/@analogjs/vite-plugin-angular": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/@analogjs/vite-plugin-angular/-/vite-plugin-angular-2.2.3.tgz",
- "integrity": "sha512-OqVfiJsaHdHMxzvK0heVvp8MenSXh+xib6/p+v3d44kJ3J7ooD4gRx/jKC350zkgRKwcZc3a0ybGUnG6LEF7mg==",
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/@analogjs/vite-plugin-angular/-/vite-plugin-angular-2.6.1.tgz",
+ "integrity": "sha512-YG0ZnjYMAmppaEYjO/EIsg6vX4/I8lzM0Jf4PLnSDwRPkcFzBaHYxgzD1qqHsUOKbnF0PvRwL9m1UmEtr8iDJg==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "magic-string": "^0.30.21",
+ "obug": "^2.1.1",
+ "oxc-parser": "^0.121.0",
+ "tinyglobby": "^0.2.14",
"ts-morph": "^21.0.0"
},
"funding": {
@@ -269,8 +326,9 @@
"url": "https://github.com/sponsors/brandonroberts"
},
"peerDependencies": {
- "@angular-devkit/build-angular": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0",
- "@angular/build": "^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
+ "@angular-devkit/build-angular": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0",
+ "@angular/build": "^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0",
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"@angular-devkit/build-angular": {
@@ -278,44 +336,47 @@
},
"@angular/build": {
"optional": true
+ },
+ "vite": {
+ "optional": true
}
}
},
"node_modules/@angular-devkit/architect": {
- "version": "0.2101.0",
- "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2101.0.tgz",
- "integrity": "sha512-vnNAzWXwSRGTHk2K7woIQsj7WDYZp69Z3DBdlxkK0H08ymkJ/ELbhN0/AnIJNNtYCqEb57AH7Ro98n422beDuw==",
+ "version": "0.2200.1",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2200.1.tgz",
+ "integrity": "sha512-Q3DfpgEIiHtG7uSUO8Tsm35rOeUbJfuxM9pi7cCyC8DvC/z1yNYm7/xEitlEYPzJmSLmks3eqlsaGnYhh0VLVg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@angular-devkit/core": "21.1.0",
+ "@angular-devkit/core": "22.0.1",
"rxjs": "7.8.2"
},
"bin": {
"architect": "bin/cli.js"
},
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular-devkit/core": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.0.tgz",
- "integrity": "sha512-dPfVy0CictDjWffRv4pGTPOFjdlJL3ZkGUqxzaosUjMbJW+Ai9cNn1VNr7zxYZ4kem3BxLBh1thzDsCPrkXlZA==",
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-22.0.1.tgz",
+ "integrity": "sha512-77/WsCAbqGkumDfm/kkw2mFh/42DNF0hB02TvivlfiSC/KfK9DsHg7sKvTlNcuY14ZT/3iHhojLyNBc2HytuvQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ajv": "8.17.1",
+ "ajv": "8.20.0",
"ajv-formats": "3.0.1",
"jsonc-parser": "3.3.1",
- "picomatch": "4.0.3",
+ "picomatch": "4.0.4",
"rxjs": "7.8.2",
"source-map": "0.7.6"
},
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
@@ -329,84 +390,82 @@
}
},
"node_modules/@angular-devkit/schematics": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.1.0.tgz",
- "integrity": "sha512-sVgTntCZCOV7mOpHzj6V14KOAoy4B9Ur9yHNRFZVgL2yD77TYRrJ0qwq+l7Im9fSjMCar6csjboqCvyAEpfV1g==",
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-22.0.1.tgz",
+ "integrity": "sha512-GWou5meX3vAvqQEkox7xYMT9tIrYBVl0StbP7rGH5yMrzngvi6eyikMiUYnmMvoEoBK9gFNnXaAKeeu2aWvb3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@angular-devkit/core": "21.1.0",
+ "@angular-devkit/core": "22.0.1",
"jsonc-parser": "3.3.1",
"magic-string": "0.30.21",
- "ora": "9.0.0",
+ "ora": "9.4.0",
"rxjs": "7.8.2"
},
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular/build": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/build/-/build-21.1.0.tgz",
- "integrity": "sha512-ftms4F/TlkRNhf/4ykFO12zTG0f9sIRZ4fGFnaOVGmnKYkPKZklWvMCPoaoIligHS2pqKye1a5JSiTgTeUDp9w==",
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/build/-/build-22.0.1.tgz",
+ "integrity": "sha512-05oMhBuRy4qycmuhrBpz3y/OxaW0qeguKj7ArUdTFOJvi6Y1kthzcg6bF1cPPVz0TMGnoTwMf9OCHjoT2QHAKA==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"@ampproject/remapping": "2.3.0",
- "@angular-devkit/architect": "0.2101.0",
- "@babel/core": "7.28.5",
+ "@angular-devkit/architect": "0.2200.1",
+ "@babel/core": "7.29.0",
"@babel/helper-annotate-as-pure": "7.27.3",
"@babel/helper-split-export-declaration": "7.24.7",
- "@inquirer/confirm": "5.1.21",
- "@vitejs/plugin-basic-ssl": "2.1.0",
- "beasties": "0.3.5",
+ "@inquirer/confirm": "6.0.12",
+ "@vitejs/plugin-basic-ssl": "2.3.0",
+ "beasties": "0.4.2",
"browserslist": "^4.26.0",
- "esbuild": "0.27.2",
- "https-proxy-agent": "7.0.6",
- "istanbul-lib-instrument": "6.0.3",
+ "esbuild": "0.28.0",
+ "https-proxy-agent": "9.0.0",
"jsonc-parser": "3.3.1",
- "listr2": "9.0.5",
+ "listr2": "10.2.1",
"magic-string": "0.30.21",
"mrmime": "2.0.1",
- "parse5-html-rewriting-stream": "8.0.0",
- "picomatch": "4.0.3",
+ "parse5-html-rewriting-stream": "8.0.1",
+ "picomatch": "4.0.4",
"piscina": "5.1.4",
- "rolldown": "1.0.0-beta.58",
- "sass": "1.97.1",
- "semver": "7.7.3",
+ "rollup": "4.60.2",
+ "sass": "1.99.0",
+ "semver": "7.7.4",
"source-map-support": "0.5.21",
- "tinyglobby": "0.2.15",
- "undici": "7.18.0",
- "vite": "7.3.0",
- "watchpack": "2.5.0"
+ "tinyglobby": "0.2.16",
+ "vite": "7.3.2",
+ "watchpack": "2.5.1"
},
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
"optionalDependencies": {
- "lmdb": "3.4.4"
+ "lmdb": "3.5.4"
},
"peerDependencies": {
- "@angular/compiler": "^21.0.0",
- "@angular/compiler-cli": "^21.0.0",
- "@angular/core": "^21.0.0",
- "@angular/localize": "^21.0.0",
- "@angular/platform-browser": "^21.0.0",
- "@angular/platform-server": "^21.0.0",
- "@angular/service-worker": "^21.0.0",
- "@angular/ssr": "^21.1.0",
+ "@angular/compiler": "^22.0.0",
+ "@angular/compiler-cli": "^22.0.0",
+ "@angular/core": "^22.0.0",
+ "@angular/localize": "^22.0.0",
+ "@angular/platform-browser": "^22.0.0",
+ "@angular/platform-server": "^22.0.0",
+ "@angular/service-worker": "^22.0.0",
+ "@angular/ssr": "^22.0.1",
+ "istanbul-lib-instrument": "^6.0.0",
"karma": "^6.4.0",
"less": "^4.2.0",
- "ng-packagr": "^21.0.0",
+ "ng-packagr": "^22.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^2.0.0 || ^3.0.0 || ^4.0.0",
"tslib": "^2.3.0",
- "typescript": ">=5.9 <6.0",
+ "typescript": ">=6.0 <6.1",
"vitest": "^4.0.8"
},
"peerDependenciesMeta": {
@@ -428,6 +487,9 @@
"@angular/ssr": {
"optional": true
},
+ "istanbul-lib-instrument": {
+ "optional": true
+ },
"karma": {
"optional": true
},
@@ -448,286 +510,766 @@
}
}
},
- "node_modules/@angular/build/node_modules/@vitejs/plugin-basic-ssl": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-2.1.0.tgz",
- "integrity": "sha512-dOxxrhgyDIEUADhb/8OlV9JIqYLgos03YorAueTIeOUskLJSEsfwCByjbu98ctXitUN3znXKp0bYD/WHSudCeA==",
+ "node_modules/@angular/build/node_modules/@esbuild/aix-ppc64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz",
+ "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==",
+ "cpu": [
+ "ppc64"
+ ],
"dev": true,
"license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
"engines": {
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
- },
- "peerDependencies": {
- "vite": "^6.0.0 || ^7.0.0"
+ "node": ">=18"
}
},
- "node_modules/@angular/build/node_modules/vite": {
- "version": "7.3.0",
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.0.tgz",
- "integrity": "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==",
+ "node_modules/@angular/build/node_modules/@esbuild/android-arm": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz",
+ "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==",
+ "cpu": [
+ "arm"
+ ],
"dev": true,
"license": "MIT",
- "peer": true,
- "dependencies": {
- "esbuild": "^0.27.0",
- "fdir": "^6.5.0",
- "picomatch": "^4.0.3",
- "postcss": "^8.5.6",
- "rollup": "^4.43.0",
- "tinyglobby": "^0.2.15"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": "^20.19.0 || >=22.12.0"
- },
- "funding": {
- "url": "https://github.com/vitejs/vite?sponsor=1"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- },
- "peerDependencies": {
- "@types/node": "^20.19.0 || >=22.12.0",
- "jiti": ">=1.21.0",
- "less": "^4.0.0",
- "lightningcss": "^1.21.0",
- "sass": "^1.70.0",
- "sass-embedded": "^1.70.0",
- "stylus": ">=0.54.8",
- "sugarss": "^5.0.0",
- "terser": "^5.16.0",
- "tsx": "^4.8.1",
- "yaml": "^2.4.2"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "jiti": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "sass-embedded": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- },
- "tsx": {
- "optional": true
- },
- "yaml": {
- "optional": true
- }
+ "node": ">=18"
}
},
- "node_modules/@angular/cli": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.1.0.tgz",
- "integrity": "sha512-kzk8du388x6EBybJeq5AB27qGm8oGC9HhvBJDbu8o+aBIOY+JwVON9m4SYLCzeT+EVK8sKA1NMVYi2CDerk6hA==",
+ "node_modules/@angular/build/node_modules/@esbuild/android-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz",
+ "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
"license": "MIT",
- "dependencies": {
- "@angular-devkit/architect": "0.2101.0",
- "@angular-devkit/core": "21.1.0",
- "@angular-devkit/schematics": "21.1.0",
- "@inquirer/prompts": "7.10.1",
- "@listr2/prompt-adapter-inquirer": "3.0.5",
- "@modelcontextprotocol/sdk": "1.25.2",
- "@schematics/angular": "21.1.0",
- "@yarnpkg/lockfile": "1.1.0",
- "algoliasearch": "5.46.2",
- "ini": "6.0.0",
- "jsonc-parser": "3.3.1",
- "listr2": "9.0.5",
- "npm-package-arg": "13.0.2",
- "pacote": "21.0.4",
- "parse5-html-rewriting-stream": "8.0.0",
- "resolve": "1.22.11",
- "semver": "7.7.3",
- "yargs": "18.0.0",
- "zod": "4.3.5"
- },
- "bin": {
- "ng": "bin/ng.js"
- },
- "engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
- "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
- "yarn": ">= 1.13.0"
- }
- },
- "node_modules/@angular/common": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/common/-/common-21.1.0.tgz",
- "integrity": "sha512-hL3Chp51TU9iBcIfkNtoBS1wuseP1gsyDW2IFtK5HUpAVhbso9B3fdCaDTFkU98A2unluo2YgzI6D/6IS6N+1g==",
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "tslib": "^2.3.0"
- },
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
- },
- "peerDependencies": {
- "@angular/core": "21.1.0",
- "rxjs": "^6.5.3 || ^7.4.0"
+ "node": ">=18"
}
},
- "node_modules/@angular/compiler": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-21.1.0.tgz",
- "integrity": "sha512-UprCiJwEU1Ilw1dVk+yLgNiHlbH81obAuh92lRKozUQRgtSCpOfCQUM79q5r+VdmCPxDshr79U2Ke0fRaiJfAQ==",
+ "node_modules/@angular/build/node_modules/@esbuild/android-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz",
+ "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
"license": "MIT",
- "peer": true,
- "dependencies": {
- "tslib": "^2.3.0"
- },
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
+ "node": ">=18"
}
},
- "node_modules/@angular/compiler-cli": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-21.1.0.tgz",
- "integrity": "sha512-//BTtxJovsF0LaOWQkOVxWX4EVyNJaPus+IlwWxzmdRHpojIl1Zdyy9BJMVJOifvj3XQ16sZwR1PDWDI5DIWrg==",
+ "node_modules/@angular/build/node_modules/@esbuild/darwin-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz",
+ "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
"license": "MIT",
- "peer": true,
- "dependencies": {
- "@babel/core": "7.28.5",
- "@jridgewell/sourcemap-codec": "^1.4.14",
- "chokidar": "^5.0.0",
- "convert-source-map": "^1.5.1",
- "reflect-metadata": "^0.2.0",
- "semver": "^7.0.0",
- "tslib": "^2.3.0",
- "yargs": "^18.0.0"
- },
- "bin": {
- "ng-xi18n": "bundles/src/bin/ng_xi18n.js",
- "ngc": "bundles/src/bin/ngc.js"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
- },
- "peerDependencies": {
- "@angular/compiler": "21.1.0",
- "typescript": ">=5.9 <6.0"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
+ "node": ">=18"
}
},
- "node_modules/@angular/core": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/core/-/core-21.1.0.tgz",
- "integrity": "sha512-QTl9s8GYNN0pt1k3GE6UVlfe6zWtfdykhfchinKq2YJywQ6LBM4UcZgoc56YkgscmyrRFYrr4JYUJjlzTF57+A==",
+ "node_modules/@angular/build/node_modules/@esbuild/darwin-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz",
+ "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
"license": "MIT",
- "peer": true,
- "dependencies": {
- "tslib": "^2.3.0"
- },
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
- },
- "peerDependencies": {
- "@angular/compiler": "21.1.0",
- "rxjs": "^6.5.3 || ^7.4.0",
- "zone.js": "~0.15.0 || ~0.16.0"
- },
- "peerDependenciesMeta": {
- "@angular/compiler": {
- "optional": true
- },
- "zone.js": {
- "optional": true
- }
+ "node": ">=18"
}
},
- "node_modules/@angular/platform-browser": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-21.1.0.tgz",
- "integrity": "sha512-Drkal25x+OuRQosAE/cL4uM5WDmgFehanCpsjQ1jGp6Rxoad6Q5Do1uQAE3qgMKHL1aqCPZ+uWzcVVG+Bn1ddg==",
+ "node_modules/@angular/build/node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz",
+ "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
"license": "MIT",
- "peer": true,
- "dependencies": {
- "tslib": "^2.3.0"
- },
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
- },
- "peerDependencies": {
- "@angular/animations": "21.1.0",
- "@angular/common": "21.1.0",
- "@angular/core": "21.1.0"
- },
- "peerDependenciesMeta": {
- "@angular/animations": {
- "optional": true
- }
+ "node": ">=18"
}
},
- "node_modules/@babel/code-frame": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz",
- "integrity": "sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==",
+ "node_modules/@angular/build/node_modules/@esbuild/freebsd-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz",
+ "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
"license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.28.5",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.1.1"
- },
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": ">=6.9.0"
+ "node": ">=18"
}
},
- "node_modules/@babel/compat-data": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.6.tgz",
- "integrity": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==",
+ "node_modules/@angular/build/node_modules/@esbuild/linux-arm": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz",
+ "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==",
+ "cpu": [
+ "arm"
+ ],
"dev": true,
"license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=6.9.0"
+ "node": ">=18"
}
},
- "node_modules/@babel/core": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
- "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
+ "node_modules/@angular/build/node_modules/@esbuild/linux-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz",
+ "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-ia32": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz",
+ "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-loong64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz",
+ "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-mips64el": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz",
+ "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-ppc64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz",
+ "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-riscv64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz",
+ "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-s390x": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz",
+ "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/linux-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz",
+ "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz",
+ "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/netbsd-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz",
+ "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz",
+ "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/openbsd-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz",
+ "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz",
+ "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/sunos-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz",
+ "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/win32-arm64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz",
+ "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/win32-ia32": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz",
+ "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/@esbuild/win32-x64": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz",
+ "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@angular/build/node_modules/tinyglobby": {
+ "version": "0.2.16",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz",
+ "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/@angular/build/node_modules/vite": {
+ "version": "7.3.2",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
+ "integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.27.0",
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.3",
+ "postcss": "^8.5.6",
+ "rollup": "^4.43.0",
+ "tinyglobby": "^0.2.15"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^20.19.0 || >=22.12.0",
+ "jiti": ">=1.21.0",
+ "less": "^4.0.0",
+ "lightningcss": "^1.21.0",
+ "sass": "^1.70.0",
+ "sass-embedded": "^1.70.0",
+ "stylus": ">=0.54.8",
+ "sugarss": "^5.0.0",
+ "terser": "^5.16.0",
+ "tsx": "^4.8.1",
+ "yaml": "^2.4.2"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "jiti": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ },
+ "tsx": {
+ "optional": true
+ },
+ "yaml": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@angular/build/node_modules/vite/node_modules/esbuild": {
+ "version": "0.27.7",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz",
+ "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.27.7",
+ "@esbuild/android-arm": "0.27.7",
+ "@esbuild/android-arm64": "0.27.7",
+ "@esbuild/android-x64": "0.27.7",
+ "@esbuild/darwin-arm64": "0.27.7",
+ "@esbuild/darwin-x64": "0.27.7",
+ "@esbuild/freebsd-arm64": "0.27.7",
+ "@esbuild/freebsd-x64": "0.27.7",
+ "@esbuild/linux-arm": "0.27.7",
+ "@esbuild/linux-arm64": "0.27.7",
+ "@esbuild/linux-ia32": "0.27.7",
+ "@esbuild/linux-loong64": "0.27.7",
+ "@esbuild/linux-mips64el": "0.27.7",
+ "@esbuild/linux-ppc64": "0.27.7",
+ "@esbuild/linux-riscv64": "0.27.7",
+ "@esbuild/linux-s390x": "0.27.7",
+ "@esbuild/linux-x64": "0.27.7",
+ "@esbuild/netbsd-arm64": "0.27.7",
+ "@esbuild/netbsd-x64": "0.27.7",
+ "@esbuild/openbsd-arm64": "0.27.7",
+ "@esbuild/openbsd-x64": "0.27.7",
+ "@esbuild/openharmony-arm64": "0.27.7",
+ "@esbuild/sunos-x64": "0.27.7",
+ "@esbuild/win32-arm64": "0.27.7",
+ "@esbuild/win32-ia32": "0.27.7",
+ "@esbuild/win32-x64": "0.27.7"
+ }
+ },
+ "node_modules/@angular/cli": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-22.0.1.tgz",
+ "integrity": "sha512-E1b3yroIDkqKpRJ5M/ihQkmgrF+gTlrntLbLWkSE5XReMSGtkog16I3hewI1zV2K4TMdiDZ1lzJvkJ4CgG3wjA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@angular-devkit/architect": "0.2200.1",
+ "@angular-devkit/core": "22.0.1",
+ "@angular-devkit/schematics": "22.0.1",
+ "@inquirer/prompts": "8.4.2",
+ "@listr2/prompt-adapter-inquirer": "4.2.3",
+ "@modelcontextprotocol/sdk": "1.29.0",
+ "@schematics/angular": "22.0.1",
+ "@yarnpkg/lockfile": "1.1.0",
+ "algoliasearch": "5.52.0",
+ "ini": "6.0.0",
+ "jsonc-parser": "3.3.1",
+ "listr2": "10.2.1",
+ "npm-package-arg": "13.0.2",
+ "pacote": "21.5.0",
+ "parse5-html-rewriting-stream": "8.0.1",
+ "semver": "7.7.4",
+ "yargs": "18.0.0",
+ "zod": "4.4.2"
+ },
+ "bin": {
+ "ng": "bin/ng.js"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
+ "npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
+ "yarn": ">= 1.13.0"
+ }
+ },
+ "node_modules/@angular/common": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/common/-/common-22.0.1.tgz",
+ "integrity": "sha512-EczDHu+ziop3x2CSh9+hdkegTSjblYvuH0y4aZ8biqh+pGFRni24Qu9kZiV5VrBprIJG5NeiCEA2rT6fJ7w/Nw==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.3.0"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0"
+ },
+ "peerDependencies": {
+ "@angular/core": "22.0.1",
+ "rxjs": "^6.5.3 || ^7.4.0"
+ }
+ },
+ "node_modules/@angular/compiler": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-22.0.1.tgz",
+ "integrity": "sha512-J8lcmYXJCGZn1+CHx3LSgq6rtS5Efc1/Nafcd/v8VZN2NrsFIkIlTbnAIUxcwHwYxzZs4X5CGfX+5ZIB4X9rUw==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.3.0"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0"
+ }
+ },
+ "node_modules/@angular/compiler-cli": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-22.0.1.tgz",
+ "integrity": "sha512-fo/tXV3sqw92/qz898ejru6G4wMvstd9gBjb0HRDJv5rR1XnSWHVKJuhrgrHd6tVkNdc8y6odBB9GKecdqqnGg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "7.29.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14",
+ "chokidar": "^5.0.0",
+ "convert-source-map": "^1.5.1",
+ "reflect-metadata": "^0.2.0",
+ "semver": "^7.0.0",
+ "tslib": "^2.3.0",
+ "yargs": "^18.0.0"
+ },
+ "bin": {
+ "ng-xi18n": "bundles/src/bin/ng_xi18n.js",
+ "ngc": "bundles/src/bin/ngc.js"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0"
+ },
+ "peerDependencies": {
+ "@angular/compiler": "22.0.1",
+ "typescript": ">=6.0 <6.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@angular/core": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/core/-/core-22.0.1.tgz",
+ "integrity": "sha512-Sk0fz+LR2q6QhJJtCV9ElN1GzoEX6lOB4difMqpOC0yRh/ue+9iKd+x3RRiL4p+dnAiRLQYAKqsXkYlqUm2SMg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.3.0"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0"
+ },
+ "peerDependencies": {
+ "@angular/compiler": "22.0.1",
+ "rxjs": "^6.5.3 || ^7.4.0",
+ "zone.js": "~0.15.0 || ~0.16.0"
+ },
+ "peerDependenciesMeta": {
+ "@angular/compiler": {
+ "optional": true
+ },
+ "zone.js": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@angular/platform-browser": {
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-22.0.1.tgz",
+ "integrity": "sha512-wbj/ddrMIOHKrONcFlDmHfJKUZq4dX8pzcxsLFTQ6sppUKtzWMrkxtCVkSPJLEzs6OG3OupRrc1yHbL/V+ffsw==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.3.0"
+ },
+ "engines": {
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0"
+ },
+ "peerDependencies": {
+ "@angular/animations": "22.0.1",
+ "@angular/common": "22.0.1",
+ "@angular/core": "22.0.1"
+ },
+ "peerDependenciesMeta": {
+ "@angular/animations": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
- "@babel/code-frame": "^7.27.1",
- "@babel/generator": "^7.28.5",
- "@babel/helper-compilation-targets": "^7.27.2",
- "@babel/helper-module-transforms": "^7.28.3",
- "@babel/helpers": "^7.28.4",
- "@babel/parser": "^7.28.5",
- "@babel/template": "^7.27.2",
- "@babel/traverse": "^7.28.5",
- "@babel/types": "^7.28.5",
+ "@babel/helper-validator-identifier": "^7.29.7",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.28.6",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.6.tgz",
+ "integrity": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.29.0",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
+ "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.0",
+ "@babel/generator": "^7.29.0",
+ "@babel/helper-compilation-targets": "^7.28.6",
+ "@babel/helper-module-transforms": "^7.28.6",
+ "@babel/helpers": "^7.28.6",
+ "@babel/parser": "^7.29.0",
+ "@babel/template": "^7.28.6",
+ "@babel/traverse": "^7.29.0",
+ "@babel/types": "^7.29.0",
"@jridgewell/remapping": "^2.3.5",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
@@ -761,14 +1303,14 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.6.tgz",
- "integrity": "sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/parser": "^7.28.6",
- "@babel/types": "^7.28.6",
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7",
"@jridgewell/gen-mapping": "^0.3.12",
"@jridgewell/trace-mapping": "^0.3.28",
"jsesc": "^3.0.2"
@@ -818,9 +1360,9 @@
}
},
"node_modules/@babel/helper-globals": {
- "version": "7.28.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
- "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -873,9 +1415,9 @@
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.27.1",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -883,9 +1425,9 @@
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.28.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -917,13 +1459,13 @@
}
},
"node_modules/@babel/parser": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.6.tgz",
- "integrity": "sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/types": "^7.28.6"
+ "@babel/types": "^7.29.7"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -933,33 +1475,33 @@
}
},
"node_modules/@babel/template": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
- "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.28.6",
- "@babel/parser": "^7.28.6",
- "@babel/types": "^7.28.6"
+ "@babel/code-frame": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.6.tgz",
- "integrity": "sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.28.6",
- "@babel/generator": "^7.28.6",
- "@babel/helper-globals": "^7.28.0",
- "@babel/parser": "^7.28.6",
- "@babel/template": "^7.28.6",
- "@babel/types": "^7.28.6",
+ "@babel/code-frame": "^7.29.7",
+ "@babel/generator": "^7.29.7",
+ "@babel/helper-globals": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/template": "^7.29.7",
+ "@babel/types": "^7.29.7",
"debug": "^4.3.1"
},
"engines": {
@@ -967,14 +1509,14 @@
}
},
"node_modules/@babel/types": {
- "version": "7.28.6",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.6.tgz",
- "integrity": "sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==",
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-string-parser": "^7.27.1",
- "@babel/helper-validator-identifier": "^7.28.5"
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
},
"engines": {
"node": ">=6.9.0"
@@ -992,459 +1534,139 @@
}
},
"node_modules/@codingame/monaco-vscode-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-25.1.2.tgz",
- "integrity": "sha512-K04QcQA+Zb0KXucBAK/BGCT5dldiwIqdUbBQq7yuLvBLbof3cP1WSUuxasMHGYwM0MWyzIAsDtyAYMS7is8ZuA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-base-service-override": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2",
- "@codingame/monaco-vscode-host-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-34.0.1.tgz",
+ "integrity": "sha512-LiFstXqNw1PPabjrV3g09/Wu8Ss5f2IlDH2lHlEZaQmhDVdxpDZUKqKaD1hLDKiYwx8lYeHs1yNUab5uUQh4bQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-base-service-override": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1",
+ "@codingame/monaco-vscode-host-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@vscode/diff": "0.0.2-7",
"@vscode/iconv-lite-umd": "0.7.1",
- "dompurify": "3.3.1",
+ "dompurify": "3.4.9",
"jschardet": "3.1.4",
"marked": "14.0.0"
}
},
"node_modules/@codingame/monaco-vscode-base-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-25.1.2.tgz",
- "integrity": "sha512-OwYs6h1ATUAeMmX+Q1c8esTG7GLMqniBs+fLEr1/9b/ciY485ArKo5UvrUxVPDtRNy/7F06vRW9IUCq9iKP14w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-bulk-edit-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-25.1.2.tgz",
- "integrity": "sha512-+EfSzjiFakCf0IIJKPZrHVGioq5N8GBsp51bXuKBR5J/B58cUaJY0Dc12PNTSpgAusAGOppUIOSBqUk4F/7IaQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-configuration-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-25.1.2.tgz",
- "integrity": "sha512-oeoZ3WtM42zHA1IWHrx9UGEfE+TixE+G8Bl9M9bjgFj1EROnkB5yOfELwRYPo4WOEtcK1C5nvIvWIj/hL9MaLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-25.1.2.tgz",
- "integrity": "sha512-EadvDCyWdgxOPmaIvbcVVDNjTUYuKdjYWwKbPbbcTs9t4z1/DjdE7mV3ZdT6aGh5m6zkEEUOi143l27Y5eRt+Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-34.0.1.tgz",
+ "integrity": "sha512-f7QLFt9W5xPx03y7bmmo4IrQNyGHZSICunmBbRVP3T+F8KAD3X5JhMgun6490MT6I25MCtmxrwreQ5xvTHRqUg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-environment-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-25.1.2.tgz",
- "integrity": "sha512-8GoD3lk0CN0dIMZOrZNS/i8RCaF1YSQ6nmrf+rqneOSHG9S382EnsZZD69d4+i7JnoeyttO7Kr9KH8WOhRV6OA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-extension-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-34.0.1.tgz",
+ "integrity": "sha512-cxN+MbUlV1IK0IXp3MerahdoVtLudkpBAwEyfn2uyzkiuRRHtCsNdcf/9Hyy2shFp3kuRRpQLbtIt6ODfYfX6g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-extensions-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-25.1.2.tgz",
- "integrity": "sha512-rTTZW2biPxcg+JumhVf2L+38C5ptvNNxiJlwz39VfXFEh6qOHtAsIMy7vIXa0uGg5/y8DNp0SnOQJP/RKhLYZA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-34.0.1.tgz",
+ "integrity": "sha512-wHDZmFEtOahYXk1H0TeGIV2Ssl6yurYQFX33L5Im1CtypxTMkEm0sP+IvOHLmJbT4X5u5xi7FWNcgoVhbVnYaQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-files-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-25.1.2.tgz",
- "integrity": "sha512-TenLLAFIwY7keZFF8e3beUn7OVfnNINR5Noi4PVrjeeTcy6FuNH6Jghdul2JwpRAkvyJLdFMvomE2jlT6F03jQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-34.0.1.tgz",
+ "integrity": "sha512-oqWQ0WiQDQRZoA9G68+G+QMAxtCwPFf0RXDD5aUqhXYOXhW/lqwCBwwqdQLoKQyiALfIXF6wU944fkspWPfa3g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-host-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-25.1.2.tgz",
- "integrity": "sha512-lgaalpA9CUQW7i0bBwgBOK0DQNDvOo3QO3p6Rz6yVsHpgA4iMqq2d11dBDUKvuQSwIHPRu8CMHCqhQk/BQN/YA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-34.0.1.tgz",
+ "integrity": "sha512-lVho3RwV0kAtSALAdB0UeglApr/KJQShbGB91KUBjKeOx4J5XGfPL2k2y9yNtGjE8NKuuJ2XaxmhSDdcOkuWDA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-json-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-25.1.2.tgz",
- "integrity": "sha512-lbzUZr8E2vg40bQFhWFq/qc0QqnRHKKWwCuxymkv0kpVgyXlS52EjjvrhvOo8TV/r7eLg+R0yHzF4IKWgltGrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-keybindings-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-25.1.2.tgz",
- "integrity": "sha512-cp/gGyTvCTAzCYnQm0HJykXJRB0Huz8Lvq60lj5LutgWcb8S3w6dOB2Houm8dHoeUm/jOko8SQNIP8hzWN92Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-cs": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-25.1.2.tgz",
- "integrity": "sha512-v0cB2uAOCwj135aGIf0arGV+DNW32lbWh04bv8ctTxcWRt1Pr2kTQ1pjfE8ynKgxabPfAk8E25/CerKSYOmZ+A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-de": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-25.1.2.tgz",
- "integrity": "sha512-xA3WOt1w5jlAOnyx4PBwx+qV3vx8C8/zie29qjYbgJMxGKDkb0HfpuKUwywDA2uUMI2wJZS+PnNG00zPDoLIrw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-es": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-25.1.2.tgz",
- "integrity": "sha512-1/upuO9lRJilZ3sRr0QLTpz55KYRaBWDe8wtPvghOFYOHyWgW8A4VhUQxa6L9SJgY1JkypUAm0U8WcMX2G4LnQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-fr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-25.1.2.tgz",
- "integrity": "sha512-iq+xx+tv1QIMmFD0eBhFRMF4xMAsVf/HyA1WogqBofteCWeAvRE9HUjZ5JzHz7jXBPe3dLP1LOM0r0GrJZs4fQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-it": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-25.1.2.tgz",
- "integrity": "sha512-FajWCML9OR8ppLnJ0mcg+sFHEhYJl8zhb3/DHnd+pNysw8dLfetXoSWjaPnwPPpwiQgkNN1UsToZHOU9czVifQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ja": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-25.1.2.tgz",
- "integrity": "sha512-NwKh0BnPgUrJkxsm0X6vY4ftnd9DjxkcnQqK+bohta6UOzm09J1EjZ6QD42fjWngxrp/xiegtrYQ9NA2q6VpoA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ko": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-25.1.2.tgz",
- "integrity": "sha512-fvaisgfcg8YaAwnyPcGmQDLwkwqzamLQUyx9HmnwDpXw0YANzd058Kwn6bz+Vfn9MjwuMNT0nllD0qQMnpdyew==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pl": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-25.1.2.tgz",
- "integrity": "sha512-9hDRyzFJkDia5rO9QE262JgxwP/cnalFisLFo7FQcw57ZhqzqXIdQIuwcKaHuAgzeQ6W2+A3KOLfTr3m7VZrXw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pt-br": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-25.1.2.tgz",
- "integrity": "sha512-7fFnqOTAJGb5RuJ4uwh9sh0JmXALuHPGOl7iL9rZkcgIuVP5y6wVDUDXq5qjiRTNSFDs7Bzh463Ir5m5D6mJbA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-qps-ploc": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-25.1.2.tgz",
- "integrity": "sha512-IFjoqrSuPtIFWb+KlPT6PFWKszzNX+TCD9drgCV6AigvBO/xfGL3QwHB68l/DLbmDbohOz4Xdkutv20wuENAeA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ru": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-25.1.2.tgz",
- "integrity": "sha512-0uDAeXO+GllKUPhJzP893rlDhlFV1IwCu/515rBdcyegt48iGm/xAgj26V90hNz8hmB6EuM/7d8MFeklbiIpYA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-tr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-25.1.2.tgz",
- "integrity": "sha512-MJhHxDyJEiuVLQ9+jb8MnnN9lsbJOjJjMswVCeJ7v/Q/msAhq25QYUfn0DbOIzESJE1f7crffRb5e38XP8sYWA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hans": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-25.1.2.tgz",
- "integrity": "sha512-c7MMrhnSLb59NxpAa8nVy9aIbxy4gVYrCpDMq8W380LOaXTYb7nueTrw8QJ5QbJBNi2P2KZoGkn2BlONuBtJJg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hant": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-25.1.2.tgz",
- "integrity": "sha512-ARedFTM6JCluoPLJqkBcTJaQFdJNcN86OX6B8/NMApIPrnSIAfanMndpyilt8XjzUG6IH22cypR+DAlEjf48cA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-languages-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-25.1.2.tgz",
- "integrity": "sha512-ipuS1V3NgXDkNrj0vBcgMBFnqo+19HVsZjjFGfPFH3x0uptP9aiWWK42wtDK3Qbu4teSjHL7WnSLrmw94rplWw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-34.0.1.tgz",
+ "integrity": "sha512-dwI9HGXaJwVa22Hjb9Rla0vOJh6BqUYlG7nFtLuAf7NEQQzJkFaR4gHk4hd91QCaxJvJB0xtCG4nWL0VE3moJA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-layout-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-25.1.2.tgz",
- "integrity": "sha512-SxBGcMK3RgkGtUn7ZDl7dCoyNW0CWFQ/bfSRYUY06A0IA4JNS5jq1lhof57d0WXewm+5l8w1Spr/vMsfx1c9ig==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-localization-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-25.1.2.tgz",
- "integrity": "sha512-QLj62A8XDOIQW3KjsZlNxs+sfsNNHYxWMjQMwZu/y2Vw3IIHGly2Lpn4t4SFbeaBHJQJy4i5s7NpzlbF9MbEzQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-log-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-25.1.2.tgz",
- "integrity": "sha512-OoileAUtPAJ0j3RW31DFSxtOipy0EcFq+iIXEdGvoRlsQPZJ3o9ayjf1JvCXpxUjJ3QkmvQVhXsWNUFREjEFLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-model-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-25.1.2.tgz",
- "integrity": "sha512-MGz/eV1CxibLvnl6WzK6idUHJCXJOVepJvKM6Trkv5050vRe+f/o1TjCiG8PaznAypYqZvnwkTG0B7/OTizCpQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-monarch-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-25.1.2.tgz",
- "integrity": "sha512-akyNHOJQRS7YHyk6kf0Encnkt+shlR+bIB84UJRUHFgSeF8s5gkDkQuFJph0YeUDWJWat+yBLUSZx2nHomdbHQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-34.0.1.tgz",
+ "integrity": "sha512-5K0xlg5MurqI/qotIye/lq3dynZZ+9uSu8Kz884m6soH08/zIY7peMYj44qhxgv2BRTDlEl1bnR98lDWNv3oSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-quickaccess-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-25.1.2.tgz",
- "integrity": "sha512-7IIrXnwHiF3w9d9p9kspEUz/LCibMLUztmRpGdZQfFtWBJw043q7rk8V1O42KdXr1hVg9IR5vfffwjy9nbiiUg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-textmate-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-25.1.2.tgz",
- "integrity": "sha512-AL0FtSQBW+1vtoXYQvUqB2hfWojpK73Kq/n6KuNXxjLF/XBJ5FpeeZDfrBfwhWPPoHuBTsaFUCQy4L8xQgbVlA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-defaults-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-25.1.2.tgz",
- "integrity": "sha512-0vTMFiC89YSDSmjFckuQBUKwRuFNtsILNO3k0PBiSLN/MW+VDItjJpiVLXC42+rUWlGgY2lYxOneGVa5slCV1w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-25.1.2.tgz",
- "integrity": "sha512-hsTwl6YYTiheFuQMmCmiEGLIdIdgYaf8Z85XWyxe6YgPtDaYGnp0fGSOXKA9/bf0JtuynzoLKtUUfDupK/A7Tw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-banner-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-25.1.2.tgz",
- "integrity": "sha512-zhujHd1PQ6rRXsC2OQGrx/282G2v3lpPFl9heDFGKzpdj5119SgcW+B9p/MwJ1qF3LJpuRRgefNiQtqC/KT1eA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-common-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-25.1.2.tgz",
- "integrity": "sha512-4Po/YaHUvVf4VmhVCZmM2lc/flOptiWSM140bIRNpMcfH0VwihYg15CcDeu1Oc+6DaauzsG3u59GtEvlMmJ9Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-bulk-edit-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-status-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-Jp9ytLaWZ6evabTPtG3Mu3dFx+7WTIPz69BsGpl9PnU0kiSWUqQhPSob0Jz7E2qmMj0ZcNv2Wqvm6bMBu5OyrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-title-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-NVYtTAFR35NV/Fx7tSlbASicvpAjK5A14fmxF7/LJJN8ZmzhA/P3Y+UzhqOQl6/VcPV4pAMU0Z7Sicgwbn37dw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-views-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-25.1.2.tgz",
- "integrity": "sha512-LfzlztsvobdP5L5EvJ/rqSEgy5fEVmrkMqRteuhEtNGd4hnmdBoX8W7BNMBPff6d4NfCK74pGHJF57RyT4Iixg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-workbench-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-25.1.2.tgz",
- "integrity": "sha512-2LMHr+na03FhOAaXpIGmamq9hf7e4wt2kULn8NqNZRd3i+0v1tx/TSSjGhsA5EkrNrFD7CMSoXayBq8tgpCq/A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-34.0.1.tgz",
+ "integrity": "sha512-6IONyHH5wJHCaZ7CKTL2iz4DpoKmj2SmsHEAjE59OtcgLhqrCYhqBFb/dbse97HMbfYbvQyiMZb/kH3cJf89jQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@emnapi/core": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
- "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
+ "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
"dev": true,
"license": "MIT",
"optional": true,
+ "peer": true,
"dependencies": {
- "@emnapi/wasi-threads": "1.1.0",
+ "@emnapi/wasi-threads": "1.2.2",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
- "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
"dev": true,
"license": "MIT",
"optional": true,
+ "peer": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/wasi-threads": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
- "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
+ "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
"dev": true,
"license": "MIT",
"optional": true,
+ "peer": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz",
- "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.0.tgz",
+ "integrity": "sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==",
"cpu": [
"ppc64"
],
@@ -1459,9 +1681,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz",
- "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.0.tgz",
+ "integrity": "sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==",
"cpu": [
"arm"
],
@@ -1476,9 +1698,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz",
- "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.0.tgz",
+ "integrity": "sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==",
"cpu": [
"arm64"
],
@@ -1493,9 +1715,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz",
- "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.0.tgz",
+ "integrity": "sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==",
"cpu": [
"x64"
],
@@ -1510,9 +1732,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz",
- "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.0.tgz",
+ "integrity": "sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==",
"cpu": [
"arm64"
],
@@ -1527,9 +1749,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz",
- "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.0.tgz",
+ "integrity": "sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==",
"cpu": [
"x64"
],
@@ -1544,9 +1766,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz",
- "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.0.tgz",
+ "integrity": "sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==",
"cpu": [
"arm64"
],
@@ -1561,9 +1783,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz",
- "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.0.tgz",
+ "integrity": "sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==",
"cpu": [
"x64"
],
@@ -1578,9 +1800,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz",
- "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.0.tgz",
+ "integrity": "sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==",
"cpu": [
"arm"
],
@@ -1595,9 +1817,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz",
- "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.0.tgz",
+ "integrity": "sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==",
"cpu": [
"arm64"
],
@@ -1612,9 +1834,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz",
- "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.0.tgz",
+ "integrity": "sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==",
"cpu": [
"ia32"
],
@@ -1629,9 +1851,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz",
- "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.0.tgz",
+ "integrity": "sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==",
"cpu": [
"loong64"
],
@@ -1646,9 +1868,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz",
- "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.0.tgz",
+ "integrity": "sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==",
"cpu": [
"mips64el"
],
@@ -1663,9 +1885,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz",
- "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.0.tgz",
+ "integrity": "sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==",
"cpu": [
"ppc64"
],
@@ -1680,9 +1902,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz",
- "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.0.tgz",
+ "integrity": "sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==",
"cpu": [
"riscv64"
],
@@ -1697,9 +1919,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz",
- "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.0.tgz",
+ "integrity": "sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==",
"cpu": [
"s390x"
],
@@ -1714,9 +1936,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz",
- "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.0.tgz",
+ "integrity": "sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==",
"cpu": [
"x64"
],
@@ -1731,9 +1953,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz",
- "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.0.tgz",
+ "integrity": "sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==",
"cpu": [
"arm64"
],
@@ -1748,9 +1970,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz",
- "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.0.tgz",
+ "integrity": "sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==",
"cpu": [
"x64"
],
@@ -1765,9 +1987,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz",
- "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.0.tgz",
+ "integrity": "sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==",
"cpu": [
"arm64"
],
@@ -1782,9 +2004,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz",
- "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.0.tgz",
+ "integrity": "sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==",
"cpu": [
"x64"
],
@@ -1799,9 +2021,9 @@
}
},
"node_modules/@esbuild/openharmony-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz",
- "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.0.tgz",
+ "integrity": "sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==",
"cpu": [
"arm64"
],
@@ -1816,9 +2038,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz",
- "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.0.tgz",
+ "integrity": "sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==",
"cpu": [
"x64"
],
@@ -1833,9 +2055,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz",
- "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.0.tgz",
+ "integrity": "sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==",
"cpu": [
"arm64"
],
@@ -1850,9 +2072,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz",
- "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.0.tgz",
+ "integrity": "sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==",
"cpu": [
"ia32"
],
@@ -1867,9 +2089,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz",
- "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.0.tgz",
+ "integrity": "sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==",
"cpu": [
"x64"
],
@@ -1883,10 +2105,28 @@
"node": ">=18"
}
},
+ "node_modules/@gar/promise-retry": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@gar/promise-retry/-/promise-retry-1.0.3.tgz",
+ "integrity": "sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ }
+ },
+ "node_modules/@harperfast/extended-iterable": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@harperfast/extended-iterable/-/extended-iterable-1.0.3.tgz",
+ "integrity": "sha512-sSAYhQca3rDWtQUHSAPeO7axFIUJOI6hn1gjRC5APVE1a90tuyT8f5WIgRsFhhWA7htNkju2veB9eWL6YHi/Lw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "optional": true
+ },
"node_modules/@hono/node-server": {
- "version": "1.19.9",
- "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.9.tgz",
- "integrity": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==",
+ "version": "1.19.14",
+ "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz",
+ "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1897,30 +2137,29 @@
}
},
"node_modules/@inquirer/ansi": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.2.tgz",
- "integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.7.tgz",
+ "integrity": "sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
}
},
"node_modules/@inquirer/checkbox": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.3.2.tgz",
- "integrity": "sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==",
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-5.2.1.tgz",
+ "integrity": "sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/ansi": "^1.0.2",
- "@inquirer/core": "^10.3.2",
- "@inquirer/figures": "^1.0.15",
- "@inquirer/type": "^3.0.10",
- "yoctocolors-cjs": "^2.1.3"
+ "@inquirer/ansi": "^2.0.7",
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/figures": "^2.0.7",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -1932,17 +2171,17 @@
}
},
"node_modules/@inquirer/confirm": {
- "version": "5.1.21",
- "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.21.tgz",
- "integrity": "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==",
+ "version": "6.0.12",
+ "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.0.12.tgz",
+ "integrity": "sha512-h9FgGun3QwVYNj5TWIZZ+slii73bMoBFjPfVIGtnFuL4t8gBiNDV9PcSfIzkuxvgquJKt9nr1QzszpBzTbH8Og==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10"
+ "@inquirer/core": "^11.1.9",
+ "@inquirer/type": "^4.0.5"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -1954,23 +2193,22 @@
}
},
"node_modules/@inquirer/core": {
- "version": "10.3.2",
- "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.3.2.tgz",
- "integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==",
+ "version": "11.2.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.1.tgz",
+ "integrity": "sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/ansi": "^1.0.2",
- "@inquirer/figures": "^1.0.15",
- "@inquirer/type": "^3.0.10",
+ "@inquirer/ansi": "^2.0.7",
+ "@inquirer/figures": "^2.0.7",
+ "@inquirer/type": "^4.0.7",
"cli-width": "^4.1.0",
- "mute-stream": "^2.0.0",
- "signal-exit": "^4.1.0",
- "wrap-ansi": "^6.2.0",
- "yoctocolors-cjs": "^2.1.3"
+ "fast-wrap-ansi": "^0.2.0",
+ "mute-stream": "^3.0.0",
+ "signal-exit": "^4.1.0"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -1982,18 +2220,18 @@
}
},
"node_modules/@inquirer/editor": {
- "version": "4.2.23",
- "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.23.tgz",
- "integrity": "sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==",
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-5.2.2.tgz",
+ "integrity": "sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/external-editor": "^1.0.3",
- "@inquirer/type": "^3.0.10"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/external-editor": "^3.0.3",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2005,18 +2243,17 @@
}
},
"node_modules/@inquirer/expand": {
- "version": "4.0.23",
- "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.23.tgz",
- "integrity": "sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==",
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-5.1.1.tgz",
+ "integrity": "sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10",
- "yoctocolors-cjs": "^2.1.3"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2028,17 +2265,17 @@
}
},
"node_modules/@inquirer/external-editor": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz",
- "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-3.0.3.tgz",
+ "integrity": "sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==",
"dev": true,
"license": "MIT",
"dependencies": {
"chardet": "^2.1.1",
- "iconv-lite": "^0.7.0"
+ "iconv-lite": "^0.7.2"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2050,27 +2287,27 @@
}
},
"node_modules/@inquirer/figures": {
- "version": "1.0.15",
- "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.15.tgz",
- "integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.7.tgz",
+ "integrity": "sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
}
},
"node_modules/@inquirer/input": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.3.1.tgz",
- "integrity": "sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==",
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-5.1.2.tgz",
+ "integrity": "sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2082,17 +2319,17 @@
}
},
"node_modules/@inquirer/number": {
- "version": "3.0.23",
- "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.23.tgz",
- "integrity": "sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-4.1.1.tgz",
+ "integrity": "sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2104,18 +2341,18 @@
}
},
"node_modules/@inquirer/password": {
- "version": "4.0.23",
- "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.23.tgz",
- "integrity": "sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==",
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-5.1.1.tgz",
+ "integrity": "sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/ansi": "^1.0.2",
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10"
+ "@inquirer/ansi": "^2.0.7",
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2127,26 +2364,25 @@
}
},
"node_modules/@inquirer/prompts": {
- "version": "7.10.1",
- "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.10.1.tgz",
- "integrity": "sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==",
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-8.4.2.tgz",
+ "integrity": "sha512-XJmn/wY4AX56l1BRU+ZjDrFtg9+2uBEi4JvJQj82kwJDQKiPgSn4CEsbfGGygS4Gw6rkL4W18oATjfVfaqub2Q==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
- "@inquirer/checkbox": "^4.3.2",
- "@inquirer/confirm": "^5.1.21",
- "@inquirer/editor": "^4.2.23",
- "@inquirer/expand": "^4.0.23",
- "@inquirer/input": "^4.3.1",
- "@inquirer/number": "^3.0.23",
- "@inquirer/password": "^4.0.23",
- "@inquirer/rawlist": "^4.1.11",
- "@inquirer/search": "^3.2.2",
- "@inquirer/select": "^4.4.2"
+ "@inquirer/checkbox": "^5.1.4",
+ "@inquirer/confirm": "^6.0.12",
+ "@inquirer/editor": "^5.1.1",
+ "@inquirer/expand": "^5.0.13",
+ "@inquirer/input": "^5.0.12",
+ "@inquirer/number": "^4.0.12",
+ "@inquirer/password": "^5.0.12",
+ "@inquirer/rawlist": "^5.2.8",
+ "@inquirer/search": "^4.1.8",
+ "@inquirer/select": "^5.1.4"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2158,18 +2394,17 @@
}
},
"node_modules/@inquirer/rawlist": {
- "version": "4.1.11",
- "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.11.tgz",
- "integrity": "sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==",
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-5.3.1.tgz",
+ "integrity": "sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/type": "^3.0.10",
- "yoctocolors-cjs": "^2.1.3"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2181,19 +2416,18 @@
}
},
"node_modules/@inquirer/search": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.2.2.tgz",
- "integrity": "sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==",
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-4.2.1.tgz",
+ "integrity": "sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/core": "^10.3.2",
- "@inquirer/figures": "^1.0.15",
- "@inquirer/type": "^3.0.10",
- "yoctocolors-cjs": "^2.1.3"
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/figures": "^2.0.7",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2205,20 +2439,19 @@
}
},
"node_modules/@inquirer/select": {
- "version": "4.4.2",
- "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.4.2.tgz",
- "integrity": "sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==",
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-5.2.1.tgz",
+ "integrity": "sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/ansi": "^1.0.2",
- "@inquirer/core": "^10.3.2",
- "@inquirer/figures": "^1.0.15",
- "@inquirer/type": "^3.0.10",
- "yoctocolors-cjs": "^2.1.3"
+ "@inquirer/ansi": "^2.0.7",
+ "@inquirer/core": "^11.2.1",
+ "@inquirer/figures": "^2.0.7",
+ "@inquirer/type": "^4.0.7"
},
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2230,13 +2463,13 @@
}
},
"node_modules/@inquirer/type": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.10.tgz",
- "integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==",
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.7.tgz",
+ "integrity": "sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=18"
+ "node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
},
"peerDependencies": {
"@types/node": ">=18"
@@ -2247,29 +2480,6 @@
}
}
},
- "node_modules/@isaacs/balanced-match": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
- "integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "20 || >=22"
- }
- },
- "node_modules/@isaacs/brace-expansion": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
- "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@isaacs/balanced-match": "^4.0.1"
- },
- "engines": {
- "node": "20 || >=22"
- }
- },
"node_modules/@isaacs/fs-minipass": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
@@ -2283,16 +2493,6 @@
"node": ">=18.0.0"
}
},
- "node_modules/@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.13",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
@@ -2344,26 +2544,26 @@
}
},
"node_modules/@listr2/prompt-adapter-inquirer": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-3.0.5.tgz",
- "integrity": "sha512-WELs+hj6xcilkloBXYf9XXK8tYEnKsgLj01Xl5ONUJpKjmT5hGVUzNUS5tooUxs7pGMrw+jFD/41WpqW4V3LDA==",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-4.2.3.tgz",
+ "integrity": "sha512-Co9U3AJ3LW0J8XBHjVoNKA79dMAyFt8EZH3OaKTMcDTj8r+6kG3vSUPq/eGLHT7P0iK3uLaFfhdFYd3033P24g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@inquirer/type": "^3.0.8"
+ "@inquirer/type": "^4.0.5"
},
"engines": {
- "node": ">=20.0.0"
+ "node": ">=22.13.0"
},
"peerDependencies": {
- "@inquirer/prompts": ">= 3 < 8",
- "listr2": "9.0.5"
+ "@inquirer/prompts": ">= 3 < 9",
+ "listr2": "10.2.1"
}
},
"node_modules/@lmdb/lmdb-darwin-arm64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.4.4.tgz",
- "integrity": "sha512-XaKL705gDWd6XVls3ATDj13ZdML/LqSIxwgnYpG8xTzH2ifArx8fMMDdvqGE/Emd+W6R90W2fveZcJ0AyS8Y0w==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.5.4.tgz",
+ "integrity": "sha512-Kk4Kz3iyu1QiLsLZBS9Af1eSKUC8VR2T+/jyE2iAyuGw2VwK08pp5iTbZnXn6sWu0LogO/RFktMxOjiDA2sS3w==",
"cpu": [
"arm64"
],
@@ -2375,9 +2575,9 @@
]
},
"node_modules/@lmdb/lmdb-darwin-x64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.4.4.tgz",
- "integrity": "sha512-GPHGEVcwJlkD01GmIr7B4kvbIcUDS2+kBadVEd7lU4can1RZaZQLDDBJRrrNfS2Kavvl0VLI/cMv7UASAXGrww==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.5.4.tgz",
+ "integrity": "sha512-BEe5Rp3trn26oxoXOVL5HVDoiYmjUDwr8NRPkBOdUdCSBEorKI+7JrZLRKAdxO+G6cGQLgseXk0gR7qIQa7aGw==",
"cpu": [
"x64"
],
@@ -2389,9 +2589,9 @@
]
},
"node_modules/@lmdb/lmdb-linux-arm": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.4.4.tgz",
- "integrity": "sha512-cmev5/dZr5ACKri9f6GU6lZCXTjMhV72xujlbOhFCgFXrt4W0TxGsmY8kA1BITvH60JBKE50cSxsiulybAbrrw==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.5.4.tgz",
+ "integrity": "sha512-SGbFR7816uBcTHc2ZY4S6WyOkl9bICnzqTQd2Mv4V/j24cfds88xx2nC6cm/y8zGQL7Ds31YF/5NGxjgcdM5Hw==",
"cpu": [
"arm"
],
@@ -2403,9 +2603,9 @@
]
},
"node_modules/@lmdb/lmdb-linux-arm64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.4.4.tgz",
- "integrity": "sha512-mALqr7DE42HsiwVTKpQWxacjHoJk+e9p00RWIJqTACh/hpucxp/0lK/XMh5XzWnU/TDCZLukq1+vNqnNumTP/Q==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.5.4.tgz",
+ "integrity": "sha512-cUXEengO8o60v1SWerJTH4/RH4U3+9jC0/4njp2Z9NdmvaGzhKsbRM2wpXuRYrN8tytsoJCg0SvWEWwHAwLbCA==",
"cpu": [
"arm64"
],
@@ -2417,9 +2617,9 @@
]
},
"node_modules/@lmdb/lmdb-linux-x64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.4.4.tgz",
- "integrity": "sha512-QjLs8OcmCNcraAcLoZyFlo0atzBJniQLLwhtR+ymQqS5kLYpV5RqwriL87BW+ZiR9ZiGgZx3evrz5vnWPtJ1fQ==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.5.4.tgz",
+ "integrity": "sha512-Gxq8jpgOWXwd0PUR+c9R2Ik1/uBnGd5GMIIzRRDqABCkvmjtC3KWcyhesV9jSPCz759isl0NlbsstZ2oyvk8lA==",
"cpu": [
"x64"
],
@@ -2431,9 +2631,9 @@
]
},
"node_modules/@lmdb/lmdb-win32-arm64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.4.4.tgz",
- "integrity": "sha512-tr/pwHDlZ33forLGAr0tI04cRmP4SgF93yHbb+2zvZiDEyln5yMHhbKDySxY66aUOkhvBvTuHq9q/3YmTj6ZHQ==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.5.4.tgz",
+ "integrity": "sha512-pKv1DJ1bPZAaHkdFsSz5IDfUG8x9vntgquXF9/Dm2xuupcIe/EkLzylpoBxppFVK5vzbV561Dq26jNY2fIMA7g==",
"cpu": [
"arm64"
],
@@ -2445,9 +2645,9 @@
]
},
"node_modules/@lmdb/lmdb-win32-x64": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.4.4.tgz",
- "integrity": "sha512-KRzfocJzB/mgoTCqnMawuLSKheHRVTqWfSmouIgYpFs6Hx4zvZSvsZKSCEb5gHmICy7qsx9l06jk3MFTtiFVAQ==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.5.4.tgz",
+ "integrity": "sha512-JF1BmLCm9kGEVZgYmJq43zeQVdHVgAJnTi/NURWEsy6L1ZrrlSmdltS+D17QN4LODwf+1LMXAA9auIZVXtWwzw==",
"cpu": [
"x64"
],
@@ -2459,13 +2659,13 @@
]
},
"node_modules/@modelcontextprotocol/sdk": {
- "version": "1.25.2",
- "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.25.2.tgz",
- "integrity": "sha512-LZFeo4F9M5qOhC/Uc1aQSrBHxMrvxett+9KLHt7OhcExtoiRN9DKgbZffMP/nxjutWDQpfMDfP3nkHI4X9ijww==",
+ "version": "1.29.0",
+ "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.29.0.tgz",
+ "integrity": "sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@hono/node-server": "^1.19.7",
+ "@hono/node-server": "^1.19.9",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"content-type": "^1.0.5",
@@ -2473,14 +2673,15 @@
"cross-spawn": "^7.0.5",
"eventsource": "^3.0.2",
"eventsource-parser": "^3.0.0",
- "express": "^5.0.1",
- "express-rate-limit": "^7.5.0",
- "jose": "^6.1.1",
+ "express": "^5.2.1",
+ "express-rate-limit": "^8.2.1",
+ "hono": "^4.11.4",
+ "jose": "^6.1.3",
"json-schema-typed": "^8.0.2",
"pkce-challenge": "^5.0.0",
"raw-body": "^3.0.0",
"zod": "^3.25 || ^4.0",
- "zod-to-json-schema": "^3.25.0"
+ "zod-to-json-schema": "^3.25.1"
},
"engines": {
"node": ">=18"
@@ -2499,9 +2700,9 @@
}
},
"node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz",
- "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.4.tgz",
+ "integrity": "sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==",
"cpu": [
"arm64"
],
@@ -2513,9 +2714,9 @@
]
},
"node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz",
- "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.4.tgz",
+ "integrity": "sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w==",
"cpu": [
"x64"
],
@@ -2527,9 +2728,9 @@
]
},
"node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz",
- "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.4.tgz",
+ "integrity": "sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw==",
"cpu": [
"arm"
],
@@ -2541,9 +2742,9 @@
]
},
"node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz",
- "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.4.tgz",
+ "integrity": "sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==",
"cpu": [
"arm64"
],
@@ -2555,9 +2756,9 @@
]
},
"node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz",
- "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.4.tgz",
+ "integrity": "sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ==",
"cpu": [
"x64"
],
@@ -2569,9 +2770,9 @@
]
},
"node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz",
- "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.4.tgz",
+ "integrity": "sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==",
"cpu": [
"x64"
],
@@ -2906,20 +3107,22 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
- "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/core": "^1.7.1",
- "@emnapi/runtime": "^1.7.1",
- "@tybys/wasm-util": "^0.10.1"
+ "@tybys/wasm-util": "^0.10.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "peerDependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1"
}
},
"node_modules/@nodelib/fs.scandir": {
@@ -2961,9 +3164,9 @@
}
},
"node_modules/@npmcli/agent": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-4.0.0.tgz",
- "integrity": "sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-4.0.2.tgz",
+ "integrity": "sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -2977,10 +3180,34 @@
"node": "^20.17.0 || >=22.9.0"
}
},
+ "node_modules/@npmcli/agent/node_modules/agent-base": {
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/@npmcli/agent/node_modules/https-proxy-agent": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^7.1.2",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
"node_modules/@npmcli/agent/node_modules/lru-cache": {
- "version": "11.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
- "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -3001,18 +3228,18 @@
}
},
"node_modules/@npmcli/git": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-7.0.1.tgz",
- "integrity": "sha512-+XTFxK2jJF/EJJ5SoAzXk3qwIDfvFc5/g+bD274LZ7uY7LE8sTfG6Z8rOanPl2ZEvZWqNvmEdtXC25cE54VcoA==",
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-7.0.2.tgz",
+ "integrity": "sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==",
"dev": true,
"license": "ISC",
"dependencies": {
+ "@gar/promise-retry": "^1.0.0",
"@npmcli/promise-spawn": "^9.0.0",
"ini": "^6.0.0",
"lru-cache": "^11.2.1",
"npm-pick-manifest": "^11.0.1",
"proc-log": "^6.0.0",
- "promise-retry": "^2.0.1",
"semver": "^7.3.5",
"which": "^6.0.0"
},
@@ -3021,19 +3248,19 @@
}
},
"node_modules/@npmcli/git/node_modules/isexe": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz",
+ "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==",
"dev": true,
- "license": "ISC",
+ "license": "BlueOak-1.0.0",
"engines": {
- "node": ">=16"
+ "node": ">=20"
}
},
"node_modules/@npmcli/git/node_modules/lru-cache": {
- "version": "11.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
- "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -3041,13 +3268,13 @@
}
},
"node_modules/@npmcli/git/node_modules/which": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-6.0.0.tgz",
- "integrity": "sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz",
+ "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==",
"dev": true,
"license": "ISC",
"dependencies": {
- "isexe": "^3.1.1"
+ "isexe": "^4.0.0"
},
"bin": {
"node-which": "bin/which.js"
@@ -3084,9 +3311,9 @@
}
},
"node_modules/@npmcli/package-json": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-7.0.4.tgz",
- "integrity": "sha512-0wInJG3j/K40OJt/33ax47WfWMzZTm6OQxB9cDhTt5huCP2a9g2GnlsxmfN+PulItNPIpPrZ+kfwwUil7eHcZQ==",
+ "version": "7.0.5",
+ "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-7.0.5.tgz",
+ "integrity": "sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3096,7 +3323,7 @@
"json-parse-even-better-errors": "^5.0.0",
"proc-log": "^6.0.0",
"semver": "^7.5.3",
- "validate-npm-package-license": "^3.0.4"
+ "spdx-expression-parse": "^4.0.0"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
@@ -3115,90 +3342,427 @@
"node": "^20.17.0 || >=22.9.0"
}
},
- "node_modules/@npmcli/promise-spawn/node_modules/isexe": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "node_modules/@npmcli/promise-spawn/node_modules/isexe": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz",
+ "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=20"
+ }
+ },
+ "node_modules/@npmcli/promise-spawn/node_modules/which": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz",
+ "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^4.0.0"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ }
+ },
+ "node_modules/@npmcli/redact": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-4.0.0.tgz",
+ "integrity": "sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ }
+ },
+ "node_modules/@npmcli/run-script": {
+ "version": "10.0.4",
+ "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-10.0.4.tgz",
+ "integrity": "sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/node-gyp": "^5.0.0",
+ "@npmcli/package-json": "^7.0.0",
+ "@npmcli/promise-spawn": "^9.0.0",
+ "node-gyp": "^12.1.0",
+ "proc-log": "^6.0.0"
+ },
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-android-arm-eabi": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm-eabi/-/binding-android-arm-eabi-0.121.0.tgz",
+ "integrity": "sha512-n07FQcySwOlzap424/PLMtOkbS7xOu8nsJduKL8P3COGHKgKoDYXwoAHCbChfgFpHnviehrLWIPX0lKGtbEk/A==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-android-arm64": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-android-arm64/-/binding-android-arm64-0.121.0.tgz",
+ "integrity": "sha512-/Dd1xIXboYAicw+twT2utxPD7bL8qh7d3ej0qvaYIMj3/EgIrGR+tSnjCUkiCT6g6uTC0neSS4JY8LxhdSU/sA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-darwin-arm64": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.121.0.tgz",
+ "integrity": "sha512-A0jNEvv7QMtCO1yk205t3DWU9sWUjQ2KNF0hSVO5W9R9r/R1BIvzG01UQAfmtC0dQm7sCrs5puixurKSfr2bRQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-darwin-x64": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.121.0.tgz",
+ "integrity": "sha512-SsHzipdxTKUs3I9EOAPmnIimEeJOemqRlRDOp9LIj+96wtxZejF51gNibmoGq8KoqbT1ssAI5po/E3J+vEtXGA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-freebsd-x64": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-freebsd-x64/-/binding-freebsd-x64-0.121.0.tgz",
+ "integrity": "sha512-v1APOTkCp+RWOIDAHRoaeW/UoaHF15a60E8eUL6kUQXh+i4K7PBwq2Wi7jm8p0ymID5/m/oC1w3W31Z/+r7HQw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.121.0.tgz",
+ "integrity": "sha512-PmqPQuqHZyFVWA4ycr0eu4VnTMmq9laOHZd+8R359w6kzuNZPvmmunmNJ8ybkm769A0nCoVp3TJ6dUz7B3FYIQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm-musleabihf": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-musleabihf/-/binding-linux-arm-musleabihf-0.121.0.tgz",
+ "integrity": "sha512-vF24htj+MOH+Q7y9A8NuC6pUZu8t/C2Fr/kDOi2OcNf28oogr2xadBPXAbml802E8wRAVfbta6YLDQTearz+jw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm64-gnu": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.121.0.tgz",
+ "integrity": "sha512-wjH8cIG2Lu/3d64iZpbYr73hREMgKAfu7fqpXjgM2S16y2zhTfDIp8EQjxO8vlDtKP5Rc7waZW72lh8nZtWrpA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-arm64-musl": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.121.0.tgz",
+ "integrity": "sha512-qT663J/W8yQFw3dtscbEi9LKJevr20V7uWs2MPGTnvNZ3rm8anhhE16gXGpxDOHeg9raySaSHKhd4IGa3YZvuw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-ppc64-gnu": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-0.121.0.tgz",
+ "integrity": "sha512-mYNe4NhVvDBbPkAP8JaVS8lC1dsoJZWH5WCjpw5E+sjhk1R08wt3NnXYUzum7tIiWPfgQxbCMcoxgeemFASbRw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-riscv64-gnu": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-gnu/-/binding-linux-riscv64-gnu-0.121.0.tgz",
+ "integrity": "sha512-+QiFoGxhAbaI/amqX567784cDyyuZIpinBrJNxUzb+/L2aBRX67mN6Jv40pqduHf15yYByI+K5gUEygCuv0z9w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-riscv64-musl": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-riscv64-musl/-/binding-linux-riscv64-musl-0.121.0.tgz",
+ "integrity": "sha512-9ykEgyTa5JD/Uhv2sttbKnCfl2PieUfOjyxJC/oDL2UO0qtXOtjPLl7H8Kaj5G7p3hIvFgu3YWvAxvE0sqY+hQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-s390x-gnu": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-0.121.0.tgz",
+ "integrity": "sha512-DB1EW5VHZdc1lIRjOI3bW/wV6R6y0xlfvdVrqj6kKi7Ayu2U3UqUBdq9KviVkcUGd5Oq+dROqvUEEFRXGAM7EQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-linux-x64-gnu": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.121.0.tgz",
+ "integrity": "sha512-s4lfobX9p4kPTclvMiH3gcQUd88VlnkMTF6n2MTMDAyX5FPNRhhRSFZK05Ykhf8Zy5NibV4PbGR6DnK7FGNN6A==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "ISC",
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=16"
+ "node": "^20.19.0 || >=22.12.0"
}
},
- "node_modules/@npmcli/promise-spawn/node_modules/which": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-6.0.0.tgz",
- "integrity": "sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==",
+ "node_modules/@oxc-parser/binding-linux-x64-musl": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.121.0.tgz",
+ "integrity": "sha512-P9KlyTpuBuMi3NRGpJO8MicuGZfOoqZVRP1WjOecwx8yk4L/+mrCRNc5egSi0byhuReblBF2oVoDSMgV9Bj4Hw==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^3.1.1"
- },
- "bin": {
- "node-which": "bin/which.js"
- },
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": "^20.17.0 || >=22.9.0"
+ "node": "^20.19.0 || >=22.12.0"
}
},
- "node_modules/@npmcli/redact": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-4.0.0.tgz",
- "integrity": "sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==",
+ "node_modules/@oxc-parser/binding-openharmony-arm64": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-openharmony-arm64/-/binding-openharmony-arm64-0.121.0.tgz",
+ "integrity": "sha512-R+4jrWOfF2OAPPhj3Eb3U5CaKNAH9/btMveMULIrcNW/hjfysFQlF8wE0GaVBr81dWz8JLgQlsxwctoL78JwXw==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "ISC",
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
"engines": {
- "node": "^20.17.0 || >=22.9.0"
+ "node": "^20.19.0 || >=22.12.0"
}
},
- "node_modules/@npmcli/run-script": {
- "version": "10.0.3",
- "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-10.0.3.tgz",
- "integrity": "sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==",
+ "node_modules/@oxc-parser/binding-wasm32-wasi": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.121.0.tgz",
+ "integrity": "sha512-5TFISkPTymKvsmIlKasPVTPuWxzCcrT8pM+p77+mtQbIZDd1UC8zww4CJcRI46kolmgrEX6QpKO8AvWMVZ+ifw==",
+ "cpu": [
+ "wasm32"
+ ],
"dev": true,
- "license": "ISC",
+ "license": "MIT",
+ "optional": true,
"dependencies": {
- "@npmcli/node-gyp": "^5.0.0",
- "@npmcli/package-json": "^7.0.0",
- "@npmcli/promise-spawn": "^9.0.0",
- "node-gyp": "^12.1.0",
- "proc-log": "^6.0.0",
- "which": "^6.0.0"
+ "@napi-rs/wasm-runtime": "^1.1.1"
},
"engines": {
- "node": "^20.17.0 || >=22.9.0"
+ "node": ">=14.0.0"
}
},
- "node_modules/@npmcli/run-script/node_modules/isexe": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "node_modules/@oxc-parser/binding-win32-arm64-msvc": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.121.0.tgz",
+ "integrity": "sha512-V0pxh4mql4XTt3aiEtRNUeBAUFOw5jzZNxPABLaOKAWrVzSr9+XUaB095lY7jqMf5t8vkfh8NManGB28zanYKw==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "ISC",
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=16"
+ "node": "^20.19.0 || >=22.12.0"
}
},
- "node_modules/@npmcli/run-script/node_modules/which": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-6.0.0.tgz",
- "integrity": "sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==",
+ "node_modules/@oxc-parser/binding-win32-ia32-msvc": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-0.121.0.tgz",
+ "integrity": "sha512-4Ob1qvYMPnlF2N9rdmKdkQFdrq16QVcQwBsO8yiPZXof0fHKFF+LmQV501XFbi7lHyrKm8rlJRfQ/M8bZZPVLw==",
+ "cpu": [
+ "ia32"
+ ],
"dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^3.1.1"
- },
- "bin": {
- "node-which": "bin/which.js"
- },
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": "^20.17.0 || >=22.9.0"
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@oxc-parser/binding-win32-x64-msvc": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.121.0.tgz",
+ "integrity": "sha512-BOp1KCzdboB1tPqoCPXgntgFs0jjeSyOXHzgxVFR7B/qfr3F8r4YDacHkTOUNXtDgM8YwKnkf3rE5gwALYX7NA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
}
},
"node_modules/@oxc-project/types": {
- "version": "0.106.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.106.0.tgz",
- "integrity": "sha512-QdsH3rZq480VnOHSHgPYOhjL8O8LBdcnSjM408BpPCCUc0JYYZPG9Gafl9i3OcGk/7137o+gweb4cCv3WAUykg==",
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.121.0.tgz",
+ "integrity": "sha512-CGtOARQb9tyv7ECgdAlFxi0Fv7lmzvmlm2rpD/RdijOO9rfk/JvB1CjT8EnoD+tjna/IYgKKw3IV7objRb+aYw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -3524,9 +4088,9 @@
"optional": true
},
"node_modules/@rolldown/binding-android-arm64": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-beta.58.tgz",
- "integrity": "sha512-mWj5eE4Qc8TbPdGGaaLvBb9XfDPvE1EmZkJQgiGKwchkWH4oAJcRAKMTw7ZHnb1L+t7Ah41sBkAecaIsuUgsug==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
"cpu": [
"arm64"
],
@@ -3541,9 +4105,9 @@
}
},
"node_modules/@rolldown/binding-darwin-arm64": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-beta.58.tgz",
- "integrity": "sha512-wFxUymI/5R8bH8qZFYDfAxAN9CyISEIYke+95oZPiv6EWo88aa5rskjVcCpKA532R+klFmdqjbbaD56GNmTF4Q==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
"cpu": [
"arm64"
],
@@ -3558,9 +4122,9 @@
}
},
"node_modules/@rolldown/binding-darwin-x64": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-beta.58.tgz",
- "integrity": "sha512-ybp3MkPj23VDV9PhtRwdU5qrGhlViWRV5BjKwO6epaSlUD5lW0WyY+roN3ZAzbma/9RrMTgZ/a/gtQq8YXOcqw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
"cpu": [
"x64"
],
@@ -3575,9 +4139,9 @@
}
},
"node_modules/@rolldown/binding-freebsd-x64": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-beta.58.tgz",
- "integrity": "sha512-Evxj3yh7FWvyklUYZa0qTVT9N2zX9TPDqGF056hl8hlCZ9/ndQ2xMv6uw9PD1VlLpukbsqL+/C6M0qwipL0QMg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
"cpu": [
"x64"
],
@@ -3592,9 +4156,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-beta.58.tgz",
- "integrity": "sha512-tYeXprDOrEgVHUbPXH6MPso4cM/c6RTkmJNICMQlYdki4hGMh92aj3yU6CKs+4X5gfG0yj5kVUw/L4M685SYag==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
"cpu": [
"arm"
],
@@ -3609,13 +4173,16 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-gnu": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-beta.58.tgz",
- "integrity": "sha512-N78vmZzP6zG967Ohr+MasCjmKtis0geZ1SOVmxrA0/bklTQSzH5kHEjW5Qn+i1taFno6GEre1E40v0wuWsNOQw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3626,13 +4193,56 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-musl": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-beta.58.tgz",
- "integrity": "sha512-l+p4QVtG72C7wI2SIkNQw/KQtSjuYwS3rV6AKcWrRBF62ClsFUcif5vLaZIEbPrCXu5OFRXigXFJnxYsVVZqdQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3643,13 +4253,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-gnu": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-beta.58.tgz",
- "integrity": "sha512-urzJX0HrXxIh0FfxwWRjfPCMeInU9qsImLQxHBgLp5ivji1EEUnOfux8KxPPnRQthJyneBrN2LeqUix9DYrNaQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3660,13 +4273,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-musl": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-beta.58.tgz",
- "integrity": "sha512-7ijfVK3GISnXIwq/1FZo+KyAUJjL3kWPJ7rViAL6MWeEBhEgRzJ0yEd9I8N9aut8Y8ab+EKFJyRNMWZuUBwQ0A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3677,9 +4293,9 @@
}
},
"node_modules/@rolldown/binding-openharmony-arm64": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-beta.58.tgz",
- "integrity": "sha512-/m7sKZCS+cUULbzyJTIlv8JbjNohxbpAOA6cM+lgWgqVzPee3U6jpwydrib328JFN/gF9A99IZEnuGYqEDJdww==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
"cpu": [
"arm64"
],
@@ -3694,9 +4310,9 @@
}
},
"node_modules/@rolldown/binding-wasm32-wasi": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-beta.58.tgz",
- "integrity": "sha512-6SZk7zMgv+y3wFFQ9qE5P9NnRHcRsptL1ypmudD26PDY+PvFCvfHRkJNfclWnvacVGxjowr7JOL3a9fd1wWhUw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
"cpu": [
"wasm32"
],
@@ -3704,16 +4320,52 @@
"license": "MIT",
"optional": true,
"dependencies": {
- "@napi-rs/wasm-runtime": "^1.1.1"
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
},
"engines": {
- "node": ">=14.0.0"
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/core": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.2.1",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/runtime": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
}
},
"node_modules/@rolldown/binding-win32-arm64-msvc": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-beta.58.tgz",
- "integrity": "sha512-sFqfYPnBZ6xBhMkadB7UD0yjEDRvs7ipR3nCggblN+N4ODCXY6qhg/bKL39+W+dgQybL7ErD4EGERVbW9DAWvg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
"cpu": [
"arm64"
],
@@ -3728,9 +4380,9 @@
}
},
"node_modules/@rolldown/binding-win32-x64-msvc": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-beta.58.tgz",
- "integrity": "sha512-AnFWJdAqB8+IDPcGrATYs67Kik/6tnndNJV2jGRmwlbeNiQQ8GhRJU8ETRlINfII0pqi9k4WWLnb00p1QCxw/Q==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
"cpu": [
"x64"
],
@@ -3745,16 +4397,16 @@
}
},
"node_modules/@rolldown/pluginutils": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.58.tgz",
- "integrity": "sha512-qWhDs6yFGR5xDfdrwiSa3CWGIHxD597uGE/A9xGqytBjANvh4rLCTTkq7szhMV4+Ygh+PMS90KVJ8xWG/TkX4w==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
"dev": true,
"license": "MIT"
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.55.2.tgz",
- "integrity": "sha512-21J6xzayjy3O6NdnlO6aXi/urvSRjm6nCI6+nF6ra2YofKruGixN9kfT+dt55HVNwfDmpDHJcaS3JuP/boNnlA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
+ "integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
"cpu": [
"arm"
],
@@ -3766,9 +4418,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.55.2.tgz",
- "integrity": "sha512-eXBg7ibkNUZ+sTwbFiDKou0BAckeV6kIigK7y5Ko4mB/5A1KLhuzEKovsmfvsL8mQorkoincMFGnQuIT92SKqA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
+ "integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
"cpu": [
"arm64"
],
@@ -3780,9 +4432,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.55.2.tgz",
- "integrity": "sha512-UCbaTklREjrc5U47ypLulAgg4njaqfOVLU18VrCrI+6E5MQjuG0lSWaqLlAJwsD7NpFV249XgB0Bi37Zh5Sz4g==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.2.tgz",
+ "integrity": "sha512-UwRE7CGpvSVEQS8gUMBe1uADWjNnVgP3Iusyda1nSRwNDCsRjnGc7w6El6WLQsXmZTbLZx9cecegumcitNfpmA==",
"cpu": [
"arm64"
],
@@ -3794,9 +4446,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.55.2.tgz",
- "integrity": "sha512-dP67MA0cCMHFT2g5XyjtpVOtp7y4UyUxN3dhLdt11at5cPKnSm4lY+EhwNvDXIMzAMIo2KU+mc9wxaAQJTn7sQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
+ "integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
"cpu": [
"x64"
],
@@ -3808,9 +4460,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.55.2.tgz",
- "integrity": "sha512-WDUPLUwfYV9G1yxNRJdXcvISW15mpvod1Wv3ok+Ws93w1HjIVmCIFxsG2DquO+3usMNCpJQ0wqO+3GhFdl6Fow==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
+ "integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
"cpu": [
"arm64"
],
@@ -3822,9 +4474,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.55.2.tgz",
- "integrity": "sha512-Ng95wtHVEulRwn7R0tMrlUuiLVL/HXA8Lt/MYVpy88+s5ikpntzZba1qEulTuPnPIZuOPcW9wNEiqvZxZmgmqQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
+ "integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
"cpu": [
"x64"
],
@@ -3836,13 +4488,16 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.55.2.tgz",
- "integrity": "sha512-AEXMESUDWWGqD6LwO/HkqCZgUE1VCJ1OhbvYGsfqX2Y6w5quSXuyoy/Fg3nRqiwro+cJYFxiw5v4kB2ZDLhxrw==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
+ "integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
"cpu": [
"arm"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3850,13 +4505,16 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.55.2.tgz",
- "integrity": "sha512-ZV7EljjBDwBBBSv570VWj0hiNTdHt9uGznDtznBB4Caj3ch5rgD4I2K1GQrtbvJ/QiB+663lLgOdcADMNVC29Q==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
+ "integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
"cpu": [
"arm"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3864,13 +4522,16 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.55.2.tgz",
- "integrity": "sha512-uvjwc8NtQVPAJtq4Tt7Q49FOodjfbf6NpqXyW/rjXoV+iZ3EJAHLNAnKT5UJBc6ffQVgmXTUL2ifYiLABlGFqA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
+ "integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3878,13 +4539,16 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.55.2.tgz",
- "integrity": "sha512-s3KoWVNnye9mm/2WpOZ3JeUiediUVw6AvY/H7jNA6qgKA2V2aM25lMkVarTDfiicn/DLq3O0a81jncXszoyCFA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
+ "integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3892,13 +4556,16 @@
]
},
"node_modules/@rollup/rollup-linux-loong64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.55.2.tgz",
- "integrity": "sha512-gi21faacK+J8aVSyAUptML9VQN26JRxe484IbF+h3hpG+sNVoMXPduhREz2CcYr5my0NE3MjVvQ5bMKX71pfVA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
+ "integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
"cpu": [
"loong64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3906,13 +4573,16 @@
]
},
"node_modules/@rollup/rollup-linux-loong64-musl": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.55.2.tgz",
- "integrity": "sha512-qSlWiXnVaS/ceqXNfnoFZh4IiCA0EwvCivivTGbEu1qv2o+WTHpn1zNmCTAoOG5QaVr2/yhCoLScQtc/7RxshA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
+ "integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
"cpu": [
"loong64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3920,13 +4590,16 @@
]
},
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.55.2.tgz",
- "integrity": "sha512-rPyuLFNoF1B0+wolH277E780NUKf+KoEDb3OyoLbAO18BbeKi++YN6gC/zuJoPPDlQRL3fIxHxCxVEWiem2yXw==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
+ "integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
"cpu": [
"ppc64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3934,13 +4607,16 @@
]
},
"node_modules/@rollup/rollup-linux-ppc64-musl": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.55.2.tgz",
- "integrity": "sha512-g+0ZLMook31iWV4PvqKU0i9E78gaZgYpSrYPed/4Bu+nGTgfOPtfs1h11tSSRPXSjC5EzLTjV/1A7L2Vr8pJoQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
+ "integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
"cpu": [
"ppc64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3948,13 +4624,16 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.55.2.tgz",
- "integrity": "sha512-i+sGeRGsjKZcQRh3BRfpLsM3LX3bi4AoEVqmGDyc50L6KfYsN45wVCSz70iQMwPWr3E5opSiLOwsC9WB4/1pqg==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
+ "integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
"cpu": [
"riscv64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3962,13 +4641,16 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-musl": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.55.2.tgz",
- "integrity": "sha512-C1vLcKc4MfFV6I0aWsC7B2Y9QcsiEcvKkfxprwkPfLaN8hQf0/fKHwSF2lcYzA9g4imqnhic729VB9Fo70HO3Q==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
+ "integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
"cpu": [
"riscv64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3976,13 +4658,16 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.55.2.tgz",
- "integrity": "sha512-68gHUK/howpQjh7g7hlD9DvTTt4sNLp1Bb+Yzw2Ki0xvscm2cOdCLZNJNhd2jW8lsTPrHAHuF751BygifW4bkQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
+ "integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
"cpu": [
"s390x"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -3990,13 +4675,16 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.55.2.tgz",
- "integrity": "sha512-1e30XAuaBP1MAizaOBApsgeGZge2/Byd6wV4a8oa6jPdHELbRHBiw7wvo4dp7Ie2PE8TZT4pj9RLGZv9N4qwlw==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
+ "integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -4004,13 +4692,16 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.55.2.tgz",
- "integrity": "sha512-4BJucJBGbuGnH6q7kpPqGJGzZnYrpAzRd60HQSt3OpX/6/YVgSsJnNzR8Ot74io50SeVT4CtCWe/RYIAymFPwA==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
+ "integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -4018,9 +4709,9 @@
]
},
"node_modules/@rollup/rollup-openbsd-x64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.55.2.tgz",
- "integrity": "sha512-cT2MmXySMo58ENv8p6/O6wI/h/gLnD3D6JoajwXFZH6X9jz4hARqUhWpGuQhOgLNXscfZYRQMJvZDtWNzMAIDw==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
+ "integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
"cpu": [
"x64"
],
@@ -4032,9 +4723,9 @@
]
},
"node_modules/@rollup/rollup-openharmony-arm64": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.55.2.tgz",
- "integrity": "sha512-sZnyUgGkuzIXaK3jNMPmUIyJrxu/PjmATQrocpGA1WbCPX8H5tfGgRSuYtqBYAvLuIGp8SPRb1O4d1Fkb5fXaQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
+ "integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
"cpu": [
"arm64"
],
@@ -4046,9 +4737,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.55.2.tgz",
- "integrity": "sha512-sDpFbenhmWjNcEbBcoTV0PWvW5rPJFvu+P7XoTY0YLGRupgLbFY0XPfwIbJOObzO7QgkRDANh65RjhPmgSaAjQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
+ "integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
"cpu": [
"arm64"
],
@@ -4060,9 +4751,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.55.2.tgz",
- "integrity": "sha512-GvJ03TqqaweWCigtKQVBErw2bEhu1tyfNQbarwr94wCGnczA9HF8wqEe3U/Lfu6EdeNP0p6R+APeHVwEqVxpUQ==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
+ "integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
"cpu": [
"ia32"
],
@@ -4074,9 +4765,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-gnu": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.55.2.tgz",
- "integrity": "sha512-KvXsBvp13oZz9JGe5NYS7FNizLe99Ny+W8ETsuCyjXiKdiGrcz2/J/N8qxZ/RSwivqjQguug07NLHqrIHrqfYw==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
+ "integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
"cpu": [
"x64"
],
@@ -4088,9 +4779,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.55.2.tgz",
- "integrity": "sha512-xNO+fksQhsAckRtDSPWaMeT1uIM+JrDRXlerpnWNXhn1TdB3YZ6uKBMBTKP0eX9XtYEP978hHk1f8332i2AW8Q==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
+ "integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
"cpu": [
"x64"
],
@@ -4102,18 +4793,19 @@
]
},
"node_modules/@schematics/angular": {
- "version": "21.1.0",
- "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.1.0.tgz",
- "integrity": "sha512-gXf3gO5SeU+tiPHxXeQvdbua4C4/V+KH43JH2PYPxaNCD2HGo1uV0pfyNSNgcVF21voKlbAQ13YRrNDh7z5Kig==",
+ "version": "22.0.1",
+ "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-22.0.1.tgz",
+ "integrity": "sha512-JRtJ9x0CaYIBLdPERr7B66ZSSLy4phkb7KtFIcD8RC2nAmnL/elevL2wg2Miih7ww0zmhiblS3LDE/abqSLRAA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@angular-devkit/core": "21.1.0",
- "@angular-devkit/schematics": "21.1.0",
- "jsonc-parser": "3.3.1"
+ "@angular-devkit/core": "22.0.1",
+ "@angular-devkit/schematics": "22.0.1",
+ "jsonc-parser": "3.3.1",
+ "typescript": "6.0.3"
},
"engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
+ "node": "^22.22.3 || ^24.15.0 || >=26.0.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
@@ -4132,9 +4824,9 @@
}
},
"node_modules/@sigstore/core": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-3.1.0.tgz",
- "integrity": "sha512-o5cw1QYhNQ9IroioJxpzexmPjfCe7gzafd2RY3qnMpxr4ZEja+Jad/U8sgFpaue6bOaF+z7RVkyKVV44FN+N8A==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-3.2.1.tgz",
+ "integrity": "sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4142,9 +4834,9 @@
}
},
"node_modules/@sigstore/protobuf-specs": {
- "version": "0.5.0",
- "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.5.0.tgz",
- "integrity": "sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==",
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.5.1.tgz",
+ "integrity": "sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -4152,27 +4844,27 @@
}
},
"node_modules/@sigstore/sign": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-4.1.0.tgz",
- "integrity": "sha512-Vx1RmLxLGnSUqx/o5/VsCjkuN5L7y+vxEEwawvc7u+6WtX2W4GNa7b9HEjmcRWohw/d6BpATXmvOwc78m+Swdg==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-4.1.1.tgz",
+ "integrity": "sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
+ "@gar/promise-retry": "^1.0.2",
"@sigstore/bundle": "^4.0.0",
- "@sigstore/core": "^3.1.0",
+ "@sigstore/core": "^3.2.0",
"@sigstore/protobuf-specs": "^0.5.0",
- "make-fetch-happen": "^15.0.3",
- "proc-log": "^6.1.0",
- "promise-retry": "^2.0.1"
+ "make-fetch-happen": "^15.0.4",
+ "proc-log": "^6.1.0"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
}
},
"node_modules/@sigstore/tuf": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-4.0.1.tgz",
- "integrity": "sha512-OPZBg8y5Vc9yZjmWCHrlWPMBqW5yd8+wFNl+thMdtcWz3vjVSoJQutF8YkrzI0SLGnkuFof4HSsWUhXrf219Lw==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-4.0.2.tgz",
+ "integrity": "sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -4184,14 +4876,14 @@
}
},
"node_modules/@sigstore/verify": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-3.1.0.tgz",
- "integrity": "sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-3.1.1.tgz",
+ "integrity": "sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@sigstore/bundle": "^4.0.0",
- "@sigstore/core": "^3.1.0",
+ "@sigstore/core": "^3.2.1",
"@sigstore/protobuf-specs": "^0.5.0"
},
"engines": {
@@ -4252,9 +4944,9 @@
}
},
"node_modules/@tybys/wasm-util": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
- "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -4270,12 +4962,11 @@
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "24.10.10",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.10.tgz",
- "integrity": "sha512-+0/4J266CBGPUq/ELg7QUHhN25WYjE0wYTPSQJn1xeu8DOlIOPxXxrNGiLmfAWl7HMMgWFWXpt9IDjMWrF5Iow==",
+ "version": "24.10.15",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.15.tgz",
+ "integrity": "sha512-BgjLoRuSr0MTI5wA6gMw9Xy0sFudAaUuvrnjgGx9wZ522fYYLA5SYJ+1Y30vTcJEG+DRCyDHx/gzQVfofYzSdg==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"undici-types": "~7.16.0"
}
@@ -4287,6 +4978,25 @@
"license": "MIT",
"optional": true
},
+ "node_modules/@vitejs/plugin-basic-ssl": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-2.3.0.tgz",
+ "integrity": "sha512-bdyo8rB3NnQbikdMpHaML9Z1OZPBu6fFOBo+OtxsBlvMJtysWskmBcnbIDhUqgC8tcxNv/a+BcV5U+2nQMm1OQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/@vscode/diff": {
+ "version": "0.0.2-7",
+ "resolved": "https://registry.npmjs.org/@vscode/diff/-/diff-0.0.2-7.tgz",
+ "integrity": "sha512-zGPIPeUAmQs79u7g6FTLmhlXFIocUTtuHYmCV5lRZf6vlDk7SWEOpBlYY6SsShC3TB/lm2KxXMj9tP32YOPrhg==",
+ "license": "MIT"
+ },
"node_modules/@vscode/iconv-lite-umd": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.1.tgz",
@@ -4325,19 +5035,19 @@
}
},
"node_modules/agent-base": {
- "version": "7.1.4",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
- "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-9.0.0.tgz",
+ "integrity": "sha512-TQf59BsZnytt8GdJKLPfUZ54g/iaUL2OWDSFCCvMOhsHduDQxO8xC4PNeyIkVcA5KwL2phPSv0douC0fgWzmnA==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 14"
+ "node": ">= 20"
}
},
"node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
+ "version": "8.20.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4370,35 +5080,35 @@
}
},
"node_modules/algoliasearch": {
- "version": "5.46.2",
- "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.46.2.tgz",
- "integrity": "sha512-qqAXW9QvKf2tTyhpDA4qXv1IfBwD2eduSW6tUEBFIfCeE9gn9HQ9I5+MaKoenRuHrzk5sQoNh1/iof8mY7uD6Q==",
+ "version": "5.52.0",
+ "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.52.0.tgz",
+ "integrity": "sha512-0ZzY9mjqV7gop/AH8pIBiAS8giXP7WcSiUfoFYIzYAK9QC5c37E4SIVtJVBMwlURc0/uNt2o4RcNRvdHa4CJ5w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@algolia/abtesting": "1.12.2",
- "@algolia/client-abtesting": "5.46.2",
- "@algolia/client-analytics": "5.46.2",
- "@algolia/client-common": "5.46.2",
- "@algolia/client-insights": "5.46.2",
- "@algolia/client-personalization": "5.46.2",
- "@algolia/client-query-suggestions": "5.46.2",
- "@algolia/client-search": "5.46.2",
- "@algolia/ingestion": "1.46.2",
- "@algolia/monitoring": "1.46.2",
- "@algolia/recommend": "5.46.2",
- "@algolia/requester-browser-xhr": "5.46.2",
- "@algolia/requester-fetch": "5.46.2",
- "@algolia/requester-node-http": "5.46.2"
+ "@algolia/abtesting": "1.18.0",
+ "@algolia/client-abtesting": "5.52.0",
+ "@algolia/client-analytics": "5.52.0",
+ "@algolia/client-common": "5.52.0",
+ "@algolia/client-insights": "5.52.0",
+ "@algolia/client-personalization": "5.52.0",
+ "@algolia/client-query-suggestions": "5.52.0",
+ "@algolia/client-search": "5.52.0",
+ "@algolia/ingestion": "1.52.0",
+ "@algolia/monitoring": "1.52.0",
+ "@algolia/recommend": "5.52.0",
+ "@algolia/requester-browser-xhr": "5.52.0",
+ "@algolia/requester-fetch": "5.52.0",
+ "@algolia/requester-node-http": "5.52.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/ansi-escapes": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.2.0.tgz",
- "integrity": "sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==",
+ "version": "7.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz",
+ "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4441,6 +5151,7 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
"license": "MIT"
},
"node_modules/baseline-browser-mapping": {
@@ -4454,9 +5165,9 @@
}
},
"node_modules/beasties": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/beasties/-/beasties-0.3.5.tgz",
- "integrity": "sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==",
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/beasties/-/beasties-0.4.2.tgz",
+ "integrity": "sha512-NvcGjG/7AVUAfRbvrJmHunDQS9uHnE6Q/7AkaPr8oKE8HjOlpjRG5075z/th2Tmlezk3VlaaS8+X9I1RwHJMQw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -4467,29 +5178,44 @@
"htmlparser2": "^10.0.0",
"picocolors": "^1.1.1",
"postcss": "^8.4.49",
- "postcss-media-query-parser": "^0.2.3"
+ "postcss-media-query-parser": "^0.2.3",
+ "postcss-safe-parser": "^7.0.1"
},
"engines": {
- "node": ">=14.0.0"
+ "node": ">=18.0.0"
}
},
"node_modules/body-parser": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
+ "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
"dev": true,
"license": "MIT",
"dependencies": {
"bytes": "^3.1.2",
- "content-type": "^1.0.5",
+ "content-type": "^2.0.0",
"debug": "^4.4.3",
- "http-errors": "^2.0.0",
- "iconv-lite": "^0.7.0",
+ "http-errors": "^2.0.1",
+ "iconv-lite": "^0.7.2",
"on-finished": "^2.4.1",
- "qs": "^6.14.1",
- "raw-body": "^3.0.1",
- "type-is": "^2.0.1"
+ "qs": "^6.15.2",
+ "raw-body": "^3.0.2",
+ "type-is": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=18"
},
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/body-parser/node_modules/content-type": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
+ "dev": true,
+ "license": "MIT",
"engines": {
"node": ">=18"
},
@@ -4509,6 +5235,7 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
@@ -4547,7 +5274,6 @@
}
],
"license": "MIT",
- "peer": true,
"dependencies": {
"baseline-browser-mapping": "^2.9.0",
"caniuse-lite": "^1.0.30001759",
@@ -4580,9 +5306,9 @@
}
},
"node_modules/cacache": {
- "version": "20.0.3",
- "resolved": "https://registry.npmjs.org/cacache/-/cacache-20.0.3.tgz",
- "integrity": "sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==",
+ "version": "20.0.4",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-20.0.4.tgz",
+ "integrity": "sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -4595,17 +5321,16 @@
"minipass-flush": "^1.0.5",
"minipass-pipeline": "^1.2.4",
"p-map": "^7.0.2",
- "ssri": "^13.0.0",
- "unique-filename": "^5.0.0"
+ "ssri": "^13.0.0"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
}
},
"node_modules/cacache/node_modules/lru-cache": {
- "version": "11.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
- "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -4690,7 +5415,6 @@
"integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"readdirp": "^5.0.0"
},
@@ -4741,14 +5465,14 @@
}
},
"node_modules/cli-truncate": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-5.1.1.tgz",
- "integrity": "sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==",
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-5.2.0.tgz",
+ "integrity": "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "slice-ansi": "^7.1.0",
- "string-width": "^8.0.0"
+ "slice-ansi": "^8.0.0",
+ "string-width": "^8.2.0"
},
"engines": {
"node": ">=20"
@@ -4821,41 +5545,14 @@
"node_modules/code-block-writer": {
"version": "12.0.0",
"resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-12.0.0.tgz",
- "integrity": "sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/colorette": {
- "version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
+ "integrity": "sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w==",
"dev": true,
"license": "MIT"
},
"node_modules/content-disposition": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
- "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz",
+ "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4904,9 +5601,9 @@
}
},
"node_modules/cors": {
- "version": "2.8.5",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
- "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
+ "version": "2.8.6",
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
+ "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4915,6 +5612,10 @@
},
"engines": {
"node": ">= 0.10"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/cross-spawn": {
@@ -4996,7 +5697,6 @@
"integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
"dev": true,
"license": "Apache-2.0",
- "optional": true,
"engines": {
"node": ">=8"
}
@@ -5046,9 +5746,9 @@
}
},
"node_modules/dompurify": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
- "integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
+ "version": "3.4.9",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.9.tgz",
+ "integrity": "sha512-4dPSRMRDqHvs0V4YDFCsaIZo4if5u0xM+llyxiM2fwuZFdKArUBAF3VtI2+n8NKg9P870WMdYk0UhqQNoWXbfQ==",
"license": "(MPL-2.0 OR Apache-2.0)",
"optionalDependencies": {
"@types/trusted-types": "^2.0.7"
@@ -5115,31 +5815,6 @@
"node": ">= 0.8"
}
},
- "node_modules/encoding": {
- "version": "0.1.13",
- "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
- "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "iconv-lite": "^0.6.2"
- }
- },
- "node_modules/encoding/node_modules/iconv-lite": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/end-of-stream": {
"version": "1.4.5",
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
@@ -5186,13 +5861,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/err-code": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
- "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/es-define-property": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
@@ -5214,9 +5882,9 @@
}
},
"node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5227,9 +5895,9 @@
}
},
"node_modules/esbuild": {
- "version": "0.27.2",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz",
- "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.0.tgz",
+ "integrity": "sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -5240,32 +5908,32 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.27.2",
- "@esbuild/android-arm": "0.27.2",
- "@esbuild/android-arm64": "0.27.2",
- "@esbuild/android-x64": "0.27.2",
- "@esbuild/darwin-arm64": "0.27.2",
- "@esbuild/darwin-x64": "0.27.2",
- "@esbuild/freebsd-arm64": "0.27.2",
- "@esbuild/freebsd-x64": "0.27.2",
- "@esbuild/linux-arm": "0.27.2",
- "@esbuild/linux-arm64": "0.27.2",
- "@esbuild/linux-ia32": "0.27.2",
- "@esbuild/linux-loong64": "0.27.2",
- "@esbuild/linux-mips64el": "0.27.2",
- "@esbuild/linux-ppc64": "0.27.2",
- "@esbuild/linux-riscv64": "0.27.2",
- "@esbuild/linux-s390x": "0.27.2",
- "@esbuild/linux-x64": "0.27.2",
- "@esbuild/netbsd-arm64": "0.27.2",
- "@esbuild/netbsd-x64": "0.27.2",
- "@esbuild/openbsd-arm64": "0.27.2",
- "@esbuild/openbsd-x64": "0.27.2",
- "@esbuild/openharmony-arm64": "0.27.2",
- "@esbuild/sunos-x64": "0.27.2",
- "@esbuild/win32-arm64": "0.27.2",
- "@esbuild/win32-ia32": "0.27.2",
- "@esbuild/win32-x64": "0.27.2"
+ "@esbuild/aix-ppc64": "0.28.0",
+ "@esbuild/android-arm": "0.28.0",
+ "@esbuild/android-arm64": "0.28.0",
+ "@esbuild/android-x64": "0.28.0",
+ "@esbuild/darwin-arm64": "0.28.0",
+ "@esbuild/darwin-x64": "0.28.0",
+ "@esbuild/freebsd-arm64": "0.28.0",
+ "@esbuild/freebsd-x64": "0.28.0",
+ "@esbuild/linux-arm": "0.28.0",
+ "@esbuild/linux-arm64": "0.28.0",
+ "@esbuild/linux-ia32": "0.28.0",
+ "@esbuild/linux-loong64": "0.28.0",
+ "@esbuild/linux-mips64el": "0.28.0",
+ "@esbuild/linux-ppc64": "0.28.0",
+ "@esbuild/linux-riscv64": "0.28.0",
+ "@esbuild/linux-s390x": "0.28.0",
+ "@esbuild/linux-x64": "0.28.0",
+ "@esbuild/netbsd-arm64": "0.28.0",
+ "@esbuild/netbsd-x64": "0.28.0",
+ "@esbuild/openbsd-arm64": "0.28.0",
+ "@esbuild/openbsd-x64": "0.28.0",
+ "@esbuild/openharmony-arm64": "0.28.0",
+ "@esbuild/sunos-x64": "0.28.0",
+ "@esbuild/win32-arm64": "0.28.0",
+ "@esbuild/win32-ia32": "0.28.0",
+ "@esbuild/win32-x64": "0.28.0"
}
},
"node_modules/escalade": {
@@ -5316,9 +5984,9 @@
}
},
"node_modules/eventsource-parser": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz",
- "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz",
+ "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5437,7 +6105,6 @@
"integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"accepts": "^2.0.0",
"body-parser": "^2.2.1",
@@ -5477,11 +6144,14 @@
}
},
"node_modules/express-rate-limit": {
- "version": "7.5.1",
- "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.5.1.tgz",
- "integrity": "sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==",
+ "version": "8.5.2",
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.2.tgz",
+ "integrity": "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==",
"dev": true,
"license": "MIT",
+ "dependencies": {
+ "ip-address": "^10.2.0"
+ },
"engines": {
"node": ">= 16"
},
@@ -5516,10 +6186,27 @@
"node": ">=8.6.0"
}
},
+ "node_modules/fast-string-truncated-width": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/fast-string-truncated-width/-/fast-string-truncated-width-3.0.3.tgz",
+ "integrity": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-string-width": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/fast-string-width/-/fast-string-width-3.0.2.tgz",
+ "integrity": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-string-truncated-width": "^3.0.2"
+ }
+ },
"node_modules/fast-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
- "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
+ "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
"dev": true,
"funding": [
{
@@ -5533,6 +6220,16 @@
],
"license": "BSD-3-Clause"
},
+ "node_modules/fast-wrap-ansi": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/fast-wrap-ansi/-/fast-wrap-ansi-0.2.2.tgz",
+ "integrity": "sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-string-width": "^3.0.2"
+ }
+ },
"node_modules/fastq": {
"version": "1.20.1",
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
@@ -5675,9 +6372,9 @@
}
},
"node_modules/get-east-asian-width": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz",
- "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==",
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
+ "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5740,18 +6437,18 @@
}
},
"node_modules/glob": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.0.tgz",
- "integrity": "sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==",
+ "version": "13.0.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
+ "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
- "minimatch": "^10.1.1",
- "minipass": "^7.1.2",
- "path-scurry": "^2.0.0"
+ "minimatch": "^10.2.2",
+ "minipass": "^7.1.3",
+ "path-scurry": "^2.0.2"
},
"engines": {
- "node": "20 || >=22"
+ "node": "18 || 20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@@ -5824,20 +6521,19 @@
}
},
"node_modules/hono": {
- "version": "4.11.4",
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.11.4.tgz",
- "integrity": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==",
+ "version": "4.12.25",
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.25.tgz",
+ "integrity": "sha512-2NFaIyNVgJmBs/ecmtGzlmluTFs5cHEWGTdu0t1HBwYzoGXOL5nUQBRMXsXWla5i4KkG//QMzVP88m1+I3fdAQ==",
"dev": true,
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=16.9.0"
}
},
"node_modules/hosted-git-info": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.2.tgz",
- "integrity": "sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==",
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz",
+ "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5848,9 +6544,9 @@
}
},
"node_modules/hosted-git-info/node_modules/lru-cache": {
- "version": "11.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
- "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -5858,9 +6554,9 @@
}
},
"node_modules/htmlparser2": {
- "version": "10.0.0",
- "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz",
- "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==",
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz",
+ "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==",
"dev": true,
"funding": [
"https://github.com/fb55/htmlparser2?sponsor=1",
@@ -5873,14 +6569,14 @@
"dependencies": {
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
- "domutils": "^3.2.1",
- "entities": "^6.0.0"
+ "domutils": "^3.2.2",
+ "entities": "^7.0.1"
}
},
"node_modules/htmlparser2/node_modules/entities": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
- "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
+ "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -5932,18 +6628,28 @@
"node": ">= 14"
}
},
+ "node_modules/http-proxy-agent/node_modules/agent-base": {
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
"node_modules/https-proxy-agent": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
- "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-9.0.0.tgz",
+ "integrity": "sha512-/MVmHp58WkOypgFhCLk4fzpPcFQvTJ/e6LBI7irpIO2HfxUbpmYoHF+KzipzJpxxzJu7aJNWQ0xojJ/dzV2G5g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "agent-base": "^7.1.2",
- "debug": "4"
+ "agent-base": "9.0.0",
+ "debug": "^4.3.4"
},
"engines": {
- "node": ">= 14"
+ "node": ">= 20"
}
},
"node_modules/iconv-lite": {
@@ -5977,9 +6683,9 @@
}
},
"node_modules/immutable": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz",
- "integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.6.tgz",
+ "integrity": "sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==",
"dev": true,
"license": "MIT"
},
@@ -5994,16 +6700,6 @@
"url": "https://github.com/sponsors/wooorm"
}
},
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.19"
- }
- },
"node_modules/inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
@@ -6032,9 +6728,9 @@
}
},
"node_modules/ip-address": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz",
- "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz",
+ "integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6166,37 +6862,10 @@
"dev": true,
"license": "ISC"
},
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
- "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
- "dev": true,
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-instrument": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
- "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==",
- "dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "@babel/core": "^7.23.9",
- "@babel/parser": "^7.23.9",
- "@istanbuljs/schema": "^0.1.3",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^7.5.4"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/jose": {
- "version": "6.1.3",
- "resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz",
- "integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==",
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz",
+ "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==",
"dev": true,
"license": "MIT",
"funding": {
@@ -6219,137 +6888,373 @@
"node": ">=0.1.90"
}
},
- "node_modules/jsesc": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz",
+ "integrity": "sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^20.17.0 || >=22.9.0"
+ }
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-schema-typed": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
+ "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonc-parser": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
+ "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/jsonparse": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
+ "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
+ "dev": true,
+ "engines": [
+ "node >= 0.2.0"
+ ],
+ "license": "MIT"
+ },
+ "node_modules/lightningcss": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-android-arm64": "1.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
+ }
+ },
+ "node_modules/lightningcss-android-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
+ "libc": [
+ "glibc"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=6"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/json-parse-even-better-errors": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz",
- "integrity": "sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==",
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "MIT",
+ "libc": [
+ "musl"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": "^20.17.0 || >=22.9.0"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/json-schema-typed": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz",
- "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
- "dev": true,
- "license": "BSD-2-Clause"
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
+ "libc": [
+ "glibc"
+ ],
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
"engines": {
- "node": ">=6"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/jsonc-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
- "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jsonparse": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
- "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==",
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "engines": [
- "node >= 0.2.0"
+ "libc": [
+ "musl"
],
- "license": "MIT"
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
},
- "node_modules/listr2": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz",
- "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==",
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "cli-truncate": "^5.0.0",
- "colorette": "^2.0.20",
- "eventemitter3": "^5.0.1",
- "log-update": "^6.1.0",
- "rfdc": "^1.4.1",
- "wrap-ansi": "^9.0.0"
- },
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=20.0.0"
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/listr2/node_modules/string-width": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
- "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
+ "cpu": [
+ "x64"
+ ],
"dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^10.3.0",
- "get-east-asian-width": "^1.0.0",
- "strip-ansi": "^7.1.0"
- },
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
"engines": {
- "node": ">=18"
+ "node": ">= 12.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
}
},
- "node_modules/listr2/node_modules/wrap-ansi": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz",
- "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==",
+ "node_modules/listr2": {
+ "version": "10.2.1",
+ "resolved": "https://registry.npmjs.org/listr2/-/listr2-10.2.1.tgz",
+ "integrity": "sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^6.2.1",
- "string-width": "^7.0.0",
- "strip-ansi": "^7.1.0"
+ "cli-truncate": "^5.2.0",
+ "eventemitter3": "^5.0.4",
+ "log-update": "^6.1.0",
+ "rfdc": "^1.4.1",
+ "wrap-ansi": "^10.0.0"
},
"engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ "node": ">=22.13.0"
}
},
"node_modules/lmdb": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.4.4.tgz",
- "integrity": "sha512-+Y2DqovevLkb6DrSQ6SXTYLEd6kvlRbhsxzgJrk7BUfOVA/mt21ak6pFDZDKxiAczHMWxrb02kXBTSTIA0O94A==",
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.5.4.tgz",
+ "integrity": "sha512-9FKQA6G1MMtqNxfxvSBNXD/axeG2QRjYbNh0/ykRL5xYcRbCm2vXq7B9bhc7nSuKdHzr8/BHIwfPuYYH1UsXXw==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
"optional": true,
"dependencies": {
+ "@harperfast/extended-iterable": "^1.0.3",
"msgpackr": "^1.11.2",
"node-addon-api": "^6.1.0",
"node-gyp-build-optional-packages": "5.2.2",
@@ -6360,13 +7265,13 @@
"download-lmdb-prebuilds": "bin/download-prebuilds.js"
},
"optionalDependencies": {
- "@lmdb/lmdb-darwin-arm64": "3.4.4",
- "@lmdb/lmdb-darwin-x64": "3.4.4",
- "@lmdb/lmdb-linux-arm": "3.4.4",
- "@lmdb/lmdb-linux-arm64": "3.4.4",
- "@lmdb/lmdb-linux-x64": "3.4.4",
- "@lmdb/lmdb-win32-arm64": "3.4.4",
- "@lmdb/lmdb-win32-x64": "3.4.4"
+ "@lmdb/lmdb-darwin-arm64": "3.5.4",
+ "@lmdb/lmdb-darwin-x64": "3.5.4",
+ "@lmdb/lmdb-linux-arm": "3.5.4",
+ "@lmdb/lmdb-linux-arm64": "3.5.4",
+ "@lmdb/lmdb-linux-x64": "3.5.4",
+ "@lmdb/lmdb-win32-arm64": "3.5.4",
+ "@lmdb/lmdb-win32-x64": "3.5.4"
}
},
"node_modules/log-symbols": {
@@ -6406,6 +7311,23 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/log-update/node_modules/slice-ansi": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz",
+ "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.2.1",
+ "is-fullwidth-code-point": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/slice-ansi?sponsor=1"
+ }
+ },
"node_modules/log-update/node_modules/string-width": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
@@ -6463,13 +7385,15 @@
}
},
"node_modules/make-fetch-happen": {
- "version": "15.0.3",
- "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.3.tgz",
- "integrity": "sha512-iyyEpDty1mwW3dGlYXAJqC/azFn5PPvgKVwXayOGBSmKLxhKZ9fg4qIan2ePpp1vJIwfFiO34LAPZgq9SZW9Aw==",
+ "version": "15.0.6",
+ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.6.tgz",
+ "integrity": "sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==",
"dev": true,
"license": "ISC",
"dependencies": {
+ "@gar/promise-retry": "^1.0.0",
"@npmcli/agent": "^4.0.0",
+ "@npmcli/redact": "^4.0.0",
"cacache": "^20.0.1",
"http-cache-semantics": "^4.1.1",
"minipass": "^7.0.2",
@@ -6478,7 +7402,6 @@
"minipass-pipeline": "^1.2.4",
"negotiator": "^1.0.0",
"proc-log": "^6.0.0",
- "promise-retry": "^2.0.1",
"ssri": "^13.0.0"
},
"engines": {
@@ -6608,21 +7531,44 @@
}
},
"node_modules/minimatch": {
- "version": "10.1.1",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz",
- "integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==",
+ "version": "10.2.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
- "@isaacs/brace-expansion": "^5.0.0"
+ "brace-expansion": "^5.0.5"
},
"engines": {
- "node": "20 || >=22"
+ "node": "18 || 20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/minimatch/node_modules/balanced-match": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/minimatch/node_modules/brace-expansion": {
+ "version": "5.0.6",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
"node_modules/minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
@@ -6634,11 +7580,11 @@
}
},
"node_modules/minipass": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
- "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
"dev": true,
- "license": "ISC",
+ "license": "BlueOak-1.0.0",
"engines": {
"node": ">=16 || 14 >=14.17"
}
@@ -6657,29 +7603,29 @@
}
},
"node_modules/minipass-fetch": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-5.0.0.tgz",
- "integrity": "sha512-fiCdUALipqgPWrOVTz9fw0XhcazULXOSU6ie40DDbX1F49p1dBrSRBuswndTx1x3vEb/g0FT7vC4c4C2u/mh3A==",
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-5.0.2.tgz",
+ "integrity": "sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"minipass": "^7.0.3",
- "minipass-sized": "^1.0.3",
+ "minipass-sized": "^2.0.0",
"minizlib": "^3.0.1"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
},
"optionalDependencies": {
- "encoding": "^0.1.13"
+ "iconv-lite": "^0.7.2"
}
},
"node_modules/minipass-flush": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
- "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.7.tgz",
+ "integrity": "sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==",
"dev": true,
- "license": "ISC",
+ "license": "BlueOak-1.0.0",
"dependencies": {
"minipass": "^3.0.0"
},
@@ -6741,38 +7687,18 @@
"license": "ISC"
},
"node_modules/minipass-sized": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
- "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "minipass": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/minipass-sized/node_modules/minipass": {
- "version": "3.3.6",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
- "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-2.0.0.tgz",
+ "integrity": "sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==",
"dev": true,
"license": "ISC",
"dependencies": {
- "yallist": "^4.0.0"
+ "minipass": "^7.1.2"
},
"engines": {
"node": ">=8"
}
},
- "node_modules/minipass-sized/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true,
- "license": "ISC"
- },
"node_modules/minizlib": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
@@ -6803,50 +7729,8 @@
}
},
"node_modules/monaco-languageclient": {
- "version": "10.7.0",
- "resolved": "https://registry.npmjs.org/monaco-languageclient/-/monaco-languageclient-10.7.0.tgz",
- "integrity": "sha512-oA5cOFixkF4bspVL2zMSn48LvlNR/Cu3vJ8MCVam3PdjobSULGgHtOASuZIi3FgWK42X1z8/6hrG0LCjvNu1Hw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-editor-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-cs": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-de": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-es": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-fr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-it": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ja": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ko": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pl": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pt-br": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ru": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-tr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^25.1.2",
- "@codingame/monaco-vscode-languages-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-log-service-override": "^25.1.2",
- "@codingame/monaco-vscode-model-service-override": "^25.1.2",
- "@codingame/monaco-vscode-monarch-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@codingame/monaco-vscode-workbench-service-override": "^25.1.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
+ "resolved": "../../packages/client",
+ "link": true
},
"node_modules/mrmime": {
"version": "2.0.1",
@@ -6866,9 +7750,9 @@
"license": "MIT"
},
"node_modules/msgpackr": {
- "version": "1.11.8",
- "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.8.tgz",
- "integrity": "sha512-bC4UGzHhVvgDNS7kn9tV8fAucIYUBuGojcaLiz7v+P63Lmtm0Xeji8B/8tYKddALXxJLpwIeBmUN3u64C4YkRA==",
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.12.1.tgz",
+ "integrity": "sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -6877,9 +7761,9 @@
}
},
"node_modules/msgpackr-extract": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz",
- "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.4.tgz",
+ "integrity": "sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -6891,28 +7775,28 @@
"download-msgpackr-prebuilds": "bin/download-prebuilds.js"
},
"optionalDependencies": {
- "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3",
- "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3",
- "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3",
- "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3",
- "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3",
- "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3"
+ "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.4",
+ "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.4",
+ "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.4",
+ "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.4",
+ "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.4",
+ "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.4"
}
},
"node_modules/mute-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz",
- "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-3.0.0.tgz",
+ "integrity": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==",
"dev": true,
"license": "ISC",
"engines": {
- "node": "^18.17.0 || >=20.5.0"
+ "node": "^20.17.0 || >=22.9.0"
}
},
"node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "version": "3.3.12",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
"dev": true,
"funding": [
{
@@ -6954,21 +7838,21 @@
"optional": true
},
"node_modules/node-gyp": {
- "version": "12.1.0",
- "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.1.0.tgz",
- "integrity": "sha512-W+RYA8jBnhSr2vrTtlPYPc1K+CSjGpVDRZxcqJcERZ8ND3A1ThWPHRwctTx3qC3oW99jt726jhdz3Y6ky87J4g==",
+ "version": "12.4.0",
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.4.0.tgz",
+ "integrity": "sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==",
"dev": true,
"license": "MIT",
"dependencies": {
"env-paths": "^2.2.0",
"exponential-backoff": "^3.1.1",
"graceful-fs": "^4.2.6",
- "make-fetch-happen": "^15.0.0",
"nopt": "^9.0.0",
"proc-log": "^6.0.0",
"semver": "^7.3.5",
- "tar": "^7.5.2",
+ "tar": "^7.5.4",
"tinyglobby": "^0.2.12",
+ "undici": "^6.25.0",
"which": "^6.0.0"
},
"bin": {
@@ -6995,23 +7879,23 @@
}
},
"node_modules/node-gyp/node_modules/isexe": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz",
+ "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==",
"dev": true,
- "license": "ISC",
+ "license": "BlueOak-1.0.0",
"engines": {
- "node": ">=16"
+ "node": ">=20"
}
},
"node_modules/node-gyp/node_modules/which": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-6.0.0.tgz",
- "integrity": "sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz",
+ "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==",
"dev": true,
"license": "ISC",
"dependencies": {
- "isexe": "^3.1.1"
+ "isexe": "^4.0.0"
},
"bin": {
"node-which": "bin/which.js"
@@ -7096,9 +7980,9 @@
}
},
"node_modules/npm-packlist": {
- "version": "10.0.3",
- "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-10.0.3.tgz",
- "integrity": "sha512-zPukTwJMOu5X5uvm0fztwS5Zxyvmk38H/LfidkOMt3gbZVCyro2cD/ETzwzVPcWZA3JOyPznfUN/nkyFiyUbxg==",
+ "version": "10.0.4",
+ "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-10.0.4.tgz",
+ "integrity": "sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7204,6 +8088,20 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/obug": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/obug/-/obug-2.1.3.tgz",
+ "integrity": "sha512-9miFgM2OFba7hB+pRgvtV84pYTBaoTHohvmIgiRt6dRIzbwEOIaNaP+dIlGs2fNFoB0SeISs0Jz5WFVRid6Xyg==",
+ "dev": true,
+ "funding": [
+ "https://github.com/sponsors/sxzz",
+ "https://opencollective.com/debug"
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20.0"
+ }
+ },
"node_modules/on-finished": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
@@ -7244,9 +8142,9 @@
}
},
"node_modules/ora": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/ora/-/ora-9.0.0.tgz",
- "integrity": "sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==",
+ "version": "9.4.0",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-9.4.0.tgz",
+ "integrity": "sha512-84cglkRILFxdtA8hAvLNdMrtBpPNBTrQ9/ulg0FA7xLMnD6mifv+enAIeRmvtv+WgdCE+LPGOfQmtJRrVaIVhQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7256,9 +8154,8 @@
"is-interactive": "^2.0.0",
"is-unicode-supported": "^2.1.0",
"log-symbols": "^7.0.1",
- "stdin-discarder": "^0.2.2",
- "string-width": "^8.1.0",
- "strip-ansi": "^7.1.2"
+ "stdin-discarder": "^0.3.2",
+ "string-width": "^8.1.0"
},
"engines": {
"node": ">=20"
@@ -7275,6 +8172,44 @@
"license": "MIT",
"optional": true
},
+ "node_modules/oxc-parser": {
+ "version": "0.121.0",
+ "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.121.0.tgz",
+ "integrity": "sha512-ek9o58+SCv6AV7nchiAcUJy1DNE2CC5WRdBcO0mF+W4oRjNQfPO7b3pLjTHSFECpHkKGOZSQxx3hk8viIL5YCg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@oxc-project/types": "^0.121.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
+ },
+ "optionalDependencies": {
+ "@oxc-parser/binding-android-arm-eabi": "0.121.0",
+ "@oxc-parser/binding-android-arm64": "0.121.0",
+ "@oxc-parser/binding-darwin-arm64": "0.121.0",
+ "@oxc-parser/binding-darwin-x64": "0.121.0",
+ "@oxc-parser/binding-freebsd-x64": "0.121.0",
+ "@oxc-parser/binding-linux-arm-gnueabihf": "0.121.0",
+ "@oxc-parser/binding-linux-arm-musleabihf": "0.121.0",
+ "@oxc-parser/binding-linux-arm64-gnu": "0.121.0",
+ "@oxc-parser/binding-linux-arm64-musl": "0.121.0",
+ "@oxc-parser/binding-linux-ppc64-gnu": "0.121.0",
+ "@oxc-parser/binding-linux-riscv64-gnu": "0.121.0",
+ "@oxc-parser/binding-linux-riscv64-musl": "0.121.0",
+ "@oxc-parser/binding-linux-s390x-gnu": "0.121.0",
+ "@oxc-parser/binding-linux-x64-gnu": "0.121.0",
+ "@oxc-parser/binding-linux-x64-musl": "0.121.0",
+ "@oxc-parser/binding-openharmony-arm64": "0.121.0",
+ "@oxc-parser/binding-wasm32-wasi": "0.121.0",
+ "@oxc-parser/binding-win32-arm64-msvc": "0.121.0",
+ "@oxc-parser/binding-win32-ia32-msvc": "0.121.0",
+ "@oxc-parser/binding-win32-x64-msvc": "0.121.0"
+ }
+ },
"node_modules/p-finally": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
@@ -7299,12 +8234,13 @@
}
},
"node_modules/pacote": {
- "version": "21.0.4",
- "resolved": "https://registry.npmjs.org/pacote/-/pacote-21.0.4.tgz",
- "integrity": "sha512-RplP/pDW0NNNDh3pnaoIWYPvNenS7UqMbXyvMqJczosiFWTeGGwJC2NQBLqKf4rGLFfwCOnntw1aEp9Jiqm1MA==",
+ "version": "21.5.0",
+ "resolved": "https://registry.npmjs.org/pacote/-/pacote-21.5.0.tgz",
+ "integrity": "sha512-VtZ0SB8mb5Tzw3dXDfVAIjhyVKUHZkS/ZH9/5mpKenwC9sFOXNI0JI7kEF7IMkwOnsWMFrvAZHzx1T5fmrp9FQ==",
"dev": true,
"license": "ISC",
"dependencies": {
+ "@gar/promise-retry": "^1.0.0",
"@npmcli/git": "^7.0.0",
"@npmcli/installed-package-contents": "^4.0.0",
"@npmcli/package-json": "^7.0.0",
@@ -7318,7 +8254,6 @@
"npm-pick-manifest": "^11.0.1",
"npm-registry-fetch": "^19.0.0",
"proc-log": "^6.0.0",
- "promise-retry": "^2.0.1",
"sigstore": "^4.0.0",
"ssri": "^13.0.0",
"tar": "^7.4.3"
@@ -7331,26 +8266,26 @@
}
},
"node_modules/parse5": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz",
- "integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==",
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz",
+ "integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "entities": "^6.0.0"
+ "entities": "^8.0.0"
},
"funding": {
"url": "https://github.com/inikulin/parse5?sponsor=1"
}
},
"node_modules/parse5-html-rewriting-stream": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-8.0.0.tgz",
- "integrity": "sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==",
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-8.0.1.tgz",
+ "integrity": "sha512-NaRku2aMpUN1Sh1Gyk1KWUh2A7EJx2c6qYzvwsPtqhoHoaURshdrceYK3LunVCm3WHhm6FS7Vcczbvdh3/UIVw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "entities": "^6.0.0",
+ "entities": "^8.0.0",
"parse5": "^8.0.0",
"parse5-sax-parser": "^8.0.0"
},
@@ -7359,13 +8294,13 @@
}
},
"node_modules/parse5-html-rewriting-stream/node_modules/entities": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
- "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
+ "integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
- "node": ">=0.12"
+ "node": ">=20.19.0"
},
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
@@ -7385,13 +8320,13 @@
}
},
"node_modules/parse5/node_modules/entities": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
- "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
+ "integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
- "node": ">=0.12"
+ "node": ">=20.19.0"
},
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
@@ -7432,9 +8367,9 @@
"license": "MIT"
},
"node_modules/path-scurry": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.1.tgz",
- "integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
+ "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -7442,16 +8377,16 @@
"minipass": "^7.1.2"
},
"engines": {
- "node": "20 || >=22"
+ "node": "18 || 20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/path-scurry/node_modules/lru-cache": {
- "version": "11.2.4",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
- "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
+ "version": "11.5.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.1.tgz",
+ "integrity": "sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==",
"dev": true,
"license": "BlueOak-1.0.0",
"engines": {
@@ -7459,9 +8394,9 @@
}
},
"node_modules/path-to-regexp": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
- "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz",
+ "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7477,9 +8412,9 @@
"license": "ISC"
},
"node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7513,9 +8448,9 @@
}
},
"node_modules/postcss": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "version": "8.5.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"dev": true,
"funding": [
{
@@ -7533,7 +8468,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.11",
+ "nanoid": "^3.3.12",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -7548,6 +8483,33 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/postcss-safe-parser": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-7.0.1.tgz",
+ "integrity": "sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss-safe-parser"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0"
+ },
+ "peerDependencies": {
+ "postcss": "^8.4.31"
+ }
+ },
"node_modules/proc-log": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz",
@@ -7558,20 +8520,6 @@
"node": "^20.17.0 || >=22.9.0"
}
},
- "node_modules/promise-retry": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
- "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "err-code": "^2.0.2",
- "retry": "^0.12.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/proxy-addr": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
@@ -7598,9 +8546,9 @@
}
},
"node_modules/qs": {
- "version": "6.14.1",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz",
- "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==",
+ "version": "6.15.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz",
+ "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -7741,16 +8689,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/retry": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
- "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
"node_modules/reusify": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
@@ -7770,14 +8708,14 @@
"license": "MIT"
},
"node_modules/rolldown": {
- "version": "1.0.0-beta.58",
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-beta.58.tgz",
- "integrity": "sha512-v1FCjMZCan7f+xGAHBi+mqiE4MlH7I+SXEHSQSJoMOGNNB2UYtvMiejsq9YuUOiZjNeUeV/a21nSFbrUR+4ZCQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/types": "=0.106.0",
- "@rolldown/pluginutils": "1.0.0-beta.58"
+ "@oxc-project/types": "=0.133.0",
+ "@rolldown/pluginutils": "^1.0.0"
},
"bin": {
"rolldown": "bin/cli.mjs"
@@ -7786,25 +8724,37 @@
"node": "^20.19.0 || >=22.12.0"
},
"optionalDependencies": {
- "@rolldown/binding-android-arm64": "1.0.0-beta.58",
- "@rolldown/binding-darwin-arm64": "1.0.0-beta.58",
- "@rolldown/binding-darwin-x64": "1.0.0-beta.58",
- "@rolldown/binding-freebsd-x64": "1.0.0-beta.58",
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-beta.58",
- "@rolldown/binding-linux-arm64-gnu": "1.0.0-beta.58",
- "@rolldown/binding-linux-arm64-musl": "1.0.0-beta.58",
- "@rolldown/binding-linux-x64-gnu": "1.0.0-beta.58",
- "@rolldown/binding-linux-x64-musl": "1.0.0-beta.58",
- "@rolldown/binding-openharmony-arm64": "1.0.0-beta.58",
- "@rolldown/binding-wasm32-wasi": "1.0.0-beta.58",
- "@rolldown/binding-win32-arm64-msvc": "1.0.0-beta.58",
- "@rolldown/binding-win32-x64-msvc": "1.0.0-beta.58"
+ "@rolldown/binding-android-arm64": "1.0.3",
+ "@rolldown/binding-darwin-arm64": "1.0.3",
+ "@rolldown/binding-darwin-x64": "1.0.3",
+ "@rolldown/binding-freebsd-x64": "1.0.3",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
+ }
+ },
+ "node_modules/rolldown/node_modules/@oxc-project/types": {
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/Boshen"
}
},
"node_modules/rollup": {
- "version": "4.55.2",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.55.2.tgz",
- "integrity": "sha512-PggGy4dhwx5qaW+CKBilA/98Ql9keyfnb7lh4SR6shQ91QQQi1ORJ1v4UinkdP2i87OBs9AQFooQylcrrRfIcg==",
+ "version": "4.60.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.2.tgz",
+ "integrity": "sha512-J9qZyW++QK/09NyN/zeO0dG/1GdGfyp9lV8ajHnRVLfo/uFsbji5mHnDgn/qYdUHyCkM2N+8VyspgZclfAh0eQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7818,31 +8768,31 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.55.2",
- "@rollup/rollup-android-arm64": "4.55.2",
- "@rollup/rollup-darwin-arm64": "4.55.2",
- "@rollup/rollup-darwin-x64": "4.55.2",
- "@rollup/rollup-freebsd-arm64": "4.55.2",
- "@rollup/rollup-freebsd-x64": "4.55.2",
- "@rollup/rollup-linux-arm-gnueabihf": "4.55.2",
- "@rollup/rollup-linux-arm-musleabihf": "4.55.2",
- "@rollup/rollup-linux-arm64-gnu": "4.55.2",
- "@rollup/rollup-linux-arm64-musl": "4.55.2",
- "@rollup/rollup-linux-loong64-gnu": "4.55.2",
- "@rollup/rollup-linux-loong64-musl": "4.55.2",
- "@rollup/rollup-linux-ppc64-gnu": "4.55.2",
- "@rollup/rollup-linux-ppc64-musl": "4.55.2",
- "@rollup/rollup-linux-riscv64-gnu": "4.55.2",
- "@rollup/rollup-linux-riscv64-musl": "4.55.2",
- "@rollup/rollup-linux-s390x-gnu": "4.55.2",
- "@rollup/rollup-linux-x64-gnu": "4.55.2",
- "@rollup/rollup-linux-x64-musl": "4.55.2",
- "@rollup/rollup-openbsd-x64": "4.55.2",
- "@rollup/rollup-openharmony-arm64": "4.55.2",
- "@rollup/rollup-win32-arm64-msvc": "4.55.2",
- "@rollup/rollup-win32-ia32-msvc": "4.55.2",
- "@rollup/rollup-win32-x64-gnu": "4.55.2",
- "@rollup/rollup-win32-x64-msvc": "4.55.2",
+ "@rollup/rollup-android-arm-eabi": "4.60.2",
+ "@rollup/rollup-android-arm64": "4.60.2",
+ "@rollup/rollup-darwin-arm64": "4.60.2",
+ "@rollup/rollup-darwin-x64": "4.60.2",
+ "@rollup/rollup-freebsd-arm64": "4.60.2",
+ "@rollup/rollup-freebsd-x64": "4.60.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.60.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.60.2",
+ "@rollup/rollup-linux-arm64-musl": "4.60.2",
+ "@rollup/rollup-linux-loong64-gnu": "4.60.2",
+ "@rollup/rollup-linux-loong64-musl": "4.60.2",
+ "@rollup/rollup-linux-ppc64-gnu": "4.60.2",
+ "@rollup/rollup-linux-ppc64-musl": "4.60.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.60.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.60.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.60.2",
+ "@rollup/rollup-linux-x64-gnu": "4.60.2",
+ "@rollup/rollup-linux-x64-musl": "4.60.2",
+ "@rollup/rollup-openbsd-x64": "4.60.2",
+ "@rollup/rollup-openharmony-arm64": "4.60.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.60.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.60.2",
+ "@rollup/rollup-win32-x64-gnu": "4.60.2",
+ "@rollup/rollup-win32-x64-msvc": "4.60.2",
"fsevents": "~2.3.2"
}
},
@@ -7892,7 +8842,6 @@
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
"integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
"license": "Apache-2.0",
- "peer": true,
"dependencies": {
"tslib": "^2.1.0"
}
@@ -7905,15 +8854,14 @@
"license": "MIT"
},
"node_modules/sass": {
- "version": "1.97.1",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.97.1.tgz",
- "integrity": "sha512-uf6HoO8fy6ClsrShvMgaKUn14f2EHQLQRtpsZZLeU/Mv0Q1K5P0+x2uvH6Cub39TVVbWNSrraUhDAoFph6vh0A==",
+ "version": "1.99.0",
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.99.0.tgz",
+ "integrity": "sha512-kgW13M54DUB7IsIRM5LvJkNlpH+WhMpooUcaWGFARkF1Tc82v9mIWkCbCYf+MBvpIUBSeSOTilpZjEPr2VYE6Q==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
"chokidar": "^4.0.0",
- "immutable": "^5.0.2",
+ "immutable": "^5.1.5",
"source-map-js": ">=0.6.2 <2.0.0"
},
"bin": {
@@ -7957,9 +8905,10 @@
}
},
"node_modules/semver": {
- "version": "7.7.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
- "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
+ "version": "7.7.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
+ "dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -8082,15 +9031,15 @@
}
},
"node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
+ "object-inspect": "^1.13.4",
+ "side-channel-list": "^1.0.1",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2"
},
@@ -8102,14 +9051,14 @@
}
},
"node_modules/side-channel-list": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
"dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
- "object-inspect": "^1.13.3"
+ "object-inspect": "^1.13.4"
},
"engines": {
"node": ">= 0.4"
@@ -8171,35 +9120,35 @@
}
},
"node_modules/sigstore": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-4.1.0.tgz",
- "integrity": "sha512-/fUgUhYghuLzVT/gaJoeVehLCgZiUxPCPMcyVNY0lIf/cTCz58K/WTI7PefDarXxp9nUKpEwg1yyz3eSBMTtgA==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-4.1.1.tgz",
+ "integrity": "sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@sigstore/bundle": "^4.0.0",
- "@sigstore/core": "^3.1.0",
+ "@sigstore/core": "^3.2.1",
"@sigstore/protobuf-specs": "^0.5.0",
- "@sigstore/sign": "^4.1.0",
- "@sigstore/tuf": "^4.0.1",
- "@sigstore/verify": "^3.1.0"
+ "@sigstore/sign": "^4.1.1",
+ "@sigstore/tuf": "^4.0.2",
+ "@sigstore/verify": "^3.1.1"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
}
},
"node_modules/slice-ansi": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz",
- "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==",
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-8.0.0.tgz",
+ "integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ansi-styles": "^6.2.1",
- "is-fullwidth-code-point": "^5.0.0"
+ "ansi-styles": "^6.2.3",
+ "is-fullwidth-code-point": "^5.1.0"
},
"engines": {
- "node": ">=18"
+ "node": ">=20"
},
"funding": {
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
@@ -8217,13 +9166,13 @@
}
},
"node_modules/socks": {
- "version": "2.8.7",
- "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz",
- "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
+ "version": "2.8.9",
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.9.tgz",
+ "integrity": "sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "ip-address": "^10.0.1",
+ "ip-address": "^10.1.1",
"smart-buffer": "^4.2.0"
},
"engines": {
@@ -8246,6 +9195,16 @@
"node": ">= 14"
}
},
+ "node_modules/socks-proxy-agent/node_modules/agent-base": {
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
"node_modules/source-map": {
"version": "0.7.6",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
@@ -8287,17 +9246,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/spdx-correct": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
- "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-expression-parse": "^3.0.0",
- "spdx-license-ids": "^3.0.0"
- }
- },
"node_modules/spdx-exceptions": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
@@ -8306,9 +9254,9 @@
"license": "CC-BY-3.0"
},
"node_modules/spdx-expression-parse": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
- "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz",
+ "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8317,16 +9265,16 @@
}
},
"node_modules/spdx-license-ids": {
- "version": "3.0.22",
- "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz",
- "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==",
+ "version": "3.0.23",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz",
+ "integrity": "sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==",
"dev": true,
"license": "CC0-1.0"
},
"node_modules/ssri": {
- "version": "13.0.0",
- "resolved": "https://registry.npmjs.org/ssri/-/ssri-13.0.0.tgz",
- "integrity": "sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==",
+ "version": "13.0.1",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-13.0.1.tgz",
+ "integrity": "sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -8347,9 +9295,9 @@
}
},
"node_modules/stdin-discarder": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
- "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==",
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.3.2.tgz",
+ "integrity": "sha512-eCPu1qRxPVkl5605OTWF8Wz40b4Mf45NY5LQmVPQ599knfs5QhASUm9GbJ5BDMDOXgrnh0wyEdvzmL//YMlw0A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8360,14 +9308,14 @@
}
},
"node_modules/string-width": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.1.0.tgz",
- "integrity": "sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==",
+ "version": "8.2.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.1.tgz",
+ "integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "get-east-asian-width": "^1.3.0",
- "strip-ansi": "^7.1.0"
+ "get-east-asian-width": "^1.5.0",
+ "strip-ansi": "^7.1.2"
},
"engines": {
"node": ">=20"
@@ -8416,9 +9364,9 @@
}
},
"node_modules/tar": {
- "version": "7.5.4",
- "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.4.tgz",
- "integrity": "sha512-AN04xbWGrSTDmVwlI4/GTlIIwMFk/XEv7uL8aa57zuvRy6s4hdBed+lVq2fAZ89XDa7Us3ANXcE3Tvqvja1kTA==",
+ "version": "7.5.16",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.16.tgz",
+ "integrity": "sha512-56adEpPMouktRlBLXiaYFFzZ/3+JXa8P9n7WbR+ibIjtviN55mEaOkiysCnPnWm+7kkui1Dn8J9l+g6zV8731w==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -8443,14 +9391,14 @@
}
},
"node_modules/tinyglobby": {
- "version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
"dev": true,
"license": "MIT",
"dependencies": {
"fdir": "^6.5.0",
- "picomatch": "^4.0.3"
+ "picomatch": "^4.0.4"
},
"engines": {
"node": ">=12.0.0"
@@ -8497,8 +9445,7 @@
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD",
- "peer": true
+ "license": "0BSD"
},
"node_modules/tuf-js": {
"version": "4.1.0",
@@ -8516,27 +9463,44 @@
}
},
"node_modules/type-is": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz",
+ "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "content-type": "^1.0.5",
+ "content-type": "^2.0.0",
"media-typer": "^1.1.0",
"mime-types": "^3.0.0"
},
"engines": {
- "node": ">= 0.6"
+ "node": ">= 18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/type-is/node_modules/content-type": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
+ "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
}
},
"node_modules/typescript": {
- "version": "5.9.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
"dev": true,
"license": "Apache-2.0",
- "peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -8546,13 +9510,13 @@
}
},
"node_modules/undici": {
- "version": "7.18.0",
- "resolved": "https://registry.npmjs.org/undici/-/undici-7.18.0.tgz",
- "integrity": "sha512-CfPufgPFHCYu0W4h1NiKW9+tNJ39o3kWm7Cm29ET1enSJx+AERfz7A2wAr26aY0SZbYzZlTBQtcHy15o60VZfQ==",
+ "version": "6.27.0",
+ "resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz",
+ "integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=20.18.1"
+ "node": ">=18.17"
}
},
"node_modules/undici-types": {
@@ -8562,32 +9526,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/unique-filename": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-5.0.0.tgz",
- "integrity": "sha512-2RaJTAvAb4owyjllTfXzFClJ7WsGxlykkPvCr9pA//LD9goVq+m4PPAeBgNodGZ7nSrntT/auWpJ6Y5IFXcfjg==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "unique-slug": "^6.0.0"
- },
- "engines": {
- "node": "^20.17.0 || >=22.9.0"
- }
- },
- "node_modules/unique-slug": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-6.0.0.tgz",
- "integrity": "sha512-4Lup7Ezn8W3d52/xBhZBVdx323ckxa7DEvd9kPQHppTkLoJXw6ltrBCyj5pnrxj0qKDxYMJ56CoxNuFCscdTiw==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "imurmurhash": "^0.1.4"
- },
- "engines": {
- "node": "^20.17.0 || >=22.9.0"
- }
- },
"node_modules/unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
@@ -8629,17 +9567,6 @@
"browserslist": ">= 4.21.0"
}
},
- "node_modules/validate-npm-package-license": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
- "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "spdx-correct": "^3.0.0",
- "spdx-expression-parse": "^3.0.0"
- }
- },
"node_modules/validate-npm-package-name": {
"version": "7.0.2",
"resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-7.0.2.tgz",
@@ -8661,18 +9588,17 @@
}
},
"node_modules/vite": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
- "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
+ "version": "8.0.16",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "esbuild": "^0.27.0",
- "fdir": "^6.5.0",
- "picomatch": "^4.0.3",
- "postcss": "^8.5.6",
- "rollup": "^4.43.0",
- "tinyglobby": "^0.2.15"
+ "lightningcss": "^1.32.0",
+ "picomatch": "^4.0.4",
+ "postcss": "^8.5.15",
+ "rolldown": "1.0.3",
+ "tinyglobby": "^0.2.17"
},
"bin": {
"vite": "bin/vite.js"
@@ -8688,9 +9614,10 @@
},
"peerDependencies": {
"@types/node": "^20.19.0 || >=22.12.0",
+ "@vitejs/devtools": "^0.1.18",
+ "esbuild": "^0.27.0 || ^0.28.0",
"jiti": ">=1.21.0",
"less": "^4.0.0",
- "lightningcss": "^1.21.0",
"sass": "^1.70.0",
"sass-embedded": "^1.70.0",
"stylus": ">=0.54.8",
@@ -8703,13 +9630,16 @@
"@types/node": {
"optional": true
},
- "jiti": {
+ "@vitejs/devtools": {
"optional": true
},
- "less": {
+ "esbuild": {
"optional": true
},
- "lightningcss": {
+ "jiti": {
+ "optional": true
+ },
+ "less": {
"optional": true
},
"sass": {
@@ -8737,92 +9667,19 @@
},
"node_modules/vscode": {
"name": "@codingame/monaco-vscode-extension-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
- }
- },
- "node_modules/vscode-jsonrpc": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz",
- "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/vscode-languageclient": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz",
- "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==",
- "license": "MIT",
- "dependencies": {
- "minimatch": "^5.1.0",
- "semver": "^7.3.7",
- "vscode-languageserver-protocol": "3.17.5"
- },
- "engines": {
- "vscode": "^1.82.0"
- }
- },
- "node_modules/vscode-languageclient/node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/vscode-languageserver-protocol": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz",
- "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==",
- "license": "MIT",
- "dependencies": {
- "vscode-jsonrpc": "8.2.0",
- "vscode-languageserver-types": "3.17.5"
- }
- },
- "node_modules/vscode-languageserver-types": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
- "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
- "license": "MIT"
- },
- "node_modules/vscode-ws-jsonrpc": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/vscode-ws-jsonrpc/-/vscode-ws-jsonrpc-3.5.0.tgz",
- "integrity": "sha512-13ZDy7Od4AfEPK2HIfY3DtyRi4FVsvFql1yobVJrpIoHOKGGJpIjVvIJpMxkrHzCZzWlYlg+WEu2hrYkCTvM0Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-34.0.1.tgz",
+ "integrity": "sha512-rXGKdTx8XSIr77M5Z+7KsL8YWtCIZJ4ckQ4nVn5lWODsH2uEn8XmPucyWCTR1cmct2D0JWZY+ahLgQ9B/qDENg==",
"license": "MIT",
"dependencies": {
- "vscode-jsonrpc": "~8.2.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/vscode-ws-jsonrpc/node_modules/vscode-jsonrpc": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz",
- "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1"
}
},
"node_modules/watchpack": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.0.tgz",
- "integrity": "sha512-e6vZvY6xboSwLz2GD36c16+O/2Z6fKvIf4pOXptw2rY9MVwE/TXc6RGqxD3I3x0a28lwBY7DE+76uTPSsBrrCA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz",
+ "integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8858,89 +9715,21 @@
}
},
"node_modules/wrap-ansi": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-10.0.0.tgz",
+ "integrity": "sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "color-convert": "^2.0.1"
+ "ansi-styles": "^6.2.3",
+ "string-width": "^8.2.0",
+ "strip-ansi": "^7.1.2"
},
"engines": {
- "node": ">=8"
+ "node": ">=20"
},
"funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/wrap-ansi/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/wrappy": {
@@ -9026,46 +9815,31 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/yoctocolors-cjs": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz",
- "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/zod": {
- "version": "4.3.5",
- "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.5.tgz",
- "integrity": "sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==",
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.2.tgz",
+ "integrity": "sha512-IynmDyxsEsb9RKzO3J9+4SxXnl2FTFSzNBaKKaMV6tsSk0rw9gYw9gs+JFCq/qk2LCZ78KDwyj+Z289TijSkUw==",
"dev": true,
"license": "MIT",
- "peer": true,
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
},
"node_modules/zod-to-json-schema": {
- "version": "3.25.1",
- "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.1.tgz",
- "integrity": "sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==",
+ "version": "3.25.2",
+ "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
+ "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
"dev": true,
"license": "ISC",
"peerDependencies": {
- "zod": "^3.25 || ^4"
+ "zod": "^3.25.28 || ^4"
}
},
"node_modules/zone.js": {
- "version": "0.16.0",
- "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.16.0.tgz",
- "integrity": "sha512-LqLPpIQANebrlxY6jKcYKdgN5DTXyyHAKnnWWjE5pPfEQ4n7j5zn7mOEEpwNZVKGqx3kKKmvplEmoBrvpgROTA==",
- "license": "MIT",
- "peer": true
+ "version": "0.16.2",
+ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.16.2.tgz",
+ "integrity": "sha512-Eky7p2Z1Ig3NnbfodSPoARCjKBSTFMnE/ACsP1L/XJEfY4SdOFce19BsUCWVwL6K5ABZFy5J3bjcMWffX+YM3Q==",
+ "license": "MIT"
}
}
}
diff --git a/verify/angular/package.json b/verify/angular/package.json
index d7aac5774..0d6d77aef 100644
--- a/verify/angular/package.json
+++ b/verify/angular/package.json
@@ -15,27 +15,33 @@
"reset:repo": "git clean -f -X -d"
},
"dependencies": {
- "@angular/common": "^21.1.0",
- "@angular/compiler": "^21.1.0",
- "@angular/core": "^21.1.0",
- "@angular/platform-browser": "^21.1.0",
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-files-service-override": "^31.0.1",
- "@codingame/monaco-vscode-json-default-extension": "^31.0.1",
- "monaco-languageclient": "~10.7.0",
+ "@angular/common": "~22.0.1",
+ "@angular/compiler": "~22.0.1",
+ "@angular/core": "~22.0.1",
+ "@angular/platform-browser": "~22.0.1",
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "monaco-languageclient": "../../packages/client",
"rxjs": "~7.8.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
- "zone.js": "^0.16.0"
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "zone.js": "~0.16.2"
},
"devDependencies": {
- "@analogjs/vite-plugin-angular": "~2.2.3",
- "@angular/build": "^21.1.0",
- "@angular/cli": "^21.1.0",
- "@angular/compiler-cli": "^21.1.0",
+ "@analogjs/vite-plugin-angular": "~2.6.1",
+ "@angular/build": "~22.0.1",
+ "@angular/cli": "~22.0.1",
+ "@angular/compiler-cli": "~22.0.1",
"@codingame/esbuild-import-meta-url-plugin": "~1.0.3",
- "@types/node": "~24.10.10",
+ "@types/node": "~24.10.15",
"shx": "~0.4.0",
- "typescript": "~5.9.3",
- "vite": "~7.3.1"
+ "typescript": "~6.0.3",
+ "vite": "~8.0.16"
+ },
+ "allowScripts": {
+ "esbuild": false,
+ "@parcel/watcher": false,
+ "lmdb": false,
+ "msgpackr-extract": false
}
}
diff --git a/verify/angular/vite.config.ts b/verify/angular/vite.config.ts
index dcb8a19d4..3f423a2af 100644
--- a/verify/angular/vite.config.ts
+++ b/verify/angular/vite.config.ts
@@ -32,7 +32,7 @@ export default defineConfig(({ command }) => {
'vscode-jsonrpc',
'vscode-languageclient',
'vscode-languageserver',
- 'vscode-languageserver/browser.js',
+ 'vscode-languageserver/browser',
'vscode-languageserver-protocol'
]
},
diff --git a/verify/next/app/langium-dsl/config/extendedConfig.ts b/verify/next/app/langium-dsl/config/extendedConfig.ts
index da2baa7d7..b43b6ca68 100644
--- a/verify/next/app/langium-dsl/config/extendedConfig.ts
+++ b/verify/next/app/langium-dsl/config/extendedConfig.ts
@@ -27,7 +27,7 @@ export const setupLangiumClientExtended = async (
const { InMemoryFileSystemProvider, registerFileSystemOverlay } = await import('@codingame/monaco-vscode-files-service-override');
const { LogLevel } = await import('@codingame/monaco-vscode-api');
const { Uri } = await import('vscode');
- const { BrowserMessageReader, BrowserMessageWriter } = await import('vscode-languageclient/browser.js');
+ const { BrowserMessageReader, BrowserMessageWriter } = await import('vscode-languageclient/browser');
// base configurration
const overallConfigType: OverallConfigType = 'extended';
diff --git a/verify/next/app/langium-dsl/worker/langium-server.ts b/verify/next/app/langium-dsl/worker/langium-server.ts
index acb0b3990..85e22213a 100644
--- a/verify/next/app/langium-dsl/worker/langium-server.ts
+++ b/verify/next/app/langium-dsl/worker/langium-server.ts
@@ -7,7 +7,7 @@
import { EmptyFileSystem } from 'langium';
import { startLanguageServer } from 'langium/lsp';
import { createLangiumGrammarServices } from 'langium/grammar';
-import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser.js';
+import { BrowserMessageReader, BrowserMessageWriter, createConnection } from 'vscode-languageserver/browser';
/* browser specific setup code */
export let messageReader: BrowserMessageReader | undefined;
diff --git a/verify/next/package-lock.json b/verify/next/package-lock.json
index 166d07c16..dd52a4b3f 100644
--- a/verify/next/package-lock.json
+++ b/verify/next/package-lock.json
@@ -5,515 +5,323 @@
"packages": {
"": {
"dependencies": {
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "^25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@typefox/monaco-editor-react": "~7.7.0",
- "langium": "~4.2.0",
- "monaco-languageclient": "~10.7.0",
- "next": "~16.1.6",
- "react": "~19.2.4",
- "react-dom": "~19.2.4",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1"
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "../../packages/wrapper-react",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "../../packages/client",
+ "next": "~16.2.9",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0"
},
"devDependencies": {
"@types/react-dom": "~19.2.3",
- "@typescript/native-preview": "~7.0.0-dev.20260205.1",
+ "@typescript/native-preview": "beta",
"shx": "~0.4.0",
- "vite": "~8.0.0-beta.13"
+ "vite": "~8.0.16"
+ },
+ "engines": {
+ "node": ">=22",
+ "npm": ">=10"
+ }
+ },
+ "../../packages/client": {
+ "name": "monaco-languageclient",
+ "version": "11.0.0-next.0",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-cs": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-de": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-es": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-fr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-it": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ja": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ko": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pl": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-pt-br": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-qps-ploc": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-ru": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-tr": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hans": "^34.0.1",
+ "@codingame/monaco-vscode-language-pack-zh-hant": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-monarch-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-theme-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-workbench-service-override": "^34.0.1",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0"
+ },
+ "devDependencies": {
+ "@codingame/monaco-vscode-standalone-css-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-html-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-json-language-features": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-languages": "^34.0.1",
+ "@codingame/monaco-vscode-standalone-typescript-language-features": "^34.0.1",
+ "monaco-languageclient-examples": "../examples"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
+ }
+ },
+ "../../packages/wrapper-react": {
+ "name": "@typefox/monaco-editor-react",
+ "version": "8.0.0-next.0",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "monaco-languageclient": "~11.0.0-next.0",
+ "react": ">=18.0.0 || <20.0.0",
+ "vscode-languageclient": "~10.0.0"
+ },
+ "devDependencies": {
+ "monaco-languageclient-examples": "../examples"
+ },
+ "engines": {
+ "node": ">=22",
+ "npm": ">=10"
}
},
"node_modules/@chevrotain/cst-dts-gen": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.1.1.tgz",
- "integrity": "sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-12.0.0.tgz",
+ "integrity": "sha512-fSL4KXjTl7cDgf0B5Rip9Q05BOrYvkJV/RrBTE/bKDN096E4hN/ySpcBK5B24T76dlQ2i32Zc3PAE27jFnFrKg==",
"license": "Apache-2.0",
"dependencies": {
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
+ "@chevrotain/gast": "12.0.0",
+ "@chevrotain/types": "12.0.0"
}
},
"node_modules/@chevrotain/gast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.1.1.tgz",
- "integrity": "sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-12.0.0.tgz",
+ "integrity": "sha512-1ne/m3XsIT8aEdrvT33so0GUC+wkctpUPK6zU9IlOyJLUbR0rg4G7ZiApiJbggpgPir9ERy3FRjT6T7lpgetnQ==",
"license": "Apache-2.0",
"dependencies": {
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
+ "@chevrotain/types": "12.0.0"
}
},
"node_modules/@chevrotain/regexp-to-ast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.1.1.tgz",
- "integrity": "sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-12.0.0.tgz",
+ "integrity": "sha512-p+EW9MaJwgaHguhoqwOtx/FwuGr+DnNn857sXWOi/mClXIkPGl3rn7hGNWvo31HA3vyeQxjqe+H36yZJwYU8cA==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/types": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.1.1.tgz",
- "integrity": "sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-12.0.0.tgz",
+ "integrity": "sha512-S+04vjFQKeuYw0/eW3U52LkAHQsB1ASxsPGsLPUyQgrZ2iNNibQrsidruDzjEX2JYfespXMG0eZmXlhA6z7nWA==",
"license": "Apache-2.0"
},
"node_modules/@chevrotain/utils": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.1.1.tgz",
- "integrity": "sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-12.0.0.tgz",
+ "integrity": "sha512-lB59uJoaGIfOOL9knQqQRfhl9g7x8/wqFkp13zTdkRu1huG9kg6IJs1O8hqj9rs6h7orGxHJUKb+mX3rPbWGhA==",
"license": "Apache-2.0"
},
"node_modules/@codingame/monaco-vscode-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-25.1.2.tgz",
- "integrity": "sha512-K04QcQA+Zb0KXucBAK/BGCT5dldiwIqdUbBQq7yuLvBLbof3cP1WSUuxasMHGYwM0MWyzIAsDtyAYMS7is8ZuA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-base-service-override": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2",
- "@codingame/monaco-vscode-host-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-34.0.1.tgz",
+ "integrity": "sha512-LiFstXqNw1PPabjrV3g09/Wu8Ss5f2IlDH2lHlEZaQmhDVdxpDZUKqKaD1hLDKiYwx8lYeHs1yNUab5uUQh4bQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-base-service-override": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1",
+ "@codingame/monaco-vscode-host-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@vscode/diff": "0.0.2-7",
"@vscode/iconv-lite-umd": "0.7.1",
- "dompurify": "3.3.1",
+ "dompurify": "3.4.9",
"jschardet": "3.1.4",
"marked": "14.0.0"
}
},
"node_modules/@codingame/monaco-vscode-base-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-25.1.2.tgz",
- "integrity": "sha512-OwYs6h1ATUAeMmX+Q1c8esTG7GLMqniBs+fLEr1/9b/ciY485ArKo5UvrUxVPDtRNy/7F06vRW9IUCq9iKP14w==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-34.0.1.tgz",
+ "integrity": "sha512-f7QLFt9W5xPx03y7bmmo4IrQNyGHZSICunmBbRVP3T+F8KAD3X5JhMgun6490MT6I25MCtmxrwreQ5xvTHRqUg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-bulk-edit-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-25.1.2.tgz",
- "integrity": "sha512-+EfSzjiFakCf0IIJKPZrHVGioq5N8GBsp51bXuKBR5J/B58cUaJY0Dc12PNTSpgAusAGOppUIOSBqUk4F/7IaQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-configuration-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-25.1.2.tgz",
- "integrity": "sha512-oeoZ3WtM42zHA1IWHrx9UGEfE+TixE+G8Bl9M9bjgFj1EROnkB5yOfELwRYPo4WOEtcK1C5nvIvWIj/hL9MaLg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-34.0.1.tgz",
+ "integrity": "sha512-UyNajMSftU4UbBdycPGBpt2xco5m1cgIiXJ5CqIK9giyF04SShW27cPi3XSQGUaN040h2yCzgysHw9byB/RlJA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-editor-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-25.1.2.tgz",
- "integrity": "sha512-EadvDCyWdgxOPmaIvbcVVDNjTUYuKdjYWwKbPbbcTs9t4z1/DjdE7mV3ZdT6aGh5m6zkEEUOi143l27Y5eRt+Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-34.0.1.tgz",
+ "integrity": "sha512-o/7ECILQ5eOViHkK6LrKT0TAZb6ZgZwL8C/+ZqITGb7e3vUBNjPoYPJ+RVb8h2vM9ihfbWBuKjaGyd/pP+BjDg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-environment-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-25.1.2.tgz",
- "integrity": "sha512-8GoD3lk0CN0dIMZOrZNS/i8RCaF1YSQ6nmrf+rqneOSHG9S382EnsZZD69d4+i7JnoeyttO7Kr9KH8WOhRV6OA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-34.0.1.tgz",
+ "integrity": "sha512-cxN+MbUlV1IK0IXp3MerahdoVtLudkpBAwEyfn2uyzkiuRRHtCsNdcf/9Hyy2shFp3kuRRpQLbtIt6ODfYfX6g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-extension-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-extensions-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-25.1.2.tgz",
- "integrity": "sha512-rTTZW2biPxcg+JumhVf2L+38C5ptvNNxiJlwz39VfXFEh6qOHtAsIMy7vIXa0uGg5/y8DNp0SnOQJP/RKhLYZA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-34.0.1.tgz",
+ "integrity": "sha512-wHDZmFEtOahYXk1H0TeGIV2Ssl6yurYQFX33L5Im1CtypxTMkEm0sP+IvOHLmJbT4X5u5xi7FWNcgoVhbVnYaQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-files-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-25.1.2.tgz",
- "integrity": "sha512-TenLLAFIwY7keZFF8e3beUn7OVfnNINR5Noi4PVrjeeTcy6FuNH6Jghdul2JwpRAkvyJLdFMvomE2jlT6F03jQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-34.0.1.tgz",
+ "integrity": "sha512-oqWQ0WiQDQRZoA9G68+G+QMAxtCwPFf0RXDD5aUqhXYOXhW/lqwCBwwqdQLoKQyiALfIXF6wU944fkspWPfa3g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-host-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-25.1.2.tgz",
- "integrity": "sha512-lgaalpA9CUQW7i0bBwgBOK0DQNDvOo3QO3p6Rz6yVsHpgA4iMqq2d11dBDUKvuQSwIHPRu8CMHCqhQk/BQN/YA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-34.0.1.tgz",
+ "integrity": "sha512-lVho3RwV0kAtSALAdB0UeglApr/KJQShbGB91KUBjKeOx4J5XGfPL2k2y9yNtGjE8NKuuJ2XaxmhSDdcOkuWDA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-keybindings-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-25.1.2.tgz",
- "integrity": "sha512-cp/gGyTvCTAzCYnQm0HJykXJRB0Huz8Lvq60lj5LutgWcb8S3w6dOB2Houm8dHoeUm/jOko8SQNIP8hzWN92Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-cs": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-25.1.2.tgz",
- "integrity": "sha512-v0cB2uAOCwj135aGIf0arGV+DNW32lbWh04bv8ctTxcWRt1Pr2kTQ1pjfE8ynKgxabPfAk8E25/CerKSYOmZ+A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-de": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-25.1.2.tgz",
- "integrity": "sha512-xA3WOt1w5jlAOnyx4PBwx+qV3vx8C8/zie29qjYbgJMxGKDkb0HfpuKUwywDA2uUMI2wJZS+PnNG00zPDoLIrw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-es": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-25.1.2.tgz",
- "integrity": "sha512-1/upuO9lRJilZ3sRr0QLTpz55KYRaBWDe8wtPvghOFYOHyWgW8A4VhUQxa6L9SJgY1JkypUAm0U8WcMX2G4LnQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-fr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-25.1.2.tgz",
- "integrity": "sha512-iq+xx+tv1QIMmFD0eBhFRMF4xMAsVf/HyA1WogqBofteCWeAvRE9HUjZ5JzHz7jXBPe3dLP1LOM0r0GrJZs4fQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-it": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-25.1.2.tgz",
- "integrity": "sha512-FajWCML9OR8ppLnJ0mcg+sFHEhYJl8zhb3/DHnd+pNysw8dLfetXoSWjaPnwPPpwiQgkNN1UsToZHOU9czVifQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ja": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-25.1.2.tgz",
- "integrity": "sha512-NwKh0BnPgUrJkxsm0X6vY4ftnd9DjxkcnQqK+bohta6UOzm09J1EjZ6QD42fjWngxrp/xiegtrYQ9NA2q6VpoA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ko": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-25.1.2.tgz",
- "integrity": "sha512-fvaisgfcg8YaAwnyPcGmQDLwkwqzamLQUyx9HmnwDpXw0YANzd058Kwn6bz+Vfn9MjwuMNT0nllD0qQMnpdyew==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pl": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-25.1.2.tgz",
- "integrity": "sha512-9hDRyzFJkDia5rO9QE262JgxwP/cnalFisLFo7FQcw57ZhqzqXIdQIuwcKaHuAgzeQ6W2+A3KOLfTr3m7VZrXw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pt-br": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-25.1.2.tgz",
- "integrity": "sha512-7fFnqOTAJGb5RuJ4uwh9sh0JmXALuHPGOl7iL9rZkcgIuVP5y6wVDUDXq5qjiRTNSFDs7Bzh463Ir5m5D6mJbA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-qps-ploc": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-25.1.2.tgz",
- "integrity": "sha512-IFjoqrSuPtIFWb+KlPT6PFWKszzNX+TCD9drgCV6AigvBO/xfGL3QwHB68l/DLbmDbohOz4Xdkutv20wuENAeA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ru": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-25.1.2.tgz",
- "integrity": "sha512-0uDAeXO+GllKUPhJzP893rlDhlFV1IwCu/515rBdcyegt48iGm/xAgj26V90hNz8hmB6EuM/7d8MFeklbiIpYA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-tr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-25.1.2.tgz",
- "integrity": "sha512-MJhHxDyJEiuVLQ9+jb8MnnN9lsbJOjJjMswVCeJ7v/Q/msAhq25QYUfn0DbOIzESJE1f7crffRb5e38XP8sYWA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hans": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-25.1.2.tgz",
- "integrity": "sha512-c7MMrhnSLb59NxpAa8nVy9aIbxy4gVYrCpDMq8W380LOaXTYb7nueTrw8QJ5QbJBNi2P2KZoGkn2BlONuBtJJg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hant": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-25.1.2.tgz",
- "integrity": "sha512-ARedFTM6JCluoPLJqkBcTJaQFdJNcN86OX6B8/NMApIPrnSIAfanMndpyilt8XjzUG6IH22cypR+DAlEjf48cA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-languages-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-25.1.2.tgz",
- "integrity": "sha512-ipuS1V3NgXDkNrj0vBcgMBFnqo+19HVsZjjFGfPFH3x0uptP9aiWWK42wtDK3Qbu4teSjHL7WnSLrmw94rplWw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-34.0.1.tgz",
+ "integrity": "sha512-YKD3sGZL9oFsV1hWoLKJp02CWUbQT7d6jn2X1IykuGH1awWMTm3VQMMnkxGU+pSSvCmQ/wuGoAYe3DfjEygJIQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-layout-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-25.1.2.tgz",
- "integrity": "sha512-SxBGcMK3RgkGtUn7ZDl7dCoyNW0CWFQ/bfSRYUY06A0IA4JNS5jq1lhof57d0WXewm+5l8w1Spr/vMsfx1c9ig==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-localization-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-25.1.2.tgz",
- "integrity": "sha512-QLj62A8XDOIQW3KjsZlNxs+sfsNNHYxWMjQMwZu/y2Vw3IIHGly2Lpn4t4SFbeaBHJQJy4i5s7NpzlbF9MbEzQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-34.0.1.tgz",
+ "integrity": "sha512-5K0xlg5MurqI/qotIye/lq3dynZZ+9uSu8Kz884m6soH08/zIY7peMYj44qhxgv2BRTDlEl1bnR98lDWNv3oSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-log-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-25.1.2.tgz",
- "integrity": "sha512-OoileAUtPAJ0j3RW31DFSxtOipy0EcFq+iIXEdGvoRlsQPZJ3o9ayjf1JvCXpxUjJ3QkmvQVhXsWNUFREjEFLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-model-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-25.1.2.tgz",
- "integrity": "sha512-MGz/eV1CxibLvnl6WzK6idUHJCXJOVepJvKM6Trkv5050vRe+f/o1TjCiG8PaznAypYqZvnwkTG0B7/OTizCpQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-monarch-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-25.1.2.tgz",
- "integrity": "sha512-akyNHOJQRS7YHyk6kf0Encnkt+shlR+bIB84UJRUHFgSeF8s5gkDkQuFJph0YeUDWJWat+yBLUSZx2nHomdbHQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-quickaccess-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-25.1.2.tgz",
- "integrity": "sha512-7IIrXnwHiF3w9d9p9kspEUz/LCibMLUztmRpGdZQfFtWBJw043q7rk8V1O42KdXr1hVg9IR5vfffwjy9nbiiUg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-34.0.1.tgz",
+ "integrity": "sha512-6IONyHH5wJHCaZ7CKTL2iz4DpoKmj2SmsHEAjE59OtcgLhqrCYhqBFb/dbse97HMbfYbvQyiMZb/kH3cJf89jQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-textmate-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-25.1.2.tgz",
- "integrity": "sha512-AL0FtSQBW+1vtoXYQvUqB2hfWojpK73Kq/n6KuNXxjLF/XBJ5FpeeZDfrBfwhWPPoHuBTsaFUCQy4L8xQgbVlA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-defaults-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-25.1.2.tgz",
- "integrity": "sha512-0vTMFiC89YSDSmjFckuQBUKwRuFNtsILNO3k0PBiSLN/MW+VDItjJpiVLXC42+rUWlGgY2lYxOneGVa5slCV1w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-25.1.2.tgz",
- "integrity": "sha512-hsTwl6YYTiheFuQMmCmiEGLIdIdgYaf8Z85XWyxe6YgPtDaYGnp0fGSOXKA9/bf0JtuynzoLKtUUfDupK/A7Tw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-34.0.1.tgz",
+ "integrity": "sha512-iVo3dxlHic30CMQsG834PtDj1rVWbvk5ORqEzI7HnRUsw2TYtXy8al7MgLs/95JFsla0hQ071ShyvChaEkPUIg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-typescript-basics-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-25.1.2.tgz",
- "integrity": "sha512-tGpGAvVsINHodqPtjZDEOkjXAKLWiCr90P/dNC7W8XghxUHzQHqYmAunkkcJXWcRluaXcNBvPGplm1GaQfn3lQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-34.0.1.tgz",
+ "integrity": "sha512-VBsZR5K+rvip7MefSM/R2QnBQWTEEHCEuOexNe0YSQvzlMPEnxDY7H84PlyQeW+0TxNaRozPIe9nomQoefIuLg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-typescript-language-features-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-25.1.2.tgz",
- "integrity": "sha512-bifrfWg+392NVb5LZ9k5UlhlW9xyNTaHhgh/ZxmOBpjbkaiB80VnpS/SV0zF8R0IZYtDF+Be7PpVWnmrEIw0JA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-34.0.1.tgz",
+ "integrity": "sha512-6I3lQbEeQz/g0qcCQOCsbc+CIsPUsJTYtDPC89NJHv7UmosS3Y+hTmJMLFlV4W/E+NYICkyEpRMSmod7S+xz2A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-banner-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-25.1.2.tgz",
- "integrity": "sha512-zhujHd1PQ6rRXsC2OQGrx/282G2v3lpPFl9heDFGKzpdj5119SgcW+B9p/MwJ1qF3LJpuRRgefNiQtqC/KT1eA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-view-common-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-25.1.2.tgz",
- "integrity": "sha512-4Po/YaHUvVf4VmhVCZmM2lc/flOptiWSM140bIRNpMcfH0VwihYg15CcDeu1Oc+6DaauzsG3u59GtEvlMmJ9Zw==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-34.0.1.tgz",
+ "integrity": "sha512-ZlhZq85TqQK1MhYtrhdMF89xgDeb7T/3iPecO0nphMozGoA3q3PFLmrKgQ9m3b5jXFZFwlyUNK8+HqDPlID13A==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-bulk-edit-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-status-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-Jp9ytLaWZ6evabTPtG3Mu3dFx+7WTIPz69BsGpl9PnU0kiSWUqQhPSob0Jz7E2qmMj0ZcNv2Wqvm6bMBu5OyrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-title-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-NVYtTAFR35NV/Fx7tSlbASicvpAjK5A14fmxF7/LJJN8ZmzhA/P3Y+UzhqOQl6/VcPV4pAMU0Z7Sicgwbn37dw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-bulk-edit-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-views-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-25.1.2.tgz",
- "integrity": "sha512-LfzlztsvobdP5L5EvJ/rqSEgy5fEVmrkMqRteuhEtNGd4hnmdBoX8W7BNMBPff6d4NfCK74pGHJF57RyT4Iixg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-workbench-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-25.1.2.tgz",
- "integrity": "sha512-2LMHr+na03FhOAaXpIGmamq9hf7e4wt2kULn8NqNZRd3i+0v1tx/TSSjGhsA5EkrNrFD7CMSoXayBq8tgpCq/A==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-34.0.1.tgz",
+ "integrity": "sha512-0CR1sJUJS/uC/Cx1GOPr5DgIwSnwyluaAtKv9SAe2Au7BJ5cvG7HFPitI+bgsheNnVLBhu1SZF/H8Y7X7ImCvA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@codingame/monaco-vscode-view-common-service-override": "34.0.1"
}
},
"node_modules/@emnapi/core": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
- "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/wasi-threads": "1.1.0",
+ "@emnapi/wasi-threads": "1.2.1",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
- "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
"license": "MIT",
"optional": true,
"dependencies": {
@@ -521,9 +329,9 @@
}
},
"node_modules/@emnapi/wasi-threads": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
- "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -532,9 +340,9 @@
}
},
"node_modules/@img/colour": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
- "integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
"license": "MIT",
"optional": true,
"engines": {
@@ -624,6 +432,9 @@
"cpu": [
"arm"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -640,6 +451,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -656,6 +470,9 @@
"cpu": [
"ppc64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -672,6 +489,9 @@
"cpu": [
"riscv64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -688,6 +508,9 @@
"cpu": [
"s390x"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -704,6 +527,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -720,6 +546,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "musl"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -736,6 +565,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "musl"
+ ],
"license": "LGPL-3.0-or-later",
"optional": true,
"os": [
@@ -752,6 +584,9 @@
"cpu": [
"arm"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -774,6 +609,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -796,6 +634,9 @@
"cpu": [
"ppc64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -818,6 +659,9 @@
"cpu": [
"riscv64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -840,6 +684,9 @@
"cpu": [
"s390x"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -862,6 +709,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -884,6 +734,9 @@
"cpu": [
"arm64"
],
+ "libc": [
+ "musl"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -906,6 +759,9 @@
"cpu": [
"x64"
],
+ "libc": [
+ "musl"
+ ],
"license": "Apache-2.0",
"optional": true,
"os": [
@@ -998,32 +854,34 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
- "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/core": "^1.7.1",
- "@emnapi/runtime": "^1.7.1",
- "@tybys/wasm-util": "^0.10.1"
+ "@tybys/wasm-util": "^0.10.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "peerDependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1"
}
},
"node_modules/@next/env": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-16.1.6.tgz",
- "integrity": "sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.9.tgz",
+ "integrity": "sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==",
"license": "MIT"
},
"node_modules/@next/swc-darwin-arm64": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz",
- "integrity": "sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.9.tgz",
+ "integrity": "sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==",
"cpu": [
"arm64"
],
@@ -1037,9 +895,9 @@
}
},
"node_modules/@next/swc-darwin-x64": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz",
- "integrity": "sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.9.tgz",
+ "integrity": "sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==",
"cpu": [
"x64"
],
@@ -1053,12 +911,15 @@
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz",
- "integrity": "sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.9.tgz",
+ "integrity": "sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==",
"cpu": [
"arm64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1069,12 +930,15 @@
}
},
"node_modules/@next/swc-linux-arm64-musl": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz",
- "integrity": "sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.9.tgz",
+ "integrity": "sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==",
"cpu": [
"arm64"
],
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1085,12 +949,15 @@
}
},
"node_modules/@next/swc-linux-x64-gnu": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz",
- "integrity": "sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.9.tgz",
+ "integrity": "sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==",
"cpu": [
"x64"
],
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1101,12 +968,15 @@
}
},
"node_modules/@next/swc-linux-x64-musl": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz",
- "integrity": "sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.9.tgz",
+ "integrity": "sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==",
"cpu": [
"x64"
],
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1117,9 +987,9 @@
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz",
- "integrity": "sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.9.tgz",
+ "integrity": "sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==",
"cpu": [
"arm64"
],
@@ -1133,9 +1003,9 @@
}
},
"node_modules/@next/swc-win32-x64-msvc": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz",
- "integrity": "sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.9.tgz",
+ "integrity": "sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==",
"cpu": [
"x64"
],
@@ -1186,20 +1056,10 @@
"node": ">= 8"
}
},
- "node_modules/@oxc-project/runtime": {
- "version": "0.112.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/runtime/-/runtime-0.112.0.tgz",
- "integrity": "sha512-4vYtWXMnXM6EaweCxbJ6bISAhkNHeN33SihvuX3wrpqaSJA4ZEoW35i9mSvE74+GDf1yTeVE+aEHA+WBpjDk/g==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": "^20.19.0 || >=22.12.0"
- }
- },
"node_modules/@oxc-project/types": {
- "version": "0.112.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.112.0.tgz",
- "integrity": "sha512-m6RebKHIRsax2iCwVpYW2ErQwa4ywHJrE4sCK3/8JK8ZZAWOKXaRJFl/uP51gaVyyXlaS4+chU1nSCdzYf6QqQ==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -1207,9 +1067,9 @@
}
},
"node_modules/@rolldown/binding-android-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-0T1k9FinuBZ/t7rZ8jN6OpUKPnUjNdYHoj/cESWrQ3ZraAJ4OMm6z7QjSfCxqj8mOp9kTKc1zHK3kGz5vMu+nQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
"cpu": [
"arm64"
],
@@ -1224,9 +1084,9 @@
}
},
"node_modules/@rolldown/binding-darwin-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-JWWLzvcmc/3pe7qdJqPpuPk91SoE/N+f3PcWx/6ZwuyDVyungAEJPvKm/eEldiDdwTmaEzWfIR+HORxYWrCi1A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
"cpu": [
"arm64"
],
@@ -1241,9 +1101,9 @@
}
},
"node_modules/@rolldown/binding-darwin-x64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.3.tgz",
- "integrity": "sha512-MTakBxfx3tde5WSmbHxuqlDsIW0EzQym+PJYGF4P6lG2NmKzi128OGynoFUqoD5ryCySEY85dug4v+LWGBElIw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
"cpu": [
"x64"
],
@@ -1258,9 +1118,9 @@
}
},
"node_modules/@rolldown/binding-freebsd-x64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.3.tgz",
- "integrity": "sha512-jje3oopyOLs7IwfvXoS6Lxnmie5JJO7vW29fdGFu5YGY1EDbVDhD+P9vDihqS5X6fFiqL3ZQZCMBg6jyHkSVww==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
"cpu": [
"x64"
],
@@ -1275,9 +1135,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.3.tgz",
- "integrity": "sha512-A0n8P3hdLAaqzSFrQoA42p23ZKBYQOw+8EH5r15Sa9X1kD9/JXe0YT2gph2QTWvdr0CVK2BOXiK6ENfy6DXOag==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
"cpu": [
"arm"
],
@@ -1292,13 +1152,16 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-gnu": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.3.tgz",
- "integrity": "sha512-kWXkoxxarYISBJ4bLNf5vFkEbb4JvccOwxWDxuK9yee8lg5XA7OpvlTptfRuwEvYcOZf+7VS69Uenpmpyo5Bjw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1309,13 +1172,56 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-musl": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.3.tgz",
- "integrity": "sha512-Z03/wrqau9Bicfgb3Dbs6SYTHliELk2PM2LpG2nFd+cGupTMF5kanLEcj2vuuJLLhptNyS61rtk7SOZ+lPsTUA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1326,13 +1232,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-gnu": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.3.tgz",
- "integrity": "sha512-iSXXZsQp08CSilff/DCTFZHSVEpEwdicV3W8idHyrByrcsRDVh9sGC3sev6d8BygSGj3vt8GvUKBPCoyMA4tgQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1343,13 +1252,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-musl": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.3.tgz",
- "integrity": "sha512-qaj+MFudtdCv9xZo9znFvkgoajLdc+vwf0Kz5N44g+LU5XMe+IsACgn3UG7uTRlCCvhMAGXm1XlpEA5bZBrOcw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1360,9 +1272,9 @@
}
},
"node_modules/@rolldown/binding-openharmony-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-U662UnMETyjT65gFmG9ma+XziENrs7BBnENi/27swZPYagubfHRirXHG2oMl+pEax2WvO7Kb9gHZmMakpYqBHQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
"cpu": [
"arm64"
],
@@ -1377,9 +1289,9 @@
}
},
"node_modules/@rolldown/binding-wasm32-wasi": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.3.tgz",
- "integrity": "sha512-gekrQ3Q2HiC1T5njGyuUJoGpK/l6B/TNXKed3fZXNf9YRTJn3L5MOZsFBn4bN2+UX+8+7hgdlTcEsexX988G4g==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
"cpu": [
"wasm32"
],
@@ -1387,16 +1299,29 @@
"license": "MIT",
"optional": true,
"dependencies": {
- "@napi-rs/wasm-runtime": "^1.1.1"
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
},
"engines": {
- "node": ">=14.0.0"
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@emnapi/runtime": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
}
},
"node_modules/@rolldown/binding-win32-arm64-msvc": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.3.tgz",
- "integrity": "sha512-85y5JifyMgs8m5K2XzR/VDsapKbiFiohl7s5lEj7nmNGO0pkTXE7q6TQScei96BNAsoK7JC3pA7ukA8WRHVJpg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
"cpu": [
"arm64"
],
@@ -1411,9 +1336,9 @@
}
},
"node_modules/@rolldown/binding-win32-x64-msvc": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.3.tgz",
- "integrity": "sha512-a4VUQZH7LxGbUJ3qJ/TzQG8HxdHvf+jOnqf7B7oFx1TEBm+j2KNL2zr5SQ7wHkNAcaPevF6gf9tQnVBnC4mD+A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
"cpu": [
"x64"
],
@@ -1428,9 +1353,9 @@
}
},
"node_modules/@rolldown/pluginutils": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
- "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
"dev": true,
"license": "MIT"
},
@@ -1444,9 +1369,9 @@
}
},
"node_modules/@tybys/wasm-util": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
- "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -1455,25 +1380,13 @@
}
},
"node_modules/@typefox/monaco-editor-react": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/@typefox/monaco-editor-react/-/monaco-editor-react-7.7.0.tgz",
- "integrity": "sha512-gbDgCHExBLV22S3QPVu8v2fTtyQdqQ8RItTvROlZF4KJ79DyqhkkviNN7UnMuelFoPCS6QiwvDbMyJ4OBxt5WA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "react": ">=18.0.0 || <20.0.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
+ "resolved": "../../packages/wrapper-react",
+ "link": true
},
"node_modules/@types/react": {
- "version": "19.2.11",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.11.tgz",
- "integrity": "sha512-tORuanb01iEzWvMGVGv2ZDhYZVeRMrw453DCSAIn/5yvcSVnMoUMTyf33nQJLahYEnv9xqrTNbgz4qY5EfSh0g==",
+ "version": "19.2.17",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -1499,28 +1412,28 @@
"optional": true
},
"node_modules/@typescript/native-preview": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview/-/native-preview-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-eSgzYCbdCXP/E0XL53yIMZNLoY3z1xMOgGyjstVLgUCMLv1yNrFvkhKhHFjM84OTY/LxqRb6ACtvjFO/oSZzvQ==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview/-/native-preview-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-CmajHI25HpVWE9R1XFoxr+cphJPxoYD3eFioQtAvXYkMFKnLdICMS9pXre9Pybizb75ejRxjKD5/CVG055rEIg==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsgo": "bin/tsgo.js"
},
"optionalDependencies": {
- "@typescript/native-preview-darwin-arm64": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-darwin-x64": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-linux-arm": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-linux-arm64": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-linux-x64": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-win32-arm64": "7.0.0-dev.20260205.1",
- "@typescript/native-preview-win32-x64": "7.0.0-dev.20260205.1"
+ "@typescript/native-preview-darwin-arm64": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-darwin-x64": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-linux-arm": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-linux-arm64": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-linux-x64": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-win32-arm64": "7.0.0-dev.20260421.2",
+ "@typescript/native-preview-win32-x64": "7.0.0-dev.20260421.2"
}
},
"node_modules/@typescript/native-preview-darwin-arm64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-darwin-arm64/-/native-preview-darwin-arm64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-ULATKP9a26qh8vcmP4qPz8UugGKIwhQPKi3NhvlbTPwhl3fMd3GJd9/B9LJSHw7lIuELQGZxhSlDq9l0FMb/FQ==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-darwin-arm64/-/native-preview-darwin-arm64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-fHv1r3ZmVo6zxuAIFmuX3w9QxbcauoG0SsWhmDwm6VmRubLlOJIcmTtlmV3JAb9oOnq8LuzZljzT7Q39fSMQDw==",
"cpu": [
"arm64"
],
@@ -1532,9 +1445,9 @@
]
},
"node_modules/@typescript/native-preview-darwin-x64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-darwin-x64/-/native-preview-darwin-x64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-moaKDZHK2dbgcHCnxcwhH8kYRgY69wzPcH5hCNaSrmpbC+Garr78oLtyXot2EDotRDT9foeYsWKdmD6Hx/ypxg==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-darwin-x64/-/native-preview-darwin-x64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-KWTR6xbW9t+JS7D5DQIzo75pqVXVWUxF9PMv/+S6xsnOjCVd6g0ixHcFpFMJMKSUQpGPr8Z5f7b8ks6LHW01jg==",
"cpu": [
"x64"
],
@@ -1546,9 +1459,9 @@
]
},
"node_modules/@typescript/native-preview-linux-arm": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-arm/-/native-preview-linux-arm-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-3qfjUQlYCkwQmbpIeXMw75bLXkCI3Uo88Ug1n9p4j6KFaek5TjnHOTmlO6V3pkyH9pEXQEVXTn0pXzQytxqEqw==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-arm/-/native-preview-linux-arm-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-BWLQO3nemLDSV5PoE5GPHe1dU9Dth77Kv8/cle9Ujcp4LhPo0KincdPqFH/qKeU/xvW25mgFueflZ1nc4rKuww==",
"cpu": [
"arm"
],
@@ -1560,9 +1473,9 @@
]
},
"node_modules/@typescript/native-preview-linux-arm64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-arm64/-/native-preview-linux-arm64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-Wfp2bPmrTLb+dpp2bHDjMqMKGjQ9dp5KSw0jV4LSlbgcVvRSEWqs2ByVVj61Z4qiHgwlVyoPTewdan2CWnoBgQ==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-arm64/-/native-preview-linux-arm64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-VLMEuml3BhUb+jaL0TXQ4xvVODxJF+RhkI+tBWvlynsJI4khTXEiwWh+wPOJrsfBRYFRMXEu28Odl/HXkYze8w==",
"cpu": [
"arm64"
],
@@ -1574,9 +1487,9 @@
]
},
"node_modules/@typescript/native-preview-linux-x64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-x64/-/native-preview-linux-x64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-p59oY35gvvmdy/iZYxdbFAUXusb7joX2i1Nwl15i4TOn52NcIcW3wb9U/uBrIXKev5VEdlH6BS6VA6dM57zD6w==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-linux-x64/-/native-preview-linux-x64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-qUrJWTB5/wv4wnRG0TRXElAxc2kykNiRNyEIEqBbLmzDlrcvAW7RRy8MXoY1ZyTiKGMu14itZ3x9oW6+blFpRw==",
"cpu": [
"x64"
],
@@ -1588,9 +1501,9 @@
]
},
"node_modules/@typescript/native-preview-win32-arm64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-win32-arm64/-/native-preview-win32-arm64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-+NQTlmvtZEXwIlw8j+tvAAn1gLDqyWJEjnA5vmT9MoJuEBrxvuS8azn/q26MOp/w8bWfxe3haVyB+L4VurCF6w==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-win32-arm64/-/native-preview-win32-arm64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-Rc6NsWlZmCs5YUKVzKgwoBOoRUGsPzct4BDMRX0csD1devLBBc4AbUXWKsJRbpwIAnqMO1ld4sNHEb+wXgfNHQ==",
"cpu": [
"arm64"
],
@@ -1602,9 +1515,9 @@
]
},
"node_modules/@typescript/native-preview-win32-x64": {
- "version": "7.0.0-dev.20260205.1",
- "resolved": "https://registry.npmjs.org/@typescript/native-preview-win32-x64/-/native-preview-win32-x64-7.0.0-dev.20260205.1.tgz",
- "integrity": "sha512-kRa4kaiORAWQx9sHylewUhKsNxz3dRBy6AM/U02UebJRlt6c+JnSjIxAFP+iNQaRpoYNs8UdKKGPrHc7Q0oYow==",
+ "version": "7.0.0-dev.20260421.2",
+ "resolved": "https://registry.npmjs.org/@typescript/native-preview-win32-x64/-/native-preview-win32-x64-7.0.0-dev.20260421.2.tgz",
+ "integrity": "sha512-GQv1+dya1t6EqF2Cpsb+xoozovdX10JUSf6Kl/8xNkTapzmlHd+uMr+8ku3jIASTxoRGn0Mklgjj3MDKrOTuLg==",
"cpu": [
"x64"
],
@@ -1615,6 +1528,12 @@
"win32"
]
},
+ "node_modules/@vscode/diff": {
+ "version": "0.0.2-7",
+ "resolved": "https://registry.npmjs.org/@vscode/diff/-/diff-0.0.2-7.tgz",
+ "integrity": "sha512-zGPIPeUAmQs79u7g6FTLmhlXFIocUTtuHYmCV5lRZf6vlDk7SWEOpBlYY6SsShC3TB/lm2KxXMj9tP32YOPrhg==",
+ "license": "MIT"
+ },
"node_modules/@vscode/iconv-lite-umd": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.1.tgz",
@@ -1622,27 +1541,36 @@
"license": "MIT"
},
"node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
+ "license": "MIT",
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
},
"node_modules/baseline-browser-mapping": {
- "version": "2.9.19",
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz",
- "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
+ "version": "2.10.37",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.37.tgz",
+ "integrity": "sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==",
"license": "Apache-2.0",
"bin": {
- "baseline-browser-mapping": "dist/cli.js"
+ "baseline-browser-mapping": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=6.0.0"
}
},
"node_modules/brace-expansion": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "version": "5.0.6",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
+ "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
"license": "MIT",
"dependencies": {
- "balanced-match": "^1.0.0"
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
}
},
"node_modules/braces": {
@@ -1659,9 +1587,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001736",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001736.tgz",
- "integrity": "sha512-ImpN5gLEY8gWeqfLUyEF4b7mYWcYoR2Si1VhnrbM4JizRFmfGaAQ12PhNykq6nvI4XvKLrsp8Xde74D5phJOSw==",
+ "version": "1.0.30001799",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
+ "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
"funding": [
{
"type": "opencollective",
@@ -1679,30 +1607,31 @@
"license": "CC-BY-4.0"
},
"node_modules/chevrotain": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.1.1.tgz",
- "integrity": "sha512-f0yv5CPKaFxfsPTBzX7vGuim4oIC1/gcS7LUGdBSwl2dU6+FON6LVUksdOo1qJjoUvXNn45urgh8C+0a24pACQ==",
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-12.0.0.tgz",
+ "integrity": "sha512-csJvb+6kEiQaqo1woTdSAuOWdN0WTLIydkKrBnS+V5gZz0oqBrp4kQ35519QgK6TpBThiG3V1vNSHlIkv4AglQ==",
"license": "Apache-2.0",
- "peer": true,
"dependencies": {
- "@chevrotain/cst-dts-gen": "11.1.1",
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/regexp-to-ast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "@chevrotain/utils": "11.1.1",
- "lodash-es": "4.17.23"
+ "@chevrotain/cst-dts-gen": "12.0.0",
+ "@chevrotain/gast": "12.0.0",
+ "@chevrotain/regexp-to-ast": "12.0.0",
+ "@chevrotain/types": "12.0.0",
+ "@chevrotain/utils": "12.0.0"
+ },
+ "engines": {
+ "node": ">=22.0.0"
}
},
"node_modules/chevrotain-allstar": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz",
- "integrity": "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==",
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.4.3.tgz",
+ "integrity": "sha512-2X4mkroolSMKqW+H22pyPMUVDqYZzPhephTmg/NODKb1IGYPHfxfhcW0EjS7wcPJNbze2i4vBWT7zT5FKF2lrQ==",
"license": "MIT",
"dependencies": {
- "lodash-es": "^4.17.21"
+ "lodash-es": "^4.18.1"
},
"peerDependencies": {
- "chevrotain": "^11.0.0"
+ "chevrotain": "^12.0.0"
}
},
"node_modules/client-only": {
@@ -1743,7 +1672,8 @@
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/detect-libc": {
"version": "2.1.2",
@@ -1756,9 +1686,9 @@
}
},
"node_modules/dompurify": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
- "integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
+ "version": "3.4.9",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.9.tgz",
+ "integrity": "sha512-4dPSRMRDqHvs0V4YDFCsaIZo4if5u0xM+llyxiM2fwuZFdKArUBAF3VtI2+n8NKg9P870WMdYk0UhqQNoWXbfQ==",
"license": "(MPL-2.0 OR Apache-2.0)",
"optionalDependencies": {
"@types/trusted-types": "^2.0.7"
@@ -1774,6 +1704,16 @@
"once": "^1.4.0"
}
},
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/execa": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
@@ -1811,33 +1751,15 @@
}
},
"node_modules/fastq": {
- "version": "1.19.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
- "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
+ "version": "1.20.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
"dev": true,
"license": "ISC",
"dependencies": {
"reusify": "^1.0.4"
}
},
- "node_modules/fdir": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "picomatch": "^3 || ^4"
- },
- "peerDependenciesMeta": {
- "picomatch": {
- "optional": true
- }
- }
- },
"node_modules/fill-range": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
@@ -1903,9 +1825,9 @@
}
},
"node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1926,13 +1848,13 @@
}
},
"node_modules/is-core-module": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "version": "2.16.2",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz",
+ "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "hasown": "^2.0.2"
+ "hasown": "^2.0.3"
},
"engines": {
"node": ">= 0.4"
@@ -2001,15 +1923,18 @@
}
},
"node_modules/langium": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/langium/-/langium-4.2.0.tgz",
- "integrity": "sha512-SoXTYrTyA9x0CjVoguZfB9NIbj2RwQ7KpltHyJwB7jyzbnfHkqw5Alf9A1JtIqouT7fZv4xMCCy+7CoIYGV65w==",
- "license": "MIT",
- "dependencies": {
- "chevrotain": "~11.1.1",
- "chevrotain-allstar": "~0.3.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-textdocument": "~1.0.11",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/langium/-/langium-4.3.0.tgz",
+ "integrity": "sha512-ehV704taQKTYTuNdKRNjv1sD8huezTW8uTlDuQN6FFK5Cu7qR29vbA1JAibXxLznQXZCAliGO342jH58OzywZA==",
+ "license": "MIT",
+ "dependencies": {
+ "@chevrotain/regexp-to-ast": "~12.0.0",
+ "chevrotain": "~12.0.0",
+ "chevrotain-allstar": "~0.4.3",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-languageserver-textdocument": "~1.0.13",
+ "vscode-languageserver-types": "~3.18.0",
"vscode-uri": "~3.1.0"
},
"engines": {
@@ -2018,9 +1943,9 @@
}
},
"node_modules/lightningcss": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
- "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
"dev": true,
"license": "MPL-2.0",
"dependencies": {
@@ -2034,23 +1959,23 @@
"url": "https://opencollective.com/parcel"
},
"optionalDependencies": {
- "lightningcss-android-arm64": "1.31.1",
- "lightningcss-darwin-arm64": "1.31.1",
- "lightningcss-darwin-x64": "1.31.1",
- "lightningcss-freebsd-x64": "1.31.1",
- "lightningcss-linux-arm-gnueabihf": "1.31.1",
- "lightningcss-linux-arm64-gnu": "1.31.1",
- "lightningcss-linux-arm64-musl": "1.31.1",
- "lightningcss-linux-x64-gnu": "1.31.1",
- "lightningcss-linux-x64-musl": "1.31.1",
- "lightningcss-win32-arm64-msvc": "1.31.1",
- "lightningcss-win32-x64-msvc": "1.31.1"
+ "lightningcss-android-arm64": "1.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
}
},
"node_modules/lightningcss-android-arm64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
- "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
"cpu": [
"arm64"
],
@@ -2069,9 +1994,9 @@
}
},
"node_modules/lightningcss-darwin-arm64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
- "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
"cpu": [
"arm64"
],
@@ -2090,9 +2015,9 @@
}
},
"node_modules/lightningcss-darwin-x64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
- "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
"cpu": [
"x64"
],
@@ -2111,9 +2036,9 @@
}
},
"node_modules/lightningcss-freebsd-x64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
- "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
"cpu": [
"x64"
],
@@ -2132,9 +2057,9 @@
}
},
"node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
- "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
"cpu": [
"arm"
],
@@ -2153,13 +2078,16 @@
}
},
"node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
- "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2174,13 +2102,16 @@
}
},
"node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
- "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2195,13 +2126,16 @@
}
},
"node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
- "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2216,13 +2150,16 @@
}
},
"node_modules/lightningcss-linux-x64-musl": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
- "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2237,9 +2174,9 @@
}
},
"node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
- "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
"cpu": [
"arm64"
],
@@ -2258,9 +2195,9 @@
}
},
"node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
- "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
"cpu": [
"x64"
],
@@ -2279,9 +2216,9 @@
}
},
"node_modules/lodash-es": {
- "version": "4.17.23",
- "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.23.tgz",
- "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
+ "version": "4.18.1",
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
+ "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
"license": "MIT"
},
"node_modules/marked": {
@@ -2320,29 +2257,19 @@
"node": ">=8.6"
}
},
- "node_modules/micromatch/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
"node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
+ "version": "10.2.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
+ "license": "BlueOak-1.0.0",
"dependencies": {
- "brace-expansion": "^2.0.1"
+ "brace-expansion": "^5.0.5"
},
"engines": {
- "node": ">=10"
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/minimist": {
@@ -2356,55 +2283,13 @@
}
},
"node_modules/monaco-languageclient": {
- "version": "10.7.0",
- "resolved": "https://registry.npmjs.org/monaco-languageclient/-/monaco-languageclient-10.7.0.tgz",
- "integrity": "sha512-oA5cOFixkF4bspVL2zMSn48LvlNR/Cu3vJ8MCVam3PdjobSULGgHtOASuZIi3FgWK42X1z8/6hrG0LCjvNu1Hw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-editor-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-cs": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-de": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-es": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-fr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-it": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ja": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ko": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pl": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pt-br": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ru": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-tr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^25.1.2",
- "@codingame/monaco-vscode-languages-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-log-service-override": "^25.1.2",
- "@codingame/monaco-vscode-model-service-override": "^25.1.2",
- "@codingame/monaco-vscode-monarch-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@codingame/monaco-vscode-workbench-service-override": "^25.1.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
+ "resolved": "../../packages/client",
+ "link": true
},
"node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "version": "3.3.12",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
"funding": [
{
"type": "github",
@@ -2420,14 +2305,14 @@
}
},
"node_modules/next": {
- "version": "16.1.6",
- "resolved": "https://registry.npmjs.org/next/-/next-16.1.6.tgz",
- "integrity": "sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==",
+ "version": "16.2.9",
+ "resolved": "https://registry.npmjs.org/next/-/next-16.2.9.tgz",
+ "integrity": "sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==",
"license": "MIT",
"dependencies": {
- "@next/env": "16.1.6",
+ "@next/env": "16.2.9",
"@swc/helpers": "0.5.15",
- "baseline-browser-mapping": "^2.8.3",
+ "baseline-browser-mapping": "^2.9.19",
"caniuse-lite": "^1.0.30001579",
"postcss": "8.4.31",
"styled-jsx": "5.1.6"
@@ -2439,15 +2324,15 @@
"node": ">=20.9.0"
},
"optionalDependencies": {
- "@next/swc-darwin-arm64": "16.1.6",
- "@next/swc-darwin-x64": "16.1.6",
- "@next/swc-linux-arm64-gnu": "16.1.6",
- "@next/swc-linux-arm64-musl": "16.1.6",
- "@next/swc-linux-x64-gnu": "16.1.6",
- "@next/swc-linux-x64-musl": "16.1.6",
- "@next/swc-win32-arm64-msvc": "16.1.6",
- "@next/swc-win32-x64-msvc": "16.1.6",
- "sharp": "^0.34.4"
+ "@next/swc-darwin-arm64": "16.2.9",
+ "@next/swc-darwin-x64": "16.2.9",
+ "@next/swc-linux-arm64-gnu": "16.2.9",
+ "@next/swc-linux-arm64-musl": "16.2.9",
+ "@next/swc-linux-x64-gnu": "16.2.9",
+ "@next/swc-linux-x64-musl": "16.2.9",
+ "@next/swc-win32-arm64-msvc": "16.2.9",
+ "@next/swc-win32-x64-msvc": "16.2.9",
+ "sharp": "^0.34.5"
},
"peerDependencies": {
"@opentelemetry/api": "^1.1.0",
@@ -2536,14 +2421,13 @@
"license": "ISC"
},
"node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
"dev": true,
"license": "MIT",
- "peer": true,
"engines": {
- "node": ">=12"
+ "node": ">=8.6"
},
"funding": {
"url": "https://github.com/sponsors/jonschlinkert"
@@ -2578,9 +2462,9 @@
}
},
"node_modules/pump": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
- "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz",
+ "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2610,26 +2494,24 @@
"license": "MIT"
},
"node_modules/react": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
- "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/react-dom": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
- "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
"license": "MIT",
- "peer": true,
"dependencies": {
"scheduler": "^0.27.0"
},
"peerDependencies": {
- "react": "^19.2.4"
+ "react": "^19.2.7"
}
},
"node_modules/rechoir": {
@@ -2645,13 +2527,14 @@
}
},
"node_modules/resolve": {
- "version": "1.22.10",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
- "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "version": "1.22.12",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz",
+ "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-core-module": "^2.16.0",
+ "es-errors": "^1.3.0",
+ "is-core-module": "^2.16.1",
"path-parse": "^1.0.7",
"supports-preserve-symlinks-flag": "^1.0.0"
},
@@ -2677,14 +2560,14 @@
}
},
"node_modules/rolldown": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.3.tgz",
- "integrity": "sha512-Po/YZECDOqVXjIXrtC5h++a5NLvKAQNrd9ggrIG3sbDfGO5BqTUsrI6l8zdniKRp3r5Tp/2JTrXqx4GIguFCMw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/types": "=0.112.0",
- "@rolldown/pluginutils": "1.0.0-rc.3"
+ "@oxc-project/types": "=0.133.0",
+ "@rolldown/pluginutils": "^1.0.0"
},
"bin": {
"rolldown": "bin/cli.mjs"
@@ -2693,19 +2576,21 @@
"node": "^20.19.0 || >=22.12.0"
},
"optionalDependencies": {
- "@rolldown/binding-android-arm64": "1.0.0-rc.3",
- "@rolldown/binding-darwin-arm64": "1.0.0-rc.3",
- "@rolldown/binding-darwin-x64": "1.0.0-rc.3",
- "@rolldown/binding-freebsd-x64": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.3",
- "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.3",
- "@rolldown/binding-linux-x64-musl": "1.0.0-rc.3",
- "@rolldown/binding-openharmony-arm64": "1.0.0-rc.3",
- "@rolldown/binding-wasm32-wasi": "1.0.0-rc.3",
- "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.3",
- "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.3"
+ "@rolldown/binding-android-arm64": "1.0.3",
+ "@rolldown/binding-darwin-arm64": "1.0.3",
+ "@rolldown/binding-darwin-x64": "1.0.3",
+ "@rolldown/binding-freebsd-x64": "1.0.3",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
}
},
"node_modules/run-parallel": {
@@ -2739,9 +2624,9 @@
"license": "MIT"
},
"node_modules/semver": {
- "version": "7.7.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
- "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -2917,14 +2802,14 @@
}
},
"node_modules/tinyglobby": {
- "version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
"dev": true,
"license": "MIT",
"dependencies": {
"fdir": "^6.5.0",
- "picomatch": "^4.0.3"
+ "picomatch": "^4.0.4"
},
"engines": {
"node": ">=12.0.0"
@@ -2933,6 +2818,37 @@
"url": "https://github.com/sponsors/SuperchupuDev"
}
},
+ "node_modules/tinyglobby/node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tinyglobby/node_modules/picomatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@@ -2953,19 +2869,17 @@
"license": "0BSD"
},
"node_modules/vite": {
- "version": "8.0.0-beta.13",
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.0-beta.13.tgz",
- "integrity": "sha512-7s/rfpYOAo7WUHh9irzaGjhhKb12hGv0BpDegAMV5A391wdyvM45WtX6VMV7hvEtZF2j/QtpDpR6ldXI3GgARQ==",
+ "version": "8.0.16",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/runtime": "0.112.0",
- "fdir": "^6.5.0",
- "lightningcss": "^1.31.1",
- "picomatch": "^4.0.3",
- "postcss": "^8.5.6",
- "rolldown": "1.0.0-rc.3",
- "tinyglobby": "^0.2.15"
+ "lightningcss": "^1.32.0",
+ "picomatch": "^4.0.4",
+ "postcss": "^8.5.15",
+ "rolldown": "1.0.3",
+ "tinyglobby": "^0.2.17"
},
"bin": {
"vite": "bin/vite.js"
@@ -2981,8 +2895,8 @@
},
"peerDependencies": {
"@types/node": "^20.19.0 || >=22.12.0",
- "@vitejs/devtools": "^0.0.0-alpha.24",
- "esbuild": "^0.27.0",
+ "@vitejs/devtools": "^0.1.18",
+ "esbuild": "^0.27.0 || ^0.28.0",
"jiti": ">=1.21.0",
"less": "^4.0.0",
"sass": "^1.70.0",
@@ -3032,10 +2946,23 @@
}
}
},
+ "node_modules/vite/node_modules/picomatch": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/vite/node_modules/postcss": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "version": "8.5.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"dev": true,
"funding": [
{
@@ -3053,7 +2980,7 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.11",
+ "nanoid": "^3.3.12",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -3063,70 +2990,71 @@
},
"node_modules/vscode": {
"name": "@codingame/monaco-vscode-extension-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-34.0.1.tgz",
+ "integrity": "sha512-rXGKdTx8XSIr77M5Z+7KsL8YWtCIZJ4ckQ4nVn5lWODsH2uEn8XmPucyWCTR1cmct2D0JWZY+ahLgQ9B/qDENg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1"
}
},
"node_modules/vscode-jsonrpc": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz",
- "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==",
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-9.0.0.tgz",
+ "integrity": "sha512-+VvMmQPJhtvJ+8O+zu2JKIRiLxXF8NW7krWgyMGeOHrp4Cn23T5hc0v2LknNeopDOB70wghHAds7mKtcZ0I4Sg==",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/vscode-languageclient": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz",
- "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-10.0.0.tgz",
+ "integrity": "sha512-3yRHFkktZQCCg8ehHnD2Z4DZ4mZ17FNo8bxM4OFt8wtpxNBAOZGHmpbIflZSkicvCxi+ozuWntbdeWiY0gP77w==",
"license": "MIT",
"dependencies": {
- "minimatch": "^5.1.0",
- "semver": "^7.3.7",
- "vscode-languageserver-protocol": "3.17.5"
+ "minimatch": "^10.2.5",
+ "semver": "^7.8.1",
+ "vscode-languageserver-protocol": "3.18.0",
+ "vscode-languageserver-textdocument": "1.0.13"
},
"engines": {
- "vscode": "^1.82.0"
+ "vscode": "^1.91.0"
}
},
"node_modules/vscode-languageserver": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz",
- "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-10.0.0.tgz",
+ "integrity": "sha512-KOdOVuBnNO5EZSejlEDdRPJWpJn/X87vR2TmOXneHsxSYY7mYjgc1SxeZPMoHICcBKTUnM0V19+WP4J92zDd1w==",
"license": "MIT",
"dependencies": {
- "vscode-languageserver-protocol": "3.17.5"
+ "vscode-languageserver-protocol": "3.18.0"
},
"bin": {
"installServerIntoExtension": "bin/installServerIntoExtension"
}
},
"node_modules/vscode-languageserver-protocol": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz",
- "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==",
+ "version": "3.18.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.18.0.tgz",
+ "integrity": "sha512-Zdz+kJ12Iz6tc11xfZyEo501bBATHXrCjmMfnaR3pMnf1CoqZBKIynba3P+/bi9VEdrMbNtAVKYpKhbODvqy+Q==",
"license": "MIT",
"dependencies": {
- "vscode-jsonrpc": "8.2.0",
- "vscode-languageserver-types": "3.17.5"
+ "vscode-jsonrpc": "9.0.0",
+ "vscode-languageserver-types": "3.18.0"
}
},
"node_modules/vscode-languageserver-textdocument": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz",
- "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==",
+ "version": "1.0.13",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.13.tgz",
+ "integrity": "sha512-nx0ZHwMGIsVkzFG3/VLeJYBLTaFBRuNdGDvevvjuoayU5EOS2fEYazOhtCM3PI9ClMMg5igc0uwXtAq4tJj+Dw==",
"license": "MIT"
},
"node_modules/vscode-languageserver-types": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
- "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
+ "version": "3.18.0",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.18.0.tgz",
+ "integrity": "sha512-8TsGPNMIMiiBdkORgRSvLjuiEIiAFtO+KssmYWxQ+uSVvlf7RjK8YKCOjPzZ+YA04jXEV7+7LvkSmHkhpNS99g==",
"license": "MIT"
},
"node_modules/vscode-uri": {
@@ -3135,28 +3063,6 @@
"integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
"license": "MIT"
},
- "node_modules/vscode-ws-jsonrpc": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/vscode-ws-jsonrpc/-/vscode-ws-jsonrpc-3.5.0.tgz",
- "integrity": "sha512-13ZDy7Od4AfEPK2HIfY3DtyRi4FVsvFql1yobVJrpIoHOKGGJpIjVvIJpMxkrHzCZzWlYlg+WEu2hrYkCTvM0Q==",
- "license": "MIT",
- "dependencies": {
- "vscode-jsonrpc": "~8.2.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/vscode-ws-jsonrpc/node_modules/vscode-jsonrpc": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz",
- "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- }
- },
"node_modules/which": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
diff --git a/verify/next/package.json b/verify/next/package.json
index 0c4a063c8..24cfc362a 100644
--- a/verify/next/package.json
+++ b/verify/next/package.json
@@ -20,32 +20,35 @@
"start": "next start"
},
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-editor-api": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-keybindings-service-override": "^31.0.1",
- "@codingame/monaco-vscode-textmate-service-override": "^31.0.1",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^31.0.1",
- "@codingame/monaco-vscode-views-service-override": "^31.0.1",
- "@typefox/monaco-editor-react": "~7.7.0",
- "langium": "~4.2.1",
- "monaco-languageclient": "~10.7.0",
- "next": "~16.1.6",
- "react": "~19.2.4",
- "react-dom": "~19.2.4",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1"
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-textmate-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "../../packages/wrapper-react",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "../../packages/client",
+ "next": "~16.2.9",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0"
},
"devDependencies": {
"@types/react-dom": "~19.2.3",
- "@typescript/native-preview": "~7.0.0-dev.20260212.1",
+ "@typescript/native-preview": "beta",
"shx": "~0.4.0",
- "vite": "~8.0.0-beta.14"
+ "vite": "~8.0.16"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
+ },
+ "allowScripts": {
+ "sharp": false
}
}
diff --git a/verify/next/vite.config.ts b/verify/next/vite.config.ts
index fa1c0f309..b32f6d546 100644
--- a/verify/next/vite.config.ts
+++ b/verify/next/vite.config.ts
@@ -30,7 +30,7 @@ export const config = defineConfig({
'vscode-jsonrpc',
'vscode-languageclient',
'vscode-languageserver',
- 'vscode-languageserver/browser.js',
+ 'vscode-languageserver/browser',
'vscode-languageserver-protocol'
]
},
diff --git a/verify/peerNpm/package-lock.json b/verify/peerNpm/package-lock.json
index fe098e4c7..263dc7f60 100644
--- a/verify/peerNpm/package-lock.json
+++ b/verify/peerNpm/package-lock.json
@@ -8,754 +8,192 @@
"name": "@typefox/peer-check-npm",
"version": "0.0.0",
"dependencies": {
- "monaco-languageclient-examples": "^2026.2.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2"
+ "monaco-languageclient-examples": "../../packages/examples",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1"
},
"devDependencies": {
"shx": "~0.4.0",
- "typescript": "~5.9.3",
- "vite": "~8.0.0-beta.13"
+ "typescript": "~6.0.3",
+ "vite": "~8.0.16"
+ },
+ "engines": {
+ "node": ">=22",
+ "npm": ">=10"
+ }
+ },
+ "../../packages/examples": {
+ "name": "monaco-languageclient-examples",
+ "version": "2026.6.1",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-cpp-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-debug-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-explorer-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-groovy-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-java-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-javascript-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-lifecycle-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-outline-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-preferences-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-python-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-remote-agent-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-search-result-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-search-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-secret-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-testing-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-view-banner-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-status-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-title-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "~8.0.0-next.0",
+ "cors": "~2.8.6",
+ "express": "~5.2.1",
+ "jszip": "~3.10.1",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "~11.0.0-next.0",
+ "pyright": "~1.1.410",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
+ "request-light": "~0.8.0",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-json-languageservice": "~5.7.2",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-languageserver-textdocument": "~1.0.12",
+ "vscode-uri": "~3.1.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0",
+ "ws": "~8.21.0",
+ "wtd-core": "~4.0.1"
+ },
+ "devDependencies": {
+ "@types/cors": "~2.8.19",
+ "@types/emscripten": "~1.41.5",
+ "@types/express": "~5.0.6",
+ "@types/ws": "~8.18.1",
+ "langium-cli": "~4.3.0",
+ "mini-coi": "~0.4.2",
+ "vite-plugin-static-copy": "~4.1.1",
+ "vscode-languageserver-types": "~3.18.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/@chevrotain/cst-dts-gen": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.1.1.tgz",
- "integrity": "sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==",
- "license": "Apache-2.0",
- "dependencies": {
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
+ "node": ">=22",
+ "npm": ">=10"
}
},
- "node_modules/@chevrotain/gast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.1.1.tgz",
- "integrity": "sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==",
- "license": "Apache-2.0",
- "dependencies": {
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
- }
- },
- "node_modules/@chevrotain/regexp-to-ast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.1.1.tgz",
- "integrity": "sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==",
- "license": "Apache-2.0"
- },
- "node_modules/@chevrotain/types": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.1.1.tgz",
- "integrity": "sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==",
- "license": "Apache-2.0"
- },
- "node_modules/@chevrotain/utils": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.1.1.tgz",
- "integrity": "sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==",
- "license": "Apache-2.0"
- },
"node_modules/@codingame/monaco-vscode-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-25.1.2.tgz",
- "integrity": "sha512-K04QcQA+Zb0KXucBAK/BGCT5dldiwIqdUbBQq7yuLvBLbof3cP1WSUuxasMHGYwM0MWyzIAsDtyAYMS7is8ZuA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-base-service-override": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2",
- "@codingame/monaco-vscode-host-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-34.0.1.tgz",
+ "integrity": "sha512-LiFstXqNw1PPabjrV3g09/Wu8Ss5f2IlDH2lHlEZaQmhDVdxpDZUKqKaD1hLDKiYwx8lYeHs1yNUab5uUQh4bQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-base-service-override": "34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1",
+ "@codingame/monaco-vscode-host-service-override": "34.0.1",
+ "@codingame/monaco-vscode-layout-service-override": "34.0.1",
+ "@codingame/monaco-vscode-quickaccess-service-override": "34.0.1",
+ "@vscode/diff": "0.0.2-7",
"@vscode/iconv-lite-umd": "0.7.1",
- "dompurify": "3.3.1",
+ "dompurify": "3.4.9",
"jschardet": "3.1.4",
"marked": "14.0.0"
}
},
"node_modules/@codingame/monaco-vscode-base-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-25.1.2.tgz",
- "integrity": "sha512-OwYs6h1ATUAeMmX+Q1c8esTG7GLMqniBs+fLEr1/9b/ciY485ArKo5UvrUxVPDtRNy/7F06vRW9IUCq9iKP14w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-bulk-edit-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-25.1.2.tgz",
- "integrity": "sha512-+EfSzjiFakCf0IIJKPZrHVGioq5N8GBsp51bXuKBR5J/B58cUaJY0Dc12PNTSpgAusAGOppUIOSBqUk4F/7IaQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-configuration-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-25.1.2.tgz",
- "integrity": "sha512-oeoZ3WtM42zHA1IWHrx9UGEfE+TixE+G8Bl9M9bjgFj1EROnkB5yOfELwRYPo4WOEtcK1C5nvIvWIj/hL9MaLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-cpp-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-cpp-default-extension/-/monaco-vscode-cpp-default-extension-25.1.2.tgz",
- "integrity": "sha512-L5pS+Ynrbml54+qTQkViWkwyM0ACqmZa01HaWx3ZIaV+zEZAm1f9Pge6NyjhdDJE6jTBMR+pCcJmoN0k/BImZw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-debug-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-debug-service-override/-/monaco-vscode-debug-service-override-25.1.2.tgz",
- "integrity": "sha512-0lEHs5X5TI3pOMsYbb+rLExwmhMDiSJJ3MnhkwzeaDrKKP/Z0+XGaH5ziRB0zrxiT/OqR52c3pvOcou5iiLRaw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-25.1.2.tgz",
- "integrity": "sha512-EadvDCyWdgxOPmaIvbcVVDNjTUYuKdjYWwKbPbbcTs9t4z1/DjdE7mV3ZdT6aGh5m6zkEEUOi143l27Y5eRt+Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-34.0.1.tgz",
+ "integrity": "sha512-f7QLFt9W5xPx03y7bmmo4IrQNyGHZSICunmBbRVP3T+F8KAD3X5JhMgun6490MT6I25MCtmxrwreQ5xvTHRqUg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-environment-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-25.1.2.tgz",
- "integrity": "sha512-8GoD3lk0CN0dIMZOrZNS/i8RCaF1YSQ6nmrf+rqneOSHG9S382EnsZZD69d4+i7JnoeyttO7Kr9KH8WOhRV6OA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-explorer-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-explorer-service-override/-/monaco-vscode-explorer-service-override-25.1.2.tgz",
- "integrity": "sha512-K5LJ1qJmlOxrU8Y/ilX4D60wXSNQ1PYv2qSnkwHuFCOGAu2RiYM0igDZH3b+WFzQsj8/yt9VwCK0PMkrnjne+w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-extension-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-34.0.1.tgz",
+ "integrity": "sha512-cxN+MbUlV1IK0IXp3MerahdoVtLudkpBAwEyfn2uyzkiuRRHtCsNdcf/9Hyy2shFp3kuRRpQLbtIt6ODfYfX6g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-extensions-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-25.1.2.tgz",
- "integrity": "sha512-rTTZW2biPxcg+JumhVf2L+38C5ptvNNxiJlwz39VfXFEh6qOHtAsIMy7vIXa0uGg5/y8DNp0SnOQJP/RKhLYZA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-34.0.1.tgz",
+ "integrity": "sha512-wHDZmFEtOahYXk1H0TeGIV2Ssl6yurYQFX33L5Im1CtypxTMkEm0sP+IvOHLmJbT4X5u5xi7FWNcgoVhbVnYaQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-files-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-25.1.2.tgz",
- "integrity": "sha512-TenLLAFIwY7keZFF8e3beUn7OVfnNINR5Noi4PVrjeeTcy6FuNH6Jghdul2JwpRAkvyJLdFMvomE2jlT6F03jQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-34.0.1.tgz",
+ "integrity": "sha512-oqWQ0WiQDQRZoA9G68+G+QMAxtCwPFf0RXDD5aUqhXYOXhW/lqwCBwwqdQLoKQyiALfIXF6wU944fkspWPfa3g==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-groovy-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-groovy-default-extension/-/monaco-vscode-groovy-default-extension-25.1.2.tgz",
- "integrity": "sha512-oDmUgs4DURf8TbMoLQsMy/EzpS0hkDMh780RZkKKjvc8Sr3nDW8ckIjJW1Ku6HrS2G2Z6LDd1KlhHmFGDKU5WQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-host-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-25.1.2.tgz",
- "integrity": "sha512-lgaalpA9CUQW7i0bBwgBOK0DQNDvOo3QO3p6Rz6yVsHpgA4iMqq2d11dBDUKvuQSwIHPRu8CMHCqhQk/BQN/YA==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-34.0.1.tgz",
+ "integrity": "sha512-lVho3RwV0kAtSALAdB0UeglApr/KJQShbGB91KUBjKeOx4J5XGfPL2k2y9yNtGjE8NKuuJ2XaxmhSDdcOkuWDA==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-java-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-java-default-extension/-/monaco-vscode-java-default-extension-25.1.2.tgz",
- "integrity": "sha512-9B+gEFghGxCuNb/PAHPUnjBbuNWm0FKpinxeuyBUUh92hOeVLxaKfjFsXAaf1I4q507LfEkufqxQndsQFFxskA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-javascript-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-javascript-default-extension/-/monaco-vscode-javascript-default-extension-25.1.2.tgz",
- "integrity": "sha512-SIrq+EfJ9Nk+aTjOXBPdp2+K242W6lAlGYjln/AnwNa+1h0roQ07efZNV0LBkVrwH4wmT9TmN/IXE2Boau37cQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-json-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-25.1.2.tgz",
- "integrity": "sha512-lbzUZr8E2vg40bQFhWFq/qc0QqnRHKKWwCuxymkv0kpVgyXlS52EjjvrhvOo8TV/r7eLg+R0yHzF4IKWgltGrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-json-language-features-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-language-features-default-extension/-/monaco-vscode-json-language-features-default-extension-25.1.2.tgz",
- "integrity": "sha512-c2YH16zJpkmsyNrZq1ukZuWx73PRFzG871GUsiWTETvEJlbG8deL9/MpgJK+C6Kao9SlX63iDkpCpcwjE3l72w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-keybindings-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-25.1.2.tgz",
- "integrity": "sha512-cp/gGyTvCTAzCYnQm0HJykXJRB0Huz8Lvq60lj5LutgWcb8S3w6dOB2Houm8dHoeUm/jOko8SQNIP8hzWN92Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-cs": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-25.1.2.tgz",
- "integrity": "sha512-v0cB2uAOCwj135aGIf0arGV+DNW32lbWh04bv8ctTxcWRt1Pr2kTQ1pjfE8ynKgxabPfAk8E25/CerKSYOmZ+A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-de": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-25.1.2.tgz",
- "integrity": "sha512-xA3WOt1w5jlAOnyx4PBwx+qV3vx8C8/zie29qjYbgJMxGKDkb0HfpuKUwywDA2uUMI2wJZS+PnNG00zPDoLIrw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-es": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-25.1.2.tgz",
- "integrity": "sha512-1/upuO9lRJilZ3sRr0QLTpz55KYRaBWDe8wtPvghOFYOHyWgW8A4VhUQxa6L9SJgY1JkypUAm0U8WcMX2G4LnQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-fr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-25.1.2.tgz",
- "integrity": "sha512-iq+xx+tv1QIMmFD0eBhFRMF4xMAsVf/HyA1WogqBofteCWeAvRE9HUjZ5JzHz7jXBPe3dLP1LOM0r0GrJZs4fQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-it": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-25.1.2.tgz",
- "integrity": "sha512-FajWCML9OR8ppLnJ0mcg+sFHEhYJl8zhb3/DHnd+pNysw8dLfetXoSWjaPnwPPpwiQgkNN1UsToZHOU9czVifQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ja": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-25.1.2.tgz",
- "integrity": "sha512-NwKh0BnPgUrJkxsm0X6vY4ftnd9DjxkcnQqK+bohta6UOzm09J1EjZ6QD42fjWngxrp/xiegtrYQ9NA2q6VpoA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ko": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-25.1.2.tgz",
- "integrity": "sha512-fvaisgfcg8YaAwnyPcGmQDLwkwqzamLQUyx9HmnwDpXw0YANzd058Kwn6bz+Vfn9MjwuMNT0nllD0qQMnpdyew==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pl": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-25.1.2.tgz",
- "integrity": "sha512-9hDRyzFJkDia5rO9QE262JgxwP/cnalFisLFo7FQcw57ZhqzqXIdQIuwcKaHuAgzeQ6W2+A3KOLfTr3m7VZrXw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pt-br": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-25.1.2.tgz",
- "integrity": "sha512-7fFnqOTAJGb5RuJ4uwh9sh0JmXALuHPGOl7iL9rZkcgIuVP5y6wVDUDXq5qjiRTNSFDs7Bzh463Ir5m5D6mJbA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-qps-ploc": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-25.1.2.tgz",
- "integrity": "sha512-IFjoqrSuPtIFWb+KlPT6PFWKszzNX+TCD9drgCV6AigvBO/xfGL3QwHB68l/DLbmDbohOz4Xdkutv20wuENAeA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ru": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-25.1.2.tgz",
- "integrity": "sha512-0uDAeXO+GllKUPhJzP893rlDhlFV1IwCu/515rBdcyegt48iGm/xAgj26V90hNz8hmB6EuM/7d8MFeklbiIpYA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-tr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-25.1.2.tgz",
- "integrity": "sha512-MJhHxDyJEiuVLQ9+jb8MnnN9lsbJOjJjMswVCeJ7v/Q/msAhq25QYUfn0DbOIzESJE1f7crffRb5e38XP8sYWA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hans": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-25.1.2.tgz",
- "integrity": "sha512-c7MMrhnSLb59NxpAa8nVy9aIbxy4gVYrCpDMq8W380LOaXTYb7nueTrw8QJ5QbJBNi2P2KZoGkn2BlONuBtJJg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hant": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-25.1.2.tgz",
- "integrity": "sha512-ARedFTM6JCluoPLJqkBcTJaQFdJNcN86OX6B8/NMApIPrnSIAfanMndpyilt8XjzUG6IH22cypR+DAlEjf48cA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-languages-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-25.1.2.tgz",
- "integrity": "sha512-ipuS1V3NgXDkNrj0vBcgMBFnqo+19HVsZjjFGfPFH3x0uptP9aiWWK42wtDK3Qbu4teSjHL7WnSLrmw94rplWw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-layout-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-25.1.2.tgz",
- "integrity": "sha512-SxBGcMK3RgkGtUn7ZDl7dCoyNW0CWFQ/bfSRYUY06A0IA4JNS5jq1lhof57d0WXewm+5l8w1Spr/vMsfx1c9ig==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-lifecycle-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-lifecycle-service-override/-/monaco-vscode-lifecycle-service-override-25.1.2.tgz",
- "integrity": "sha512-H3C26i654WU8mbPM6GUiCh5YAQbhlm6sC32mHVANUJpR1968pS66UFB5JTD4rslH5GOPzO9TUNPlvrI2g3PE8Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-localization-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-25.1.2.tgz",
- "integrity": "sha512-QLj62A8XDOIQW3KjsZlNxs+sfsNNHYxWMjQMwZu/y2Vw3IIHGly2Lpn4t4SFbeaBHJQJy4i5s7NpzlbF9MbEzQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-log-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-25.1.2.tgz",
- "integrity": "sha512-OoileAUtPAJ0j3RW31DFSxtOipy0EcFq+iIXEdGvoRlsQPZJ3o9ayjf1JvCXpxUjJ3QkmvQVhXsWNUFREjEFLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-model-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-25.1.2.tgz",
- "integrity": "sha512-MGz/eV1CxibLvnl6WzK6idUHJCXJOVepJvKM6Trkv5050vRe+f/o1TjCiG8PaznAypYqZvnwkTG0B7/OTizCpQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-monarch-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-25.1.2.tgz",
- "integrity": "sha512-akyNHOJQRS7YHyk6kf0Encnkt+shlR+bIB84UJRUHFgSeF8s5gkDkQuFJph0YeUDWJWat+yBLUSZx2nHomdbHQ==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-34.0.1.tgz",
+ "integrity": "sha512-5K0xlg5MurqI/qotIye/lq3dynZZ+9uSu8Kz884m6soH08/zIY7peMYj44qhxgv2BRTDlEl1bnR98lDWNv3oSg==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-outline-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-outline-service-override/-/monaco-vscode-outline-service-override-25.1.2.tgz",
- "integrity": "sha512-J+rigDc5lEOvyBniYCBh0HL6KrASN5g5FIgWm+q65ZNFcuH1itXBAr23HQcYt19ZtVC+xHNK+K5mkZ+NPLXGxA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-preferences-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-preferences-service-override/-/monaco-vscode-preferences-service-override-25.1.2.tgz",
- "integrity": "sha512-lIci0vMZ5YJdN+H0pKE12t//wdzfz1zZ8RTRvkmLFEvmk8tUvid/0iMFHWoqBXmdXxmKr3kDLPKB63E0TJX5rQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-python-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-python-default-extension/-/monaco-vscode-python-default-extension-25.1.2.tgz",
- "integrity": "sha512-2W5pHtn2yOayGr7lcwQFNlbkyziaM7yK1Gq5cxFKXYgsReHTRAx+SN5xMachkms/mSnulH2rww+HbDW2zRHf0A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
"node_modules/@codingame/monaco-vscode-quickaccess-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-25.1.2.tgz",
- "integrity": "sha512-7IIrXnwHiF3w9d9p9kspEUz/LCibMLUztmRpGdZQfFtWBJw043q7rk8V1O42KdXr1hVg9IR5vfffwjy9nbiiUg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-remote-agent-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-remote-agent-service-override/-/monaco-vscode-remote-agent-service-override-25.1.2.tgz",
- "integrity": "sha512-R4hUjflcD7VqizIXCn95awDF+GwQ//Y+1xxHEqIxPh9KzCKViV4XdZbkHg0/IBwrMzOiTo2azpVUOpfyvwc7Lg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-search-result-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-result-default-extension/-/monaco-vscode-search-result-default-extension-25.1.2.tgz",
- "integrity": "sha512-fycVi25zmZrs7TI/DiLNNeGfFdx5xx/X+Ur3n09It88+akR9+CKk4Rg9+ezQ3k8FgPV3LXNLi+/ki/jX9/S6OQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-search-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-service-override/-/monaco-vscode-search-service-override-25.1.2.tgz",
- "integrity": "sha512-Dqw0MclN+kOvFQOV1Ihx4Z1L3u8JMvGWiex7mfU1BOIO6vY7H9C2mtPbzL2iBxqbC2CGxfq2X7/cc1LnhDth2w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-secret-storage-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-secret-storage-service-override/-/monaco-vscode-secret-storage-service-override-25.1.2.tgz",
- "integrity": "sha512-ljVVQjzPDbEq3j0Gob0i7TsOzjAjEpO5QuNTuzpb7vYJkp1dXs0rQiUJZ0nyCKmk8uZX6hGZZv1a7ZOatgmZJg==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-34.0.1.tgz",
+ "integrity": "sha512-6IONyHH5wJHCaZ7CKTL2iz4DpoKmj2SmsHEAjE59OtcgLhqrCYhqBFb/dbse97HMbfYbvQyiMZb/kH3cJf89jQ==",
"license": "MIT",
"dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "@codingame/monaco-vscode-api": "34.0.1"
}
},
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-json-language-features/-/monaco-vscode-standalone-json-language-features-25.1.2.tgz",
- "integrity": "sha512-d07FBwwv8IhJQRJ9DsHoMrPX23/6S05SS1qDx8Kr1s8Agg+yFI2OEZIcG40ZrMRcx2rdzWb2EQjt9hG+l6PCbg==",
- "license": "MIT",
- "dependencies": {
- "jsonc-parser": "3.3.1",
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@25.1.2",
- "vscode-json-languageservice": "5.3.11",
- "vscode-languageserver-textdocument": "1.0.12",
- "vscode-languageserver-types": "3.17.5",
- "vscode-uri": "3.0.8"
- }
- },
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-json-languageservice": {
- "version": "5.3.11",
- "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.3.11.tgz",
- "integrity": "sha512-WYS72Ymria3dn8ZbjtBbt5K71m05wY1Q6hpXV5JxUT0q75Ts0ljLmnZJAVpx8DjPgYbFD+Z8KHpWh2laKLUCtQ==",
- "license": "MIT",
- "dependencies": {
- "@vscode/l10n": "^0.0.18",
- "jsonc-parser": "^3.2.1",
- "vscode-languageserver-textdocument": "^1.0.11",
- "vscode-languageserver-types": "^3.17.5",
- "vscode-uri": "^3.0.8"
- }
- },
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-uri": {
- "version": "3.0.8",
- "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz",
- "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==",
- "license": "MIT"
- },
- "node_modules/@codingame/monaco-vscode-standalone-typescript-language-features": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-typescript-language-features/-/monaco-vscode-standalone-typescript-language-features-25.1.2.tgz",
- "integrity": "sha512-G2oKD5jGzrD3vYKfZZF54DgtW3SMmA0qlttaWR5Vu0eSAvyghXp1mdvds3u7deXY/KRL8X34vanT7aNtB9wosA==",
- "license": "MIT",
- "dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-storage-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-storage-service-override/-/monaco-vscode-storage-service-override-25.1.2.tgz",
- "integrity": "sha512-3KY8CcuWrGl0KSKc7pQh8oN5c+LRxW/tbtQ/oVoKr4xE8/deu44Tu4ZV9tE1KqGVySL7lcsVsPuq8T66EBnaVw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-terminal-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-terminal-service-override/-/monaco-vscode-terminal-service-override-25.1.2.tgz",
- "integrity": "sha512-cnyadggTBHBCzZRssRA8LIGI2/Ne4+og6j7d24wFzAW6DwRwCiMhBh72dbpNqzVDyl7NqpSbnr7tDLPfZLqH/A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2",
- "@codingame/monaco-vscode-xterm-common": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-testing-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-testing-service-override/-/monaco-vscode-testing-service-override-25.1.2.tgz",
- "integrity": "sha512-1RbF5yfRqlLVAq9C02w+euV36oCIlVX5bFHydpxHJECc9c4eYg3AOVS4s9Bba9HZ/E/sZCezILsLnnBDMr4pcA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-terminal-service-override": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-textmate-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-25.1.2.tgz",
- "integrity": "sha512-AL0FtSQBW+1vtoXYQvUqB2hfWojpK73Kq/n6KuNXxjLF/XBJ5FpeeZDfrBfwhWPPoHuBTsaFUCQy4L8xQgbVlA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-defaults-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-25.1.2.tgz",
- "integrity": "sha512-0vTMFiC89YSDSmjFckuQBUKwRuFNtsILNO3k0PBiSLN/MW+VDItjJpiVLXC42+rUWlGgY2lYxOneGVa5slCV1w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-25.1.2.tgz",
- "integrity": "sha512-hsTwl6YYTiheFuQMmCmiEGLIdIdgYaf8Z85XWyxe6YgPtDaYGnp0fGSOXKA9/bf0JtuynzoLKtUUfDupK/A7Tw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-typescript-basics-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-25.1.2.tgz",
- "integrity": "sha512-tGpGAvVsINHodqPtjZDEOkjXAKLWiCr90P/dNC7W8XghxUHzQHqYmAunkkcJXWcRluaXcNBvPGplm1GaQfn3lQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-typescript-language-features-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-25.1.2.tgz",
- "integrity": "sha512-bifrfWg+392NVb5LZ9k5UlhlW9xyNTaHhgh/ZxmOBpjbkaiB80VnpS/SV0zF8R0IZYtDF+Be7PpVWnmrEIw0JA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-banner-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-25.1.2.tgz",
- "integrity": "sha512-zhujHd1PQ6rRXsC2OQGrx/282G2v3lpPFl9heDFGKzpdj5119SgcW+B9p/MwJ1qF3LJpuRRgefNiQtqC/KT1eA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-common-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-25.1.2.tgz",
- "integrity": "sha512-4Po/YaHUvVf4VmhVCZmM2lc/flOptiWSM140bIRNpMcfH0VwihYg15CcDeu1Oc+6DaauzsG3u59GtEvlMmJ9Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-bulk-edit-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-status-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-Jp9ytLaWZ6evabTPtG3Mu3dFx+7WTIPz69BsGpl9PnU0kiSWUqQhPSob0Jz7E2qmMj0ZcNv2Wqvm6bMBu5OyrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-title-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-NVYtTAFR35NV/Fx7tSlbASicvpAjK5A14fmxF7/LJJN8ZmzhA/P3Y+UzhqOQl6/VcPV4pAMU0Z7Sicgwbn37dw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-views-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-25.1.2.tgz",
- "integrity": "sha512-LfzlztsvobdP5L5EvJ/rqSEgy5fEVmrkMqRteuhEtNGd4hnmdBoX8W7BNMBPff6d4NfCK74pGHJF57RyT4Iixg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-workbench-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-25.1.2.tgz",
- "integrity": "sha512-2LMHr+na03FhOAaXpIGmamq9hf7e4wt2kULn8NqNZRd3i+0v1tx/TSSjGhsA5EkrNrFD7CMSoXayBq8tgpCq/A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-addons-common": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-addons-common/-/monaco-vscode-xterm-addons-common-25.1.2.tgz",
- "integrity": "sha512-4ysdUaH8Biv/vy/iVCgN+fSam3yI7WF8QdC5AYlT8uyS86AXIQe7p5aMB2gTfZsg6OpPMvlJ0pVe7Rdgh3cMBQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@xterm/addon-clipboard": "0.3.0-beta.97",
- "@xterm/addon-image": "0.10.0-beta.97",
- "@xterm/addon-ligatures": "0.11.0-beta.97",
- "@xterm/addon-progress": "0.3.0-beta.97",
- "@xterm/addon-search": "0.17.0-beta.97",
- "@xterm/addon-serialize": "0.15.0-beta.97",
- "@xterm/addon-unicode11": "0.10.0-beta.97",
- "@xterm/addon-webgl": "0.20.0-beta.104"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-common": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-common/-/monaco-vscode-xterm-common-25.1.2.tgz",
- "integrity": "sha512-QqEvo3epcVs5EAOq7xxBfCW2AUxaO89+WmZCYSUdhuk/1tQ5Jeq0w4TVo7zCjIFaVJyP/N1bmBXgcM7Y4PYWBw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2",
- "@xterm/xterm": "6.1.0-beta.97"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-common/node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.97.tgz",
- "integrity": "sha512-YEn7p+wS2qQ1dyvIXHxmjxmVc/Y1Xv+gZNHayJMAH4FdoxP9CCrhsvpNjBwSynft5t0BWD7FqqsNXNei01oxKw==",
- "license": "MIT",
- "workspaces": [
- "addons/*"
- ]
- },
"node_modules/@emnapi/core": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
- "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/wasi-threads": "1.1.0",
+ "@emnapi/wasi-threads": "1.2.1",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
- "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -764,9 +202,9 @@
}
},
"node_modules/@emnapi/wasi-threads": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz",
- "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -775,20 +213,22 @@
}
},
"node_modules/@napi-rs/wasm-runtime": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz",
- "integrity": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
"dev": true,
"license": "MIT",
"optional": true,
"dependencies": {
- "@emnapi/core": "^1.7.1",
- "@emnapi/runtime": "^1.7.1",
- "@tybys/wasm-util": "^0.10.1"
+ "@tybys/wasm-util": "^0.10.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "peerDependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1"
}
},
"node_modules/@nodelib/fs.scandir": {
@@ -823,26 +263,16 @@
"license": "MIT",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@oxc-project/runtime": {
- "version": "0.112.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/runtime/-/runtime-0.112.0.tgz",
- "integrity": "sha512-4vYtWXMnXM6EaweCxbJ6bISAhkNHeN33SihvuX3wrpqaSJA4ZEoW35i9mSvE74+GDf1yTeVE+aEHA+WBpjDk/g==",
- "dev": true,
- "license": "MIT",
+ "fastq": "^1.6.0"
+ },
"engines": {
- "node": "^20.19.0 || >=22.12.0"
+ "node": ">= 8"
}
},
"node_modules/@oxc-project/types": {
- "version": "0.112.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.112.0.tgz",
- "integrity": "sha512-m6RebKHIRsax2iCwVpYW2ErQwa4ywHJrE4sCK3/8JK8ZZAWOKXaRJFl/uP51gaVyyXlaS4+chU1nSCdzYf6QqQ==",
+ "version": "0.133.0",
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
+ "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -850,9 +280,9 @@
}
},
"node_modules/@rolldown/binding-android-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-0T1k9FinuBZ/t7rZ8jN6OpUKPnUjNdYHoj/cESWrQ3ZraAJ4OMm6z7QjSfCxqj8mOp9kTKc1zHK3kGz5vMu+nQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
+ "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
"cpu": [
"arm64"
],
@@ -867,9 +297,9 @@
}
},
"node_modules/@rolldown/binding-darwin-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-JWWLzvcmc/3pe7qdJqPpuPk91SoE/N+f3PcWx/6ZwuyDVyungAEJPvKm/eEldiDdwTmaEzWfIR+HORxYWrCi1A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
+ "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
"cpu": [
"arm64"
],
@@ -884,9 +314,9 @@
}
},
"node_modules/@rolldown/binding-darwin-x64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0-rc.3.tgz",
- "integrity": "sha512-MTakBxfx3tde5WSmbHxuqlDsIW0EzQym+PJYGF4P6lG2NmKzi128OGynoFUqoD5ryCySEY85dug4v+LWGBElIw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
+ "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
"cpu": [
"x64"
],
@@ -901,9 +331,9 @@
}
},
"node_modules/@rolldown/binding-freebsd-x64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0-rc.3.tgz",
- "integrity": "sha512-jje3oopyOLs7IwfvXoS6Lxnmie5JJO7vW29fdGFu5YGY1EDbVDhD+P9vDihqS5X6fFiqL3ZQZCMBg6jyHkSVww==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
+ "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
"cpu": [
"x64"
],
@@ -918,9 +348,9 @@
}
},
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0-rc.3.tgz",
- "integrity": "sha512-A0n8P3hdLAaqzSFrQoA42p23ZKBYQOw+8EH5r15Sa9X1kD9/JXe0YT2gph2QTWvdr0CVK2BOXiK6ENfy6DXOag==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
+ "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
"cpu": [
"arm"
],
@@ -935,13 +365,16 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-gnu": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0-rc.3.tgz",
- "integrity": "sha512-kWXkoxxarYISBJ4bLNf5vFkEbb4JvccOwxWDxuK9yee8lg5XA7OpvlTptfRuwEvYcOZf+7VS69Uenpmpyo5Bjw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
+ "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -952,13 +385,56 @@
}
},
"node_modules/@rolldown/binding-linux-arm64-musl": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0-rc.3.tgz",
- "integrity": "sha512-Z03/wrqau9Bicfgb3Dbs6SYTHliELk2PM2LpG2nFd+cGupTMF5kanLEcj2vuuJLLhptNyS61rtk7SOZ+lPsTUA==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
+ "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-ppc64-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
+ "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^20.19.0 || >=22.12.0"
+ }
+ },
+ "node_modules/@rolldown/binding-linux-s390x-gnu": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
+ "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -969,13 +445,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-gnu": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0-rc.3.tgz",
- "integrity": "sha512-iSXXZsQp08CSilff/DCTFZHSVEpEwdicV3W8idHyrByrcsRDVh9sGC3sev6d8BygSGj3vt8GvUKBPCoyMA4tgQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
+ "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -986,13 +465,16 @@
}
},
"node_modules/@rolldown/binding-linux-x64-musl": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0-rc.3.tgz",
- "integrity": "sha512-qaj+MFudtdCv9xZo9znFvkgoajLdc+vwf0Kz5N44g+LU5XMe+IsACgn3UG7uTRlCCvhMAGXm1XlpEA5bZBrOcw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
+ "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MIT",
"optional": true,
"os": [
@@ -1003,9 +485,9 @@
}
},
"node_modules/@rolldown/binding-openharmony-arm64": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0-rc.3.tgz",
- "integrity": "sha512-U662UnMETyjT65gFmG9ma+XziENrs7BBnENi/27swZPYagubfHRirXHG2oMl+pEax2WvO7Kb9gHZmMakpYqBHQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
+ "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
"cpu": [
"arm64"
],
@@ -1020,9 +502,9 @@
}
},
"node_modules/@rolldown/binding-wasm32-wasi": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0-rc.3.tgz",
- "integrity": "sha512-gekrQ3Q2HiC1T5njGyuUJoGpK/l6B/TNXKed3fZXNf9YRTJn3L5MOZsFBn4bN2+UX+8+7hgdlTcEsexX988G4g==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
+ "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
"cpu": [
"wasm32"
],
@@ -1030,16 +512,18 @@
"license": "MIT",
"optional": true,
"dependencies": {
- "@napi-rs/wasm-runtime": "^1.1.1"
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
},
"engines": {
- "node": ">=14.0.0"
+ "node": "^20.19.0 || >=22.12.0"
}
},
"node_modules/@rolldown/binding-win32-arm64-msvc": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0-rc.3.tgz",
- "integrity": "sha512-85y5JifyMgs8m5K2XzR/VDsapKbiFiohl7s5lEj7nmNGO0pkTXE7q6TQScei96BNAsoK7JC3pA7ukA8WRHVJpg==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
+ "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
"cpu": [
"arm64"
],
@@ -1054,9 +538,9 @@
}
},
"node_modules/@rolldown/binding-win32-x64-msvc": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0-rc.3.tgz",
- "integrity": "sha512-a4VUQZH7LxGbUJ3qJ/TzQG8HxdHvf+jOnqf7B7oFx1TEBm+j2KNL2zr5SQ7wHkNAcaPevF6gf9tQnVBnC4mD+A==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
+ "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
"cpu": [
"x64"
],
@@ -1071,16 +555,16 @@
}
},
"node_modules/@rolldown/pluginutils": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.3.tgz",
- "integrity": "sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz",
+ "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==",
"dev": true,
"license": "MIT"
},
"node_modules/@tybys/wasm-util": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz",
- "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==",
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
+ "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -1088,22 +572,6 @@
"tslib": "^2.4.0"
}
},
- "node_modules/@typefox/monaco-editor-react": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/@typefox/monaco-editor-react/-/monaco-editor-react-7.7.0.tgz",
- "integrity": "sha512-gbDgCHExBLV22S3QPVu8v2fTtyQdqQ8RItTvROlZF4KJ79DyqhkkviNN7UnMuelFoPCS6QiwvDbMyJ4OBxt5WA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "react": ">=18.0.0 || <20.0.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
"node_modules/@types/trusted-types": {
"version": "2.0.7",
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
@@ -1111,162 +579,18 @@
"license": "MIT",
"optional": true
},
+ "node_modules/@vscode/diff": {
+ "version": "0.0.2-7",
+ "resolved": "https://registry.npmjs.org/@vscode/diff/-/diff-0.0.2-7.tgz",
+ "integrity": "sha512-zGPIPeUAmQs79u7g6FTLmhlXFIocUTtuHYmCV5lRZf6vlDk7SWEOpBlYY6SsShC3TB/lm2KxXMj9tP32YOPrhg==",
+ "license": "MIT"
+ },
"node_modules/@vscode/iconv-lite-umd": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.1.tgz",
"integrity": "sha512-tK6k0DXFHW7q5+GGuGZO+phpAqpxO4WXl+BLc/8/uOk3RsM2ssAL3CQUQDb1TGfwltjsauhN6S4ghYZzs4sPFw==",
"license": "MIT"
},
- "node_modules/@vscode/l10n": {
- "version": "0.0.18",
- "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz",
- "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==",
- "license": "MIT"
- },
- "node_modules/@xterm/addon-clipboard": {
- "version": "0.3.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-clipboard/-/addon-clipboard-0.3.0-beta.97.tgz",
- "integrity": "sha512-8+1tM4WD1MnQccYc/+Kbo+OeptIEf0rn5az6AUw+lnNHPlJa71Xj8KQNBM5f8sns7uoFZzBxpse8SOTttVefBw==",
- "license": "MIT",
- "dependencies": {
- "js-base64": "^3.7.5"
- },
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-image": {
- "version": "0.10.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-image/-/addon-image-0.10.0-beta.97.tgz",
- "integrity": "sha512-O5P/QFVAQRuZ8sKj2dT6sTyHz/l98g+1tKKqDRZYVAobL6elbAMsh3UL/eQBWfDrBfD23XZ93UcgOFCF62YXuQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-ligatures": {
- "version": "0.11.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-ligatures/-/addon-ligatures-0.11.0-beta.97.tgz",
- "integrity": "sha512-r2WX1JHJBO9tiVzjnHVjD38IOMQI5m7mzZt+2cDAwJTDoFJO6WktxUxX8QV90mCbXLFS6jwX+6G2tzSPKLFsNg==",
- "license": "MIT",
- "dependencies": {
- "lru-cache": "^6.0.0",
- "opentype.js": "^0.8.0"
- },
- "engines": {
- "node": ">8.0.0"
- },
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-progress": {
- "version": "0.3.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-progress/-/addon-progress-0.3.0-beta.97.tgz",
- "integrity": "sha512-bSBb6gBN8Y/RsVMlD1AFCSydqnM9jF0s5USu1Cl3ZJqonC62LnM0BnzBz3LdD21yTLnW38Ogk5//uyA4F5ZNsA==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-search": {
- "version": "0.17.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-search/-/addon-search-0.17.0-beta.97.tgz",
- "integrity": "sha512-PL2n3OJmlcTTVOm2SAtLuR9XB/qz/Y3TNtq8ST+PzSIfeXepy6VveyimWtCUBYrTamKMTuXWe5A5dopmE15RMQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-serialize": {
- "version": "0.15.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-serialize/-/addon-serialize-0.15.0-beta.97.tgz",
- "integrity": "sha512-FWEEQBNVGWfYaaOrCehB2mrc3ZHw6OtAM6Hw3WY+0BuVnK9k1i5+LG4rHDzSjUFyEHrig9ROdgzhOHWpGnRa0g==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-unicode11": {
- "version": "0.10.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-unicode11/-/addon-unicode11-0.10.0-beta.97.tgz",
- "integrity": "sha512-Dd/Tei9UOtHR9rMMsy2NQ+9ZHfRE+FRC3qxTMDartpsXRbxtvzb3p4a358ivgwuSNIgCyRAELXzbFcWWDa73Ng==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-webgl": {
- "version": "0.20.0-beta.104",
- "resolved": "https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.20.0-beta.104.tgz",
- "integrity": "sha512-S9zSxwnLXeF8RK1HZXLIdqZELF83ZHVyFJtqNj6b9SdjVMSFrQpa1wwWuJR1McW54hShX3aC9zLj1/1RKiwAxQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.105"
- }
- },
- "node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.145",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.145.tgz",
- "integrity": "sha512-+/JYfFZePPLllxjkmKMuV+gKKzbC5vMdUkoQAB0hes5/gjclU3V73TMO7UC9Br1+JOnjZVdED1U/b8cJ2pV9MQ==",
- "license": "MIT",
- "peer": true,
- "workspaces": [
- "addons/*"
- ]
- },
- "node_modules/accepts": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
- "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
- "license": "MIT",
- "dependencies": {
- "mime-types": "^3.0.0",
- "negotiator": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
- },
- "node_modules/body-parser": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
- "license": "MIT",
- "dependencies": {
- "bytes": "^3.1.2",
- "content-type": "^1.0.5",
- "debug": "^4.4.3",
- "http-errors": "^2.0.0",
- "iconv-lite": "^0.7.0",
- "on-finished": "^2.4.1",
- "qs": "^6.14.1",
- "raw-body": "^3.0.1",
- "type-is": "^2.0.1"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/brace-expansion": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
"node_modules/braces": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
@@ -1280,134 +604,6 @@
"node": ">=8"
}
},
- "node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/call-bind-apply-helpers": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/call-bound": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "get-intrinsic": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/chevrotain": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.1.1.tgz",
- "integrity": "sha512-f0yv5CPKaFxfsPTBzX7vGuim4oIC1/gcS7LUGdBSwl2dU6+FON6LVUksdOo1qJjoUvXNn45urgh8C+0a24pACQ==",
- "license": "Apache-2.0",
- "peer": true,
- "dependencies": {
- "@chevrotain/cst-dts-gen": "11.1.1",
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/regexp-to-ast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "@chevrotain/utils": "11.1.1",
- "lodash-es": "4.17.23"
- }
- },
- "node_modules/chevrotain-allstar": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz",
- "integrity": "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==",
- "license": "MIT",
- "dependencies": {
- "lodash-es": "^4.17.21"
- },
- "peerDependencies": {
- "chevrotain": "^11.0.0"
- }
- },
- "node_modules/content-disposition": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
- "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/content-type": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
- "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie-signature": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
- "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
- "license": "MIT",
- "engines": {
- "node": ">=6.6.0"
- }
- },
- "node_modules/core-util-is": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
- "license": "MIT"
- },
- "node_modules/cors": {
- "version": "2.8.6",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
- "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
- "license": "MIT",
- "dependencies": {
- "object-assign": "^4",
- "vary": "^1"
- },
- "engines": {
- "node": ">= 0.10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/cross-spawn": {
"version": "6.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz",
@@ -1425,32 +621,6 @@
"node": ">=4.8"
}
},
- "node_modules/debug": {
- "version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/detect-libc": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
@@ -1462,96 +632,22 @@
}
},
"node_modules/dompurify": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
- "integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
+ "version": "3.4.9",
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.9.tgz",
+ "integrity": "sha512-4dPSRMRDqHvs0V4YDFCsaIZo4if5u0xM+llyxiM2fwuZFdKArUBAF3VtI2+n8NKg9P870WMdYk0UhqQNoWXbfQ==",
"license": "(MPL-2.0 OR Apache-2.0)",
- "optionalDependencies": {
- "@types/trusted-types": "^2.0.7"
- }
- },
- "node_modules/dunder-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
- "es-errors": "^1.3.0",
- "gopd": "^1.2.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/end-of-stream": {
- "version": "1.4.5",
- "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
- "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "once": "^1.4.0"
- }
- },
- "node_modules/es-define-property": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-errors": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/es-object-atoms": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0"
- },
- "engines": {
- "node": ">= 0.4"
+ "optionalDependencies": {
+ "@types/trusted-types": "^2.0.7"
}
},
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "license": "MIT"
- },
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "node_modules/end-of-stream": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
+ "dev": true,
"license": "MIT",
- "engines": {
- "node": ">= 0.6"
+ "dependencies": {
+ "once": "^1.4.0"
}
},
"node_modules/execa": {
@@ -1573,49 +669,6 @@
"node": ">=6"
}
},
- "node_modules/express": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
- "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
- "license": "MIT",
- "dependencies": {
- "accepts": "^2.0.0",
- "body-parser": "^2.2.1",
- "content-disposition": "^1.0.0",
- "content-type": "^1.0.5",
- "cookie": "^0.7.1",
- "cookie-signature": "^1.2.1",
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "finalhandler": "^2.1.0",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.0",
- "merge-descriptors": "^2.0.0",
- "mime-types": "^3.0.0",
- "on-finished": "^2.4.1",
- "once": "^1.4.0",
- "parseurl": "^1.3.3",
- "proxy-addr": "^2.0.7",
- "qs": "^6.14.0",
- "range-parser": "^1.2.1",
- "router": "^2.2.0",
- "send": "^1.1.0",
- "serve-static": "^2.2.0",
- "statuses": "^2.0.1",
- "type-is": "^2.0.1",
- "vary": "^1.1.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/fast-glob": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
@@ -1656,49 +709,11 @@
"node": ">=8"
}
},
- "node_modules/finalhandler": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
- "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "on-finished": "^2.4.1",
- "parseurl": "^1.3.3",
- "statuses": "^2.0.1"
- },
- "engines": {
- "node": ">= 18.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/forwarded": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fresh": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
- "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
"hasInstallScript": true,
"license": "MIT",
"optional": true,
@@ -1713,48 +728,12 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/get-intrinsic": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
- "license": "MIT",
- "dependencies": {
- "call-bind-apply-helpers": "^1.0.2",
- "es-define-property": "^1.0.1",
- "es-errors": "^1.3.0",
- "es-object-atoms": "^1.1.1",
- "function-bind": "^1.1.2",
- "get-proto": "^1.0.1",
- "gopd": "^1.2.0",
- "has-symbols": "^1.1.0",
- "hasown": "^2.0.2",
- "math-intrinsics": "^1.1.0"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/get-proto": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
- "license": "MIT",
- "dependencies": {
- "dunder-proto": "^1.0.1",
- "es-object-atoms": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
"node_modules/get-stream": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
@@ -1781,34 +760,11 @@
"node": ">= 6"
}
},
- "node_modules/gopd": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/has-symbols": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.2"
@@ -1817,54 +773,6 @@
"node": ">= 0.4"
}
},
- "node_modules/http-errors": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
- "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
- "license": "MIT",
- "dependencies": {
- "depd": "~2.0.0",
- "inherits": "~2.0.4",
- "setprototypeof": "~1.2.0",
- "statuses": "~2.0.2",
- "toidentifier": "~1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/iconv-lite": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
- "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/immediate": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
- "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
- "license": "MIT"
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
"node_modules/interpret": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
@@ -1875,15 +783,6 @@
"node": ">= 0.10"
}
},
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
"node_modules/is-core-module": {
"version": "2.16.1",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
@@ -1933,12 +832,6 @@
"node": ">=0.12.0"
}
},
- "node_modules/is-promise": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
- "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
- "license": "MIT"
- },
"node_modules/is-stream": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
@@ -1949,12 +842,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
- "license": "MIT"
- },
"node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
@@ -1962,12 +849,6 @@
"dev": true,
"license": "ISC"
},
- "node_modules/js-base64": {
- "version": "3.7.8",
- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.8.tgz",
- "integrity": "sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==",
- "license": "BSD-3-Clause"
- },
"node_modules/jschardet": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/jschardet/-/jschardet-3.1.4.tgz",
@@ -1977,54 +858,10 @@
"node": ">=0.1.90"
}
},
- "node_modules/jsonc-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
- "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
- "license": "MIT"
- },
- "node_modules/jszip": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
- "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
- "license": "(MIT OR GPL-3.0-or-later)",
- "dependencies": {
- "lie": "~3.3.0",
- "pako": "~1.0.2",
- "readable-stream": "~2.3.6",
- "setimmediate": "^1.0.5"
- }
- },
- "node_modules/langium": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/langium/-/langium-4.2.0.tgz",
- "integrity": "sha512-SoXTYrTyA9x0CjVoguZfB9NIbj2RwQ7KpltHyJwB7jyzbnfHkqw5Alf9A1JtIqouT7fZv4xMCCy+7CoIYGV65w==",
- "license": "MIT",
- "dependencies": {
- "chevrotain": "~11.1.1",
- "chevrotain-allstar": "~0.3.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-textdocument": "~1.0.11",
- "vscode-uri": "~3.1.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/lie": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
- "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
- "license": "MIT",
- "dependencies": {
- "immediate": "~3.0.5"
- }
- },
"node_modules/lightningcss": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
- "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
"dev": true,
"license": "MPL-2.0",
"dependencies": {
@@ -2038,23 +875,23 @@
"url": "https://opencollective.com/parcel"
},
"optionalDependencies": {
- "lightningcss-android-arm64": "1.31.1",
- "lightningcss-darwin-arm64": "1.31.1",
- "lightningcss-darwin-x64": "1.31.1",
- "lightningcss-freebsd-x64": "1.31.1",
- "lightningcss-linux-arm-gnueabihf": "1.31.1",
- "lightningcss-linux-arm64-gnu": "1.31.1",
- "lightningcss-linux-arm64-musl": "1.31.1",
- "lightningcss-linux-x64-gnu": "1.31.1",
- "lightningcss-linux-x64-musl": "1.31.1",
- "lightningcss-win32-arm64-msvc": "1.31.1",
- "lightningcss-win32-x64-msvc": "1.31.1"
+ "lightningcss-android-arm64": "1.32.0",
+ "lightningcss-darwin-arm64": "1.32.0",
+ "lightningcss-darwin-x64": "1.32.0",
+ "lightningcss-freebsd-x64": "1.32.0",
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
+ "lightningcss-linux-arm64-gnu": "1.32.0",
+ "lightningcss-linux-arm64-musl": "1.32.0",
+ "lightningcss-linux-x64-gnu": "1.32.0",
+ "lightningcss-linux-x64-musl": "1.32.0",
+ "lightningcss-win32-arm64-msvc": "1.32.0",
+ "lightningcss-win32-x64-msvc": "1.32.0"
}
},
"node_modules/lightningcss-android-arm64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
- "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
"cpu": [
"arm64"
],
@@ -2073,9 +910,9 @@
}
},
"node_modules/lightningcss-darwin-arm64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
- "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
"cpu": [
"arm64"
],
@@ -2094,9 +931,9 @@
}
},
"node_modules/lightningcss-darwin-x64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
- "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
"cpu": [
"x64"
],
@@ -2115,9 +952,9 @@
}
},
"node_modules/lightningcss-freebsd-x64": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
- "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
"cpu": [
"x64"
],
@@ -2136,9 +973,9 @@
}
},
"node_modules/lightningcss-linux-arm-gnueabihf": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
- "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
"cpu": [
"arm"
],
@@ -2157,13 +994,16 @@
}
},
"node_modules/lightningcss-linux-arm64-gnu": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
- "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2178,13 +1018,16 @@
}
},
"node_modules/lightningcss-linux-arm64-musl": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
- "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
"cpu": [
"arm64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2199,13 +1042,16 @@
}
},
"node_modules/lightningcss-linux-x64-gnu": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
- "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "glibc"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2220,13 +1066,16 @@
}
},
"node_modules/lightningcss-linux-x64-musl": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
- "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
"cpu": [
"x64"
],
"dev": true,
+ "libc": [
+ "musl"
+ ],
"license": "MPL-2.0",
"optional": true,
"os": [
@@ -2241,9 +1090,9 @@
}
},
"node_modules/lightningcss-win32-arm64-msvc": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
- "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
"cpu": [
"arm64"
],
@@ -2262,9 +1111,9 @@
}
},
"node_modules/lightningcss-win32-x64-msvc": {
- "version": "1.31.1",
- "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
- "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
+ "version": "1.32.0",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
"cpu": [
"x64"
],
@@ -2282,24 +1131,6 @@
"url": "https://opencollective.com/parcel"
}
},
- "node_modules/lodash-es": {
- "version": "4.17.23",
- "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.23.tgz",
- "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
- "license": "MIT"
- },
- "node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/marked": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz",
@@ -2312,36 +1143,6 @@
"node": ">= 18"
}
},
- "node_modules/math-intrinsics": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/media-typer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
- "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/merge-descriptors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
- "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
@@ -2366,43 +1167,6 @@
"node": ">=8.6"
}
},
- "node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
@@ -2413,138 +1177,14 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/monaco-editor": {
- "name": "@codingame/monaco-vscode-editor-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/monaco-languageclient": {
- "version": "10.7.0",
- "resolved": "https://registry.npmjs.org/monaco-languageclient/-/monaco-languageclient-10.7.0.tgz",
- "integrity": "sha512-oA5cOFixkF4bspVL2zMSn48LvlNR/Cu3vJ8MCVam3PdjobSULGgHtOASuZIi3FgWK42X1z8/6hrG0LCjvNu1Hw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-editor-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-cs": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-de": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-es": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-fr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-it": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ja": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ko": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pl": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pt-br": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ru": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-tr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^25.1.2",
- "@codingame/monaco-vscode-languages-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-log-service-override": "^25.1.2",
- "@codingame/monaco-vscode-model-service-override": "^25.1.2",
- "@codingame/monaco-vscode-monarch-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@codingame/monaco-vscode-workbench-service-override": "^25.1.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
"node_modules/monaco-languageclient-examples": {
- "version": "2026.2.1",
- "resolved": "https://registry.npmjs.org/monaco-languageclient-examples/-/monaco-languageclient-examples-2026.2.1.tgz",
- "integrity": "sha512-F0hS2HKcwIBRcofl3lw0zN8wAv8PoGHNlixi2ZdxMk7ZwRHY/Bhgehgg+xEGvGyvgfYg1UseW5ilOH+dATOmtg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-cpp-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-debug-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "^25.1.2",
- "@codingame/monaco-vscode-explorer-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-files-service-override": "^25.1.2",
- "@codingame/monaco-vscode-groovy-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-java-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-javascript-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-json-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-json-language-features-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "^25.1.2",
- "@codingame/monaco-vscode-lifecycle-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-outline-service-override": "^25.1.2",
- "@codingame/monaco-vscode-preferences-service-override": "^25.1.2",
- "@codingame/monaco-vscode-python-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-remote-agent-service-override": "^25.1.2",
- "@codingame/monaco-vscode-search-result-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-search-service-override": "^25.1.2",
- "@codingame/monaco-vscode-secret-storage-service-override": "^25.1.2",
- "@codingame/monaco-vscode-standalone-json-language-features": "^25.1.2",
- "@codingame/monaco-vscode-standalone-typescript-language-features": "^25.1.2",
- "@codingame/monaco-vscode-storage-service-override": "^25.1.2",
- "@codingame/monaco-vscode-testing-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "^25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "^25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@typefox/monaco-editor-react": "~7.7.0",
- "cors": "~2.8.6",
- "express": "~5.2.1",
- "jszip": "~3.10.1",
- "langium": "~4.2.0",
- "monaco-languageclient": "~10.7.0",
- "pyright": "~1.1.408",
- "react": "~19.2.4",
- "react-dom": "~19.2.4",
- "request-light": "~0.8.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-json-languageservice": "~5.7.1",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-uri": "~3.1.0",
- "vscode-ws-jsonrpc": "~3.5.0",
- "ws": "~8.19.0",
- "wtd-core": "~4.0.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "license": "MIT"
+ "resolved": "../../packages/examples",
+ "link": true
},
"node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "version": "3.3.12",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz",
+ "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
"dev": true,
"funding": [
{
@@ -2560,15 +1200,6 @@
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
},
- "node_modules/negotiator": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
- "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
"node_modules/nice-try": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
@@ -2589,60 +1220,16 @@
"node": ">=4"
}
},
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/object-inspect": {
- "version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dev": true,
"license": "ISC",
"dependencies": {
"wrappy": "1"
}
},
- "node_modules/opentype.js": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/opentype.js/-/opentype.js-0.8.0.tgz",
- "integrity": "sha512-FQHR4oGP+a0m/f6yHoRpBOIbn/5ZWxKd4D/djHVJu8+KpBTYrJda0b7mLcgDEMWXE9xBCJm+qb0yv6FcvPjukg==",
- "license": "MIT",
- "dependencies": {
- "tiny-inflate": "^1.0.2"
- },
- "bin": {
- "ot": "bin/ot"
- }
- },
"node_modules/p-finally": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
@@ -2653,21 +1240,6 @@
"node": ">=4"
}
},
- "node_modules/pako": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
- "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
- "license": "(MIT AND Zlib)"
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/path-key": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
@@ -2685,16 +1257,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/path-to-regexp": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
- "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
@@ -2716,9 +1278,9 @@
}
},
"node_modules/postcss": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "version": "8.5.15",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
"dev": true,
"funding": [
{
@@ -2736,31 +1298,12 @@
],
"license": "MIT",
"dependencies": {
- "nanoid": "^3.3.11",
+ "nanoid": "^3.3.12",
"picocolors": "^1.1.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "license": "MIT"
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "license": "MIT",
- "dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
+ "source-map-js": "^1.2.1"
},
"engines": {
- "node": ">= 0.10"
+ "node": "^10 || ^12 || >=14"
}
},
"node_modules/pump": {
@@ -2774,37 +1317,6 @@
"once": "^1.3.1"
}
},
- "node_modules/pyright": {
- "version": "1.1.408",
- "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.408.tgz",
- "integrity": "sha512-N61pxaLLCsPcUuPPHMNIrGoZgGBgrbjBX5UqkaT5UV8NVZdL7ExsO6N3ectv1DzAUsLOzdlyqoYtX76u8eF4YA==",
- "license": "MIT",
- "bin": {
- "pyright": "index.js",
- "pyright-langserver": "langserver.index.js"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- }
- },
- "node_modules/qs": {
- "version": "6.14.1",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz",
- "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "side-channel": "^1.1.0"
- },
- "engines": {
- "node": ">=0.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/queue-microtask": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
@@ -2826,67 +1338,6 @@
],
"license": "MIT"
},
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/raw-body": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
- "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
- "license": "MIT",
- "dependencies": {
- "bytes": "~3.1.2",
- "http-errors": "~2.0.1",
- "iconv-lite": "~0.7.0",
- "unpipe": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/react": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
- "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
- "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
- "license": "MIT",
- "dependencies": {
- "scheduler": "^0.27.0"
- },
- "peerDependencies": {
- "react": "^19.2.4"
- }
- },
- "node_modules/readable-stream": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
- "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
"node_modules/rechoir": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
@@ -2899,12 +1350,6 @@
"node": ">= 0.10"
}
},
- "node_modules/request-light": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.8.0.tgz",
- "integrity": "sha512-bH6E4PMmsEXYrLX6Kr1vu+xI3HproB1vECAwaPSJeroLE1kpWE3HR27uB4icx+6YORu1ajqBJXxuedv8ZQg5Lw==",
- "license": "MIT"
- },
"node_modules/resolve": {
"version": "1.22.11",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz",
@@ -2938,14 +1383,14 @@
}
},
"node_modules/rolldown": {
- "version": "1.0.0-rc.3",
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.3.tgz",
- "integrity": "sha512-Po/YZECDOqVXjIXrtC5h++a5NLvKAQNrd9ggrIG3sbDfGO5BqTUsrI6l8zdniKRp3r5Tp/2JTrXqx4GIguFCMw==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
+ "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/types": "=0.112.0",
- "@rolldown/pluginutils": "1.0.0-rc.3"
+ "@oxc-project/types": "=0.133.0",
+ "@rolldown/pluginutils": "^1.0.0"
},
"bin": {
"rolldown": "bin/cli.mjs"
@@ -2954,35 +1399,21 @@
"node": "^20.19.0 || >=22.12.0"
},
"optionalDependencies": {
- "@rolldown/binding-android-arm64": "1.0.0-rc.3",
- "@rolldown/binding-darwin-arm64": "1.0.0-rc.3",
- "@rolldown/binding-darwin-x64": "1.0.0-rc.3",
- "@rolldown/binding-freebsd-x64": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm64-gnu": "1.0.0-rc.3",
- "@rolldown/binding-linux-arm64-musl": "1.0.0-rc.3",
- "@rolldown/binding-linux-x64-gnu": "1.0.0-rc.3",
- "@rolldown/binding-linux-x64-musl": "1.0.0-rc.3",
- "@rolldown/binding-openharmony-arm64": "1.0.0-rc.3",
- "@rolldown/binding-wasm32-wasi": "1.0.0-rc.3",
- "@rolldown/binding-win32-arm64-msvc": "1.0.0-rc.3",
- "@rolldown/binding-win32-x64-msvc": "1.0.0-rc.3"
- }
- },
- "node_modules/router": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
- "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "is-promise": "^4.0.0",
- "parseurl": "^1.3.3",
- "path-to-regexp": "^8.0.0"
- },
- "engines": {
- "node": ">= 18"
+ "@rolldown/binding-android-arm64": "1.0.3",
+ "@rolldown/binding-darwin-arm64": "1.0.3",
+ "@rolldown/binding-darwin-x64": "1.0.3",
+ "@rolldown/binding-freebsd-x64": "1.0.3",
+ "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
+ "@rolldown/binding-linux-arm64-gnu": "1.0.3",
+ "@rolldown/binding-linux-arm64-musl": "1.0.3",
+ "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
+ "@rolldown/binding-linux-s390x-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-gnu": "1.0.3",
+ "@rolldown/binding-linux-x64-musl": "1.0.3",
+ "@rolldown/binding-openharmony-arm64": "1.0.3",
+ "@rolldown/binding-wasm32-wasi": "1.0.3",
+ "@rolldown/binding-win32-arm64-msvc": "1.0.3",
+ "@rolldown/binding-win32-x64-msvc": "1.0.3"
}
},
"node_modules/run-parallel": {
@@ -3009,24 +1440,6 @@
"queue-microtask": "^1.2.2"
}
},
- "node_modules/safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "license": "MIT"
- },
- "node_modules/safer-buffer": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "license": "MIT"
- },
- "node_modules/scheduler": {
- "version": "0.27.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
- "license": "MIT"
- },
"node_modules/semver": {
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
@@ -3037,63 +1450,6 @@
"semver": "bin/semver"
}
},
- "node_modules/send": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
- "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.3",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.1",
- "mime-types": "^3.0.2",
- "ms": "^2.1.3",
- "on-finished": "^2.4.1",
- "range-parser": "^1.2.1",
- "statuses": "^2.0.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/serve-static": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
- "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
- "license": "MIT",
- "dependencies": {
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "parseurl": "^1.3.3",
- "send": "^1.2.0"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/setimmediate": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
- "license": "MIT"
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "license": "ISC"
- },
"node_modules/shebang-command": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
@@ -3153,78 +1509,6 @@
"node": ">=18"
}
},
- "node_modules/side-channel": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3",
- "side-channel-list": "^1.0.0",
- "side-channel-map": "^1.0.1",
- "side-channel-weakmap": "^1.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-list": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
- "license": "MIT",
- "dependencies": {
- "es-errors": "^1.3.0",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-map": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/side-channel-weakmap": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
- "license": "MIT",
- "dependencies": {
- "call-bound": "^1.0.2",
- "es-errors": "^1.3.0",
- "get-intrinsic": "^1.2.5",
- "object-inspect": "^1.13.3",
- "side-channel-map": "^1.0.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/signal-exit": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
@@ -3242,24 +1526,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/statuses": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
- "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
"node_modules/strip-eof": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
@@ -3283,21 +1549,15 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/tiny-inflate": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
- "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
- "license": "MIT"
- },
"node_modules/tinyglobby": {
- "version": "0.2.15",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
- "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
"dev": true,
"license": "MIT",
"dependencies": {
"fdir": "^6.5.0",
- "picomatch": "^4.0.3"
+ "picomatch": "^4.0.4"
},
"engines": {
"node": ">=12.0.0"
@@ -3325,12 +1585,11 @@
}
},
"node_modules/tinyglobby/node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
"dev": true,
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=12"
},
@@ -3351,15 +1610,6 @@
"node": ">=8.0"
}
},
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.6"
- }
- },
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
@@ -3368,24 +1618,10 @@
"license": "0BSD",
"optional": true
},
- "node_modules/type-is": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
- "license": "MIT",
- "dependencies": {
- "content-type": "^1.0.5",
- "media-typer": "^1.1.0",
- "mime-types": "^3.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
"node_modules/typescript": {
- "version": "5.9.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
"dev": true,
"license": "Apache-2.0",
"bin": {
@@ -3396,44 +1632,18 @@
"node": ">=14.17"
}
},
- "node_modules/unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
- "license": "MIT"
- },
- "node_modules/vary": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/vite": {
- "version": "8.0.0-beta.13",
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.0-beta.13.tgz",
- "integrity": "sha512-7s/rfpYOAo7WUHh9irzaGjhhKb12hGv0BpDegAMV5A391wdyvM45WtX6VMV7hvEtZF2j/QtpDpR6ldXI3GgARQ==",
+ "version": "8.0.16",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
+ "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@oxc-project/runtime": "0.112.0",
- "fdir": "^6.5.0",
- "lightningcss": "^1.31.1",
- "picomatch": "^4.0.3",
- "postcss": "^8.5.6",
- "rolldown": "1.0.0-rc.3",
- "tinyglobby": "^0.2.15"
+ "lightningcss": "^1.32.0",
+ "picomatch": "^4.0.4",
+ "postcss": "^8.5.15",
+ "rolldown": "1.0.3",
+ "tinyglobby": "^0.2.17"
},
"bin": {
"vite": "bin/vite.js"
@@ -3449,8 +1659,8 @@
},
"peerDependencies": {
"@types/node": "^20.19.0 || >=22.12.0",
- "@vitejs/devtools": "^0.0.0-alpha.24",
- "esbuild": "^0.27.0",
+ "@vitejs/devtools": "^0.1.18",
+ "esbuild": "^0.27.0 || ^0.28.0",
"jiti": ">=1.21.0",
"less": "^4.0.0",
"sass": "^1.70.0",
@@ -3500,31 +1710,12 @@
}
}
},
- "node_modules/vite/node_modules/fdir": {
- "version": "6.5.0",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
- "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12.0.0"
- },
- "peerDependencies": {
- "picomatch": "^3 || ^4"
- },
- "peerDependenciesMeta": {
- "picomatch": {
- "optional": true
- }
- }
- },
"node_modules/vite/node_modules/picomatch": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
- "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz",
+ "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
"dev": true,
"license": "MIT",
- "peer": true,
"engines": {
"node": ">=12"
},
@@ -3534,123 +1725,13 @@
},
"node_modules/vscode": {
"name": "@codingame/monaco-vscode-extension-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
- }
- },
- "node_modules/vscode-json-languageservice": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.7.1.tgz",
- "integrity": "sha512-sMK2F8p7St0lJCr/4IfbQRoEUDUZRR7Ud0IiSl8I/JtN+m9Gv+FJlNkSAYns2R7Ebm/PKxqUuWYOfBej/rAdBQ==",
- "license": "MIT",
- "dependencies": {
- "@vscode/l10n": "^0.0.18",
- "jsonc-parser": "^3.3.1",
- "vscode-languageserver-textdocument": "^1.0.12",
- "vscode-languageserver-types": "^3.17.5",
- "vscode-uri": "^3.1.0"
- }
- },
- "node_modules/vscode-jsonrpc": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz",
- "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/vscode-languageclient": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz",
- "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==",
- "license": "MIT",
- "dependencies": {
- "minimatch": "^5.1.0",
- "semver": "^7.3.7",
- "vscode-languageserver-protocol": "3.17.5"
- },
- "engines": {
- "vscode": "^1.82.0"
- }
- },
- "node_modules/vscode-languageclient/node_modules/semver": {
- "version": "7.7.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
- "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/vscode-languageserver": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz",
- "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==",
- "license": "MIT",
- "dependencies": {
- "vscode-languageserver-protocol": "3.17.5"
- },
- "bin": {
- "installServerIntoExtension": "bin/installServerIntoExtension"
- }
- },
- "node_modules/vscode-languageserver-protocol": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz",
- "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==",
- "license": "MIT",
- "dependencies": {
- "vscode-jsonrpc": "8.2.0",
- "vscode-languageserver-types": "3.17.5"
- }
- },
- "node_modules/vscode-languageserver-textdocument": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz",
- "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==",
- "license": "MIT"
- },
- "node_modules/vscode-languageserver-types": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
- "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
- "license": "MIT"
- },
- "node_modules/vscode-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
- "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
- "license": "MIT"
- },
- "node_modules/vscode-ws-jsonrpc": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/vscode-ws-jsonrpc/-/vscode-ws-jsonrpc-3.5.0.tgz",
- "integrity": "sha512-13ZDy7Od4AfEPK2HIfY3DtyRi4FVsvFql1yobVJrpIoHOKGGJpIjVvIJpMxkrHzCZzWlYlg+WEu2hrYkCTvM0Q==",
+ "version": "34.0.1",
+ "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-34.0.1.tgz",
+ "integrity": "sha512-rXGKdTx8XSIr77M5Z+7KsL8YWtCIZJ4ckQ4nVn5lWODsH2uEn8XmPucyWCTR1cmct2D0JWZY+ahLgQ9B/qDENg==",
"license": "MIT",
"dependencies": {
- "vscode-jsonrpc": "~8.2.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/vscode-ws-jsonrpc/node_modules/vscode-jsonrpc": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz",
- "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
+ "@codingame/monaco-vscode-api": "34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "34.0.1"
}
},
"node_modules/which": {
@@ -3670,39 +1751,7 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "license": "ISC"
- },
- "node_modules/ws": {
- "version": "8.19.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
- "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/wtd-core": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/wtd-core/-/wtd-core-4.0.1.tgz",
- "integrity": "sha512-q6sV6Slw47bwlhwbztot0MklWaVzywUAi0wAKWwOuL/LTY4IpVFgoHQ+cnlhG2ZUms/OkJUhyfhsfoHNYkKjzA==",
- "license": "MIT"
- },
- "node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true,
"license": "ISC"
}
}
diff --git a/verify/peerNpm/package.json b/verify/peerNpm/package.json
index 3f2ba63f0..be0ab6070 100644
--- a/verify/peerNpm/package.json
+++ b/verify/peerNpm/package.json
@@ -16,16 +16,16 @@
"start": "vite preview"
},
"dependencies": {
- "monaco-languageclient-examples": "^2026.2.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1"
+ "monaco-languageclient-examples": "../../packages/examples",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1"
},
"devDependencies": {
"shx": "~0.4.0",
- "typescript": "~5.9.3",
- "vite": "~8.0.0-beta.14"
+ "typescript": "~6.0.3",
+ "vite": "~8.0.16"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/verify/peerNpm/tsconfig.json b/verify/peerNpm/tsconfig.json
index abb92b6de..3c5f95133 100644
--- a/verify/peerNpm/tsconfig.json
+++ b/verify/peerNpm/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2022",
- "module": "node20",
+ "module": "nodenext",
"moduleResolution": "nodenext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"rootDir": ".",
diff --git a/verify/peerPnpm/package.json b/verify/peerPnpm/package.json
index 9b17e29df..b633d919f 100644
--- a/verify/peerPnpm/package.json
+++ b/verify/peerPnpm/package.json
@@ -8,14 +8,14 @@
"verify:ci": "pnpm install && pnpm run build"
},
"dependencies": {
- "monaco-languageclient-examples": "~2026.2.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1"
+ "monaco-languageclient-examples": "../../packages/examples",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1"
},
"devDependencies": {
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"engines": {
- "node": ">=20.10.0",
- "pnpm": ">=9.15.0"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/verify/peerPnpm/pnpm-lock.yaml b/verify/peerPnpm/pnpm-lock.yaml
index 01b11dc1d..d8f128696 100644
--- a/verify/peerPnpm/pnpm-lock.yaml
+++ b/verify/peerPnpm/pnpm-lock.yaml
@@ -9,1717 +9,135 @@ importers:
.:
dependencies:
monaco-languageclient-examples:
- specifier: ~2026.2.1
- version: 2026.2.1(@xterm/xterm@6.1.0-beta.97)
+ specifier: ../../packages/examples
+ version: link:../../packages/examples
vscode:
- specifier: npm:@codingame/monaco-vscode-extension-api@^25.1.2
- version: '@codingame/monaco-vscode-extension-api@25.1.2'
+ specifier: npm:@codingame/monaco-vscode-extension-api@^34.0.1
+ version: '@codingame/monaco-vscode-extension-api@34.0.1'
devDependencies:
typescript:
- specifier: ~5.9.3
- version: 5.9.3
+ specifier: ~6.0.3
+ version: 6.0.3
packages:
- '@chevrotain/cst-dts-gen@11.1.1':
- resolution: {integrity: sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==}
+ '@codingame/monaco-vscode-api@34.0.1':
+ resolution: {integrity: sha512-LiFstXqNw1PPabjrV3g09/Wu8Ss5f2IlDH2lHlEZaQmhDVdxpDZUKqKaD1hLDKiYwx8lYeHs1yNUab5uUQh4bQ==}
- '@chevrotain/gast@11.1.1':
- resolution: {integrity: sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==}
+ '@codingame/monaco-vscode-base-service-override@34.0.1':
+ resolution: {integrity: sha512-f7QLFt9W5xPx03y7bmmo4IrQNyGHZSICunmBbRVP3T+F8KAD3X5JhMgun6490MT6I25MCtmxrwreQ5xvTHRqUg==}
- '@chevrotain/regexp-to-ast@11.1.1':
- resolution: {integrity: sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==}
+ '@codingame/monaco-vscode-environment-service-override@34.0.1':
+ resolution: {integrity: sha512-cxN+MbUlV1IK0IXp3MerahdoVtLudkpBAwEyfn2uyzkiuRRHtCsNdcf/9Hyy2shFp3kuRRpQLbtIt6ODfYfX6g==}
- '@chevrotain/types@11.1.1':
- resolution: {integrity: sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==}
+ '@codingame/monaco-vscode-extension-api@34.0.1':
+ resolution: {integrity: sha512-rXGKdTx8XSIr77M5Z+7KsL8YWtCIZJ4ckQ4nVn5lWODsH2uEn8XmPucyWCTR1cmct2D0JWZY+ahLgQ9B/qDENg==}
- '@chevrotain/utils@11.1.1':
- resolution: {integrity: sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==}
+ '@codingame/monaco-vscode-extensions-service-override@34.0.1':
+ resolution: {integrity: sha512-wHDZmFEtOahYXk1H0TeGIV2Ssl6yurYQFX33L5Im1CtypxTMkEm0sP+IvOHLmJbT4X5u5xi7FWNcgoVhbVnYaQ==}
- '@codingame/monaco-vscode-api@25.1.2':
- resolution: {integrity: sha512-K04QcQA+Zb0KXucBAK/BGCT5dldiwIqdUbBQq7yuLvBLbof3cP1WSUuxasMHGYwM0MWyzIAsDtyAYMS7is8ZuA==}
+ '@codingame/monaco-vscode-files-service-override@34.0.1':
+ resolution: {integrity: sha512-oqWQ0WiQDQRZoA9G68+G+QMAxtCwPFf0RXDD5aUqhXYOXhW/lqwCBwwqdQLoKQyiALfIXF6wU944fkspWPfa3g==}
- '@codingame/monaco-vscode-base-service-override@25.1.2':
- resolution: {integrity: sha512-OwYs6h1ATUAeMmX+Q1c8esTG7GLMqniBs+fLEr1/9b/ciY485ArKo5UvrUxVPDtRNy/7F06vRW9IUCq9iKP14w==}
+ '@codingame/monaco-vscode-host-service-override@34.0.1':
+ resolution: {integrity: sha512-lVho3RwV0kAtSALAdB0UeglApr/KJQShbGB91KUBjKeOx4J5XGfPL2k2y9yNtGjE8NKuuJ2XaxmhSDdcOkuWDA==}
- '@codingame/monaco-vscode-bulk-edit-service-override@25.1.2':
- resolution: {integrity: sha512-+EfSzjiFakCf0IIJKPZrHVGioq5N8GBsp51bXuKBR5J/B58cUaJY0Dc12PNTSpgAusAGOppUIOSBqUk4F/7IaQ==}
+ '@codingame/monaco-vscode-layout-service-override@34.0.1':
+ resolution: {integrity: sha512-5K0xlg5MurqI/qotIye/lq3dynZZ+9uSu8Kz884m6soH08/zIY7peMYj44qhxgv2BRTDlEl1bnR98lDWNv3oSg==}
- '@codingame/monaco-vscode-configuration-service-override@25.1.2':
- resolution: {integrity: sha512-oeoZ3WtM42zHA1IWHrx9UGEfE+TixE+G8Bl9M9bjgFj1EROnkB5yOfELwRYPo4WOEtcK1C5nvIvWIj/hL9MaLg==}
-
- '@codingame/monaco-vscode-cpp-default-extension@25.1.2':
- resolution: {integrity: sha512-L5pS+Ynrbml54+qTQkViWkwyM0ACqmZa01HaWx3ZIaV+zEZAm1f9Pge6NyjhdDJE6jTBMR+pCcJmoN0k/BImZw==}
-
- '@codingame/monaco-vscode-debug-service-override@25.1.2':
- resolution: {integrity: sha512-0lEHs5X5TI3pOMsYbb+rLExwmhMDiSJJ3MnhkwzeaDrKKP/Z0+XGaH5ziRB0zrxiT/OqR52c3pvOcou5iiLRaw==}
-
- '@codingame/monaco-vscode-editor-api@25.1.2':
- resolution: {integrity: sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==}
-
- '@codingame/monaco-vscode-editor-service-override@25.1.2':
- resolution: {integrity: sha512-EadvDCyWdgxOPmaIvbcVVDNjTUYuKdjYWwKbPbbcTs9t4z1/DjdE7mV3ZdT6aGh5m6zkEEUOi143l27Y5eRt+Q==}
-
- '@codingame/monaco-vscode-environment-service-override@25.1.2':
- resolution: {integrity: sha512-8GoD3lk0CN0dIMZOrZNS/i8RCaF1YSQ6nmrf+rqneOSHG9S382EnsZZD69d4+i7JnoeyttO7Kr9KH8WOhRV6OA==}
-
- '@codingame/monaco-vscode-explorer-service-override@25.1.2':
- resolution: {integrity: sha512-K5LJ1qJmlOxrU8Y/ilX4D60wXSNQ1PYv2qSnkwHuFCOGAu2RiYM0igDZH3b+WFzQsj8/yt9VwCK0PMkrnjne+w==}
-
- '@codingame/monaco-vscode-extension-api@25.1.2':
- resolution: {integrity: sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==}
-
- '@codingame/monaco-vscode-extensions-service-override@25.1.2':
- resolution: {integrity: sha512-rTTZW2biPxcg+JumhVf2L+38C5ptvNNxiJlwz39VfXFEh6qOHtAsIMy7vIXa0uGg5/y8DNp0SnOQJP/RKhLYZA==}
-
- '@codingame/monaco-vscode-files-service-override@25.1.2':
- resolution: {integrity: sha512-TenLLAFIwY7keZFF8e3beUn7OVfnNINR5Noi4PVrjeeTcy6FuNH6Jghdul2JwpRAkvyJLdFMvomE2jlT6F03jQ==}
-
- '@codingame/monaco-vscode-groovy-default-extension@25.1.2':
- resolution: {integrity: sha512-oDmUgs4DURf8TbMoLQsMy/EzpS0hkDMh780RZkKKjvc8Sr3nDW8ckIjJW1Ku6HrS2G2Z6LDd1KlhHmFGDKU5WQ==}
-
- '@codingame/monaco-vscode-host-service-override@25.1.2':
- resolution: {integrity: sha512-lgaalpA9CUQW7i0bBwgBOK0DQNDvOo3QO3p6Rz6yVsHpgA4iMqq2d11dBDUKvuQSwIHPRu8CMHCqhQk/BQN/YA==}
-
- '@codingame/monaco-vscode-java-default-extension@25.1.2':
- resolution: {integrity: sha512-9B+gEFghGxCuNb/PAHPUnjBbuNWm0FKpinxeuyBUUh92hOeVLxaKfjFsXAaf1I4q507LfEkufqxQndsQFFxskA==}
-
- '@codingame/monaco-vscode-javascript-default-extension@25.1.2':
- resolution: {integrity: sha512-SIrq+EfJ9Nk+aTjOXBPdp2+K242W6lAlGYjln/AnwNa+1h0roQ07efZNV0LBkVrwH4wmT9TmN/IXE2Boau37cQ==}
-
- '@codingame/monaco-vscode-json-default-extension@25.1.2':
- resolution: {integrity: sha512-lbzUZr8E2vg40bQFhWFq/qc0QqnRHKKWwCuxymkv0kpVgyXlS52EjjvrhvOo8TV/r7eLg+R0yHzF4IKWgltGrA==}
-
- '@codingame/monaco-vscode-json-language-features-default-extension@25.1.2':
- resolution: {integrity: sha512-c2YH16zJpkmsyNrZq1ukZuWx73PRFzG871GUsiWTETvEJlbG8deL9/MpgJK+C6Kao9SlX63iDkpCpcwjE3l72w==}
-
- '@codingame/monaco-vscode-keybindings-service-override@25.1.2':
- resolution: {integrity: sha512-cp/gGyTvCTAzCYnQm0HJykXJRB0Huz8Lvq60lj5LutgWcb8S3w6dOB2Houm8dHoeUm/jOko8SQNIP8hzWN92Zw==}
-
- '@codingame/monaco-vscode-language-pack-cs@25.1.2':
- resolution: {integrity: sha512-v0cB2uAOCwj135aGIf0arGV+DNW32lbWh04bv8ctTxcWRt1Pr2kTQ1pjfE8ynKgxabPfAk8E25/CerKSYOmZ+A==}
-
- '@codingame/monaco-vscode-language-pack-de@25.1.2':
- resolution: {integrity: sha512-xA3WOt1w5jlAOnyx4PBwx+qV3vx8C8/zie29qjYbgJMxGKDkb0HfpuKUwywDA2uUMI2wJZS+PnNG00zPDoLIrw==}
-
- '@codingame/monaco-vscode-language-pack-es@25.1.2':
- resolution: {integrity: sha512-1/upuO9lRJilZ3sRr0QLTpz55KYRaBWDe8wtPvghOFYOHyWgW8A4VhUQxa6L9SJgY1JkypUAm0U8WcMX2G4LnQ==}
-
- '@codingame/monaco-vscode-language-pack-fr@25.1.2':
- resolution: {integrity: sha512-iq+xx+tv1QIMmFD0eBhFRMF4xMAsVf/HyA1WogqBofteCWeAvRE9HUjZ5JzHz7jXBPe3dLP1LOM0r0GrJZs4fQ==}
-
- '@codingame/monaco-vscode-language-pack-it@25.1.2':
- resolution: {integrity: sha512-FajWCML9OR8ppLnJ0mcg+sFHEhYJl8zhb3/DHnd+pNysw8dLfetXoSWjaPnwPPpwiQgkNN1UsToZHOU9czVifQ==}
-
- '@codingame/monaco-vscode-language-pack-ja@25.1.2':
- resolution: {integrity: sha512-NwKh0BnPgUrJkxsm0X6vY4ftnd9DjxkcnQqK+bohta6UOzm09J1EjZ6QD42fjWngxrp/xiegtrYQ9NA2q6VpoA==}
-
- '@codingame/monaco-vscode-language-pack-ko@25.1.2':
- resolution: {integrity: sha512-fvaisgfcg8YaAwnyPcGmQDLwkwqzamLQUyx9HmnwDpXw0YANzd058Kwn6bz+Vfn9MjwuMNT0nllD0qQMnpdyew==}
-
- '@codingame/monaco-vscode-language-pack-pl@25.1.2':
- resolution: {integrity: sha512-9hDRyzFJkDia5rO9QE262JgxwP/cnalFisLFo7FQcw57ZhqzqXIdQIuwcKaHuAgzeQ6W2+A3KOLfTr3m7VZrXw==}
-
- '@codingame/monaco-vscode-language-pack-pt-br@25.1.2':
- resolution: {integrity: sha512-7fFnqOTAJGb5RuJ4uwh9sh0JmXALuHPGOl7iL9rZkcgIuVP5y6wVDUDXq5qjiRTNSFDs7Bzh463Ir5m5D6mJbA==}
-
- '@codingame/monaco-vscode-language-pack-qps-ploc@25.1.2':
- resolution: {integrity: sha512-IFjoqrSuPtIFWb+KlPT6PFWKszzNX+TCD9drgCV6AigvBO/xfGL3QwHB68l/DLbmDbohOz4Xdkutv20wuENAeA==}
-
- '@codingame/monaco-vscode-language-pack-ru@25.1.2':
- resolution: {integrity: sha512-0uDAeXO+GllKUPhJzP893rlDhlFV1IwCu/515rBdcyegt48iGm/xAgj26V90hNz8hmB6EuM/7d8MFeklbiIpYA==}
-
- '@codingame/monaco-vscode-language-pack-tr@25.1.2':
- resolution: {integrity: sha512-MJhHxDyJEiuVLQ9+jb8MnnN9lsbJOjJjMswVCeJ7v/Q/msAhq25QYUfn0DbOIzESJE1f7crffRb5e38XP8sYWA==}
-
- '@codingame/monaco-vscode-language-pack-zh-hans@25.1.2':
- resolution: {integrity: sha512-c7MMrhnSLb59NxpAa8nVy9aIbxy4gVYrCpDMq8W380LOaXTYb7nueTrw8QJ5QbJBNi2P2KZoGkn2BlONuBtJJg==}
-
- '@codingame/monaco-vscode-language-pack-zh-hant@25.1.2':
- resolution: {integrity: sha512-ARedFTM6JCluoPLJqkBcTJaQFdJNcN86OX6B8/NMApIPrnSIAfanMndpyilt8XjzUG6IH22cypR+DAlEjf48cA==}
-
- '@codingame/monaco-vscode-languages-service-override@25.1.2':
- resolution: {integrity: sha512-ipuS1V3NgXDkNrj0vBcgMBFnqo+19HVsZjjFGfPFH3x0uptP9aiWWK42wtDK3Qbu4teSjHL7WnSLrmw94rplWw==}
-
- '@codingame/monaco-vscode-layout-service-override@25.1.2':
- resolution: {integrity: sha512-SxBGcMK3RgkGtUn7ZDl7dCoyNW0CWFQ/bfSRYUY06A0IA4JNS5jq1lhof57d0WXewm+5l8w1Spr/vMsfx1c9ig==}
-
- '@codingame/monaco-vscode-lifecycle-service-override@25.1.2':
- resolution: {integrity: sha512-H3C26i654WU8mbPM6GUiCh5YAQbhlm6sC32mHVANUJpR1968pS66UFB5JTD4rslH5GOPzO9TUNPlvrI2g3PE8Q==}
-
- '@codingame/monaco-vscode-localization-service-override@25.1.2':
- resolution: {integrity: sha512-QLj62A8XDOIQW3KjsZlNxs+sfsNNHYxWMjQMwZu/y2Vw3IIHGly2Lpn4t4SFbeaBHJQJy4i5s7NpzlbF9MbEzQ==}
-
- '@codingame/monaco-vscode-log-service-override@25.1.2':
- resolution: {integrity: sha512-OoileAUtPAJ0j3RW31DFSxtOipy0EcFq+iIXEdGvoRlsQPZJ3o9ayjf1JvCXpxUjJ3QkmvQVhXsWNUFREjEFLg==}
-
- '@codingame/monaco-vscode-model-service-override@25.1.2':
- resolution: {integrity: sha512-MGz/eV1CxibLvnl6WzK6idUHJCXJOVepJvKM6Trkv5050vRe+f/o1TjCiG8PaznAypYqZvnwkTG0B7/OTizCpQ==}
-
- '@codingame/monaco-vscode-monarch-service-override@25.1.2':
- resolution: {integrity: sha512-akyNHOJQRS7YHyk6kf0Encnkt+shlR+bIB84UJRUHFgSeF8s5gkDkQuFJph0YeUDWJWat+yBLUSZx2nHomdbHQ==}
-
- '@codingame/monaco-vscode-outline-service-override@25.1.2':
- resolution: {integrity: sha512-J+rigDc5lEOvyBniYCBh0HL6KrASN5g5FIgWm+q65ZNFcuH1itXBAr23HQcYt19ZtVC+xHNK+K5mkZ+NPLXGxA==}
-
- '@codingame/monaco-vscode-preferences-service-override@25.1.2':
- resolution: {integrity: sha512-lIci0vMZ5YJdN+H0pKE12t//wdzfz1zZ8RTRvkmLFEvmk8tUvid/0iMFHWoqBXmdXxmKr3kDLPKB63E0TJX5rQ==}
-
- '@codingame/monaco-vscode-python-default-extension@25.1.2':
- resolution: {integrity: sha512-2W5pHtn2yOayGr7lcwQFNlbkyziaM7yK1Gq5cxFKXYgsReHTRAx+SN5xMachkms/mSnulH2rww+HbDW2zRHf0A==}
-
- '@codingame/monaco-vscode-quickaccess-service-override@25.1.2':
- resolution: {integrity: sha512-7IIrXnwHiF3w9d9p9kspEUz/LCibMLUztmRpGdZQfFtWBJw043q7rk8V1O42KdXr1hVg9IR5vfffwjy9nbiiUg==}
-
- '@codingame/monaco-vscode-remote-agent-service-override@25.1.2':
- resolution: {integrity: sha512-R4hUjflcD7VqizIXCn95awDF+GwQ//Y+1xxHEqIxPh9KzCKViV4XdZbkHg0/IBwrMzOiTo2azpVUOpfyvwc7Lg==}
-
- '@codingame/monaco-vscode-search-result-default-extension@25.1.2':
- resolution: {integrity: sha512-fycVi25zmZrs7TI/DiLNNeGfFdx5xx/X+Ur3n09It88+akR9+CKk4Rg9+ezQ3k8FgPV3LXNLi+/ki/jX9/S6OQ==}
-
- '@codingame/monaco-vscode-search-service-override@25.1.2':
- resolution: {integrity: sha512-Dqw0MclN+kOvFQOV1Ihx4Z1L3u8JMvGWiex7mfU1BOIO6vY7H9C2mtPbzL2iBxqbC2CGxfq2X7/cc1LnhDth2w==}
-
- '@codingame/monaco-vscode-secret-storage-service-override@25.1.2':
- resolution: {integrity: sha512-ljVVQjzPDbEq3j0Gob0i7TsOzjAjEpO5QuNTuzpb7vYJkp1dXs0rQiUJZ0nyCKmk8uZX6hGZZv1a7ZOatgmZJg==}
-
- '@codingame/monaco-vscode-standalone-json-language-features@25.1.2':
- resolution: {integrity: sha512-d07FBwwv8IhJQRJ9DsHoMrPX23/6S05SS1qDx8Kr1s8Agg+yFI2OEZIcG40ZrMRcx2rdzWb2EQjt9hG+l6PCbg==}
-
- '@codingame/monaco-vscode-standalone-typescript-language-features@25.1.2':
- resolution: {integrity: sha512-G2oKD5jGzrD3vYKfZZF54DgtW3SMmA0qlttaWR5Vu0eSAvyghXp1mdvds3u7deXY/KRL8X34vanT7aNtB9wosA==}
-
- '@codingame/monaco-vscode-storage-service-override@25.1.2':
- resolution: {integrity: sha512-3KY8CcuWrGl0KSKc7pQh8oN5c+LRxW/tbtQ/oVoKr4xE8/deu44Tu4ZV9tE1KqGVySL7lcsVsPuq8T66EBnaVw==}
-
- '@codingame/monaco-vscode-terminal-service-override@25.1.2':
- resolution: {integrity: sha512-cnyadggTBHBCzZRssRA8LIGI2/Ne4+og6j7d24wFzAW6DwRwCiMhBh72dbpNqzVDyl7NqpSbnr7tDLPfZLqH/A==}
-
- '@codingame/monaco-vscode-testing-service-override@25.1.2':
- resolution: {integrity: sha512-1RbF5yfRqlLVAq9C02w+euV36oCIlVX5bFHydpxHJECc9c4eYg3AOVS4s9Bba9HZ/E/sZCezILsLnnBDMr4pcA==}
-
- '@codingame/monaco-vscode-textmate-service-override@25.1.2':
- resolution: {integrity: sha512-AL0FtSQBW+1vtoXYQvUqB2hfWojpK73Kq/n6KuNXxjLF/XBJ5FpeeZDfrBfwhWPPoHuBTsaFUCQy4L8xQgbVlA==}
-
- '@codingame/monaco-vscode-theme-defaults-default-extension@25.1.2':
- resolution: {integrity: sha512-0vTMFiC89YSDSmjFckuQBUKwRuFNtsILNO3k0PBiSLN/MW+VDItjJpiVLXC42+rUWlGgY2lYxOneGVa5slCV1w==}
-
- '@codingame/monaco-vscode-theme-service-override@25.1.2':
- resolution: {integrity: sha512-hsTwl6YYTiheFuQMmCmiEGLIdIdgYaf8Z85XWyxe6YgPtDaYGnp0fGSOXKA9/bf0JtuynzoLKtUUfDupK/A7Tw==}
-
- '@codingame/monaco-vscode-typescript-basics-default-extension@25.1.2':
- resolution: {integrity: sha512-tGpGAvVsINHodqPtjZDEOkjXAKLWiCr90P/dNC7W8XghxUHzQHqYmAunkkcJXWcRluaXcNBvPGplm1GaQfn3lQ==}
-
- '@codingame/monaco-vscode-typescript-language-features-default-extension@25.1.2':
- resolution: {integrity: sha512-bifrfWg+392NVb5LZ9k5UlhlW9xyNTaHhgh/ZxmOBpjbkaiB80VnpS/SV0zF8R0IZYtDF+Be7PpVWnmrEIw0JA==}
-
- '@codingame/monaco-vscode-view-banner-service-override@25.1.2':
- resolution: {integrity: sha512-zhujHd1PQ6rRXsC2OQGrx/282G2v3lpPFl9heDFGKzpdj5119SgcW+B9p/MwJ1qF3LJpuRRgefNiQtqC/KT1eA==}
-
- '@codingame/monaco-vscode-view-common-service-override@25.1.2':
- resolution: {integrity: sha512-4Po/YaHUvVf4VmhVCZmM2lc/flOptiWSM140bIRNpMcfH0VwihYg15CcDeu1Oc+6DaauzsG3u59GtEvlMmJ9Zw==}
-
- '@codingame/monaco-vscode-view-status-bar-service-override@25.1.2':
- resolution: {integrity: sha512-Jp9ytLaWZ6evabTPtG3Mu3dFx+7WTIPz69BsGpl9PnU0kiSWUqQhPSob0Jz7E2qmMj0ZcNv2Wqvm6bMBu5OyrA==}
-
- '@codingame/monaco-vscode-view-title-bar-service-override@25.1.2':
- resolution: {integrity: sha512-NVYtTAFR35NV/Fx7tSlbASicvpAjK5A14fmxF7/LJJN8ZmzhA/P3Y+UzhqOQl6/VcPV4pAMU0Z7Sicgwbn37dw==}
-
- '@codingame/monaco-vscode-views-service-override@25.1.2':
- resolution: {integrity: sha512-LfzlztsvobdP5L5EvJ/rqSEgy5fEVmrkMqRteuhEtNGd4hnmdBoX8W7BNMBPff6d4NfCK74pGHJF57RyT4Iixg==}
-
- '@codingame/monaco-vscode-workbench-service-override@25.1.2':
- resolution: {integrity: sha512-2LMHr+na03FhOAaXpIGmamq9hf7e4wt2kULn8NqNZRd3i+0v1tx/TSSjGhsA5EkrNrFD7CMSoXayBq8tgpCq/A==}
-
- '@codingame/monaco-vscode-xterm-addons-common@25.1.2':
- resolution: {integrity: sha512-4ysdUaH8Biv/vy/iVCgN+fSam3yI7WF8QdC5AYlT8uyS86AXIQe7p5aMB2gTfZsg6OpPMvlJ0pVe7Rdgh3cMBQ==}
-
- '@codingame/monaco-vscode-xterm-common@25.1.2':
- resolution: {integrity: sha512-QqEvo3epcVs5EAOq7xxBfCW2AUxaO89+WmZCYSUdhuk/1tQ5Jeq0w4TVo7zCjIFaVJyP/N1bmBXgcM7Y4PYWBw==}
-
- '@typefox/monaco-editor-react@7.7.0':
- resolution: {integrity: sha512-gbDgCHExBLV22S3QPVu8v2fTtyQdqQ8RItTvROlZF4KJ79DyqhkkviNN7UnMuelFoPCS6QiwvDbMyJ4OBxt5WA==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
+ '@codingame/monaco-vscode-quickaccess-service-override@34.0.1':
+ resolution: {integrity: sha512-6IONyHH5wJHCaZ7CKTL2iz4DpoKmj2SmsHEAjE59OtcgLhqrCYhqBFb/dbse97HMbfYbvQyiMZb/kH3cJf89jQ==}
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
+ '@vscode/diff@0.0.2-7':
+ resolution: {integrity: sha512-zGPIPeUAmQs79u7g6FTLmhlXFIocUTtuHYmCV5lRZf6vlDk7SWEOpBlYY6SsShC3TB/lm2KxXMj9tP32YOPrhg==}
+
'@vscode/iconv-lite-umd@0.7.1':
resolution: {integrity: sha512-tK6k0DXFHW7q5+GGuGZO+phpAqpxO4WXl+BLc/8/uOk3RsM2ssAL3CQUQDb1TGfwltjsauhN6S4ghYZzs4sPFw==}
- '@vscode/l10n@0.0.18':
- resolution: {integrity: sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==}
-
- '@xterm/addon-clipboard@0.3.0-beta.97':
- resolution: {integrity: sha512-8+1tM4WD1MnQccYc/+Kbo+OeptIEf0rn5az6AUw+lnNHPlJa71Xj8KQNBM5f8sns7uoFZzBxpse8SOTttVefBw==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-image@0.10.0-beta.97':
- resolution: {integrity: sha512-O5P/QFVAQRuZ8sKj2dT6sTyHz/l98g+1tKKqDRZYVAobL6elbAMsh3UL/eQBWfDrBfD23XZ93UcgOFCF62YXuQ==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-ligatures@0.11.0-beta.97':
- resolution: {integrity: sha512-r2WX1JHJBO9tiVzjnHVjD38IOMQI5m7mzZt+2cDAwJTDoFJO6WktxUxX8QV90mCbXLFS6jwX+6G2tzSPKLFsNg==}
- engines: {node: '>8.0.0'}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-progress@0.3.0-beta.97':
- resolution: {integrity: sha512-bSBb6gBN8Y/RsVMlD1AFCSydqnM9jF0s5USu1Cl3ZJqonC62LnM0BnzBz3LdD21yTLnW38Ogk5//uyA4F5ZNsA==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-search@0.17.0-beta.97':
- resolution: {integrity: sha512-PL2n3OJmlcTTVOm2SAtLuR9XB/qz/Y3TNtq8ST+PzSIfeXepy6VveyimWtCUBYrTamKMTuXWe5A5dopmE15RMQ==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-serialize@0.15.0-beta.97':
- resolution: {integrity: sha512-FWEEQBNVGWfYaaOrCehB2mrc3ZHw6OtAM6Hw3WY+0BuVnK9k1i5+LG4rHDzSjUFyEHrig9ROdgzhOHWpGnRa0g==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-unicode11@0.10.0-beta.97':
- resolution: {integrity: sha512-Dd/Tei9UOtHR9rMMsy2NQ+9ZHfRE+FRC3qxTMDartpsXRbxtvzb3p4a358ivgwuSNIgCyRAELXzbFcWWDa73Ng==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.97
-
- '@xterm/addon-webgl@0.20.0-beta.104':
- resolution: {integrity: sha512-S9zSxwnLXeF8RK1HZXLIdqZELF83ZHVyFJtqNj6b9SdjVMSFrQpa1wwWuJR1McW54hShX3aC9zLj1/1RKiwAxQ==}
- peerDependencies:
- '@xterm/xterm': ^6.1.0-beta.105
-
- '@xterm/xterm@6.1.0-beta.97':
- resolution: {integrity: sha512-YEn7p+wS2qQ1dyvIXHxmjxmVc/Y1Xv+gZNHayJMAH4FdoxP9CCrhsvpNjBwSynft5t0BWD7FqqsNXNei01oxKw==}
-
- accepts@2.0.0:
- resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
- engines: {node: '>= 0.6'}
-
- balanced-match@1.0.2:
- resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
-
- body-parser@2.2.2:
- resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==}
- engines: {node: '>=18'}
-
- brace-expansion@2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
-
- bytes@3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
- engines: {node: '>= 0.8'}
-
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
- engines: {node: '>= 0.4'}
-
- call-bound@1.0.3:
- resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
- engines: {node: '>= 0.4'}
-
- chevrotain-allstar@0.3.1:
- resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==}
- peerDependencies:
- chevrotain: ^11.0.0
-
- chevrotain@11.1.1:
- resolution: {integrity: sha512-f0yv5CPKaFxfsPTBzX7vGuim4oIC1/gcS7LUGdBSwl2dU6+FON6LVUksdOo1qJjoUvXNn45urgh8C+0a24pACQ==}
-
- content-disposition@1.0.0:
- resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==}
- engines: {node: '>= 0.6'}
-
- content-type@1.0.5:
- resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
- engines: {node: '>= 0.6'}
-
- cookie-signature@1.2.2:
- resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
- engines: {node: '>=6.6.0'}
-
- cookie@0.7.1:
- resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
- engines: {node: '>= 0.6'}
-
- core-util-is@1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
-
- cors@2.8.6:
- resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==}
- engines: {node: '>= 0.10'}
-
- debug@4.4.3:
- resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- depd@2.0.0:
- resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
- engines: {node: '>= 0.8'}
-
- dompurify@3.3.1:
- resolution: {integrity: sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==}
-
- dunder-proto@1.0.1:
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
- engines: {node: '>= 0.4'}
-
- ee-first@1.1.1:
- resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
-
- encodeurl@2.0.0:
- resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
- engines: {node: '>= 0.8'}
-
- es-define-property@1.0.1:
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
- engines: {node: '>= 0.4'}
-
- es-errors@1.3.0:
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
- engines: {node: '>= 0.4'}
-
- es-object-atoms@1.1.1:
- resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
- engines: {node: '>= 0.4'}
-
- escape-html@1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
-
- etag@1.8.1:
- resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
- engines: {node: '>= 0.6'}
-
- express@5.2.1:
- resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
- engines: {node: '>= 18'}
-
- finalhandler@2.1.0:
- resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==}
- engines: {node: '>= 0.8'}
-
- forwarded@0.2.0:
- resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
- engines: {node: '>= 0.6'}
-
- fresh@2.0.0:
- resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
- engines: {node: '>= 0.8'}
-
- fsevents@2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
-
- function-bind@1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
-
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
- engines: {node: '>= 0.4'}
-
- get-proto@1.0.1:
- resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
- engines: {node: '>= 0.4'}
-
- gopd@1.2.0:
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
- engines: {node: '>= 0.4'}
-
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
- engines: {node: '>= 0.4'}
-
- hasown@2.0.2:
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
- engines: {node: '>= 0.4'}
-
- http-errors@2.0.1:
- resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
- engines: {node: '>= 0.8'}
-
- iconv-lite@0.7.2:
- resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
- engines: {node: '>=0.10.0'}
-
- immediate@3.0.6:
- resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
-
- inherits@2.0.4:
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
-
- ipaddr.js@1.9.1:
- resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
- engines: {node: '>= 0.10'}
-
- is-promise@4.0.0:
- resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
-
- isarray@1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
-
- js-base64@3.7.7:
- resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
+ dompurify@3.4.9:
+ resolution: {integrity: sha512-4dPSRMRDqHvs0V4YDFCsaIZo4if5u0xM+llyxiM2fwuZFdKArUBAF3VtI2+n8NKg9P870WMdYk0UhqQNoWXbfQ==}
jschardet@3.1.4:
resolution: {integrity: sha512-/kmVISmrwVwtyYU40iQUOp3SUPk2dhNCMsZBQX0R1/jZ8maaXJ/oZIzUOiyOqcgtLnETFKYChbJ5iDC/eWmFHg==}
engines: {node: '>=0.1.90'}
- jsonc-parser@3.3.1:
- resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
-
- jszip@3.10.1:
- resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
-
- langium@4.2.0:
- resolution: {integrity: sha512-SoXTYrTyA9x0CjVoguZfB9NIbj2RwQ7KpltHyJwB7jyzbnfHkqw5Alf9A1JtIqouT7fZv4xMCCy+7CoIYGV65w==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
-
- lie@3.3.0:
- resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
-
- lodash-es@4.17.21:
- resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
-
- lodash-es@4.17.23:
- resolution: {integrity: sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==}
-
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
marked@14.0.0:
resolution: {integrity: sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==}
engines: {node: '>= 18'}
hasBin: true
- math-intrinsics@1.1.0:
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
- engines: {node: '>= 0.4'}
-
- media-typer@1.1.0:
- resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
- engines: {node: '>= 0.8'}
-
- merge-descriptors@2.0.0:
- resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
- engines: {node: '>=18'}
-
- mime-db@1.54.0:
- resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
- engines: {node: '>= 0.6'}
-
- mime-types@3.0.1:
- resolution: {integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==}
- engines: {node: '>= 0.6'}
-
- minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
- engines: {node: '>=10'}
-
- monaco-languageclient-examples@2026.2.1:
- resolution: {integrity: sha512-F0hS2HKcwIBRcofl3lw0zN8wAv8PoGHNlixi2ZdxMk7ZwRHY/Bhgehgg+xEGvGyvgfYg1UseW5ilOH+dATOmtg==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
-
- monaco-languageclient@10.7.0:
- resolution: {integrity: sha512-oA5cOFixkF4bspVL2zMSn48LvlNR/Cu3vJ8MCVam3PdjobSULGgHtOASuZIi3FgWK42X1z8/6hrG0LCjvNu1Hw==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
-
- ms@2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
-
- negotiator@1.0.0:
- resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
- engines: {node: '>= 0.6'}
-
- object-assign@4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
-
- object-inspect@1.13.4:
- resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
- engines: {node: '>= 0.4'}
-
- on-finished@2.4.1:
- resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
- engines: {node: '>= 0.8'}
-
- once@1.4.0:
- resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
-
- opentype.js@0.8.0:
- resolution: {integrity: sha512-FQHR4oGP+a0m/f6yHoRpBOIbn/5ZWxKd4D/djHVJu8+KpBTYrJda0b7mLcgDEMWXE9xBCJm+qb0yv6FcvPjukg==}
- hasBin: true
-
- pako@1.0.11:
- resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
-
- parseurl@1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
- engines: {node: '>= 0.8'}
-
- path-to-regexp@8.2.0:
- resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
- engines: {node: '>=16'}
-
- process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
-
- proxy-addr@2.0.7:
- resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
- engines: {node: '>= 0.10'}
-
- pyright@1.1.408:
- resolution: {integrity: sha512-N61pxaLLCsPcUuPPHMNIrGoZgGBgrbjBX5UqkaT5UV8NVZdL7ExsO6N3ectv1DzAUsLOzdlyqoYtX76u8eF4YA==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- qs@6.14.1:
- resolution: {integrity: sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==}
- engines: {node: '>=0.6'}
-
- range-parser@1.2.1:
- resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
- engines: {node: '>= 0.6'}
-
- raw-body@3.0.2:
- resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
- engines: {node: '>= 0.10'}
-
- react-dom@19.2.4:
- resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
- peerDependencies:
- react: ^19.2.4
-
- react@19.2.4:
- resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
- engines: {node: '>=0.10.0'}
-
- readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
-
- request-light@0.8.0:
- resolution: {integrity: sha512-bH6E4PMmsEXYrLX6Kr1vu+xI3HproB1vECAwaPSJeroLE1kpWE3HR27uB4icx+6YORu1ajqBJXxuedv8ZQg5Lw==}
-
- router@2.2.0:
- resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
- engines: {node: '>= 18'}
-
- safe-buffer@5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
-
- safe-buffer@5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
-
- safer-buffer@2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
-
- scheduler@0.27.0:
- resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
-
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
- engines: {node: '>=10'}
- hasBin: true
-
- send@1.2.0:
- resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==}
- engines: {node: '>= 18'}
-
- serve-static@2.2.0:
- resolution: {integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==}
- engines: {node: '>= 18'}
-
- setimmediate@1.0.5:
- resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
-
- setprototypeof@1.2.0:
- resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
-
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
- engines: {node: '>= 0.4'}
-
- side-channel-map@1.0.1:
- resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
- engines: {node: '>= 0.4'}
-
- side-channel-weakmap@1.0.2:
- resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
- engines: {node: '>= 0.4'}
-
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
- engines: {node: '>= 0.4'}
-
- statuses@2.0.2:
- resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
- engines: {node: '>= 0.8'}
-
- string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
-
- tiny-inflate@1.0.3:
- resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
-
- toidentifier@1.0.1:
- resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
- engines: {node: '>=0.6'}
-
- type-is@2.0.1:
- resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
- engines: {node: '>= 0.6'}
-
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
+ typescript@6.0.3:
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
engines: {node: '>=14.17'}
hasBin: true
- unpipe@1.0.0:
- resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
- engines: {node: '>= 0.8'}
-
- util-deprecate@1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
-
- vary@1.1.2:
- resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
- engines: {node: '>= 0.8'}
-
- vscode-json-languageservice@5.3.11:
- resolution: {integrity: sha512-WYS72Ymria3dn8ZbjtBbt5K71m05wY1Q6hpXV5JxUT0q75Ts0ljLmnZJAVpx8DjPgYbFD+Z8KHpWh2laKLUCtQ==}
-
- vscode-json-languageservice@5.7.1:
- resolution: {integrity: sha512-sMK2F8p7St0lJCr/4IfbQRoEUDUZRR7Ud0IiSl8I/JtN+m9Gv+FJlNkSAYns2R7Ebm/PKxqUuWYOfBej/rAdBQ==}
-
- vscode-jsonrpc@8.2.0:
- resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==}
- engines: {node: '>=14.0.0'}
-
- vscode-jsonrpc@8.2.1:
- resolution: {integrity: sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==}
- engines: {node: '>=14.0.0'}
-
- vscode-languageclient@9.0.1:
- resolution: {integrity: sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==}
- engines: {vscode: ^1.82.0}
-
- vscode-languageserver-protocol@3.17.5:
- resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==}
-
- vscode-languageserver-textdocument@1.0.12:
- resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
-
- vscode-languageserver-types@3.17.5:
- resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==}
-
- vscode-languageserver@9.0.1:
- resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==}
- hasBin: true
-
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
-
- vscode-uri@3.1.0:
- resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
-
- vscode-ws-jsonrpc@3.5.0:
- resolution: {integrity: sha512-13ZDy7Od4AfEPK2HIfY3DtyRi4FVsvFql1yobVJrpIoHOKGGJpIjVvIJpMxkrHzCZzWlYlg+WEu2hrYkCTvM0Q==}
- engines: {node: '>=20.10.0', npm: '>=10.2.3'}
-
- wrappy@1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
-
- ws@8.19.0:
- resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
- wtd-core@4.0.1:
- resolution: {integrity: sha512-q6sV6Slw47bwlhwbztot0MklWaVzywUAi0wAKWwOuL/LTY4IpVFgoHQ+cnlhG2ZUms/OkJUhyfhsfoHNYkKjzA==}
-
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
snapshots:
- '@chevrotain/cst-dts-gen@11.1.1':
+ '@codingame/monaco-vscode-api@34.0.1':
dependencies:
- '@chevrotain/gast': 11.1.1
- '@chevrotain/types': 11.1.1
- lodash-es: 4.17.23
-
- '@chevrotain/gast@11.1.1':
- dependencies:
- '@chevrotain/types': 11.1.1
- lodash-es: 4.17.23
-
- '@chevrotain/regexp-to-ast@11.1.1': {}
-
- '@chevrotain/types@11.1.1': {}
-
- '@chevrotain/utils@11.1.1': {}
-
- '@codingame/monaco-vscode-api@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-base-service-override': 25.1.2
- '@codingame/monaco-vscode-environment-service-override': 25.1.2
- '@codingame/monaco-vscode-extensions-service-override': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
- '@codingame/monaco-vscode-host-service-override': 25.1.2
- '@codingame/monaco-vscode-layout-service-override': 25.1.2
- '@codingame/monaco-vscode-quickaccess-service-override': 25.1.2
+ '@codingame/monaco-vscode-base-service-override': 34.0.1
+ '@codingame/monaco-vscode-environment-service-override': 34.0.1
+ '@codingame/monaco-vscode-extensions-service-override': 34.0.1
+ '@codingame/monaco-vscode-files-service-override': 34.0.1
+ '@codingame/monaco-vscode-host-service-override': 34.0.1
+ '@codingame/monaco-vscode-layout-service-override': 34.0.1
+ '@codingame/monaco-vscode-quickaccess-service-override': 34.0.1
+ '@vscode/diff': 0.0.2-7
'@vscode/iconv-lite-umd': 0.7.1
- dompurify: 3.3.1
+ dompurify: 3.4.9
jschardet: 3.1.4
marked: 14.0.0
- '@codingame/monaco-vscode-base-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-bulk-edit-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-configuration-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-cpp-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-debug-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-editor-api@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-editor-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-environment-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-explorer-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-extension-api@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-extensions-service-override': 25.1.2
-
- '@codingame/monaco-vscode-extensions-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-files-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-groovy-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-host-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-java-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-javascript-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-json-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-json-language-features-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-keybindings-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-language-pack-cs@25.1.2':
+ '@codingame/monaco-vscode-base-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-de@25.1.2':
+ '@codingame/monaco-vscode-environment-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-es@25.1.2':
+ '@codingame/monaco-vscode-extension-api@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
+ '@codingame/monaco-vscode-extensions-service-override': 34.0.1
- '@codingame/monaco-vscode-language-pack-fr@25.1.2':
+ '@codingame/monaco-vscode-extensions-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
+ '@codingame/monaco-vscode-files-service-override': 34.0.1
- '@codingame/monaco-vscode-language-pack-it@25.1.2':
+ '@codingame/monaco-vscode-files-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-ja@25.1.2':
+ '@codingame/monaco-vscode-host-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-ko@25.1.2':
+ '@codingame/monaco-vscode-layout-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-pl@25.1.2':
+ '@codingame/monaco-vscode-quickaccess-service-override@34.0.1':
dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@codingame/monaco-vscode-api': 34.0.1
- '@codingame/monaco-vscode-language-pack-pt-br@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@types/trusted-types@2.0.7':
+ optional: true
- '@codingame/monaco-vscode-language-pack-qps-ploc@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@vscode/diff@0.0.2-7': {}
- '@codingame/monaco-vscode-language-pack-ru@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ '@vscode/iconv-lite-umd@0.7.1': {}
- '@codingame/monaco-vscode-language-pack-tr@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
+ dompurify@3.4.9:
+ optionalDependencies:
+ '@types/trusted-types': 2.0.7
- '@codingame/monaco-vscode-language-pack-zh-hans@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-language-pack-zh-hant@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-languages-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-layout-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-lifecycle-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-localization-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-log-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-environment-service-override': 25.1.2
-
- '@codingame/monaco-vscode-model-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-monarch-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-outline-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-preferences-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-python-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-quickaccess-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-remote-agent-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-environment-service-override': 25.1.2
-
- '@codingame/monaco-vscode-search-result-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-search-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-secret-storage-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-standalone-json-language-features@25.1.2':
- dependencies:
- jsonc-parser: 3.3.1
- monaco-editor: '@codingame/monaco-vscode-editor-api@25.1.2'
- vscode-json-languageservice: 5.3.11
- vscode-languageserver-textdocument: 1.0.12
- vscode-languageserver-types: 3.17.5
- vscode-uri: 3.0.8
-
- '@codingame/monaco-vscode-standalone-typescript-language-features@25.1.2':
- dependencies:
- monaco-editor: '@codingame/monaco-vscode-editor-api@25.1.2'
-
- '@codingame/monaco-vscode-storage-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-terminal-service-override@25.1.2(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-xterm-addons-common': 25.1.2(@xterm/xterm@6.1.0-beta.97)
- '@codingame/monaco-vscode-xterm-common': 25.1.2
- transitivePeerDependencies:
- - '@xterm/xterm'
-
- '@codingame/monaco-vscode-testing-service-override@25.1.2(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-terminal-service-override': 25.1.2(@xterm/xterm@6.1.0-beta.97)
- '@codingame/monaco-vscode-xterm-addons-common': 25.1.2(@xterm/xterm@6.1.0-beta.97)
- transitivePeerDependencies:
- - '@xterm/xterm'
-
- '@codingame/monaco-vscode-textmate-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-theme-defaults-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-theme-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
-
- '@codingame/monaco-vscode-typescript-basics-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-typescript-language-features-default-extension@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-view-banner-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-view-common-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-bulk-edit-service-override': 25.1.2
-
- '@codingame/monaco-vscode-view-status-bar-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-view-title-bar-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
-
- '@codingame/monaco-vscode-views-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-keybindings-service-override': 25.1.2
- '@codingame/monaco-vscode-layout-service-override': 25.1.2
- '@codingame/monaco-vscode-quickaccess-service-override': 25.1.2
- '@codingame/monaco-vscode-view-common-service-override': 25.1.2
-
- '@codingame/monaco-vscode-workbench-service-override@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-keybindings-service-override': 25.1.2
- '@codingame/monaco-vscode-quickaccess-service-override': 25.1.2
- '@codingame/monaco-vscode-view-banner-service-override': 25.1.2
- '@codingame/monaco-vscode-view-common-service-override': 25.1.2
- '@codingame/monaco-vscode-view-status-bar-service-override': 25.1.2
- '@codingame/monaco-vscode-view-title-bar-service-override': 25.1.2
-
- '@codingame/monaco-vscode-xterm-addons-common@25.1.2(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@xterm/addon-clipboard': 0.3.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-image': 0.10.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-ligatures': 0.11.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-progress': 0.3.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-search': 0.17.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-serialize': 0.15.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-unicode11': 0.10.0-beta.97(@xterm/xterm@6.1.0-beta.97)
- '@xterm/addon-webgl': 0.20.0-beta.104(@xterm/xterm@6.1.0-beta.97)
- transitivePeerDependencies:
- - '@xterm/xterm'
-
- '@codingame/monaco-vscode-xterm-common@25.1.2':
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-xterm-addons-common': 25.1.2(@xterm/xterm@6.1.0-beta.97)
- '@xterm/xterm': 6.1.0-beta.97
-
- '@typefox/monaco-editor-react@7.7.0':
- dependencies:
- '@codingame/monaco-vscode-editor-api': 25.1.2
- '@codingame/monaco-vscode-extension-api': 25.1.2
- react: 19.2.4
- vscode: '@codingame/monaco-vscode-extension-api@25.1.2'
-
- '@types/trusted-types@2.0.7':
- optional: true
-
- '@vscode/iconv-lite-umd@0.7.1': {}
-
- '@vscode/l10n@0.0.18': {}
-
- '@xterm/addon-clipboard@0.3.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
- js-base64: 3.7.7
-
- '@xterm/addon-image@0.10.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/addon-ligatures@0.11.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
- lru-cache: 6.0.0
- opentype.js: 0.8.0
-
- '@xterm/addon-progress@0.3.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/addon-search@0.17.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/addon-serialize@0.15.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/addon-unicode11@0.10.0-beta.97(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/addon-webgl@0.20.0-beta.104(@xterm/xterm@6.1.0-beta.97)':
- dependencies:
- '@xterm/xterm': 6.1.0-beta.97
-
- '@xterm/xterm@6.1.0-beta.97': {}
-
- accepts@2.0.0:
- dependencies:
- mime-types: 3.0.1
- negotiator: 1.0.0
-
- balanced-match@1.0.2: {}
-
- body-parser@2.2.2:
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 4.4.3
- http-errors: 2.0.1
- iconv-lite: 0.7.2
- on-finished: 2.4.1
- qs: 6.14.1
- raw-body: 3.0.2
- type-is: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
- brace-expansion@2.0.1:
- dependencies:
- balanced-match: 1.0.2
-
- bytes@3.1.2: {}
-
- call-bind-apply-helpers@1.0.1:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
-
- call-bound@1.0.3:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.7
-
- chevrotain-allstar@0.3.1(chevrotain@11.1.1):
- dependencies:
- chevrotain: 11.1.1
- lodash-es: 4.17.21
-
- chevrotain@11.1.1:
- dependencies:
- '@chevrotain/cst-dts-gen': 11.1.1
- '@chevrotain/gast': 11.1.1
- '@chevrotain/regexp-to-ast': 11.1.1
- '@chevrotain/types': 11.1.1
- '@chevrotain/utils': 11.1.1
- lodash-es: 4.17.23
-
- content-disposition@1.0.0:
- dependencies:
- safe-buffer: 5.2.1
-
- content-type@1.0.5: {}
-
- cookie-signature@1.2.2: {}
-
- cookie@0.7.1: {}
-
- core-util-is@1.0.3: {}
-
- cors@2.8.6:
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
-
- debug@4.4.3:
- dependencies:
- ms: 2.1.3
-
- depd@2.0.0: {}
-
- dompurify@3.3.1:
- optionalDependencies:
- '@types/trusted-types': 2.0.7
-
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
-
- ee-first@1.1.1: {}
-
- encodeurl@2.0.0: {}
-
- es-define-property@1.0.1: {}
-
- es-errors@1.3.0: {}
-
- es-object-atoms@1.1.1:
- dependencies:
- es-errors: 1.3.0
-
- escape-html@1.0.3: {}
-
- etag@1.8.1: {}
-
- express@5.2.1:
- dependencies:
- accepts: 2.0.0
- body-parser: 2.2.2
- content-disposition: 1.0.0
- content-type: 1.0.5
- cookie: 0.7.1
- cookie-signature: 1.2.2
- debug: 4.4.3
- depd: 2.0.0
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- finalhandler: 2.1.0
- fresh: 2.0.0
- http-errors: 2.0.1
- merge-descriptors: 2.0.0
- mime-types: 3.0.1
- on-finished: 2.4.1
- once: 1.4.0
- parseurl: 1.3.3
- proxy-addr: 2.0.7
- qs: 6.14.1
- range-parser: 1.2.1
- router: 2.2.0
- send: 1.2.0
- serve-static: 2.2.0
- statuses: 2.0.2
- type-is: 2.0.1
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
- finalhandler@2.1.0:
- dependencies:
- debug: 4.4.3
- encodeurl: 2.0.0
- escape-html: 1.0.3
- on-finished: 2.4.1
- parseurl: 1.3.3
- statuses: 2.0.2
- transitivePeerDependencies:
- - supports-color
-
- forwarded@0.2.0: {}
-
- fresh@2.0.0: {}
-
- fsevents@2.3.3:
- optional: true
-
- function-bind@1.1.2: {}
-
- get-intrinsic@1.2.7:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.1.1
- function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
- hasown: 2.0.2
- math-intrinsics: 1.1.0
-
- get-proto@1.0.1:
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.1.1
-
- gopd@1.2.0: {}
-
- has-symbols@1.1.0: {}
-
- hasown@2.0.2:
- dependencies:
- function-bind: 1.1.2
-
- http-errors@2.0.1:
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.2
- toidentifier: 1.0.1
-
- iconv-lite@0.7.2:
- dependencies:
- safer-buffer: 2.1.2
-
- immediate@3.0.6: {}
-
- inherits@2.0.4: {}
-
- ipaddr.js@1.9.1: {}
-
- is-promise@4.0.0: {}
-
- isarray@1.0.0: {}
-
- js-base64@3.7.7: {}
-
- jschardet@3.1.4: {}
-
- jsonc-parser@3.3.1: {}
-
- jszip@3.10.1:
- dependencies:
- lie: 3.3.0
- pako: 1.0.11
- readable-stream: 2.3.8
- setimmediate: 1.0.5
-
- langium@4.2.0:
- dependencies:
- chevrotain: 11.1.1
- chevrotain-allstar: 0.3.1(chevrotain@11.1.1)
- vscode-languageserver: 9.0.1
- vscode-languageserver-textdocument: 1.0.12
- vscode-uri: 3.1.0
-
- lie@3.3.0:
- dependencies:
- immediate: 3.0.6
-
- lodash-es@4.17.21: {}
-
- lodash-es@4.17.23: {}
-
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
+ jschardet@3.1.4: {}
marked@14.0.0: {}
- math-intrinsics@1.1.0: {}
-
- media-typer@1.1.0: {}
-
- merge-descriptors@2.0.0: {}
-
- mime-db@1.54.0: {}
-
- mime-types@3.0.1:
- dependencies:
- mime-db: 1.54.0
-
- minimatch@5.1.6:
- dependencies:
- brace-expansion: 2.0.1
-
- monaco-languageclient-examples@2026.2.1(@xterm/xterm@6.1.0-beta.97):
- dependencies:
- '@codingame/monaco-vscode-configuration-service-override': 25.1.2
- '@codingame/monaco-vscode-cpp-default-extension': 25.1.2
- '@codingame/monaco-vscode-debug-service-override': 25.1.2
- '@codingame/monaco-vscode-editor-api': 25.1.2
- '@codingame/monaco-vscode-environment-service-override': 25.1.2
- '@codingame/monaco-vscode-explorer-service-override': 25.1.2
- '@codingame/monaco-vscode-extension-api': 25.1.2
- '@codingame/monaco-vscode-files-service-override': 25.1.2
- '@codingame/monaco-vscode-groovy-default-extension': 25.1.2
- '@codingame/monaco-vscode-java-default-extension': 25.1.2
- '@codingame/monaco-vscode-javascript-default-extension': 25.1.2
- '@codingame/monaco-vscode-json-default-extension': 25.1.2
- '@codingame/monaco-vscode-json-language-features-default-extension': 25.1.2
- '@codingame/monaco-vscode-keybindings-service-override': 25.1.2
- '@codingame/monaco-vscode-lifecycle-service-override': 25.1.2
- '@codingame/monaco-vscode-localization-service-override': 25.1.2
- '@codingame/monaco-vscode-outline-service-override': 25.1.2
- '@codingame/monaco-vscode-preferences-service-override': 25.1.2
- '@codingame/monaco-vscode-python-default-extension': 25.1.2
- '@codingame/monaco-vscode-remote-agent-service-override': 25.1.2
- '@codingame/monaco-vscode-search-result-default-extension': 25.1.2
- '@codingame/monaco-vscode-search-service-override': 25.1.2
- '@codingame/monaco-vscode-secret-storage-service-override': 25.1.2
- '@codingame/monaco-vscode-standalone-json-language-features': 25.1.2
- '@codingame/monaco-vscode-standalone-typescript-language-features': 25.1.2
- '@codingame/monaco-vscode-storage-service-override': 25.1.2
- '@codingame/monaco-vscode-testing-service-override': 25.1.2(@xterm/xterm@6.1.0-beta.97)
- '@codingame/monaco-vscode-textmate-service-override': 25.1.2
- '@codingame/monaco-vscode-theme-defaults-default-extension': 25.1.2
- '@codingame/monaco-vscode-theme-service-override': 25.1.2
- '@codingame/monaco-vscode-typescript-basics-default-extension': 25.1.2
- '@codingame/monaco-vscode-typescript-language-features-default-extension': 25.1.2
- '@codingame/monaco-vscode-view-banner-service-override': 25.1.2
- '@codingame/monaco-vscode-view-status-bar-service-override': 25.1.2
- '@codingame/monaco-vscode-view-title-bar-service-override': 25.1.2
- '@codingame/monaco-vscode-views-service-override': 25.1.2
- '@typefox/monaco-editor-react': 7.7.0
- cors: 2.8.6
- express: 5.2.1
- jszip: 3.10.1
- langium: 4.2.0
- monaco-languageclient: 10.7.0
- pyright: 1.1.408
- react: 19.2.4
- react-dom: 19.2.4(react@19.2.4)
- request-light: 0.8.0
- vscode: '@codingame/monaco-vscode-extension-api@25.1.2'
- vscode-json-languageservice: 5.7.1
- vscode-languageclient: 9.0.1
- vscode-languageserver: 9.0.1
- vscode-uri: 3.1.0
- vscode-ws-jsonrpc: 3.5.0
- ws: 8.19.0
- wtd-core: 4.0.1
- transitivePeerDependencies:
- - '@xterm/xterm'
- - bufferutil
- - supports-color
- - utf-8-validate
-
- monaco-languageclient@10.7.0:
- dependencies:
- '@codingame/monaco-vscode-api': 25.1.2
- '@codingame/monaco-vscode-configuration-service-override': 25.1.2
- '@codingame/monaco-vscode-editor-api': 25.1.2
- '@codingame/monaco-vscode-editor-service-override': 25.1.2
- '@codingame/monaco-vscode-extension-api': 25.1.2
- '@codingame/monaco-vscode-extensions-service-override': 25.1.2
- '@codingame/monaco-vscode-language-pack-cs': 25.1.2
- '@codingame/monaco-vscode-language-pack-de': 25.1.2
- '@codingame/monaco-vscode-language-pack-es': 25.1.2
- '@codingame/monaco-vscode-language-pack-fr': 25.1.2
- '@codingame/monaco-vscode-language-pack-it': 25.1.2
- '@codingame/monaco-vscode-language-pack-ja': 25.1.2
- '@codingame/monaco-vscode-language-pack-ko': 25.1.2
- '@codingame/monaco-vscode-language-pack-pl': 25.1.2
- '@codingame/monaco-vscode-language-pack-pt-br': 25.1.2
- '@codingame/monaco-vscode-language-pack-qps-ploc': 25.1.2
- '@codingame/monaco-vscode-language-pack-ru': 25.1.2
- '@codingame/monaco-vscode-language-pack-tr': 25.1.2
- '@codingame/monaco-vscode-language-pack-zh-hans': 25.1.2
- '@codingame/monaco-vscode-language-pack-zh-hant': 25.1.2
- '@codingame/monaco-vscode-languages-service-override': 25.1.2
- '@codingame/monaco-vscode-localization-service-override': 25.1.2
- '@codingame/monaco-vscode-log-service-override': 25.1.2
- '@codingame/monaco-vscode-model-service-override': 25.1.2
- '@codingame/monaco-vscode-monarch-service-override': 25.1.2
- '@codingame/monaco-vscode-textmate-service-override': 25.1.2
- '@codingame/monaco-vscode-theme-defaults-default-extension': 25.1.2
- '@codingame/monaco-vscode-theme-service-override': 25.1.2
- '@codingame/monaco-vscode-views-service-override': 25.1.2
- '@codingame/monaco-vscode-workbench-service-override': 25.1.2
- vscode: '@codingame/monaco-vscode-extension-api@25.1.2'
- vscode-languageclient: 9.0.1
- vscode-languageserver-protocol: 3.17.5
- vscode-ws-jsonrpc: 3.5.0
-
- ms@2.1.3: {}
-
- negotiator@1.0.0: {}
-
- object-assign@4.1.1: {}
-
- object-inspect@1.13.4: {}
-
- on-finished@2.4.1:
- dependencies:
- ee-first: 1.1.1
-
- once@1.4.0:
- dependencies:
- wrappy: 1.0.2
-
- opentype.js@0.8.0:
- dependencies:
- tiny-inflate: 1.0.3
-
- pako@1.0.11: {}
-
- parseurl@1.3.3: {}
-
- path-to-regexp@8.2.0: {}
-
- process-nextick-args@2.0.1: {}
-
- proxy-addr@2.0.7:
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
-
- pyright@1.1.408:
- optionalDependencies:
- fsevents: 2.3.3
-
- qs@6.14.1:
- dependencies:
- side-channel: 1.1.0
-
- range-parser@1.2.1: {}
-
- raw-body@3.0.2:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.1
- iconv-lite: 0.7.2
- unpipe: 1.0.0
-
- react-dom@19.2.4(react@19.2.4):
- dependencies:
- react: 19.2.4
- scheduler: 0.27.0
-
- react@19.2.4: {}
-
- readable-stream@2.3.8:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
-
- request-light@0.8.0: {}
-
- router@2.2.0:
- dependencies:
- debug: 4.4.3
- depd: 2.0.0
- is-promise: 4.0.0
- parseurl: 1.3.3
- path-to-regexp: 8.2.0
- transitivePeerDependencies:
- - supports-color
-
- safe-buffer@5.1.2: {}
-
- safe-buffer@5.2.1: {}
-
- safer-buffer@2.1.2: {}
-
- scheduler@0.27.0: {}
-
- semver@7.6.3: {}
-
- send@1.2.0:
- dependencies:
- debug: 4.4.3
- encodeurl: 2.0.0
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 2.0.0
- http-errors: 2.0.1
- mime-types: 3.0.1
- ms: 2.1.3
- on-finished: 2.4.1
- range-parser: 1.2.1
- statuses: 2.0.2
- transitivePeerDependencies:
- - supports-color
-
- serve-static@2.2.0:
- dependencies:
- encodeurl: 2.0.0
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 1.2.0
- transitivePeerDependencies:
- - supports-color
-
- setimmediate@1.0.5: {}
-
- setprototypeof@1.2.0: {}
-
- side-channel-list@1.0.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.4
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.4
- side-channel-map: 1.0.1
-
- side-channel@1.1.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.4
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
-
- statuses@2.0.2: {}
-
- string_decoder@1.1.1:
- dependencies:
- safe-buffer: 5.1.2
-
- tiny-inflate@1.0.3: {}
-
- toidentifier@1.0.1: {}
-
- type-is@2.0.1:
- dependencies:
- content-type: 1.0.5
- media-typer: 1.1.0
- mime-types: 3.0.1
-
- typescript@5.9.3: {}
-
- unpipe@1.0.0: {}
-
- util-deprecate@1.0.2: {}
-
- vary@1.1.2: {}
-
- vscode-json-languageservice@5.3.11:
- dependencies:
- '@vscode/l10n': 0.0.18
- jsonc-parser: 3.3.1
- vscode-languageserver-textdocument: 1.0.12
- vscode-languageserver-types: 3.17.5
- vscode-uri: 3.1.0
-
- vscode-json-languageservice@5.7.1:
- dependencies:
- '@vscode/l10n': 0.0.18
- jsonc-parser: 3.3.1
- vscode-languageserver-textdocument: 1.0.12
- vscode-languageserver-types: 3.17.5
- vscode-uri: 3.1.0
-
- vscode-jsonrpc@8.2.0: {}
-
- vscode-jsonrpc@8.2.1: {}
-
- vscode-languageclient@9.0.1:
- dependencies:
- minimatch: 5.1.6
- semver: 7.6.3
- vscode-languageserver-protocol: 3.17.5
-
- vscode-languageserver-protocol@3.17.5:
- dependencies:
- vscode-jsonrpc: 8.2.0
- vscode-languageserver-types: 3.17.5
-
- vscode-languageserver-textdocument@1.0.12: {}
-
- vscode-languageserver-types@3.17.5: {}
-
- vscode-languageserver@9.0.1:
- dependencies:
- vscode-languageserver-protocol: 3.17.5
-
- vscode-uri@3.0.8: {}
-
- vscode-uri@3.1.0: {}
-
- vscode-ws-jsonrpc@3.5.0:
- dependencies:
- vscode-jsonrpc: 8.2.1
-
- wrappy@1.0.2: {}
-
- ws@8.19.0: {}
-
- wtd-core@4.0.1: {}
-
- yallist@4.0.0: {}
+ typescript@6.0.3: {}
diff --git a/verify/peerPnpm/pnpm-workspace.yaml b/verify/peerPnpm/pnpm-workspace.yaml
new file mode 100644
index 000000000..338250363
--- /dev/null
+++ b/verify/peerPnpm/pnpm-workspace.yaml
@@ -0,0 +1,10 @@
+minimumReleaseAgeExclude:
+ - '@codingame/monaco-vscode-api@34.0.1'
+ - '@codingame/monaco-vscode-base-service-override@34.0.1'
+ - '@codingame/monaco-vscode-environment-service-override@34.0.1'
+ - '@codingame/monaco-vscode-extension-api@34.0.1'
+ - '@codingame/monaco-vscode-extensions-service-override@34.0.1'
+ - '@codingame/monaco-vscode-files-service-override@34.0.1'
+ - '@codingame/monaco-vscode-host-service-override@34.0.1'
+ - '@codingame/monaco-vscode-layout-service-override@34.0.1'
+ - '@codingame/monaco-vscode-quickaccess-service-override@34.0.1'
diff --git a/verify/peerPnpm/tsconfig.json b/verify/peerPnpm/tsconfig.json
index abb92b6de..3c5f95133 100644
--- a/verify/peerPnpm/tsconfig.json
+++ b/verify/peerPnpm/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2022",
- "module": "node20",
+ "module": "nodenext",
"moduleResolution": "nodenext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"rootDir": ".",
diff --git a/verify/peerYarn/.yarnrc.yml b/verify/peerYarn/.yarnrc.yml
new file mode 100644
index 000000000..3b93f8268
--- /dev/null
+++ b/verify/peerYarn/.yarnrc.yml
@@ -0,0 +1,6 @@
+approvedGitRepositories:
+ - '**'
+
+enableScripts: false
+
+npmMinimalAgeGate: 1
diff --git a/verify/peerYarn/package.json b/verify/peerYarn/package.json
index b7cfe9525..36e737452 100644
--- a/verify/peerYarn/package.json
+++ b/verify/peerYarn/package.json
@@ -8,26 +8,26 @@
"verify:ci": "yarn install && yarn run build"
},
"dependencies": {
- "@codingame/monaco-vscode-api": "^31.0.1",
- "@codingame/monaco-vscode-configuration-service-override": "^31.0.1",
- "@codingame/monaco-vscode-editor-api": "^31.0.1",
- "@codingame/monaco-vscode-editor-service-override": "^31.0.1",
- "@codingame/monaco-vscode-extension-api": "^31.0.1",
- "@codingame/monaco-vscode-extensions-service-override": "^31.0.1",
- "@codingame/monaco-vscode-languages-service-override": "^31.0.1",
- "@codingame/monaco-vscode-localization-service-override": "^31.0.1",
- "@codingame/monaco-vscode-log-service-override": "^31.0.1",
- "@codingame/monaco-vscode-model-service-override": "^31.0.1",
- "monaco-languageclient-examples": "^2026.2.1",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^31.0.1",
- "vscode-languageclient": "~9.0.1"
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-configuration-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-editor-api": "^34.0.1",
+ "@codingame/monaco-vscode-editor-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extension-api": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-languages-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-model-service-override": "^34.0.1",
+ "monaco-languageclient-examples": "../../packages/examples",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-languageclient": "~10.0.0"
},
"devDependencies": {
- "typescript": "~5.9.3"
+ "typescript": "~6.0.3"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3",
- "yarn": ">=4.6.0"
+ "node": ">=22",
+ "npm": ">=10",
+ "yarn": ">=4"
}
}
diff --git a/verify/peerYarn/tsconfig.json b/verify/peerYarn/tsconfig.json
index abb92b6de..3c5f95133 100644
--- a/verify/peerYarn/tsconfig.json
+++ b/verify/peerYarn/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2022",
- "module": "node20",
+ "module": "nodenext",
"moduleResolution": "nodenext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"rootDir": ".",
diff --git a/verify/webpack/package-lock.json b/verify/webpack/package-lock.json
index 69d6252e4..c7608a6dc 100644
--- a/verify/webpack/package-lock.json
+++ b/verify/webpack/package-lock.json
@@ -8,745 +8,99 @@
"name": "example-client-webpack",
"version": "0.0.0",
"dependencies": {
- "monaco-languageclient-examples": "^2026.2.1"
+ "monaco-languageclient-examples": "../../packages/examples"
},
"devDependencies": {
- "css-loader": "~7.1.3",
+ "css-loader": "~7.1.4",
"http-server": "~14.1.1",
"shx": "~0.4.0",
"source-map-loader": "~5.0.0",
"style-loader": "~4.0.0",
- "ts-loader": "~9.5.4",
- "webpack-cli": "~6.0.1"
+ "ts-loader": "~9.6.1",
+ "webpack-cli": "~7.0.3"
+ },
+ "engines": {
+ "node": ">=22",
+ "npm": ">=10"
+ }
+ },
+ "../../packages/examples": {
+ "name": "monaco-languageclient-examples",
+ "version": "2026.6.1",
+ "license": "MIT",
+ "dependencies": {
+ "@codingame/monaco-vscode-api": "^34.0.1",
+ "@codingame/monaco-vscode-cpp-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-debug-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-environment-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-explorer-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-extensions-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-files-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-groovy-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-java-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-javascript-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-json-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-keybindings-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-lifecycle-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-localization-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-log-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-outline-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-preferences-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-python-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-remote-agent-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-search-result-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-search-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-secret-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-storage-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-testing-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-theme-defaults-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-basics-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-typescript-language-features-default-extension": "^34.0.1",
+ "@codingame/monaco-vscode-view-banner-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-status-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-view-title-bar-service-override": "^34.0.1",
+ "@codingame/monaco-vscode-views-service-override": "^34.0.1",
+ "@typefox/monaco-editor-react": "~8.0.0-next.0",
+ "cors": "~2.8.6",
+ "express": "~5.2.1",
+ "jszip": "~3.10.1",
+ "langium": "~4.3.0",
+ "monaco-languageclient": "~11.0.0-next.0",
+ "pyright": "~1.1.410",
+ "react": "~19.2.7",
+ "react-dom": "~19.2.7",
+ "request-light": "~0.8.0",
+ "vscode": "npm:@codingame/monaco-vscode-extension-api@^34.0.1",
+ "vscode-json-languageservice": "~5.7.2",
+ "vscode-languageclient": "~10.0.0",
+ "vscode-languageserver": "~10.0.0",
+ "vscode-languageserver-protocol": "~3.18.0",
+ "vscode-languageserver-textdocument": "~1.0.12",
+ "vscode-uri": "~3.1.0",
+ "vscode-ws-jsonrpc": "~4.0.0-next.0",
+ "ws": "~8.21.0",
+ "wtd-core": "~4.0.1"
+ },
+ "devDependencies": {
+ "@types/cors": "~2.8.19",
+ "@types/emscripten": "~1.41.5",
+ "@types/express": "~5.0.6",
+ "@types/ws": "~8.18.1",
+ "langium-cli": "~4.3.0",
+ "mini-coi": "~0.4.2",
+ "vite-plugin-static-copy": "~4.1.1",
+ "vscode-languageserver-types": "~3.18.0"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/@chevrotain/cst-dts-gen": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.1.1.tgz",
- "integrity": "sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==",
- "license": "Apache-2.0",
- "dependencies": {
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
- }
- },
- "node_modules/@chevrotain/gast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.1.1.tgz",
- "integrity": "sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==",
- "license": "Apache-2.0",
- "dependencies": {
- "@chevrotain/types": "11.1.1",
- "lodash-es": "4.17.23"
- }
- },
- "node_modules/@chevrotain/regexp-to-ast": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.1.1.tgz",
- "integrity": "sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==",
- "license": "Apache-2.0"
- },
- "node_modules/@chevrotain/types": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.1.1.tgz",
- "integrity": "sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==",
- "license": "Apache-2.0"
- },
- "node_modules/@chevrotain/utils": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.1.1.tgz",
- "integrity": "sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==",
- "license": "Apache-2.0"
- },
- "node_modules/@codingame/monaco-vscode-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-api/-/monaco-vscode-api-25.1.2.tgz",
- "integrity": "sha512-K04QcQA+Zb0KXucBAK/BGCT5dldiwIqdUbBQq7yuLvBLbof3cP1WSUuxasMHGYwM0MWyzIAsDtyAYMS7is8ZuA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-base-service-override": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2",
- "@codingame/monaco-vscode-host-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@vscode/iconv-lite-umd": "0.7.1",
- "dompurify": "3.3.1",
- "jschardet": "3.1.4",
- "marked": "14.0.0"
- }
- },
- "node_modules/@codingame/monaco-vscode-base-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-base-service-override/-/monaco-vscode-base-service-override-25.1.2.tgz",
- "integrity": "sha512-OwYs6h1ATUAeMmX+Q1c8esTG7GLMqniBs+fLEr1/9b/ciY485ArKo5UvrUxVPDtRNy/7F06vRW9IUCq9iKP14w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-bulk-edit-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-bulk-edit-service-override/-/monaco-vscode-bulk-edit-service-override-25.1.2.tgz",
- "integrity": "sha512-+EfSzjiFakCf0IIJKPZrHVGioq5N8GBsp51bXuKBR5J/B58cUaJY0Dc12PNTSpgAusAGOppUIOSBqUk4F/7IaQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-configuration-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-configuration-service-override/-/monaco-vscode-configuration-service-override-25.1.2.tgz",
- "integrity": "sha512-oeoZ3WtM42zHA1IWHrx9UGEfE+TixE+G8Bl9M9bjgFj1EROnkB5yOfELwRYPo4WOEtcK1C5nvIvWIj/hL9MaLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-cpp-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-cpp-default-extension/-/monaco-vscode-cpp-default-extension-25.1.2.tgz",
- "integrity": "sha512-L5pS+Ynrbml54+qTQkViWkwyM0ACqmZa01HaWx3ZIaV+zEZAm1f9Pge6NyjhdDJE6jTBMR+pCcJmoN0k/BImZw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-debug-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-debug-service-override/-/monaco-vscode-debug-service-override-25.1.2.tgz",
- "integrity": "sha512-0lEHs5X5TI3pOMsYbb+rLExwmhMDiSJJ3MnhkwzeaDrKKP/Z0+XGaH5ziRB0zrxiT/OqR52c3pvOcou5iiLRaw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-editor-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-service-override/-/monaco-vscode-editor-service-override-25.1.2.tgz",
- "integrity": "sha512-EadvDCyWdgxOPmaIvbcVVDNjTUYuKdjYWwKbPbbcTs9t4z1/DjdE7mV3ZdT6aGh5m6zkEEUOi143l27Y5eRt+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-environment-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-environment-service-override/-/monaco-vscode-environment-service-override-25.1.2.tgz",
- "integrity": "sha512-8GoD3lk0CN0dIMZOrZNS/i8RCaF1YSQ6nmrf+rqneOSHG9S382EnsZZD69d4+i7JnoeyttO7Kr9KH8WOhRV6OA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-explorer-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-explorer-service-override/-/monaco-vscode-explorer-service-override-25.1.2.tgz",
- "integrity": "sha512-K5LJ1qJmlOxrU8Y/ilX4D60wXSNQ1PYv2qSnkwHuFCOGAu2RiYM0igDZH3b+WFzQsj8/yt9VwCK0PMkrnjne+w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-extension-api": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-extensions-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extensions-service-override/-/monaco-vscode-extensions-service-override-25.1.2.tgz",
- "integrity": "sha512-rTTZW2biPxcg+JumhVf2L+38C5ptvNNxiJlwz39VfXFEh6qOHtAsIMy7vIXa0uGg5/y8DNp0SnOQJP/RKhLYZA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-files-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-files-service-override/-/monaco-vscode-files-service-override-25.1.2.tgz",
- "integrity": "sha512-TenLLAFIwY7keZFF8e3beUn7OVfnNINR5Noi4PVrjeeTcy6FuNH6Jghdul2JwpRAkvyJLdFMvomE2jlT6F03jQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-groovy-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-groovy-default-extension/-/monaco-vscode-groovy-default-extension-25.1.2.tgz",
- "integrity": "sha512-oDmUgs4DURf8TbMoLQsMy/EzpS0hkDMh780RZkKKjvc8Sr3nDW8ckIjJW1Ku6HrS2G2Z6LDd1KlhHmFGDKU5WQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-host-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-host-service-override/-/monaco-vscode-host-service-override-25.1.2.tgz",
- "integrity": "sha512-lgaalpA9CUQW7i0bBwgBOK0DQNDvOo3QO3p6Rz6yVsHpgA4iMqq2d11dBDUKvuQSwIHPRu8CMHCqhQk/BQN/YA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-java-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-java-default-extension/-/monaco-vscode-java-default-extension-25.1.2.tgz",
- "integrity": "sha512-9B+gEFghGxCuNb/PAHPUnjBbuNWm0FKpinxeuyBUUh92hOeVLxaKfjFsXAaf1I4q507LfEkufqxQndsQFFxskA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-javascript-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-javascript-default-extension/-/monaco-vscode-javascript-default-extension-25.1.2.tgz",
- "integrity": "sha512-SIrq+EfJ9Nk+aTjOXBPdp2+K242W6lAlGYjln/AnwNa+1h0roQ07efZNV0LBkVrwH4wmT9TmN/IXE2Boau37cQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-json-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-default-extension/-/monaco-vscode-json-default-extension-25.1.2.tgz",
- "integrity": "sha512-lbzUZr8E2vg40bQFhWFq/qc0QqnRHKKWwCuxymkv0kpVgyXlS52EjjvrhvOo8TV/r7eLg+R0yHzF4IKWgltGrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-json-language-features-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-json-language-features-default-extension/-/monaco-vscode-json-language-features-default-extension-25.1.2.tgz",
- "integrity": "sha512-c2YH16zJpkmsyNrZq1ukZuWx73PRFzG871GUsiWTETvEJlbG8deL9/MpgJK+C6Kao9SlX63iDkpCpcwjE3l72w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-keybindings-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-keybindings-service-override/-/monaco-vscode-keybindings-service-override-25.1.2.tgz",
- "integrity": "sha512-cp/gGyTvCTAzCYnQm0HJykXJRB0Huz8Lvq60lj5LutgWcb8S3w6dOB2Houm8dHoeUm/jOko8SQNIP8hzWN92Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-cs": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-cs/-/monaco-vscode-language-pack-cs-25.1.2.tgz",
- "integrity": "sha512-v0cB2uAOCwj135aGIf0arGV+DNW32lbWh04bv8ctTxcWRt1Pr2kTQ1pjfE8ynKgxabPfAk8E25/CerKSYOmZ+A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-de": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-de/-/monaco-vscode-language-pack-de-25.1.2.tgz",
- "integrity": "sha512-xA3WOt1w5jlAOnyx4PBwx+qV3vx8C8/zie29qjYbgJMxGKDkb0HfpuKUwywDA2uUMI2wJZS+PnNG00zPDoLIrw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-es": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-es/-/monaco-vscode-language-pack-es-25.1.2.tgz",
- "integrity": "sha512-1/upuO9lRJilZ3sRr0QLTpz55KYRaBWDe8wtPvghOFYOHyWgW8A4VhUQxa6L9SJgY1JkypUAm0U8WcMX2G4LnQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-fr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-fr/-/monaco-vscode-language-pack-fr-25.1.2.tgz",
- "integrity": "sha512-iq+xx+tv1QIMmFD0eBhFRMF4xMAsVf/HyA1WogqBofteCWeAvRE9HUjZ5JzHz7jXBPe3dLP1LOM0r0GrJZs4fQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-it": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-it/-/monaco-vscode-language-pack-it-25.1.2.tgz",
- "integrity": "sha512-FajWCML9OR8ppLnJ0mcg+sFHEhYJl8zhb3/DHnd+pNysw8dLfetXoSWjaPnwPPpwiQgkNN1UsToZHOU9czVifQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ja": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ja/-/monaco-vscode-language-pack-ja-25.1.2.tgz",
- "integrity": "sha512-NwKh0BnPgUrJkxsm0X6vY4ftnd9DjxkcnQqK+bohta6UOzm09J1EjZ6QD42fjWngxrp/xiegtrYQ9NA2q6VpoA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ko": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ko/-/monaco-vscode-language-pack-ko-25.1.2.tgz",
- "integrity": "sha512-fvaisgfcg8YaAwnyPcGmQDLwkwqzamLQUyx9HmnwDpXw0YANzd058Kwn6bz+Vfn9MjwuMNT0nllD0qQMnpdyew==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pl": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pl/-/monaco-vscode-language-pack-pl-25.1.2.tgz",
- "integrity": "sha512-9hDRyzFJkDia5rO9QE262JgxwP/cnalFisLFo7FQcw57ZhqzqXIdQIuwcKaHuAgzeQ6W2+A3KOLfTr3m7VZrXw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-pt-br": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-pt-br/-/monaco-vscode-language-pack-pt-br-25.1.2.tgz",
- "integrity": "sha512-7fFnqOTAJGb5RuJ4uwh9sh0JmXALuHPGOl7iL9rZkcgIuVP5y6wVDUDXq5qjiRTNSFDs7Bzh463Ir5m5D6mJbA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-qps-ploc": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-qps-ploc/-/monaco-vscode-language-pack-qps-ploc-25.1.2.tgz",
- "integrity": "sha512-IFjoqrSuPtIFWb+KlPT6PFWKszzNX+TCD9drgCV6AigvBO/xfGL3QwHB68l/DLbmDbohOz4Xdkutv20wuENAeA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-ru": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-ru/-/monaco-vscode-language-pack-ru-25.1.2.tgz",
- "integrity": "sha512-0uDAeXO+GllKUPhJzP893rlDhlFV1IwCu/515rBdcyegt48iGm/xAgj26V90hNz8hmB6EuM/7d8MFeklbiIpYA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-tr": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-tr/-/monaco-vscode-language-pack-tr-25.1.2.tgz",
- "integrity": "sha512-MJhHxDyJEiuVLQ9+jb8MnnN9lsbJOjJjMswVCeJ7v/Q/msAhq25QYUfn0DbOIzESJE1f7crffRb5e38XP8sYWA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hans": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hans/-/monaco-vscode-language-pack-zh-hans-25.1.2.tgz",
- "integrity": "sha512-c7MMrhnSLb59NxpAa8nVy9aIbxy4gVYrCpDMq8W380LOaXTYb7nueTrw8QJ5QbJBNi2P2KZoGkn2BlONuBtJJg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-language-pack-zh-hant": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-language-pack-zh-hant/-/monaco-vscode-language-pack-zh-hant-25.1.2.tgz",
- "integrity": "sha512-ARedFTM6JCluoPLJqkBcTJaQFdJNcN86OX6B8/NMApIPrnSIAfanMndpyilt8XjzUG6IH22cypR+DAlEjf48cA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-languages-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-languages-service-override/-/monaco-vscode-languages-service-override-25.1.2.tgz",
- "integrity": "sha512-ipuS1V3NgXDkNrj0vBcgMBFnqo+19HVsZjjFGfPFH3x0uptP9aiWWK42wtDK3Qbu4teSjHL7WnSLrmw94rplWw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-layout-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-layout-service-override/-/monaco-vscode-layout-service-override-25.1.2.tgz",
- "integrity": "sha512-SxBGcMK3RgkGtUn7ZDl7dCoyNW0CWFQ/bfSRYUY06A0IA4JNS5jq1lhof57d0WXewm+5l8w1Spr/vMsfx1c9ig==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-lifecycle-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-lifecycle-service-override/-/monaco-vscode-lifecycle-service-override-25.1.2.tgz",
- "integrity": "sha512-H3C26i654WU8mbPM6GUiCh5YAQbhlm6sC32mHVANUJpR1968pS66UFB5JTD4rslH5GOPzO9TUNPlvrI2g3PE8Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-localization-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-localization-service-override/-/monaco-vscode-localization-service-override-25.1.2.tgz",
- "integrity": "sha512-QLj62A8XDOIQW3KjsZlNxs+sfsNNHYxWMjQMwZu/y2Vw3IIHGly2Lpn4t4SFbeaBHJQJy4i5s7NpzlbF9MbEzQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-log-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-log-service-override/-/monaco-vscode-log-service-override-25.1.2.tgz",
- "integrity": "sha512-OoileAUtPAJ0j3RW31DFSxtOipy0EcFq+iIXEdGvoRlsQPZJ3o9ayjf1JvCXpxUjJ3QkmvQVhXsWNUFREjEFLg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-model-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-model-service-override/-/monaco-vscode-model-service-override-25.1.2.tgz",
- "integrity": "sha512-MGz/eV1CxibLvnl6WzK6idUHJCXJOVepJvKM6Trkv5050vRe+f/o1TjCiG8PaznAypYqZvnwkTG0B7/OTizCpQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
+ "node": ">=22",
+ "npm": ">=10"
}
},
- "node_modules/@codingame/monaco-vscode-monarch-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-monarch-service-override/-/monaco-vscode-monarch-service-override-25.1.2.tgz",
- "integrity": "sha512-akyNHOJQRS7YHyk6kf0Encnkt+shlR+bIB84UJRUHFgSeF8s5gkDkQuFJph0YeUDWJWat+yBLUSZx2nHomdbHQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-outline-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-outline-service-override/-/monaco-vscode-outline-service-override-25.1.2.tgz",
- "integrity": "sha512-J+rigDc5lEOvyBniYCBh0HL6KrASN5g5FIgWm+q65ZNFcuH1itXBAr23HQcYt19ZtVC+xHNK+K5mkZ+NPLXGxA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-preferences-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-preferences-service-override/-/monaco-vscode-preferences-service-override-25.1.2.tgz",
- "integrity": "sha512-lIci0vMZ5YJdN+H0pKE12t//wdzfz1zZ8RTRvkmLFEvmk8tUvid/0iMFHWoqBXmdXxmKr3kDLPKB63E0TJX5rQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-python-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-python-default-extension/-/monaco-vscode-python-default-extension-25.1.2.tgz",
- "integrity": "sha512-2W5pHtn2yOayGr7lcwQFNlbkyziaM7yK1Gq5cxFKXYgsReHTRAx+SN5xMachkms/mSnulH2rww+HbDW2zRHf0A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-quickaccess-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-quickaccess-service-override/-/monaco-vscode-quickaccess-service-override-25.1.2.tgz",
- "integrity": "sha512-7IIrXnwHiF3w9d9p9kspEUz/LCibMLUztmRpGdZQfFtWBJw043q7rk8V1O42KdXr1hVg9IR5vfffwjy9nbiiUg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-remote-agent-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-remote-agent-service-override/-/monaco-vscode-remote-agent-service-override-25.1.2.tgz",
- "integrity": "sha512-R4hUjflcD7VqizIXCn95awDF+GwQ//Y+1xxHEqIxPh9KzCKViV4XdZbkHg0/IBwrMzOiTo2azpVUOpfyvwc7Lg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-search-result-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-result-default-extension/-/monaco-vscode-search-result-default-extension-25.1.2.tgz",
- "integrity": "sha512-fycVi25zmZrs7TI/DiLNNeGfFdx5xx/X+Ur3n09It88+akR9+CKk4Rg9+ezQ3k8FgPV3LXNLi+/ki/jX9/S6OQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-search-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-search-service-override/-/monaco-vscode-search-service-override-25.1.2.tgz",
- "integrity": "sha512-Dqw0MclN+kOvFQOV1Ihx4Z1L3u8JMvGWiex7mfU1BOIO6vY7H9C2mtPbzL2iBxqbC2CGxfq2X7/cc1LnhDth2w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-secret-storage-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-secret-storage-service-override/-/monaco-vscode-secret-storage-service-override-25.1.2.tgz",
- "integrity": "sha512-ljVVQjzPDbEq3j0Gob0i7TsOzjAjEpO5QuNTuzpb7vYJkp1dXs0rQiUJZ0nyCKmk8uZX6hGZZv1a7ZOatgmZJg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-json-language-features/-/monaco-vscode-standalone-json-language-features-25.1.2.tgz",
- "integrity": "sha512-d07FBwwv8IhJQRJ9DsHoMrPX23/6S05SS1qDx8Kr1s8Agg+yFI2OEZIcG40ZrMRcx2rdzWb2EQjt9hG+l6PCbg==",
- "license": "MIT",
- "dependencies": {
- "jsonc-parser": "3.3.1",
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@25.1.2",
- "vscode-json-languageservice": "5.3.11",
- "vscode-languageserver-textdocument": "1.0.12",
- "vscode-languageserver-types": "3.17.5",
- "vscode-uri": "3.0.8"
- }
- },
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-json-languageservice": {
- "version": "5.3.11",
- "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.3.11.tgz",
- "integrity": "sha512-WYS72Ymria3dn8ZbjtBbt5K71m05wY1Q6hpXV5JxUT0q75Ts0ljLmnZJAVpx8DjPgYbFD+Z8KHpWh2laKLUCtQ==",
- "license": "MIT",
- "dependencies": {
- "@vscode/l10n": "^0.0.18",
- "jsonc-parser": "^3.2.1",
- "vscode-languageserver-textdocument": "^1.0.11",
- "vscode-languageserver-types": "^3.17.5",
- "vscode-uri": "^3.0.8"
- }
- },
- "node_modules/@codingame/monaco-vscode-standalone-json-language-features/node_modules/vscode-uri": {
- "version": "3.0.8",
- "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz",
- "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==",
- "license": "MIT"
- },
- "node_modules/@codingame/monaco-vscode-standalone-typescript-language-features": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-standalone-typescript-language-features/-/monaco-vscode-standalone-typescript-language-features-25.1.2.tgz",
- "integrity": "sha512-G2oKD5jGzrD3vYKfZZF54DgtW3SMmA0qlttaWR5Vu0eSAvyghXp1mdvds3u7deXY/KRL8X34vanT7aNtB9wosA==",
- "license": "MIT",
- "dependencies": {
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-storage-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-storage-service-override/-/monaco-vscode-storage-service-override-25.1.2.tgz",
- "integrity": "sha512-3KY8CcuWrGl0KSKc7pQh8oN5c+LRxW/tbtQ/oVoKr4xE8/deu44Tu4ZV9tE1KqGVySL7lcsVsPuq8T66EBnaVw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-terminal-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-terminal-service-override/-/monaco-vscode-terminal-service-override-25.1.2.tgz",
- "integrity": "sha512-cnyadggTBHBCzZRssRA8LIGI2/Ne4+og6j7d24wFzAW6DwRwCiMhBh72dbpNqzVDyl7NqpSbnr7tDLPfZLqH/A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2",
- "@codingame/monaco-vscode-xterm-common": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-testing-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-testing-service-override/-/monaco-vscode-testing-service-override-25.1.2.tgz",
- "integrity": "sha512-1RbF5yfRqlLVAq9C02w+euV36oCIlVX5bFHydpxHJECc9c4eYg3AOVS4s9Bba9HZ/E/sZCezILsLnnBDMr4pcA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-terminal-service-override": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-textmate-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-textmate-service-override/-/monaco-vscode-textmate-service-override-25.1.2.tgz",
- "integrity": "sha512-AL0FtSQBW+1vtoXYQvUqB2hfWojpK73Kq/n6KuNXxjLF/XBJ5FpeeZDfrBfwhWPPoHuBTsaFUCQy4L8xQgbVlA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-defaults-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-defaults-default-extension/-/monaco-vscode-theme-defaults-default-extension-25.1.2.tgz",
- "integrity": "sha512-0vTMFiC89YSDSmjFckuQBUKwRuFNtsILNO3k0PBiSLN/MW+VDItjJpiVLXC42+rUWlGgY2lYxOneGVa5slCV1w==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-theme-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-theme-service-override/-/monaco-vscode-theme-service-override-25.1.2.tgz",
- "integrity": "sha512-hsTwl6YYTiheFuQMmCmiEGLIdIdgYaf8Z85XWyxe6YgPtDaYGnp0fGSOXKA9/bf0JtuynzoLKtUUfDupK/A7Tw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-files-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-typescript-basics-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-basics-default-extension/-/monaco-vscode-typescript-basics-default-extension-25.1.2.tgz",
- "integrity": "sha512-tGpGAvVsINHodqPtjZDEOkjXAKLWiCr90P/dNC7W8XghxUHzQHqYmAunkkcJXWcRluaXcNBvPGplm1GaQfn3lQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-typescript-language-features-default-extension": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-typescript-language-features-default-extension/-/monaco-vscode-typescript-language-features-default-extension-25.1.2.tgz",
- "integrity": "sha512-bifrfWg+392NVb5LZ9k5UlhlW9xyNTaHhgh/ZxmOBpjbkaiB80VnpS/SV0zF8R0IZYtDF+Be7PpVWnmrEIw0JA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-banner-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-banner-service-override/-/monaco-vscode-view-banner-service-override-25.1.2.tgz",
- "integrity": "sha512-zhujHd1PQ6rRXsC2OQGrx/282G2v3lpPFl9heDFGKzpdj5119SgcW+B9p/MwJ1qF3LJpuRRgefNiQtqC/KT1eA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-common-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-common-service-override/-/monaco-vscode-view-common-service-override-25.1.2.tgz",
- "integrity": "sha512-4Po/YaHUvVf4VmhVCZmM2lc/flOptiWSM140bIRNpMcfH0VwihYg15CcDeu1Oc+6DaauzsG3u59GtEvlMmJ9Zw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-bulk-edit-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-status-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-status-bar-service-override/-/monaco-vscode-view-status-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-Jp9ytLaWZ6evabTPtG3Mu3dFx+7WTIPz69BsGpl9PnU0kiSWUqQhPSob0Jz7E2qmMj0ZcNv2Wqvm6bMBu5OyrA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-view-title-bar-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-view-title-bar-service-override/-/monaco-vscode-view-title-bar-service-override-25.1.2.tgz",
- "integrity": "sha512-NVYtTAFR35NV/Fx7tSlbASicvpAjK5A14fmxF7/LJJN8ZmzhA/P3Y+UzhqOQl6/VcPV4pAMU0Z7Sicgwbn37dw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-views-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-views-service-override/-/monaco-vscode-views-service-override-25.1.2.tgz",
- "integrity": "sha512-LfzlztsvobdP5L5EvJ/rqSEgy5fEVmrkMqRteuhEtNGd4hnmdBoX8W7BNMBPff6d4NfCK74pGHJF57RyT4Iixg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-layout-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-workbench-service-override": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-workbench-service-override/-/monaco-vscode-workbench-service-override-25.1.2.tgz",
- "integrity": "sha512-2LMHr+na03FhOAaXpIGmamq9hf7e4wt2kULn8NqNZRd3i+0v1tx/TSSjGhsA5EkrNrFD7CMSoXayBq8tgpCq/A==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "25.1.2",
- "@codingame/monaco-vscode-quickaccess-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-common-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "25.1.2"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-addons-common": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-addons-common/-/monaco-vscode-xterm-addons-common-25.1.2.tgz",
- "integrity": "sha512-4ysdUaH8Biv/vy/iVCgN+fSam3yI7WF8QdC5AYlT8uyS86AXIQe7p5aMB2gTfZsg6OpPMvlJ0pVe7Rdgh3cMBQ==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@xterm/addon-clipboard": "0.3.0-beta.97",
- "@xterm/addon-image": "0.10.0-beta.97",
- "@xterm/addon-ligatures": "0.11.0-beta.97",
- "@xterm/addon-progress": "0.3.0-beta.97",
- "@xterm/addon-search": "0.17.0-beta.97",
- "@xterm/addon-serialize": "0.15.0-beta.97",
- "@xterm/addon-unicode11": "0.10.0-beta.97",
- "@xterm/addon-webgl": "0.20.0-beta.104"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-common": {
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-xterm-common/-/monaco-vscode-xterm-common-25.1.2.tgz",
- "integrity": "sha512-QqEvo3epcVs5EAOq7xxBfCW2AUxaO89+WmZCYSUdhuk/1tQ5Jeq0w4TVo7zCjIFaVJyP/N1bmBXgcM7Y4PYWBw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-xterm-addons-common": "25.1.2",
- "@xterm/xterm": "6.1.0-beta.97"
- }
- },
- "node_modules/@codingame/monaco-vscode-xterm-common/node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.97.tgz",
- "integrity": "sha512-YEn7p+wS2qQ1dyvIXHxmjxmVc/Y1Xv+gZNHayJMAH4FdoxP9CCrhsvpNjBwSynft5t0BWD7FqqsNXNei01oxKw==",
- "license": "MIT",
- "workspaces": [
- "addons/*"
- ]
- },
"node_modules/@discoveryjs/json-ext": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz",
- "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-1.1.0.tgz",
+ "integrity": "sha512-Xc3VhU02wqZ1HvHRJUwL09HkZSTvidqY5Ya0NXBSYOxAp+Ln9dcJr9fySI+CkONzP3PekQo9WdzCv0PGER/mOA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -754,18 +108,15 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/sourcemap-codec": "^1.5.0",
"@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
@@ -774,44 +125,38 @@
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"dev": true,
"license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "dev": true,
- "license": "MIT",
+ "peer": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/source-map": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
- "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "version": "0.3.11",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz",
+ "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "version": "0.3.31",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
@@ -855,93 +200,40 @@
"node": ">= 8"
}
},
- "node_modules/@typefox/monaco-editor-react": {
- "version": "7.7.0",
- "resolved": "https://registry.npmjs.org/@typefox/monaco-editor-react/-/monaco-editor-react-7.7.0.tgz",
- "integrity": "sha512-gbDgCHExBLV22S3QPVu8v2fTtyQdqQ8RItTvROlZF4KJ79DyqhkkviNN7UnMuelFoPCS6QiwvDbMyJ4OBxt5WA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "react": ">=18.0.0 || <20.0.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/@types/eslint": {
- "version": "9.6.1",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz",
- "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "node_modules/@types/eslint-scope": {
- "version": "3.7.7",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
- "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
"node_modules/@types/estree": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@types/node": {
- "version": "22.10.2",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
- "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
+ "version": "25.9.3",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.3.tgz",
+ "integrity": "sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
- "undici-types": "~6.20.0"
+ "undici-types": ">=7.24.0 <7.24.7"
}
},
- "node_modules/@types/trusted-types": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
- "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@vscode/iconv-lite-umd": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/@vscode/iconv-lite-umd/-/iconv-lite-umd-0.7.1.tgz",
- "integrity": "sha512-tK6k0DXFHW7q5+GGuGZO+phpAqpxO4WXl+BLc/8/uOk3RsM2ssAL3CQUQDb1TGfwltjsauhN6S4ghYZzs4sPFw==",
- "license": "MIT"
- },
- "node_modules/@vscode/l10n": {
- "version": "0.0.18",
- "resolved": "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.18.tgz",
- "integrity": "sha512-KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==",
- "license": "MIT"
- },
"node_modules/@webassemblyjs/ast": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
"integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/helper-numbers": "1.13.2",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2"
@@ -952,21 +244,24 @@
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
"integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@webassemblyjs/helper-api-error": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
"integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@webassemblyjs/helper-buffer": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
"integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@webassemblyjs/helper-numbers": {
"version": "1.13.2",
@@ -974,6 +269,7 @@
"integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/floating-point-hex-parser": "1.13.2",
"@webassemblyjs/helper-api-error": "1.13.2",
@@ -985,7 +281,8 @@
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
"integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@webassemblyjs/helper-wasm-section": {
"version": "1.14.1",
@@ -993,6 +290,7 @@
"integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
@@ -1006,6 +304,7 @@
"integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@xtuc/ieee754": "^1.2.0"
}
@@ -1016,6 +315,7 @@
"integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
"dev": true,
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
"@xtuc/long": "4.2.2"
}
@@ -1025,7 +325,8 @@
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
"integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/@webassemblyjs/wasm-edit": {
"version": "1.14.1",
@@ -1033,6 +334,7 @@
"integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
@@ -1050,6 +352,7 @@
"integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-wasm-bytecode": "1.13.2",
@@ -1064,6 +367,7 @@
"integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-buffer": "1.14.1",
@@ -1077,6 +381,7 @@
"integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@webassemblyjs/helper-api-error": "1.13.2",
@@ -1092,208 +397,35 @@
"integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@webassemblyjs/ast": "1.14.1",
"@xtuc/long": "4.2.2"
}
},
- "node_modules/@webpack-cli/configtest": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-3.0.1.tgz",
- "integrity": "sha512-u8d0pJ5YFgneF/GuvEiDA61Tf1VDomHHYMjv/wc9XzYj7nopltpG96nXN5dJRstxZhcNpV1g+nT6CydO7pHbjA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.12.0"
- },
- "peerDependencies": {
- "webpack": "^5.82.0",
- "webpack-cli": "6.x.x"
- }
- },
- "node_modules/@webpack-cli/info": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-3.0.1.tgz",
- "integrity": "sha512-coEmDzc2u/ffMvuW9aCjoRzNSPDl/XLuhPdlFRpT9tZHmJ/039az33CE7uH+8s0uL1j5ZNtfdv0HkfaKRBGJsQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.12.0"
- },
- "peerDependencies": {
- "webpack": "^5.82.0",
- "webpack-cli": "6.x.x"
- }
- },
- "node_modules/@webpack-cli/serve": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-3.0.1.tgz",
- "integrity": "sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18.12.0"
- },
- "peerDependencies": {
- "webpack": "^5.82.0",
- "webpack-cli": "6.x.x"
- },
- "peerDependenciesMeta": {
- "webpack-dev-server": {
- "optional": true
- }
- }
- },
- "node_modules/@xterm/addon-clipboard": {
- "version": "0.3.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-clipboard/-/addon-clipboard-0.3.0-beta.97.tgz",
- "integrity": "sha512-8+1tM4WD1MnQccYc/+Kbo+OeptIEf0rn5az6AUw+lnNHPlJa71Xj8KQNBM5f8sns7uoFZzBxpse8SOTttVefBw==",
- "license": "MIT",
- "dependencies": {
- "js-base64": "^3.7.5"
- },
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-image": {
- "version": "0.10.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-image/-/addon-image-0.10.0-beta.97.tgz",
- "integrity": "sha512-O5P/QFVAQRuZ8sKj2dT6sTyHz/l98g+1tKKqDRZYVAobL6elbAMsh3UL/eQBWfDrBfD23XZ93UcgOFCF62YXuQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-ligatures": {
- "version": "0.11.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-ligatures/-/addon-ligatures-0.11.0-beta.97.tgz",
- "integrity": "sha512-r2WX1JHJBO9tiVzjnHVjD38IOMQI5m7mzZt+2cDAwJTDoFJO6WktxUxX8QV90mCbXLFS6jwX+6G2tzSPKLFsNg==",
- "license": "MIT",
- "dependencies": {
- "lru-cache": "^6.0.0",
- "opentype.js": "^0.8.0"
- },
- "engines": {
- "node": ">8.0.0"
- },
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-progress": {
- "version": "0.3.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-progress/-/addon-progress-0.3.0-beta.97.tgz",
- "integrity": "sha512-bSBb6gBN8Y/RsVMlD1AFCSydqnM9jF0s5USu1Cl3ZJqonC62LnM0BnzBz3LdD21yTLnW38Ogk5//uyA4F5ZNsA==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-search": {
- "version": "0.17.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-search/-/addon-search-0.17.0-beta.97.tgz",
- "integrity": "sha512-PL2n3OJmlcTTVOm2SAtLuR9XB/qz/Y3TNtq8ST+PzSIfeXepy6VveyimWtCUBYrTamKMTuXWe5A5dopmE15RMQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-serialize": {
- "version": "0.15.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-serialize/-/addon-serialize-0.15.0-beta.97.tgz",
- "integrity": "sha512-FWEEQBNVGWfYaaOrCehB2mrc3ZHw6OtAM6Hw3WY+0BuVnK9k1i5+LG4rHDzSjUFyEHrig9ROdgzhOHWpGnRa0g==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-unicode11": {
- "version": "0.10.0-beta.97",
- "resolved": "https://registry.npmjs.org/@xterm/addon-unicode11/-/addon-unicode11-0.10.0-beta.97.tgz",
- "integrity": "sha512-Dd/Tei9UOtHR9rMMsy2NQ+9ZHfRE+FRC3qxTMDartpsXRbxtvzb3p4a358ivgwuSNIgCyRAELXzbFcWWDa73Ng==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.97"
- }
- },
- "node_modules/@xterm/addon-webgl": {
- "version": "0.20.0-beta.104",
- "resolved": "https://registry.npmjs.org/@xterm/addon-webgl/-/addon-webgl-0.20.0-beta.104.tgz",
- "integrity": "sha512-S9zSxwnLXeF8RK1HZXLIdqZELF83ZHVyFJtqNj6b9SdjVMSFrQpa1wwWuJR1McW54hShX3aC9zLj1/1RKiwAxQ==",
- "license": "MIT",
- "peerDependencies": {
- "@xterm/xterm": "^6.1.0-beta.105"
- }
- },
- "node_modules/@xterm/xterm": {
- "version": "6.1.0-beta.145",
- "resolved": "https://registry.npmjs.org/@xterm/xterm/-/xterm-6.1.0-beta.145.tgz",
- "integrity": "sha512-+/JYfFZePPLllxjkmKMuV+gKKzbC5vMdUkoQAB0hes5/gjclU3V73TMO7UC9Br1+JOnjZVdED1U/b8cJ2pV9MQ==",
- "license": "MIT",
- "peer": true,
- "workspaces": [
- "addons/*"
- ]
- },
"node_modules/@xtuc/ieee754": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
"dev": true,
- "license": "BSD-3-Clause"
+ "license": "BSD-3-Clause",
+ "peer": true
},
"node_modules/@xtuc/long": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
"dev": true,
- "license": "Apache-2.0"
- },
- "node_modules/accepts": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
- "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
- "license": "MIT",
- "dependencies": {
- "mime-types": "^3.0.0",
- "negotiator": "^1.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/accepts/node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/accepts/node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
+ "license": "Apache-2.0",
+ "peer": true
},
"node_modules/acorn": {
- "version": "8.14.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
- "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
+ "version": "8.17.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
+ "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -1301,18 +433,32 @@
"node": ">=0.4.0"
}
},
+ "node_modules/acorn-import-phases": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz",
+ "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "peerDependencies": {
+ "acorn": "^8.14.0"
+ }
+ },
"node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "version": "8.20.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
+ "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
},
"funding": {
"type": "github",
@@ -1325,6 +471,7 @@
"integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"ajv": "^8.0.0"
},
@@ -1337,38 +484,18 @@
}
}
},
- "node_modules/ajv-formats/node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
+ "node_modules/ajv-keywords": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
+ "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
- "fast-deep-equal": "^3.1.3",
- "fast-uri": "^3.0.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2"
+ "fast-deep-equal": "^3.1.3"
},
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
- "dev": true,
- "license": "MIT",
"peerDependencies": {
- "ajv": "^6.9.1"
+ "ajv": "^8.8.2"
}
},
"node_modules/ansi-styles": {
@@ -1397,11 +524,19 @@
"lodash": "^4.17.14"
}
},
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.10.37",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.37.tgz",
+ "integrity": "sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "peer": true,
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
},
"node_modules/basic-auth": {
"version": "2.0.1",
@@ -1416,55 +551,6 @@
"node": ">= 0.8"
}
},
- "node_modules/body-parser": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
- "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
- "license": "MIT",
- "dependencies": {
- "bytes": "^3.1.2",
- "content-type": "^1.0.5",
- "debug": "^4.4.3",
- "http-errors": "^2.0.0",
- "iconv-lite": "^0.7.0",
- "on-finished": "^2.4.1",
- "qs": "^6.14.1",
- "raw-body": "^3.0.1",
- "type-is": "^2.0.1"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/body-parser/node_modules/iconv-lite": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
- "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/brace-expansion": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
- "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
"node_modules/braces": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
@@ -1479,9 +565,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
- "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
+ "version": "4.28.2",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz",
+ "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
"dev": true,
"funding": [
{
@@ -1500,10 +586,11 @@
"license": "MIT",
"peer": true,
"dependencies": {
- "caniuse-lite": "^1.0.30001688",
- "electron-to-chromium": "^1.5.73",
- "node-releases": "^2.0.19",
- "update-browserslist-db": "^1.1.1"
+ "baseline-browser-mapping": "^2.10.12",
+ "caniuse-lite": "^1.0.30001782",
+ "electron-to-chromium": "^1.5.328",
+ "node-releases": "^2.0.36",
+ "update-browserslist-db": "^1.2.3"
},
"bin": {
"browserslist": "cli.js"
@@ -1517,21 +604,14 @@
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"dev": true,
- "license": "MIT"
- },
- "node_modules/bytes": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
+ "peer": true
},
"node_modules/call-bind-apply-helpers": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
"integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -1545,6 +625,7 @@
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
"integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
@@ -1558,9 +639,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001690",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
- "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
+ "version": "1.0.30001799",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
+ "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
"dev": true,
"funding": [
{
@@ -1576,7 +657,8 @@
"url": "https://github.com/sponsors/ai"
}
],
- "license": "CC-BY-4.0"
+ "license": "CC-BY-4.0",
+ "peer": true
},
"node_modules/chalk": {
"version": "4.1.2",
@@ -1595,39 +677,13 @@
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/chevrotain": {
- "version": "11.1.1",
- "resolved": "https://registry.npmjs.org/chevrotain/-/chevrotain-11.1.1.tgz",
- "integrity": "sha512-f0yv5CPKaFxfsPTBzX7vGuim4oIC1/gcS7LUGdBSwl2dU6+FON6LVUksdOo1qJjoUvXNn45urgh8C+0a24pACQ==",
- "license": "Apache-2.0",
- "peer": true,
- "dependencies": {
- "@chevrotain/cst-dts-gen": "11.1.1",
- "@chevrotain/gast": "11.1.1",
- "@chevrotain/regexp-to-ast": "11.1.1",
- "@chevrotain/types": "11.1.1",
- "@chevrotain/utils": "11.1.1",
- "lodash-es": "4.17.23"
- }
- },
- "node_modules/chevrotain-allstar": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz",
- "integrity": "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==",
- "license": "MIT",
- "dependencies": {
- "lodash-es": "^4.17.21"
- },
- "peerDependencies": {
- "chevrotain": "^11.0.0"
- }
- },
"node_modules/chrome-trace-event": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
"integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=6.0"
}
@@ -1635,114 +691,45 @@
"node_modules/clone-deep": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
- "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-plain-object": "^2.0.4",
- "kind-of": "^6.0.2",
- "shallow-clone": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/colorette": {
- "version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/content-disposition": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz",
- "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/content-type": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/cookie": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
- "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
+ },
"engines": {
- "node": ">= 0.6"
+ "node": ">=6"
}
},
- "node_modules/cookie-signature": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
- "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
"license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
"engines": {
- "node": ">=6.6.0"
+ "node": ">=7.0.0"
}
},
- "node_modules/core-util-is": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
"license": "MIT"
},
- "node_modules/cors": {
- "version": "2.8.6",
- "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
- "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
+ "node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "dev": true,
"license": "MIT",
- "dependencies": {
- "object-assign": "^4",
- "vary": "^1"
- },
- "engines": {
- "node": ">= 0.10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
+ "peer": true
},
"node_modules/corser": {
"version": "2.0.1",
@@ -1770,9 +757,9 @@
}
},
"node_modules/css-loader": {
- "version": "7.1.3",
- "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.3.tgz",
- "integrity": "sha512-frbERmjT0UC5lMheWpJmMilnt9GEhbZJN/heUb7/zaJYeIzj5St9HvDcfshzzOqbsS+rYpMk++2SD3vGETDSyA==",
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.4.tgz",
+ "integrity": "sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1793,7 +780,7 @@
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "@rspack/core": "0.x || 1.x",
+ "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0",
"webpack": "^5.27.0"
},
"peerDependenciesMeta": {
@@ -1818,45 +805,11 @@
"node": ">=4"
}
},
- "node_modules/debug": {
- "version": "4.4.3",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
- "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/dompurify": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.3.1.tgz",
- "integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
- "license": "(MPL-2.0 OR Apache-2.0)",
- "optionalDependencies": {
- "@types/trusted-types": "^2.0.7"
- }
- },
"node_modules/dunder-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
@@ -1867,27 +820,13 @@
"node": ">= 0.4"
}
},
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "license": "MIT"
- },
"node_modules/electron-to-chromium": {
- "version": "1.5.74",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.74.tgz",
- "integrity": "sha512-ck3//9RC+6oss/1Bh9tiAVFy5vfSKbRHAFh7Z3/eTRkEqJeWgymloShB17Vg3Z4nmDNp35vAd1BZ6CMW4Wt6Iw==",
+ "version": "1.5.374",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.374.tgz",
+ "integrity": "sha512-HCF5i7izveksHSGqa7mhDh6tr3Uz9Dar2RAjwuh69bw3QGPVObjQIgLwQWeO/Rxp9/r0KdboKy9RbpQDl97fjg==",
"dev": true,
- "license": "ISC"
- },
- "node_modules/encodeurl": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
+ "license": "ISC",
+ "peer": true
},
"node_modules/end-of-stream": {
"version": "1.4.5",
@@ -1900,14 +839,14 @@
}
},
"node_modules/enhanced-resolve": {
- "version": "5.17.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz",
- "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==",
+ "version": "5.24.0",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.0.tgz",
+ "integrity": "sha512-SkE2t82KlkkxQRVMVLAGKxLfORGQfrkx5dkj+vlgXRVNEdPc4eZcR+J/Fvj8C+yKSFH5L0q3NFlyufOVQnCcYQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
+ "tapable": "^2.3.3"
},
"engines": {
"node": ">=10.13.0"
@@ -1930,6 +869,7 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -1939,22 +879,25 @@
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
}
},
"node_modules/es-module-lexer": {
- "version": "1.5.4",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
- "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
+ "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/es-object-atoms": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
"integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0"
@@ -1969,22 +912,18 @@
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=6"
}
},
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "license": "MIT"
- },
"node_modules/eslint-scope": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
"integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dev": true,
"license": "BSD-2-Clause",
+ "peer": true,
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^4.1.1"
@@ -1999,6 +938,7 @@
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
"license": "BSD-2-Clause",
+ "peer": true,
"dependencies": {
"estraverse": "^5.2.0"
},
@@ -2012,6 +952,7 @@
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"dev": true,
"license": "BSD-2-Clause",
+ "peer": true,
"engines": {
"node": ">=4.0"
}
@@ -2022,19 +963,11 @@
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"dev": true,
"license": "BSD-2-Clause",
+ "peer": true,
"engines": {
"node": ">=4.0"
}
},
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
"node_modules/eventemitter3": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
@@ -2048,6 +981,7 @@
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=0.8.x"
}
@@ -2144,80 +1078,13 @@
"which": "bin/which"
}
},
- "node_modules/express": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz",
- "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==",
- "license": "MIT",
- "dependencies": {
- "accepts": "^2.0.0",
- "body-parser": "^2.2.1",
- "content-disposition": "^1.0.0",
- "content-type": "^1.0.5",
- "cookie": "^0.7.1",
- "cookie-signature": "^1.2.1",
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "finalhandler": "^2.1.0",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.0",
- "merge-descriptors": "^2.0.0",
- "mime-types": "^3.0.0",
- "on-finished": "^2.4.1",
- "once": "^1.4.0",
- "parseurl": "^1.3.3",
- "proxy-addr": "^2.0.7",
- "qs": "^6.14.0",
- "range-parser": "^1.2.1",
- "router": "^2.2.0",
- "send": "^1.1.0",
- "serve-static": "^2.2.0",
- "statuses": "^2.0.1",
- "type-is": "^2.0.1",
- "vary": "^1.1.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/express/node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/express/node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/fast-glob": {
"version": "3.3.3",
@@ -2236,29 +1103,23 @@
"node": ">=8.6.0"
}
},
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/fast-uri": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz",
- "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==",
- "dev": true,
- "license": "BSD-3-Clause"
- },
- "node_modules/fastest-levenshtein": {
- "version": "1.0.16",
- "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
- "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
+ "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
"dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 4.9.1"
- }
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fastify"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fastify"
+ }
+ ],
+ "license": "BSD-3-Clause",
+ "peer": true
},
"node_modules/fastq": {
"version": "1.19.1",
@@ -2283,27 +1144,6 @@
"node": ">=8"
}
},
- "node_modules/finalhandler": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz",
- "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "on-finished": "^2.4.1",
- "parseurl": "^1.3.3",
- "statuses": "^2.0.1"
- },
- "engines": {
- "node": ">= 18.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
@@ -2349,42 +1189,11 @@
}
}
},
- "node_modules/forwarded": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fresh": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
- "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/function-bind": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -2394,6 +1203,7 @@
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.6.tgz",
"integrity": "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
@@ -2445,12 +1255,14 @@
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
"integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
"dev": true,
- "license": "BSD-2-Clause"
+ "license": "BSD-2-Clause",
+ "peer": true
},
"node_modules/gopd": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -2480,6 +1292,7 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -2492,6 +1305,7 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.2"
@@ -2523,26 +1337,6 @@
"node": ">=12"
}
},
- "node_modules/http-errors": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
- "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
- "license": "MIT",
- "dependencies": {
- "depd": "~2.0.0",
- "inherits": "~2.0.4",
- "setprototypeof": "~1.2.0",
- "statuses": "~2.0.2",
- "toidentifier": "~1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/http-proxy": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
@@ -2612,12 +1406,6 @@
"postcss": "^8.1.0"
}
},
- "node_modules/immediate": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
- "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
- "license": "MIT"
- },
"node_modules/import-local": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
@@ -2638,12 +1426,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
"node_modules/interpret": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
@@ -2654,15 +1436,6 @@
"node": ">= 0.10"
}
},
- "node_modules/ipaddr.js": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- }
- },
"node_modules/is-core-module": {
"version": "2.16.0",
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.0.tgz",
@@ -2725,12 +1498,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/is-promise": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
- "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
- "license": "MIT"
- },
"node_modules/is-stream": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
@@ -2741,12 +1508,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
- "license": "MIT"
- },
"node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
@@ -2770,6 +1531,7 @@
"integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@types/node": "*",
"merge-stream": "^2.0.0",
@@ -2785,6 +1547,7 @@
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"has-flag": "^4.0.0"
},
@@ -2795,52 +1558,13 @@
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
- "node_modules/js-base64": {
- "version": "3.7.8",
- "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.8.tgz",
- "integrity": "sha512-hNngCeKxIUQiEUN3GPJOkz4wF/YvdUdbNL9hsBcMQTkKzboD7T/q3OYOuuPZLUE6dBxSGpwhk5mwuDud7JVAow==",
- "license": "BSD-3-Clause"
- },
- "node_modules/jschardet": {
- "version": "3.1.4",
- "resolved": "https://registry.npmjs.org/jschardet/-/jschardet-3.1.4.tgz",
- "integrity": "sha512-/kmVISmrwVwtyYU40iQUOp3SUPk2dhNCMsZBQX0R1/jZ8maaXJ/oZIzUOiyOqcgtLnETFKYChbJ5iDC/eWmFHg==",
- "license": "LGPL-2.1+",
- "engines": {
- "node": ">=0.1.90"
- }
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
- "license": "MIT"
- },
- "node_modules/jsonc-parser": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
- "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
- "license": "MIT"
- },
- "node_modules/jszip": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz",
- "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==",
- "license": "(MIT OR GPL-3.0-or-later)",
- "dependencies": {
- "lie": "~3.3.0",
- "pako": "~1.0.2",
- "readable-stream": "~2.3.6",
- "setimmediate": "^1.0.5"
- }
+ "license": "MIT",
+ "peer": true
},
"node_modules/kind-of": {
"version": "6.0.3",
@@ -2852,40 +1576,19 @@
"node": ">=0.10.0"
}
},
- "node_modules/langium": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/langium/-/langium-4.2.0.tgz",
- "integrity": "sha512-SoXTYrTyA9x0CjVoguZfB9NIbj2RwQ7KpltHyJwB7jyzbnfHkqw5Alf9A1JtIqouT7fZv4xMCCy+7CoIYGV65w==",
- "license": "MIT",
- "dependencies": {
- "chevrotain": "~11.1.1",
- "chevrotain-allstar": "~0.3.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-languageserver-textdocument": "~1.0.11",
- "vscode-uri": "~3.1.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/lie": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz",
- "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==",
- "license": "MIT",
- "dependencies": {
- "immediate": "~3.0.5"
- }
- },
"node_modules/loader-runner": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
- "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz",
+ "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=6.11.5"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
"node_modules/locate-path": {
@@ -2901,79 +1604,30 @@
"node": ">=8"
}
},
- "node_modules/lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/lodash-es": {
- "version": "4.17.23",
- "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.23.tgz",
- "integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
- "license": "MIT"
- },
- "node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "license": "ISC",
- "dependencies": {
- "yallist": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/marked": {
- "version": "14.0.0",
- "resolved": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz",
- "integrity": "sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==",
- "license": "MIT",
- "bin": {
- "marked": "bin/marked.js"
- },
- "engines": {
- "node": ">= 18"
- }
- },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/math-intrinsics": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
}
},
- "node_modules/media-typer": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
- "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/merge-descriptors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
- "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/merge-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/merge2": {
"version": "1.4.1",
@@ -3013,40 +1667,16 @@
}
},
"node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "version": "1.54.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "mime-db": "1.52.0"
- },
+ "peer": true,
"engines": {
"node": ">= 0.6"
}
},
- "node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/minimist": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
@@ -3070,132 +1700,15 @@
"mkdirp": "bin/cmd.js"
}
},
- "node_modules/monaco-editor": {
- "name": "@codingame/monaco-vscode-editor-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-editor-api/-/monaco-vscode-editor-api-25.1.2.tgz",
- "integrity": "sha512-dVXoBLRN8vyFHsLY6iYISaNetZ3ispXLut0qL+jvN0e0CEFkUv1F/3EAE7myptrJSS/N1AptrRIxATT3lwFP+Q==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2"
- }
- },
- "node_modules/monaco-languageclient": {
- "version": "10.7.0",
- "resolved": "https://registry.npmjs.org/monaco-languageclient/-/monaco-languageclient-10.7.0.tgz",
- "integrity": "sha512-oA5cOFixkF4bspVL2zMSn48LvlNR/Cu3vJ8MCVam3PdjobSULGgHtOASuZIi3FgWK42X1z8/6hrG0LCjvNu1Hw==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "^25.1.2",
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-editor-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-cs": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-de": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-es": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-fr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-it": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ja": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ko": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pl": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-pt-br": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-qps-ploc": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-ru": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-tr": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hans": "^25.1.2",
- "@codingame/monaco-vscode-language-pack-zh-hant": "^25.1.2",
- "@codingame/monaco-vscode-languages-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-log-service-override": "^25.1.2",
- "@codingame/monaco-vscode-model-service-override": "^25.1.2",
- "@codingame/monaco-vscode-monarch-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@codingame/monaco-vscode-workbench-service-override": "^25.1.2",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver-protocol": "~3.17.5",
- "vscode-ws-jsonrpc": "~3.5.0"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
"node_modules/monaco-languageclient-examples": {
- "version": "2026.2.1",
- "resolved": "https://registry.npmjs.org/monaco-languageclient-examples/-/monaco-languageclient-examples-2026.2.1.tgz",
- "integrity": "sha512-F0hS2HKcwIBRcofl3lw0zN8wAv8PoGHNlixi2ZdxMk7ZwRHY/Bhgehgg+xEGvGyvgfYg1UseW5ilOH+dATOmtg==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-configuration-service-override": "^25.1.2",
- "@codingame/monaco-vscode-cpp-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-debug-service-override": "^25.1.2",
- "@codingame/monaco-vscode-editor-api": "^25.1.2",
- "@codingame/monaco-vscode-environment-service-override": "^25.1.2",
- "@codingame/monaco-vscode-explorer-service-override": "^25.1.2",
- "@codingame/monaco-vscode-extension-api": "^25.1.2",
- "@codingame/monaco-vscode-files-service-override": "^25.1.2",
- "@codingame/monaco-vscode-groovy-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-java-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-javascript-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-json-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-json-language-features-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-keybindings-service-override": "^25.1.2",
- "@codingame/monaco-vscode-lifecycle-service-override": "^25.1.2",
- "@codingame/monaco-vscode-localization-service-override": "^25.1.2",
- "@codingame/monaco-vscode-outline-service-override": "^25.1.2",
- "@codingame/monaco-vscode-preferences-service-override": "^25.1.2",
- "@codingame/monaco-vscode-python-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-remote-agent-service-override": "^25.1.2",
- "@codingame/monaco-vscode-search-result-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-search-service-override": "^25.1.2",
- "@codingame/monaco-vscode-secret-storage-service-override": "^25.1.2",
- "@codingame/monaco-vscode-standalone-json-language-features": "^25.1.2",
- "@codingame/monaco-vscode-standalone-typescript-language-features": "^25.1.2",
- "@codingame/monaco-vscode-storage-service-override": "^25.1.2",
- "@codingame/monaco-vscode-testing-service-override": "^25.1.2",
- "@codingame/monaco-vscode-textmate-service-override": "^25.1.2",
- "@codingame/monaco-vscode-theme-defaults-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-theme-service-override": "^25.1.2",
- "@codingame/monaco-vscode-typescript-basics-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-typescript-language-features-default-extension": "^25.1.2",
- "@codingame/monaco-vscode-view-banner-service-override": "^25.1.2",
- "@codingame/monaco-vscode-view-status-bar-service-override": "^25.1.2",
- "@codingame/monaco-vscode-view-title-bar-service-override": "^25.1.2",
- "@codingame/monaco-vscode-views-service-override": "^25.1.2",
- "@typefox/monaco-editor-react": "~7.7.0",
- "cors": "~2.8.6",
- "express": "~5.2.1",
- "jszip": "~3.10.1",
- "langium": "~4.2.0",
- "monaco-languageclient": "~10.7.0",
- "pyright": "~1.1.408",
- "react": "~19.2.4",
- "react-dom": "~19.2.4",
- "request-light": "~0.8.0",
- "vscode": "npm:@codingame/monaco-vscode-extension-api@^25.1.2",
- "vscode-json-languageservice": "~5.7.1",
- "vscode-languageclient": "~9.0.1",
- "vscode-languageserver": "~9.0.1",
- "vscode-uri": "~3.1.0",
- "vscode-ws-jsonrpc": "~3.5.0",
- "ws": "~8.19.0",
- "wtd-core": "~4.0.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
+ "resolved": "../../packages/examples",
+ "link": true
},
"node_modules/ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
"license": "MIT"
},
"node_modules/nanoid": {
@@ -3217,21 +1730,13 @@
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
},
- "node_modules/negotiator": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
- "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
"node_modules/neo-async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/nice-try": {
"version": "1.0.5",
@@ -3241,11 +1746,15 @@
"license": "MIT"
},
"node_modules/node-releases": {
- "version": "2.0.19",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "version": "2.0.47",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.47.tgz",
+ "integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true,
+ "engines": {
+ "node": ">=18"
+ }
},
"node_modules/npm-run-path": {
"version": "2.0.2",
@@ -3270,19 +1779,11 @@
"node": ">=4"
}
},
- "node_modules/object-assign": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/object-inspect": {
"version": "1.13.3",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
"integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -3291,22 +1792,11 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dev": true,
"license": "ISC",
"dependencies": {
"wrappy": "1"
@@ -3322,18 +1812,6 @@
"opener": "bin/opener-bin.js"
}
},
- "node_modules/opentype.js": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/opentype.js/-/opentype.js-0.8.0.tgz",
- "integrity": "sha512-FQHR4oGP+a0m/f6yHoRpBOIbn/5ZWxKd4D/djHVJu8+KpBTYrJda0b7mLcgDEMWXE9xBCJm+qb0yv6FcvPjukg==",
- "license": "MIT",
- "dependencies": {
- "tiny-inflate": "^1.0.2"
- },
- "bin": {
- "ot": "bin/ot"
- }
- },
"node_modules/p-finally": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
@@ -3383,21 +1861,6 @@
"node": ">=6"
}
},
- "node_modules/pako": {
- "version": "1.0.11",
- "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
- "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
- "license": "(MIT AND Zlib)"
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/path-exists": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
@@ -3425,16 +1888,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/path-to-regexp": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
- "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
- "license": "MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
@@ -3513,7 +1966,6 @@
}
],
"license": "MIT",
- "peer": true,
"dependencies": {
"nanoid": "^3.3.7",
"picocolors": "^1.1.1",
@@ -3607,25 +2059,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "license": "MIT"
- },
- "node_modules/proxy-addr": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "license": "MIT",
- "dependencies": {
- "forwarded": "0.2.0",
- "ipaddr.js": "1.9.1"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
"node_modules/pump": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
@@ -3637,36 +2070,11 @@
"once": "^1.3.1"
}
},
- "node_modules/punycode": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/pyright": {
- "version": "1.1.408",
- "resolved": "https://registry.npmjs.org/pyright/-/pyright-1.1.408.tgz",
- "integrity": "sha512-N61pxaLLCsPcUuPPHMNIrGoZgGBgrbjBX5UqkaT5UV8NVZdL7ExsO6N3ectv1DzAUsLOzdlyqoYtX76u8eF4YA==",
- "license": "MIT",
- "bin": {
- "pyright": "index.js",
- "pyright-langserver": "langserver.index.js"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- }
- },
"node_modules/qs": {
"version": "6.14.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz",
"integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==",
+ "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"side-channel": "^1.1.0"
@@ -3699,93 +2107,6 @@
],
"license": "MIT"
},
- "node_modules/randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "^5.1.0"
- }
- },
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/raw-body": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz",
- "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==",
- "license": "MIT",
- "dependencies": {
- "bytes": "~3.1.2",
- "http-errors": "~2.0.1",
- "iconv-lite": "~0.7.0",
- "unpipe": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/raw-body/node_modules/iconv-lite": {
- "version": "0.7.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
- "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
- "license": "MIT",
- "dependencies": {
- "safer-buffer": ">= 2.1.2 < 3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/react": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
- "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dom": {
- "version": "19.2.4",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
- "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
- "license": "MIT",
- "dependencies": {
- "scheduler": "^0.27.0"
- },
- "peerDependencies": {
- "react": "^19.2.4"
- }
- },
- "node_modules/readable-stream": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
- "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
"node_modules/rechoir": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
@@ -3798,18 +2119,13 @@
"node": ">= 0.10"
}
},
- "node_modules/request-light": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/request-light/-/request-light-0.8.0.tgz",
- "integrity": "sha512-bH6E4PMmsEXYrLX6Kr1vu+xI3HproB1vECAwaPSJeroLE1kpWE3HR27uB4icx+6YORu1ajqBJXxuedv8ZQg5Lw==",
- "license": "MIT"
- },
"node_modules/require-from-string": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=0.10.0"
}
@@ -3873,22 +2189,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/router": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
- "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.0",
- "depd": "^2.0.0",
- "is-promise": "^4.0.0",
- "parseurl": "^1.3.3",
- "path-to-regexp": "^8.0.0"
- },
- "engines": {
- "node": ">= 18"
- }
- },
"node_modules/run-parallel": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
@@ -3917,149 +2217,56 @@
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "dev": true,
"license": "MIT"
},
"node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
- "license": "MIT"
- },
- "node_modules/scheduler": {
- "version": "0.27.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
- "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
- "license": "MIT"
- },
- "node_modules/schema-utils": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/secure-compare": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz",
- "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==",
"dev": true,
"license": "MIT"
},
- "node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/send": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
- "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.4.3",
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "etag": "^1.8.1",
- "fresh": "^2.0.0",
- "http-errors": "^2.0.1",
- "mime-types": "^3.0.2",
- "ms": "^2.1.3",
- "on-finished": "^2.4.1",
- "range-parser": "^1.2.1",
- "statuses": "^2.0.2"
- },
- "engines": {
- "node": ">= 18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/send/node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/send/node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
- }
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
- "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
+ "node_modules/schema-utils": {
+ "version": "4.3.3",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz",
+ "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==",
"dev": true,
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/serve-static": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
- "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
"license": "MIT",
+ "peer": true,
"dependencies": {
- "encodeurl": "^2.0.0",
- "escape-html": "^1.0.3",
- "parseurl": "^1.3.3",
- "send": "^1.2.0"
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
},
"engines": {
- "node": ">= 18"
+ "node": ">= 10.13.0"
},
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/express"
+ "url": "https://opencollective.com/webpack"
}
},
- "node_modules/setimmediate": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
- "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==",
+ "node_modules/secure-compare": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/secure-compare/-/secure-compare-3.0.1.tgz",
+ "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==",
+ "dev": true,
"license": "MIT"
},
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "license": "ISC"
+ "node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
},
"node_modules/shallow-clone": {
"version": "3.0.1",
@@ -4137,6 +2344,7 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -4156,6 +2364,7 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -4172,6 +2381,7 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bound": "^1.0.2",
@@ -4190,6 +2400,7 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bound": "^1.0.2",
@@ -4259,6 +2470,7 @@
"integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"buffer-from": "^1.0.0",
"source-map": "^0.6.0"
@@ -4270,28 +2482,11 @@
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"license": "BSD-3-Clause",
+ "peer": true,
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/statuses": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
- "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
"node_modules/strip-eof": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
@@ -4346,24 +2541,29 @@
}
},
"node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
}
},
"node_modules/terser": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz",
- "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",
+ "version": "5.48.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.48.0.tgz",
+ "integrity": "sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==",
"dev": true,
"license": "BSD-2-Clause",
+ "peer": true,
"dependencies": {
"@jridgewell/source-map": "^0.3.3",
- "acorn": "^8.8.2",
+ "acorn": "^8.15.0",
"commander": "^2.20.0",
"source-map-support": "~0.5.20"
},
@@ -4375,16 +2575,16 @@
}
},
"node_modules/terser-webpack-plugin": {
- "version": "5.3.11",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz",
- "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==",
+ "version": "5.6.1",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz",
+ "integrity": "sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"jest-worker": "^27.4.5",
"schema-utils": "^4.3.0",
- "serialize-javascript": "^6.0.2",
"terser": "^5.31.1"
},
"engines": {
@@ -4398,81 +2598,44 @@
"webpack": "^5.1.0"
},
"peerDependenciesMeta": {
+ "@minify-html/node": {
+ "optional": true
+ },
"@swc/core": {
"optional": true
},
+ "@swc/css": {
+ "optional": true
+ },
+ "@swc/html": {
+ "optional": true
+ },
+ "clean-css": {
+ "optional": true
+ },
+ "cssnano": {
+ "optional": true
+ },
+ "csso": {
+ "optional": true
+ },
"esbuild": {
"optional": true
},
+ "html-minifier-terser": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "postcss": {
+ "optional": true
+ },
"uglify-js": {
"optional": true
}
}
},
- "node_modules/terser-webpack-plugin/node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3",
- "fast-uri": "^3.0.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/terser-webpack-plugin/node_modules/schema-utils": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
- "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/tiny-inflate": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
- "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==",
- "license": "MIT"
- },
"node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@@ -4486,19 +2649,10 @@
"node": ">=8.0"
}
},
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.6"
- }
- },
"node_modules/ts-loader": {
- "version": "9.5.4",
- "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.4.tgz",
- "integrity": "sha512-nCz0rEwunlTZiy6rXFByQU1kVVpCIgUpc/psFiKVrUwrizdnIbRFu8w7bxhUF0X613DYwT4XzrZHpVyMe758hQ==",
+ "version": "9.6.1",
+ "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.6.1.tgz",
+ "integrity": "sha512-8FMHnmxtpncUAu0ZjkqpXnOTlwc9eY95esH8WVN94guTPPdkg2ofVdiVM5j8L2lmjiGerXd56zXb/D2JyVQPLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4512,47 +2666,14 @@
"node": ">=12.0.0"
},
"peerDependencies": {
+ "loader-utils": "*",
"typescript": "*",
- "webpack": "^5.0.0"
- }
- },
- "node_modules/type-is": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
- "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
- "license": "MIT",
- "dependencies": {
- "content-type": "^1.0.5",
- "media-typer": "^1.1.0",
- "mime-types": "^3.0.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/type-is/node_modules/mime-db": {
- "version": "1.54.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
- "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/type-is/node_modules/mime-types": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz",
- "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==",
- "license": "MIT",
- "dependencies": {
- "mime-db": "^1.54.0"
- },
- "engines": {
- "node": ">=18"
+ "webpack": "^4.0.0 || ^5.0.0"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/express"
+ "peerDependenciesMeta": {
+ "loader-utils": {
+ "optional": true
+ }
}
},
"node_modules/typescript": {
@@ -4571,11 +2692,12 @@
}
},
"node_modules/undici-types": {
- "version": "6.20.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
- "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
+ "version": "7.24.6",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
+ "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/union": {
"version": "0.5.0",
@@ -4589,19 +2711,10 @@
"node": ">= 0.8.0"
}
},
- "node_modules/unpipe": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/update-browserslist-db": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
- "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
"dev": true,
"funding": [
{
@@ -4618,9 +2731,10 @@
}
],
"license": "MIT",
+ "peer": true,
"dependencies": {
"escalade": "^3.2.0",
- "picocolors": "^1.1.0"
+ "picocolors": "^1.1.1"
},
"bin": {
"update-browserslist-db": "cli.js"
@@ -4629,16 +2743,6 @@
"browserslist": ">= 4.21.0"
}
},
- "node_modules/uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "dev": true,
- "license": "BSD-2-Clause",
- "dependencies": {
- "punycode": "^2.1.0"
- }
- },
"node_modules/url-join": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz",
@@ -4650,134 +2754,17 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true,
"license": "MIT"
},
- "node_modules/vary": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/vscode": {
- "name": "@codingame/monaco-vscode-extension-api",
- "version": "25.1.2",
- "resolved": "https://registry.npmjs.org/@codingame/monaco-vscode-extension-api/-/monaco-vscode-extension-api-25.1.2.tgz",
- "integrity": "sha512-SJW/YOhjo+9MXEyzMwQMUWdJVR3Llc6pTq5JQqs6Y30v73gTrpLqtzbd9FNdCuQR8S6bUk5ScH8GL4QrVuL5FA==",
- "license": "MIT",
- "dependencies": {
- "@codingame/monaco-vscode-api": "25.1.2",
- "@codingame/monaco-vscode-extensions-service-override": "25.1.2"
- }
- },
- "node_modules/vscode-json-languageservice": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-5.7.1.tgz",
- "integrity": "sha512-sMK2F8p7St0lJCr/4IfbQRoEUDUZRR7Ud0IiSl8I/JtN+m9Gv+FJlNkSAYns2R7Ebm/PKxqUuWYOfBej/rAdBQ==",
- "license": "MIT",
- "dependencies": {
- "@vscode/l10n": "^0.0.18",
- "jsonc-parser": "^3.3.1",
- "vscode-languageserver-textdocument": "^1.0.12",
- "vscode-languageserver-types": "^3.17.5",
- "vscode-uri": "^3.1.0"
- }
- },
- "node_modules/vscode-jsonrpc": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz",
- "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/vscode-languageclient": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-9.0.1.tgz",
- "integrity": "sha512-JZiimVdvimEuHh5olxhxkht09m3JzUGwggb5eRUkzzJhZ2KjCN0nh55VfiED9oez9DyF8/fz1g1iBV3h+0Z2EA==",
- "license": "MIT",
- "dependencies": {
- "minimatch": "^5.1.0",
- "semver": "^7.3.7",
- "vscode-languageserver-protocol": "3.17.5"
- },
- "engines": {
- "vscode": "^1.82.0"
- }
- },
- "node_modules/vscode-languageserver": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz",
- "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==",
- "license": "MIT",
- "dependencies": {
- "vscode-languageserver-protocol": "3.17.5"
- },
- "bin": {
- "installServerIntoExtension": "bin/installServerIntoExtension"
- }
- },
- "node_modules/vscode-languageserver-protocol": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz",
- "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==",
- "license": "MIT",
- "dependencies": {
- "vscode-jsonrpc": "8.2.0",
- "vscode-languageserver-types": "3.17.5"
- }
- },
- "node_modules/vscode-languageserver-textdocument": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz",
- "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==",
- "license": "MIT"
- },
- "node_modules/vscode-languageserver-types": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz",
- "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==",
- "license": "MIT"
- },
- "node_modules/vscode-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
- "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
- "license": "MIT"
- },
- "node_modules/vscode-ws-jsonrpc": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/vscode-ws-jsonrpc/-/vscode-ws-jsonrpc-3.5.0.tgz",
- "integrity": "sha512-13ZDy7Od4AfEPK2HIfY3DtyRi4FVsvFql1yobVJrpIoHOKGGJpIjVvIJpMxkrHzCZzWlYlg+WEu2hrYkCTvM0Q==",
- "license": "MIT",
- "dependencies": {
- "vscode-jsonrpc": "~8.2.1"
- },
- "engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
- }
- },
- "node_modules/vscode-ws-jsonrpc/node_modules/vscode-jsonrpc": {
- "version": "8.2.1",
- "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.1.tgz",
- "integrity": "sha512-kdjOSJ2lLIn7r1rtrMbbNCHjyMPfRnowdKjBQ+mGq6NAW5QY2bEZC/khaC5OR8svbbjvLEaIXkOq45e2X9BIbQ==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- }
- },
"node_modules/watchpack": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
- "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.2.tgz",
+ "integrity": "sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
- "glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.1.2"
},
"engines": {
@@ -4785,36 +2772,36 @@
}
},
"node_modules/webpack": {
- "version": "5.97.1",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz",
- "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==",
+ "version": "5.107.2",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.107.2.tgz",
+ "integrity": "sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ==",
"dev": true,
"license": "MIT",
"peer": true,
"dependencies": {
- "@types/eslint-scope": "^3.7.7",
- "@types/estree": "^1.0.6",
+ "@types/estree": "^1.0.8",
+ "@types/json-schema": "^7.0.15",
"@webassemblyjs/ast": "^1.14.1",
"@webassemblyjs/wasm-edit": "^1.14.1",
"@webassemblyjs/wasm-parser": "^1.14.1",
- "acorn": "^8.14.0",
- "browserslist": "^4.24.0",
+ "acorn": "^8.16.0",
+ "acorn-import-phases": "^1.0.3",
+ "browserslist": "^4.28.1",
"chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.17.1",
- "es-module-lexer": "^1.2.1",
+ "enhanced-resolve": "^5.22.0",
+ "es-module-lexer": "^2.1.0",
"eslint-scope": "5.1.1",
"events": "^3.2.0",
"glob-to-regexp": "^0.4.1",
"graceful-fs": "^4.2.11",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
+ "loader-runner": "^4.3.2",
+ "mime-db": "^1.54.0",
"neo-async": "^2.6.2",
- "schema-utils": "^3.2.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.10",
- "watchpack": "^2.4.1",
- "webpack-sources": "^3.2.3"
+ "schema-utils": "^4.3.3",
+ "tapable": "^2.3.0",
+ "terser-webpack-plugin": "^5.5.0",
+ "watchpack": "^2.5.1",
+ "webpack-sources": "^3.5.0"
},
"bin": {
"webpack": "bin/webpack.js"
@@ -4833,22 +2820,16 @@
}
},
"node_modules/webpack-cli": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz",
- "integrity": "sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw==",
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-7.0.3.tgz",
+ "integrity": "sha512-2E2C6A1e2El7791zQgTH7LPIuwLjRliow9OHS/qlJc9pwhZlCoL/uiwqd/1WSlXT83wJfmfDbkcqHXuXoPJZ3g==",
"dev": true,
"license": "MIT",
- "peer": true,
"dependencies": {
- "@discoveryjs/json-ext": "^0.6.1",
- "@webpack-cli/configtest": "^3.0.1",
- "@webpack-cli/info": "^3.0.1",
- "@webpack-cli/serve": "^3.0.1",
- "colorette": "^2.0.14",
- "commander": "^12.1.0",
- "cross-spawn": "^7.0.3",
+ "@discoveryjs/json-ext": "^1.1.0",
+ "commander": "^14.0.3",
+ "cross-spawn": "^7.0.6",
"envinfo": "^7.14.0",
- "fastest-levenshtein": "^1.0.12",
"import-local": "^3.0.2",
"interpret": "^3.1.1",
"rechoir": "^0.8.0",
@@ -4858,14 +2839,16 @@
"webpack-cli": "bin/cli.js"
},
"engines": {
- "node": ">=18.12.0"
+ "node": ">=20.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"peerDependencies": {
- "webpack": "^5.82.0"
+ "webpack": "^5.101.0",
+ "webpack-bundle-analyzer": "^4.0.0 || ^5.0.0",
+ "webpack-dev-server": "^5.0.0"
},
"peerDependenciesMeta": {
"webpack-bundle-analyzer": {
@@ -4877,13 +2860,13 @@
}
},
"node_modules/webpack-cli/node_modules/commander": {
- "version": "12.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
- "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz",
+ "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=18"
+ "node": ">=20"
}
},
"node_modules/webpack-cli/node_modules/interpret": {
@@ -4925,11 +2908,12 @@
}
},
"node_modules/webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
+ "version": "3.5.0",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.0.tgz",
+ "integrity": "sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=10.13.0"
}
@@ -4974,39 +2958,7 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "license": "ISC"
- },
- "node_modules/ws": {
- "version": "8.19.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
- "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/wtd-core": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/wtd-core/-/wtd-core-4.0.1.tgz",
- "integrity": "sha512-q6sV6Slw47bwlhwbztot0MklWaVzywUAi0wAKWwOuL/LTY4IpVFgoHQ+cnlhG2ZUms/OkJUhyfhsfoHNYkKjzA==",
- "license": "MIT"
- },
- "node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true,
"license": "ISC"
}
}
diff --git a/verify/webpack/package.json b/verify/webpack/package.json
index 4d76a605b..c52cb4b55 100644
--- a/verify/webpack/package.json
+++ b/verify/webpack/package.json
@@ -12,19 +12,19 @@
"start": "http-server ./ --port 8082"
},
"dependencies": {
- "monaco-languageclient-examples": "^2026.2.1"
+ "monaco-languageclient-examples": "../../packages/examples"
},
"devDependencies": {
- "css-loader": "~7.1.3",
+ "css-loader": "~7.1.4",
"http-server": "~14.1.1",
"shx": "~0.4.0",
"source-map-loader": "~5.0.0",
"style-loader": "~4.0.0",
- "ts-loader": "~9.5.4",
- "webpack-cli": "~6.0.1"
+ "ts-loader": "~9.6.1",
+ "webpack-cli": "~7.0.3"
},
"engines": {
- "node": ">=20.10.0",
- "npm": ">=10.2.3"
+ "node": ">=22",
+ "npm": ">=10"
}
}
diff --git a/vite.config.ts b/vite.config.ts
index d261538a4..909bf47dd 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -54,16 +54,16 @@ export const definedViteConfig = defineConfig({
'@codingame/monaco-vscode-standalone-html-language-features',
'@codingame/monaco-vscode-standalone-json-language-features',
'@codingame/monaco-vscode-standalone-typescript-language-features',
+ '@codingame/monaco-vscode-files-service-override',
'@testing-library/react',
'langium',
'langium/lsp',
'langium/grammar',
'vscode/localExtensionHost',
'vscode-jsonrpc',
- 'vscode-languageclient',
- 'vscode-languageserver',
- 'vscode-languageserver/browser.js',
- 'vscode-languageserver-protocol'
+ 'vscode-languageclient/browser',
+ 'vscode-languageserver-protocol/browser',
+ 'vscode-languageserver/browser'
]
},
plugins: [