From 4e405384560b30bab076edc7b226675ade51d447 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Fri, 11 Oct 2024 20:27:22 +0800
Subject: [PATCH 01/22] =?UTF-8?q?workflow(GitHub=20Actions):=20fix=20the?=
=?UTF-8?q?=20error=E2=80=94cnpm:=20command=20not=20found?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/release.yml | 9 +++------
.gitignore | 1 -
package.json | 5 +++--
pnpm-lock.yaml | 22 ++++++++++++++++++++++
scripts/release.mts | 11 +++++------
5 files changed, 33 insertions(+), 15 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 954564ea..8b6b09f6 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -32,12 +32,9 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- - run: cnpm sync
- if: success()
-
- - run: curl -L https://npmmirror.com/sync/json-editor-vue
- if: success()
-
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+ - run: pnpm sync-to-cnpm
+ if: success()
diff --git a/.gitignore b/.gitignore
index 2610867f..e48b6795 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,4 +13,3 @@ stats.html
*.local
*.log
*.zip
-*.tgz
diff --git a/package.json b/package.json
index 33e1df54..7dff8f5f 100644
--- a/package.json
+++ b/package.json
@@ -66,10 +66,10 @@
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"doc": "vitepress dev --open /README",
- "build": "vite build && pnpm typegen",
"typegen": "npx tsup --entry.json-editor-vue src/index.ts --format esm,cjs --cjsInterop --clean --dts-only",
- "check-exports": "pnpm build && npx attw $(npm pack)",
+ "build": "vite build && pnpm typegen",
"release": "esno ./scripts/release.mts",
+ "sync-to-cnpm": "npx cnpm sync && curl -L https://npmmirror.com/sync/json-editor-vue",
"license-scan": "license-checker --summary --out ./dependency-licenses.txt",
"lint": "eslint \"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,json,md,html,css,scss,sass}\" --ignore-pattern stats.html",
"lint:fix": "eslint \"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx,vue,json,md,html,css,scss,sass}\" --ignore-pattern stats.html --fix",
@@ -105,6 +105,7 @@
"@vue/test-utils": "latest",
"axios": "^1.7.7",
"case-police": "^0.7.0",
+ "cnpm": "^9.4.0",
"cross-spawn": "^7.0.3",
"del": "^8.0.0",
"destr": "^2.0.3",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index caf295f4..d1605d72 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -63,6 +63,9 @@ importers:
case-police:
specifier: ^0.7.0
version: 0.7.0
+ cnpm:
+ specifier: ^9.4.0
+ version: 9.4.0
cross-spawn:
specifier: ^7.0.3
version: 7.0.3
@@ -1729,6 +1732,23 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cnpm@9.4.0:
+ resolution: {integrity: sha512-oxvozguyEuXp/3Ie0JEtmHKt8+OayZfNH40/B1gmtok2+0dHTS0Kt4uUn5rZ8qIYNk5UzzFVmu1pZxEn0no/iQ==}
+ engines: {node: '>= 14.18.0'}
+ hasBin: true
+ bundledDependencies:
+ - auto-correct
+ - bagpipe
+ - commander
+ - cross-spawn
+ - giturl
+ - ini
+ - npm
+ - npm-request
+ - npminstall
+ - open
+ - urllib
+
code-red@1.0.4:
resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
@@ -6207,6 +6227,8 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cnpm@9.4.0: {}
+
code-red@1.0.4:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
diff --git a/scripts/release.mts b/scripts/release.mts
index 8212ce12..eaea4a1f 100644
--- a/scripts/release.mts
+++ b/scripts/release.mts
@@ -1,8 +1,6 @@
-// pnpm i esno prompts semver cross-spawn kolorist del open -D -w
-
import fs from 'node:fs'
import spawn from 'cross-spawn'
-// import { deleteAsync } from 'del'
+import { deleteAsync } from 'del'
import { cyan } from 'kolorist'
// import open from 'open'
import prompts from 'prompts'
@@ -36,11 +34,12 @@ async function release() {
return
}
- console.log(cyan('\nChecking exports...'))
- if (spawn.sync('pnpm', ['check-exports'], { stdio: 'inherit' }).status === 1) {
+ console.log(cyan('\nAnalyzing types...'))
+ const attw = spawn.sync('npx', ['attw', '$(npm pack)'], { stdio: 'inherit' })
+ await deleteAsync(['./*.tgz'])
+ if (attw.status === 1) {
return
}
- // await deleteAsync(['./*.tgz'])
const jsrConfig = JSON.parse(fs.readFileSync('./jsr.json', 'utf-8'))
const npmConfig = JSON.parse(fs.readFileSync('./package.json', 'utf-8'))
From 0534ff034a74cb8ae6fb6d56bec9c7b6a37a206e Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Sun, 13 Oct 2024 00:54:39 +0800
Subject: [PATCH 02/22] docs: add attw badge
---
README.md | 3 ++-
docs/README.zh-CN.md | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index d996472b..4fbe9b76 100644
--- a/README.md
+++ b/README.md
@@ -16,14 +16,15 @@
+
-
+
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index a98c2a1d..238b8ed2 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -16,14 +16,15 @@
+
-
+
From 43d248567591e13c5ff9a00a60e6642c676fc093 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Tue, 15 Oct 2024 17:57:57 +0800
Subject: [PATCH 03/22] docs: add section about cases
---
README.md | 26 ++++++++++++++++++++++++++
docs/README.zh-CN.md | 26 ++++++++++++++++++++++++++
docs/google.svg | 2 ++
docs/nuxt.svg | 1 +
4 files changed, 55 insertions(+)
create mode 100644 docs/google.svg
create mode 100644 docs/nuxt.svg
diff --git a/README.md b/README.md
index 4fbe9b76..24e38014 100644
--- a/README.md
+++ b/README.md
@@ -1081,6 +1081,32 @@ Detailed changes for each release are documented in the [release notes](https://
+## Cases
+
+
+
+
+
## Donate
You can buy us a coffee via WeChat Pay 💗
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 238b8ed2..930e2b33 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -1079,6 +1079,32 @@ import 'vanilla-jsoneditor/themes/jse-theme-dark.css'
+## 案例
+
+
+
+
+
## 捐赠
可以通过微信支付帮维护团队买一杯咖啡 💗
diff --git a/docs/google.svg b/docs/google.svg
new file mode 100644
index 00000000..3790851d
--- /dev/null
+++ b/docs/google.svg
@@ -0,0 +1,2 @@
+
+
diff --git a/docs/nuxt.svg b/docs/nuxt.svg
new file mode 100644
index 00000000..5eaabdde
--- /dev/null
+++ b/docs/nuxt.svg
@@ -0,0 +1 @@
+
From 0c22d297ea6755f21852aaa1dcaa3c64c9f2ef02 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Mon, 28 Oct 2024 20:25:43 +0800
Subject: [PATCH 04/22] feat: upgrade vanilla-jsoneditor to v2.0
---
package.json | 30 +-
pnpm-lock.yaml | 2141 +++++++++++++++++++++++++++---------------------
2 files changed, 1243 insertions(+), 928 deletions(-)
diff --git a/package.json b/package.json
index 7dff8f5f..9731a101 100644
--- a/package.json
+++ b/package.json
@@ -86,23 +86,23 @@
}
},
"dependencies": {
- "vanilla-jsoneditor": "^1.0.7",
+ "vanilla-jsoneditor": "^2.0.0",
"vue-demi": "^0.14.10"
},
"devDependencies": {
- "@antfu/eslint-config": "^3.7.3",
+ "@antfu/eslint-config": "^3.8.0",
"@arethetypeswrong/cli": "^0.16.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/cross-spawn": "^6.0.6",
"@types/lodash-es": "^4.17.12",
- "@types/node": "^22.7.5",
+ "@types/node": "^22.8.1",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
- "@vitejs/plugin-vue": "latest",
- "@vitest/ui": "^2.1.2",
- "@vue/compiler-sfc": "latest",
- "@vue/test-utils": "latest",
+ "@vitejs/plugin-vue": "^5.1.4",
+ "@vitest/ui": "^2.1.3",
+ "@vue/compiler-sfc": "^3.5.12",
+ "@vue/test-utils": "^2.4.6",
"axios": "^1.7.7",
"case-police": "^0.7.0",
"cnpm": "^9.4.0",
@@ -122,20 +122,20 @@
"only-allow": "^1.2.1",
"open": "^10.1.0",
"prompts": "^2.4.2",
- "publint": "^0.2.11",
+ "publint": "^0.2.12",
"rollup-plugin-visualizer": "^5.12.0",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
- "tsup": "^8.3.0",
+ "tsup": "^8.3.5",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
- "vite": "^5.4.8",
- "vite-plugin-dts": "4.2.3",
- "vitepress": "^1.4.0",
- "vitest": "^2.1.2",
- "vue": "latest",
- "vue-global-config": "^0.6.2",
+ "vite": "^5.4.10",
+ "vite-plugin-dts": "4.3.0",
+ "vitepress": "^1.4.1",
+ "vitest": "^2.1.3",
+ "vue": "^3.5.12",
+ "vue-global-config": "^0.6.3",
"zhlint": "^0.8.2"
},
"simple-git-hooks": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d1605d72..503b1d37 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,23 +10,23 @@ importers:
dependencies:
'@vue/composition-api':
specifier: '>=1'
- version: 1.7.2(vue@3.5.11(typescript@5.6.3))
+ version: 1.7.2(vue@3.5.12(typescript@5.6.3))
vanilla-jsoneditor:
- specifier: ^1.0.7
- version: 1.0.7(@lezer/common@1.2.2)
+ specifier: ^2.0.0
+ version: 2.0.0(@lezer/common@1.2.3)
vue-demi:
specifier: ^0.14.10
- version: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ version: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
devDependencies:
'@antfu/eslint-config':
- specifier: ^3.7.3
- version: 3.7.3(@typescript-eslint/utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.11)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@4.2.19)(typescript@5.6.3)(vitest@2.1.2)
+ specifier: ^3.8.0
+ version: 3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vitest@2.1.3)
'@arethetypeswrong/cli':
specifier: ^0.16.4
version: 0.16.4
'@commitlint/cli':
specifier: ^19.5.0
- version: 19.5.0(@types/node@22.7.5)(typescript@5.6.3)
+ version: 19.5.0(@types/node@22.8.1)(typescript@5.6.3)
'@commitlint/config-conventional':
specifier: ^19.5.0
version: 19.5.0
@@ -37,8 +37,8 @@ importers:
specifier: ^4.17.12
version: 4.17.12
'@types/node':
- specifier: ^22.7.5
- version: 22.7.5
+ specifier: ^22.8.1
+ version: 22.8.1
'@types/prompts':
specifier: ^2.4.9
version: 2.4.9
@@ -46,16 +46,16 @@ importers:
specifier: ^7.5.8
version: 7.5.8
'@vitejs/plugin-vue':
- specifier: latest
- version: 5.1.4(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))(vue@3.5.11(typescript@5.6.3))
+ specifier: ^5.1.4
+ version: 5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
'@vitest/ui':
- specifier: ^2.1.2
- version: 2.1.2(vitest@2.1.2)
+ specifier: ^2.1.3
+ version: 2.1.3(vitest@2.1.3)
'@vue/compiler-sfc':
- specifier: latest
- version: 3.5.11
+ specifier: ^3.5.12
+ version: 3.5.12
'@vue/test-utils':
- specifier: latest
+ specifier: ^2.4.6
version: 2.4.6
axios:
specifier: ^1.7.7
@@ -115,11 +115,11 @@ importers:
specifier: ^2.4.2
version: 2.4.2
publint:
- specifier: ^0.2.11
- version: 0.2.11
+ specifier: ^0.2.12
+ version: 0.2.12
rollup-plugin-visualizer:
specifier: ^5.12.0
- version: 5.12.0(rollup@4.24.0)
+ version: 5.12.0(rollup@4.24.2)
semver:
specifier: ^7.6.3
version: 7.6.3
@@ -127,35 +127,35 @@ importers:
specifier: ^2.11.1
version: 2.11.1
tsup:
- specifier: ^8.3.0
- version: 8.3.0(@microsoft/api-extractor@7.47.7(@types/node@22.7.5))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1)
+ specifier: ^8.3.5
+ version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.1))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0)
typescript:
specifier: ^5.6.3
version: 5.6.3
unplugin-auto-import:
specifier: ^0.18.3
- version: 0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3)))(rollup@4.24.0)(webpack-sources@3.2.3)
+ version: 0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3)
unplugin-vue-components:
specifier: ^0.27.4
- version: 0.27.4(@babel/parser@7.25.8)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
vite:
- specifier: ^5.4.8
- version: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
+ specifier: ^5.4.10
+ version: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
vite-plugin-dts:
- specifier: 4.2.3
- version: 4.2.3(@types/node@22.7.5)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))
+ specifier: 4.3.0
+ version: 4.3.0(@types/node@22.8.1)(rollup@4.24.2)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))
vitepress:
- specifier: ^1.4.0
- version: 1.4.0(@algolia/client-search@5.5.3)(@types/node@22.7.5)(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.79.3)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3)
+ specifier: ^1.4.1
+ version: 1.4.1(@algolia/client-search@5.5.3)(@types/node@22.8.1)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.4)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3)
vitest:
- specifier: ^2.1.2
- version: 2.1.2(@types/node@22.7.5)(@vitest/ui@2.1.2)(happy-dom@15.7.4)(sass@1.79.3)(terser@5.33.0)
+ specifier: ^2.1.3
+ version: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
vue:
- specifier: latest
- version: 3.5.11(typescript@5.6.3)
+ specifier: ^3.5.12
+ version: 3.5.12(typescript@5.6.3)
vue-global-config:
- specifier: ^0.6.2
- version: 0.6.2(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ specifier: ^0.6.3
+ version: 0.6.3(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
zhlint:
specifier: ^0.8.2
version: 0.8.2
@@ -254,8 +254,8 @@ packages:
'@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
- '@antfu/eslint-config@3.7.3':
- resolution: {integrity: sha512-vzhKtzQT+f/xBV8T5U8SFy3D7uAqL2CEcjsJVqtA7F8tdKvGuC/96uWeEKMHk5lRfijgj+xRvb+c4qQn60YlIA==}
+ '@antfu/eslint-config@3.8.0':
+ resolution: {integrity: sha512-O5QSufPHpKTm0wk1OQ5c2mOZVzCqYV3hIDrt5zt+cOWqiG8YXLPkSOD4fFwjomATtOuUbcLUwkcgY5dErM7aIw==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.5.8
@@ -265,7 +265,7 @@ packages:
eslint: ^9.10.0
eslint-plugin-astro: ^1.2.0
eslint-plugin-format: '>=0.1.0'
- eslint-plugin-react-hooks: ^4.6.0
+ eslint-plugin-react-hooks: ^5.0.0
eslint-plugin-react-refresh: ^0.4.4
eslint-plugin-solid: ^0.14.3
eslint-plugin-svelte: '>=2.35.1'
@@ -315,79 +315,71 @@ packages:
resolution: {integrity: sha512-RI3HXgSuKTfcBf1hSEg1P9/cOvmI0flsMm6/QL3L3wju4AlHDqd55JFPfXs4pzgEAgy5L9pul4/HPPz99x2GvA==}
engines: {node: '>=18'}
- '@babel/code-frame@7.25.7':
- resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
+ '@babel/code-frame@7.26.0':
+ resolution: {integrity: sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.8':
- resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
+ '@babel/compat-data@7.26.0':
+ resolution: {integrity: sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.8':
- resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.7':
- resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
+ '@babel/generator@7.26.0':
+ resolution: {integrity: sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.7':
- resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.7':
- resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.7':
- resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.25.7':
- resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.7':
- resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.7':
- resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.7':
- resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.7':
- resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.25.7':
- resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.8':
- resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
+ '@babel/parser@7.26.1':
+ resolution: {integrity: sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/standalone@7.25.8':
- resolution: {integrity: sha512-UvRanvLCGPRscJ5Rw9o6vUBS5P+E+gkhl6eaokrIN+WM1kUkmj254VZhyihFdDZVDlI3cPcZoakbJJw24QPISw==}
+ '@babel/standalone@7.26.1':
+ resolution: {integrity: sha512-DAC3Vv62IA9VcMMAsTm5UzuEmsVjYkR5A9BX9zJrrrPHCQYJIp38jMHHx17RC4KwruwiIAb5hLFZLmE+wZgiyQ==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.7':
- resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.7':
- resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.8':
- resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@clack/core@0.3.4':
@@ -406,8 +398,8 @@ packages:
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
- '@codemirror/commands@6.7.0':
- resolution: {integrity: sha512-+cduIZ2KbesDhbykV02K25A5xIVrquSPz4UxxYBemRlAT2aW8dhwUgLDwej7q/RJUHKk4nALYcR1puecDvbdqw==}
+ '@codemirror/commands@6.7.1':
+ resolution: {integrity: sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==}
'@codemirror/lang-json@6.0.1':
resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==}
@@ -536,6 +528,10 @@ packages:
resolution: {integrity: sha512-G6QUWIcC+KvSwXNsJyDTHvqUdNoAVJPPgkc3+Uk4WBKqZvoXhlvazOgm9aL0HwihJLQf0l+tOE2UFzXBqCqgDw==}
engines: {node: '>=16'}
+ '@es-joy/jsdoccomment@0.49.0':
+ resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
+ engines: {node: '>=16'}
+
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -548,6 +544,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.24.0':
+ resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -560,6 +562,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.24.0':
+ resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -572,6 +580,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.24.0':
+ resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -584,6 +598,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.24.0':
+ resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -596,6 +616,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.24.0':
+ resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -608,6 +634,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.24.0':
+ resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -620,6 +652,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.24.0':
+ resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -632,6 +670,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.24.0':
+ resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -644,6 +688,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.24.0':
+ resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -656,6 +706,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.24.0':
+ resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -668,6 +724,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.24.0':
+ resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -680,6 +742,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.24.0':
+ resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -692,6 +760,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.24.0':
+ resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -704,6 +778,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.24.0':
+ resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -716,6 +796,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.24.0':
+ resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -728,6 +814,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.24.0':
+ resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -740,6 +832,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.24.0':
+ resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -752,12 +850,24 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.24.0':
+ resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.23.1':
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.24.0':
+ resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -770,6 +880,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.24.0':
+ resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -782,6 +898,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.24.0':
+ resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -794,6 +916,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.24.0':
+ resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -806,6 +934,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.24.0':
+ resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -818,24 +952,30 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-plugin-eslint-comments@4.4.0':
- resolution: {integrity: sha512-yljsWl5Qv3IkIRmJ38h3NrHXFCm4EUl55M8doGTF6hvzvFF8kRpextgSrg2dwHev9lzBZyafCr9RelGIyQm6fw==}
+ '@esbuild/win32-x64@0.24.0':
+ resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1':
+ resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.11.1':
- resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.0':
- resolution: {integrity: sha512-CkPWddN7J9JPrQedEr2X7AjK9y1jaMJtxZ4A/+jTMFA2+n5BWhcKHW/EbJyARqg2zzQfgtWUtVmG3hrG6+nGpg==}
+ '@eslint/compat@1.2.1':
+ resolution: {integrity: sha512-JbHG2TWuCeNzh87fXo+/46Z1LEo9DBA9T188d0fZgGxAD+cNyS6sx9fdiyxjGPBMyQVRlCutTByZ6a5+YMkF7g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -859,16 +999,16 @@ packages:
resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/markdown@6.2.0':
- resolution: {integrity: sha512-ZLWZ6RNy5flf1Nk2DBt0V77MQpQEo8snkjVT75P5J0SJkE/QNoqgy7+dBvNjlyZuj664pU43uDXWg3J8AfF0IQ==}
+ '@eslint/markdown@6.2.1':
+ resolution: {integrity: sha512-cKVd110hG4ICHmWhIwZJfKmmJBvbiDWyrHODJknAtudKgZtlROGoLX9UEOA0o746zC0hCY4UV4vR+aOGW9S6JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.0':
- resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
+ '@eslint/plugin-kit@0.2.1':
+ resolution: {integrity: sha512-HFZ4Mp26nbWk9d/BpvP0YNL6W4UoZF0VFcTw/aPPA8RpOxeFQgK+ClABGgAUXs9Y/RGX/l1vOmrqz1MQt9MNuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@fortawesome/fontawesome-common-types@6.6.0':
@@ -932,8 +1072,8 @@ packages:
resolution: {integrity: sha512-P6Qo5egd3W8TBpqQsqaZtZ9lPO7oXBM21QdkYamCAYZHv9VCPXiI8NeIuSoXdoe5zKVZPUWmqaI14uacJLmcNw==}
hasBin: true
- '@lezer/common@1.2.2':
- resolution: {integrity: sha512-Z+R3hN6kXbgBWAuejUNPihylAL1Z5CaFqnIe0nTX8Ej+XlIy3EGtXxn6WtLMO+os2hRkQvm2yvaGMYliUzlJaw==}
+ '@lezer/common@1.2.3':
+ resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
'@lezer/highlight@1.2.1':
resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
@@ -944,11 +1084,11 @@ packages:
'@lezer/lr@1.4.2':
resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
- '@microsoft/api-extractor-model@7.29.6':
- resolution: {integrity: sha512-gC0KGtrZvxzf/Rt9oMYD2dHvtN/1KPEYsrQPyMKhLHnlVuO/f4AFN3E4toqZzD2pt4LhkKoYmL2H9tX3yCOyRw==}
+ '@microsoft/api-extractor-model@7.29.8':
+ resolution: {integrity: sha512-t3Z/xcO6TRbMcnKGVMs4uMzv/gd5j0NhMiJIGjD4cJMeFJ1Hf8wnLSx37vxlRlL0GWlGJhnFgxvnaL6JlS+73g==}
- '@microsoft/api-extractor@7.47.7':
- resolution: {integrity: sha512-fNiD3G55ZJGhPOBPMKD/enozj8yxJSYyVJWxRWdcUtw842rvthDHJgUWq9gXQTensFlMHv2wGuCjjivPv53j0A==}
+ '@microsoft/api-extractor@7.47.11':
+ resolution: {integrity: sha512-lrudfbPub5wzBhymfFtgZKuBvXxoSIAdrvS2UbHjoMT2TjIEddq6Z13pcve7A03BAouw0x8sW8G4txdgfiSwpQ==}
hasBin: true
'@microsoft/tsdoc-config@0.17.0':
@@ -980,6 +1120,87 @@ packages:
'@one-ini/wasm@0.1.1':
resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ '@parcel/watcher-android-arm64@2.4.1':
+ resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@parcel/watcher-darwin-x64@2.4.1':
+ resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@parcel/watcher-win32-arm64@2.4.1':
+ resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@parcel/watcher-win32-ia32@2.4.1':
+ resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@parcel/watcher-win32-x64@2.4.1':
+ resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@parcel/watcher@2.4.1':
+ resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ engines: {node: '>= 10.0.0'}
+
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
@@ -998,8 +1219,8 @@ packages:
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
- '@rollup/pluginutils@5.1.2':
- resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1007,97 +1228,107 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.24.0':
- resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
+ '@rollup/rollup-android-arm-eabi@4.24.2':
+ resolution: {integrity: sha512-ufoveNTKDg9t/b7nqI3lwbCG/9IJMhADBNjjz/Jn6LxIZxD7T5L8l2uO/wD99945F1Oo8FvgbbZJRguyk/BdzA==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.24.0':
- resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==}
+ '@rollup/rollup-android-arm64@4.24.2':
+ resolution: {integrity: sha512-iZoYCiJz3Uek4NI0J06/ZxUgwAfNzqltK0MptPDO4OR0a88R4h0DSELMsflS6ibMCJ4PnLvq8f7O1d7WexUvIA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.24.0':
- resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==}
+ '@rollup/rollup-darwin-arm64@4.24.2':
+ resolution: {integrity: sha512-/UhrIxobHYCBfhi5paTkUDQ0w+jckjRZDZ1kcBL132WeHZQ6+S5v9jQPVGLVrLbNUebdIRpIt00lQ+4Z7ys4Rg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.0':
- resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==}
+ '@rollup/rollup-darwin-x64@4.24.2':
+ resolution: {integrity: sha512-1F/jrfhxJtWILusgx63WeTvGTwE4vmsT9+e/z7cZLKU8sBMddwqw3UV5ERfOV+H1FuRK3YREZ46J4Gy0aP3qDA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
- resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==}
+ '@rollup/rollup-freebsd-arm64@4.24.2':
+ resolution: {integrity: sha512-1YWOpFcGuC6iGAS4EI+o3BV2/6S0H+m9kFOIlyFtp4xIX5rjSnL3AwbTBxROX0c8yWtiWM7ZI6mEPTI7VkSpZw==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.24.2':
+ resolution: {integrity: sha512-3qAqTewYrCdnOD9Gl9yvPoAoFAVmPJsBvleabvx4bnu1Kt6DrB2OALeRVag7BdWGWLhP1yooeMLEi6r2nYSOjg==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
+ resolution: {integrity: sha512-ArdGtPHjLqWkqQuoVQ6a5UC5ebdX8INPuJuJNWRe0RGa/YNhVvxeWmCTFQ7LdmNCSUzVZzxAvUznKaYx645Rig==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
- resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.24.2':
+ resolution: {integrity: sha512-B6UHHeNnnih8xH6wRKB0mOcJGvjZTww1FV59HqJoTJ5da9LCG6R4SEBt6uPqzlawv1LoEXSS0d4fBlHNWl6iYw==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
- resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==}
+ '@rollup/rollup-linux-arm64-gnu@4.24.2':
+ resolution: {integrity: sha512-kr3gqzczJjSAncwOS6i7fpb4dlqcvLidqrX5hpGBIM1wtt0QEVtf4wFaAwVv8QygFU8iWUMYEoJZWuWxyua4GQ==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.24.0':
- resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==}
+ '@rollup/rollup-linux-arm64-musl@4.24.2':
+ resolution: {integrity: sha512-TDdHLKCWgPuq9vQcmyLrhg/bgbOvIQ8rtWQK7MRxJ9nvaxKx38NvY7/Lo6cYuEnNHqf6rMqnivOIPIQt6H2AoA==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
- resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
+ resolution: {integrity: sha512-xv9vS648T3X4AxFFZGWeB5Dou8ilsv4VVqJ0+loOIgDO20zIhYfDLkk5xoQiej2RiSQkld9ijF/fhLeonrz2mw==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
- resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.24.2':
+ resolution: {integrity: sha512-tbtXwnofRoTt223WUZYiUnbxhGAOVul/3StZ947U4A5NNjnQJV5irKMm76G0LGItWs6y+SCjUn/Q0WaMLkEskg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
- resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==}
+ '@rollup/rollup-linux-s390x-gnu@4.24.2':
+ resolution: {integrity: sha512-gc97UebApwdsSNT3q79glOSPdfwgwj5ELuiyuiMY3pEWMxeVqLGKfpDFoum4ujivzxn6veUPzkGuSYoh5deQ2Q==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.24.0':
- resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==}
+ '@rollup/rollup-linux-x64-gnu@4.24.2':
+ resolution: {integrity: sha512-jOG/0nXb3z+EM6SioY8RofqqmZ+9NKYvJ6QQaa9Mvd3RQxlH68/jcB/lpyVt4lCiqr04IyaC34NzhUqcXbB5FQ==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.24.0':
- resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==}
+ '@rollup/rollup-linux-x64-musl@4.24.2':
+ resolution: {integrity: sha512-XAo7cJec80NWx9LlZFEJQxqKOMz/lX3geWs2iNT5CHIERLFfd90f3RYLLjiCBm1IMaQ4VOX/lTC9lWfzzQm14Q==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
- resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.24.2':
+ resolution: {integrity: sha512-A+JAs4+EhsTjnPQvo9XY/DC0ztaws3vfqzrMNMKlwQXuniBKOIIvAAI8M0fBYiTCxQnElYu7mLk7JrhlQ+HeOw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
- resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.24.2':
+ resolution: {integrity: sha512-ZhcrakbqA1SCiJRMKSU64AZcYzlZ/9M5LaYil9QWxx9vLnkQ9Vnkve17Qn4SjlipqIIBFKjBES6Zxhnvh0EAEw==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.0':
- resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==}
+ '@rollup/rollup-win32-x64-msvc@4.24.2':
+ resolution: {integrity: sha512-2mLH46K1u3r6uwc95hU+OR9q/ggYMpnS7pSp83Ece1HUQgF9Nh/QwTK5rcgbFnV9j+08yBrU5sA/P0RK2MSBNA==}
cpu: [x64]
os: [win32]
- '@rushstack/node-core-library@5.7.0':
- resolution: {integrity: sha512-Ff9Cz/YlWu9ce4dmqNBZpA45AEya04XaBFIjV7xTVeEf+y/kTjEasmozqFELXlNG4ROdevss75JrrZ5WgufDkQ==}
+ '@rushstack/node-core-library@5.9.0':
+ resolution: {integrity: sha512-MMsshEWkTbXqxqFxD4gcIUWQOCeBChlGczdZbHfqmNZQFLHB3yWxDFSMHFUdu2/OB9NUk7Awn5qRL+rws4HQNg==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
@@ -1107,31 +1338,31 @@ packages:
'@rushstack/rig-package@0.5.3':
resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==}
- '@rushstack/terminal@0.14.0':
- resolution: {integrity: sha512-juTKMAMpTIJKudeFkG5slD8Z/LHwNwGZLtU441l/u82XdTBfsP+LbGKJLCNwP5se+DMCT55GB8x9p6+C4UL7jw==}
+ '@rushstack/terminal@0.14.2':
+ resolution: {integrity: sha512-2fC1wqu1VCExKC0/L+0noVcFQEXEnoBOtCIex1TOjBzEDWcw8KzJjjj7aTP6mLxepG0XIyn9OufeFb6SFsa+sg==}
peerDependencies:
'@types/node': '*'
peerDependenciesMeta:
'@types/node':
optional: true
- '@rushstack/ts-command-line@4.22.6':
- resolution: {integrity: sha512-QSRqHT/IfoC5nk9zn6+fgyqOPXHME0BfchII9EUPR19pocsNp/xSbeBCbD3PIR2Lg+Q5qk7OFqk1VhWPMdKHJg==}
+ '@rushstack/ts-command-line@4.23.0':
+ resolution: {integrity: sha512-jYREBtsxduPV6ptNq8jOKp9+yx0ld1Tb/Tkdnlj8gTjazl1sF3DwX2VbluyYrNd0meWIL0bNeer7WDf5tKFjaQ==}
- '@shikijs/core@1.22.0':
- resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==}
+ '@shikijs/core@1.22.1':
+ resolution: {integrity: sha512-bqAhT/Ri5ixV4oYsvJNH8UJjpjbINWlWyXY6tBTsP4OmD6XnFv43nRJ+lTdxd2rmG5pgam/x+zGR6kLRXrpEKA==}
- '@shikijs/engine-javascript@1.22.0':
- resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==}
+ '@shikijs/engine-javascript@1.22.1':
+ resolution: {integrity: sha512-540pyoy0LWe4jj2BVbgELwOFu1uFvRI7lg4hdsExrSXA9x7gqfzZ/Nnh4RfX86aDAgJ647gx4TCmRwACbnQSvw==}
- '@shikijs/engine-oniguruma@1.22.0':
- resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==}
+ '@shikijs/engine-oniguruma@1.22.1':
+ resolution: {integrity: sha512-L+1Vmd+a2kk8HtogUFymQS6BjUfJnzcWoUp1BUgxoDiklbKSMvrsMuLZGevTOP1m0rEjgnC5MsDmsr8lX1lC+Q==}
- '@shikijs/transformers@1.22.0':
- resolution: {integrity: sha512-k7iMOYuGQA62KwAuJOQBgH2IQb5vP8uiB3lMvAMGUgAMMurePOx3Z7oNqJdcpxqZP6I9cc7nc4DNqSKduCxmdg==}
+ '@shikijs/transformers@1.22.1':
+ resolution: {integrity: sha512-KvG49YFV6gV116sC4L3Sn1Rp6HXsioMKBBG373j088rw849440hm8s2r+/dgjsGLvT4p+QB7newev+5a3ARM6w==}
- '@shikijs/types@1.22.0':
- resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==}
+ '@shikijs/types@1.22.1':
+ resolution: {integrity: sha512-+45f8mu/Hxqs6Kyhfm98Nld5n7Q7lwhjU8UtdQwrOPs7BnM4VAb929O3IQ2ce+4D7SlNFlZGd8CnKRSnwbQreQ==}
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
@@ -1180,8 +1411,8 @@ packages:
'@types/lodash-es@4.17.12':
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
- '@types/lodash@4.17.10':
- resolution: {integrity: sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==}
+ '@types/lodash@4.17.12':
+ resolution: {integrity: sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
@@ -1198,8 +1429,8 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@22.7.5':
- resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
+ '@types/node@22.8.1':
+ resolution: {integrity: sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1219,8 +1450,8 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@8.8.1':
- resolution: {integrity: sha512-xfvdgA8AP/vxHgtgU310+WBnLB4uJQ9XdyP17RebG26rLtDrQJV3ZYrcopX91GrHmMoH8bdSwMRh2a//TiJ1jQ==}
+ '@typescript-eslint/eslint-plugin@8.11.0':
+ resolution: {integrity: sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -1230,8 +1461,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.8.1':
- resolution: {integrity: sha512-hQUVn2Lij2NAxVFEdvIGxT9gP1tq2yM83m+by3whWFsWC+1y8pxxxHUFE1UqDu2VsGi2i6RLcv4QvouM84U+ow==}
+ '@typescript-eslint/parser@8.11.0':
+ resolution: {integrity: sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1240,12 +1471,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.8.1':
- resolution: {integrity: sha512-X4JdU+66Mazev/J0gfXlcC/dV6JI37h+93W9BRYXrSn0hrE64IoWgVkO9MSJgEzoWkxONgaQpICWg8vAN74wlA==}
+ '@typescript-eslint/scope-manager@8.11.0':
+ resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.8.1':
- resolution: {integrity: sha512-qSVnpcbLP8CALORf0za+vjLYj1Wp8HSoiI8zYU5tHxRVj30702Z1Yw4cLwfNKhTPWp5+P+k1pjmD5Zd1nhxiZA==}
+ '@typescript-eslint/type-utils@8.11.0':
+ resolution: {integrity: sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1253,12 +1484,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.8.1':
- resolution: {integrity: sha512-WCcTP4SDXzMd23N27u66zTKMuEevH4uzU8C9jf0RO4E04yVHgQgW+r+TeVTNnO1KIfrL8ebgVVYYMMO3+jC55Q==}
+ '@typescript-eslint/types@8.11.0':
+ resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.8.1':
- resolution: {integrity: sha512-A5d1R9p+X+1js4JogdNilDuuq+EHZdsH9MjTVxXOdVFfTJXunKJR/v+fNNyO4TnoOn5HqobzfRlc70NC6HTcdg==}
+ '@typescript-eslint/typescript-estree@8.11.0':
+ resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1266,14 +1497,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.8.1':
- resolution: {integrity: sha512-/QkNJDbV0bdL7H7d0/y0qBbV2HTtf0TIyjSDTvvmQEzeVx8jEImEbLuOA4EsvE8gIgqMitns0ifb5uQhMj8d9w==}
+ '@typescript-eslint/utils@8.11.0':
+ resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.8.1':
- resolution: {integrity: sha512-0/TdC3aeRAsW7MDvYRwEc1Uwm0TIBfzjPFgg60UU2Haj5qsCs9cc3zNgY71edqE3LbWfF/WoZQd3lJoDXFQpag==}
+ '@typescript-eslint/visitor-keys@8.11.0':
+ resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
@@ -1299,13 +1530,13 @@ packages:
vitest:
optional: true
- '@vitest/expect@2.1.2':
- resolution: {integrity: sha512-FEgtlN8mIUSEAAnlvn7mP8vzaWhEaAEvhSXCqrsijM7K6QqjB11qoRZYEd4AKSCDz8p0/+yH5LzhZ47qt+EyPg==}
+ '@vitest/expect@2.1.3':
+ resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
- '@vitest/mocker@2.1.2':
- resolution: {integrity: sha512-ExElkCGMS13JAJy+812fw1aCv2QO/LBK6CyO4WOPAzLTmve50gydOlWhgdBJPx2ztbADUq3JVI0C5U+bShaeEA==}
+ '@vitest/mocker@2.1.3':
+ resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
peerDependencies:
- '@vitest/spy': 2.1.2
+ '@vitest/spy': 2.1.3
msw: ^2.3.5
vite: ^5.0.0
peerDependenciesMeta:
@@ -1314,46 +1545,46 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.2':
- resolution: {integrity: sha512-FIoglbHrSUlOJPDGIrh2bjX1sNars5HbxlcsFKCtKzu4+5lpsRhOCVcuzp0fEhAGHkPZRIXVNzPcpSlkoZ3LuA==}
+ '@vitest/pretty-format@2.1.3':
+ resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
- '@vitest/runner@2.1.2':
- resolution: {integrity: sha512-UCsPtvluHO3u7jdoONGjOSil+uON5SSvU9buQh3lP7GgUXHp78guN1wRmZDX4wGK6J10f9NUtP6pO+SFquoMlw==}
+ '@vitest/runner@2.1.3':
+ resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
- '@vitest/snapshot@2.1.2':
- resolution: {integrity: sha512-xtAeNsZ++aRIYIUsek7VHzry/9AcxeULlegBvsdLncLmNCR6tR8SRjn8BbDP4naxtccvzTqZ+L1ltZlRCfBZFA==}
+ '@vitest/snapshot@2.1.3':
+ resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
- '@vitest/spy@2.1.2':
- resolution: {integrity: sha512-GSUi5zoy+abNRJwmFhBDC0yRuVUn8WMlQscvnbbXdKLXX9dE59YbfwXxuJ/mth6eeqIzofU8BB5XDo/Ns/qK2A==}
+ '@vitest/spy@2.1.3':
+ resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
- '@vitest/ui@2.1.2':
- resolution: {integrity: sha512-92gcNzkDnmxOxyHzQrQYRsoV9Q0Aay0r4QMLnV+B+lbqlUWa8nDg9ivyLV5mMVTtGirHsYUGGh/zbIA55gBZqA==}
+ '@vitest/ui@2.1.3':
+ resolution: {integrity: sha512-2XwTrHVJw3t9NYES26LQUYy51ZB8W4bRPgqUH2Eyda3kIuOlYw1ZdPNU22qcVlUVx4WKgECFQOSXuopsczuVjQ==}
peerDependencies:
- vitest: 2.1.2
+ vitest: 2.1.3
- '@vitest/utils@2.1.2':
- resolution: {integrity: sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ==}
+ '@vitest/utils@2.1.3':
+ resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
- '@volar/language-core@2.4.6':
- resolution: {integrity: sha512-FxUfxaB8sCqvY46YjyAAV6c3mMIq/NWQMVvJ+uS4yxr1KzOvyg61gAuOnNvgCvO4TZ7HcLExBEsWcDu4+K4E8A==}
+ '@volar/language-core@2.4.8':
+ resolution: {integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==}
- '@volar/source-map@2.4.6':
- resolution: {integrity: sha512-Nsh7UW2ruK+uURIPzjJgF0YRGP5CX9nQHypA2OMqdM2FKy7rh+uv3XgPnWPw30JADbKvZ5HuBzG4gSbVDYVtiw==}
+ '@volar/source-map@2.4.8':
+ resolution: {integrity: sha512-jeWJBkC/WivdelMwxKkpFL811uH/jJ1kVxa+c7OvG48DXc3VrP7pplSWPP2W1dLMqBxD+awRlg55FQQfiup4cA==}
- '@volar/typescript@2.4.6':
- resolution: {integrity: sha512-NMIrA7y5OOqddL9VtngPWYmdQU03htNKFtAYidbYfWA0TOhyGVd9tfcP4TsLWQ+RBWDZCbBqsr8xzU0ZOxYTCQ==}
+ '@volar/typescript@2.4.8':
+ resolution: {integrity: sha512-6xkIYJ5xxghVBhVywMoPMidDDAFT1OoQeXwa27HSgJ6AiIKRe61RXLoik+14Z7r0JvnblXVsjsRLmCr42SGzqg==}
- '@vue/compiler-core@3.5.11':
- resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==}
+ '@vue/compiler-core@3.5.12':
+ resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
- '@vue/compiler-dom@3.5.11':
- resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==}
+ '@vue/compiler-dom@3.5.12':
+ resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
- '@vue/compiler-sfc@3.5.11':
- resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==}
+ '@vue/compiler-sfc@3.5.12':
+ resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==}
- '@vue/compiler-ssr@3.5.11':
- resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==}
+ '@vue/compiler-ssr@3.5.12':
+ resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -1363,14 +1594,14 @@ packages:
peerDependencies:
vue: '>= 2.5 < 2.7'
- '@vue/devtools-api@7.4.6':
- resolution: {integrity: sha512-XipBV5k0/IfTr0sNBDTg7OBUCp51cYMMXyPxLXJZ4K/wmUeMqt8cVdr2ZZGOFq+si/jTyCYnNxeKoyev5DOUUA==}
+ '@vue/devtools-api@7.5.4':
+ resolution: {integrity: sha512-j9UC/KeYUNZ6AyCJxBROBCbogB5YHW6PZv9VnCNp2ntE4rq426Lfc8WP5B9V+rXBwqWmrgZTGYBa31CBSxdAUg==}
- '@vue/devtools-kit@7.4.6':
- resolution: {integrity: sha512-NbYBwPWgEic1AOd9bWExz9weBzFdjiIfov0yRn4DrRfR+EQJCI9dn4I0XS7IxYGdkmUJi8mFW42LLk18WsGqew==}
+ '@vue/devtools-kit@7.5.4':
+ resolution: {integrity: sha512-0i7WFgc1B2TL52tstn82zlb9opSA0aIiHfkUYFXtZb8CIpmlFMTkHtgwVl6PMWNBj3LNhYou1YJCLpCYvJYYoA==}
- '@vue/devtools-shared@7.4.6':
- resolution: {integrity: sha512-rPeSBzElnHYMB05Cc056BQiJpgocQjY8XVulgni+O9a9Gr9tNXgPteSzFFD+fT/iWMxNuUgGKs9CuW5DZewfIg==}
+ '@vue/devtools-shared@7.5.4':
+ resolution: {integrity: sha512-dwuq4YmwTyLc7eBOqX63s3JB8il7qnKsNgENglSMkUPwiItHkVAYYfPESN1rxSdYkl1RCux1l5TBidYqfUDNAA==}
'@vue/language-core@2.1.6':
resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
@@ -1380,22 +1611,22 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.5.11':
- resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==}
+ '@vue/reactivity@3.5.12':
+ resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
- '@vue/runtime-core@3.5.11':
- resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==}
+ '@vue/runtime-core@3.5.12':
+ resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
- '@vue/runtime-dom@3.5.11':
- resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==}
+ '@vue/runtime-dom@3.5.12':
+ resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==}
- '@vue/server-renderer@3.5.11':
- resolution: {integrity: sha512-cVOwYBxR7Wb1B1FoxYvtjJD8X/9E5nlH4VSkJy2uMA1MzYNdzAAB//l8nrmN9py/4aP+3NjWukf9PZ3TeWULaA==}
+ '@vue/server-renderer@3.5.12':
+ resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==}
peerDependencies:
- vue: 3.5.11
+ vue: 3.5.12
- '@vue/shared@3.5.11':
- resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==}
+ '@vue/shared@3.5.12':
+ resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
'@vue/test-utils@2.4.6':
resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==}
@@ -1466,8 +1697,13 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn-typescript@1.4.13:
+ resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
+ peerDependencies:
+ acorn: '>=8.9.0'
+
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -1597,8 +1833,8 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.24.0:
- resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -1635,8 +1871,8 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001667:
- resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
+ caniuse-lite@1.0.30001673:
+ resolution: {integrity: sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==}
case-police@0.7.0:
resolution: {integrity: sha512-ULkv4kNeSBFCFwXE1NA/x6/FqY8lRRXT10HsGX7K0LcMcA/B45SgnNY98hnQ9c05AaVhgbR5jlCO0BXMlIEuPg==}
@@ -1645,8 +1881,8 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -1749,9 +1985,6 @@ packages:
- open
- urllib
- code-red@1.0.4:
- resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
-
codemirror-wrapped-line-indent@1.0.8:
resolution: {integrity: sha512-5UwuHCz4oAZuvot1DbfFxSxJacTESdNGa/KpJD7HfpVpDAJdgB1vV9OG4b4pkJqPWuOfIpFLTQEKS85kTpV+XA==}
peerDependencies:
@@ -1849,8 +2082,8 @@ packages:
core-js-compat@3.38.1:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
- cosmiconfig-typescript-loader@5.0.0:
- resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
+ cosmiconfig-typescript-loader@5.1.0:
+ resolution: {integrity: sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==}
engines: {node: '>=v16'}
peerDependencies:
'@types/node': '*'
@@ -1873,10 +2106,6 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
- css-tree@2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
-
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
@@ -1957,6 +2186,11 @@ packages:
destr@2.0.3:
resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
+ detect-libc@1.0.3:
+ resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+
devlop@1.1.0:
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
@@ -1991,8 +2225,8 @@ packages:
engines: {node: '>=14'}
hasBin: true
- electron-to-chromium@1.5.36:
- resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==}
+ electron-to-chromium@1.5.47:
+ resolution: {integrity: sha512-zS5Yer0MOYw4rtK2iq43cJagHZ8sXN0jDHDKzB+86gSBSAI4v07S97mcq+Gs2vclAxSh1j7vOAHxSVgduiiuVQ==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -2038,6 +2272,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.24.0:
+ resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -2111,8 +2350,8 @@ packages:
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- eslint-plugin-jsdoc@50.3.1:
- resolution: {integrity: sha512-SY9oUuTMr6aWoJggUS40LtMjsRzJPB5ZT7F432xZIHK3EfHF+8i48GbUBpwanrtlL9l1gILNTHK9o8gEhYLcKA==}
+ eslint-plugin-jsdoc@50.4.3:
+ resolution: {integrity: sha512-uWtwFxGRv6B8sU63HZM5dAGDhgsatb+LONwmILZJhdRALLOkCX2HFZhdL/Kw2ls8SQMAVEfK+LmnEfxInRN8HA==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -2133,8 +2372,8 @@ packages:
resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@3.8.0:
- resolution: {integrity: sha512-BYJWbQVOjvIGK9V1xUfn790HuvkePjxti8epOi1H6sdzo0N4RehBmQ8coHPbgA/f12BUG1NIoDtQhI9mUm+o2A==}
+ eslint-plugin-perfectionist@3.9.1:
+ resolution: {integrity: sha512-9WRzf6XaAxF4Oi5t/3TqKP5zUjERhasHmLFHin2Yw6ZAp/EP/EVA2dr3BhQrrHWCm5SzTMZf0FcjDnBkO2xFkA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
astro-eslint-parser: ^1.0.2
@@ -2164,8 +2403,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-unicorn@55.0.0:
- resolution: {integrity: sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==}
+ eslint-plugin-unicorn@56.0.0:
+ resolution: {integrity: sha512-aXpddVz/PQMmd69uxO98PA4iidiVNvA0xOtbpUoz1WhBd4RxOQQYqN618v68drY0hmy5uU2jy1bheKEVWBjlPw==}
engines: {node: '>=18.18'}
peerDependencies:
eslint: '>=8.56.0'
@@ -2179,8 +2418,8 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vue@9.28.0:
- resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==}
+ eslint-plugin-vue@9.30.0:
+ resolution: {integrity: sha512-CyqlRgShvljFkOeYK8wN5frh/OGTvkj1S7wlr2Q2pUvwq+X5VYiLd6ZjujpgSgLnys2W8qrBLkXQ41SUYaoPIQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -2223,6 +2462,9 @@ packages:
jiti:
optional: true
+ esm-env@1.0.0:
+ resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
+
esno@4.8.0:
resolution: {integrity: sha512-acMtooReAQGzLU0zcuEDHa8S62meh5aIyi8jboYxyvAePdmuWx2Mpwmt0xjwO0bs9/SXf+dvXJ0QJoDWw814Iw==}
hasBin: true
@@ -2239,6 +2481,9 @@ packages:
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
+ esrap@1.2.2:
+ resolution: {integrity: sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==}
+
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -2260,10 +2505,6 @@ packages:
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- execa@5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
-
execa@8.0.1:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
@@ -2287,8 +2528,8 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-uri@3.0.2:
- resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==}
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -2296,8 +2537,8 @@ packages:
fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
- fdir@6.4.0:
- resolution: {integrity: sha512-3oB133prH1o4j/L5lLW7uOCF1PlD+/It2L0eL/iAqWMB91RBbqTewABqxhj0ibBd90EEmWZq7ntIWzVaWcXTGQ==}
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -2389,14 +2630,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.2.0:
- resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ get-east-asian-width@1.3.0:
+ resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
- get-stream@6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
-
get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
@@ -2505,10 +2742,6 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- human-signals@2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
-
human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
@@ -2641,10 +2874,6 @@ packages:
is-reference@3.0.2:
resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
- is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
-
is-stream@3.0.0:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -2760,13 +2989,13 @@ packages:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
- jsonpath-plus@9.0.0:
- resolution: {integrity: sha512-bqE77VIDStrOTV/czspZhTn+o27Xx9ZJRGVkdVShEtPoqsIx5yALv3lWVU6y+PqYvWPJNWE7ORCQheQkEe0DDA==}
- engines: {node: '>=14.0.0'}
+ jsonpath-plus@10.1.0:
+ resolution: {integrity: sha512-gHfV1IYqH8uJHYVTs8BJX1XKy2/rR93+f8QQi0xhx95aCiXn1ettYAd5T+7FU6wfqyDoX/wy0pm/fL3jOKJ9Lg==}
+ engines: {node: '>=18.0.0'}
hasBin: true
- jsonrepair@3.8.1:
- resolution: {integrity: sha512-5wnjaO53EJOhfLFY92nvBz2B9gqF9ql/D4HKUb1WOSBaqtVcAifFfmurblnhCJn/ySqKFA8U3n7nhGMAu/hEjQ==}
+ jsonrepair@3.9.0:
+ resolution: {integrity: sha512-gC8z8NP6gEh/9DwDFl8G8nr6KSxdUQBhjTyCq+aZy1mT8DxZf9/V1947MztjLDCdnsn8VjoXj0b2R4HGJdEo7A==}
hasBin: true
keyv@4.5.4:
@@ -2896,8 +3125,8 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -2905,8 +3134,8 @@ packages:
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
- markdown-table@3.0.3:
- resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ markdown-table@3.0.4:
+ resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
marked-terminal@7.1.0:
resolution: {integrity: sha512-+pvwa14KZL74MVXjYdPR3nSInhGhNvPce/3mqLVZT2oUvt654sL1XImFuLZ1pkA866IYZ3ikDTOFUIC7XzpZZg==}
@@ -2928,8 +3157,8 @@ packages:
mdast-util-from-markdown@1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
- mdast-util-from-markdown@2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
mdast-util-frontmatter@1.0.1:
resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==}
@@ -2991,9 +3220,6 @@ packages:
mdast-util-to-string@4.0.0:
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
- mdn-data@2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
-
memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
@@ -3191,10 +3417,6 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
- mimic-fn@2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
-
mimic-fn@4.0.0:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
@@ -3290,6 +3512,9 @@ packages:
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
node-emoji@2.1.3:
resolution: {integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==}
engines: {node: '>=18'}
@@ -3332,10 +3557,6 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
hasBin: true
- npm-run-path@4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
-
npm-run-path@5.3.0:
resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -3358,10 +3579,6 @@ packages:
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
- onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
-
onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
@@ -3508,11 +3725,8 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
- picocolors@1.1.0:
- resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -3564,8 +3778,8 @@ packages:
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.24.2:
- resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==}
+ preact@10.24.3:
+ resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -3593,8 +3807,8 @@ packages:
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
- publint@0.2.11:
- resolution: {integrity: sha512-/kxbd+sD/uEG515N/ZYpC6gYs8h89cQ4UIsAq1y6VT4qlNh8xmiSwcP2xU2MbzXFl8J0l2IdONKFweLfYoqhcA==}
+ publint@0.2.12:
+ resolution: {integrity: sha512-YNeUtCVeM4j9nDiTT2OPczmlyzOkIXNtdDZnSuajAxS/nZ6j3t7Vs9SUB4euQNddiltIwu7Tdd3s+hr08fAsMw==}
engines: {node: '>=16'}
hasBin: true
@@ -3711,8 +3925,8 @@ packages:
rollup:
optional: true
- rollup@4.24.0:
- resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==}
+ rollup@4.24.2:
+ resolution: {integrity: sha512-do/DFGq5g6rdDhdpPq5qb2ecoczeK6y+2UAjdJ5trjQJj5f1AiVdLRWRc9A9/fFukfvJRgM0UXzxBIYMovm5ww==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -3727,13 +3941,8 @@ packages:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
- sass@1.78.0:
- resolution: {integrity: sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
- sass@1.79.3:
- resolution: {integrity: sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==}
+ sass@1.80.4:
+ resolution: {integrity: sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -3773,15 +3982,12 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.22.0:
- resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==}
+ shiki@1.22.1:
+ resolution: {integrity: sha512-PbJ6XxrWLMwB2rm3qdjIHNm3zq4SfFnOx0B3rEoi4AN8AUngsdyZ1tRe5slMPtn6jQkbUURLNZPpLR7Do3k78g==}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
- signal-exit@3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
-
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
@@ -3912,10 +4118,6 @@ packages:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
- strip-final-newline@2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
-
strip-final-newline@3.0.0:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
@@ -3963,9 +4165,9 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte@4.2.19:
- resolution: {integrity: sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==}
- engines: {node: '>=16'}
+ svelte@5.1.3:
+ resolution: {integrity: sha512-Sl8UFHlBvF54aK8MElFvyvaUfPE2REOz6LnhR2pBClCL11MU4qpn4V+KgAggaXxDyrP2iQixvHbtpHqL/zXlSQ==}
+ engines: {node: '>=18'}
synckit@0.6.2:
resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
@@ -4011,11 +4213,11 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinyexec@0.3.0:
- resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- tinyglobby@0.2.9:
- resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
+ tinyglobby@0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
tinypool@1.0.1:
@@ -4030,10 +4232,6 @@ packages:
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -4072,11 +4270,11 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.0:
+ resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
- tsup@8.3.0:
- resolution: {integrity: sha512-ALscEeyS03IomcuNdFdc0YWGVIkwH1Ws7nfTbAPuoILvEV2hpGQAY72LIOjglGo4ShWpZfpBqP/jpQVCzqYQag==}
+ tsup@8.3.5:
+ resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -4094,8 +4292,8 @@ packages:
typescript:
optional: true
- tsx@4.19.1:
- resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ tsx@4.19.2:
+ resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -4252,8 +4450,8 @@ packages:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- vanilla-jsoneditor@1.0.7:
- resolution: {integrity: sha512-wyC5++08UTu5rvhQ1MIyOj03q181lE+Kx9Q+MSu4I+051OSE5eY9FiI2yD/8kjLPDIN10teCKQiePUIKKpptqA==}
+ vanilla-jsoneditor@2.0.0:
+ resolution: {integrity: sha512-EkI9Qjf4Kf3yWXSW8GUBIR/mnZsVUh37jddYKF4KcaFETqScZnYbRM9FNWrhTzFp5n8bX2j34Tknze9sDCrzPg==}
vanilla-picker@2.12.3:
resolution: {integrity: sha512-qVkT1E7yMbUsB2mmJNFmaXMWE2hF8ffqzMMwe9zdAikd8u2VfnsVY2HQcOUi2F38bgbxzlJBEdS1UUhOXdF9GQ==}
@@ -4270,13 +4468,13 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@2.1.2:
- resolution: {integrity: sha512-HPcGNN5g/7I2OtPjLqgOtCRu/qhVvBxTUD3qzitmL0SrG1cWFzxzhMDWussxSbrRYWqnKf8P2jiNhPMSN+ymsQ==}
+ vite-node@2.1.3:
+ resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-plugin-dts@4.2.3:
- resolution: {integrity: sha512-O5NalzHANQRwVw1xj8KQun3Bv8OSDAlNJXrnqoAz10BOuW8FVvY5g4ygj+DlJZL5mtSPuMu9vd3OfrdW5d4k6w==}
+ vite-plugin-dts@4.3.0:
+ resolution: {integrity: sha512-LkBJh9IbLwL6/rxh0C1/bOurDrIEmRE7joC+jFdOEEciAFPbpEKOLSAr5nNh5R7CJ45cMbksTrFfy52szzC5eA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -4285,8 +4483,8 @@ packages:
vite:
optional: true
- vite@5.4.8:
- resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -4316,8 +4514,8 @@ packages:
terser:
optional: true
- vitepress@1.4.0:
- resolution: {integrity: sha512-JXCv4EsKTDyAFb6C/UjZr7nsGAzZ6mafVk2rx7rG5o8N+B/4QstIk+iEOe/9dKoU6V624UIC6g1pZ+K63rxhlw==}
+ vitepress@1.4.1:
+ resolution: {integrity: sha512-C2rQ7PMlDVqgsaHOa0uJtgGGWaGv74QMaGL62lxKbtFkYtosJB5HAfZ8+pEbfzzvLemYaYwaiQdFLBlexK2sFw==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -4328,15 +4526,15 @@ packages:
postcss:
optional: true
- vitest@2.1.2:
- resolution: {integrity: sha512-veNjLizOMkRrJ6xxb+pvxN6/QAWg95mzcRjtmkepXdN87FNfxAss9RKe2far/G9cQpipfgP2taqg0KiWsquj8A==}
+ vitest@2.1.3:
+ resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.2
- '@vitest/ui': 2.1.2
+ '@vitest/browser': 2.1.3
+ '@vitest/ui': 2.1.3
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -4356,8 +4554,8 @@ packages:
vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- vue-component-type-helpers@2.1.6:
- resolution: {integrity: sha512-ng11B8B/ZADUMMOsRbqv0arc442q7lifSubD0v8oDXIFoMg/mXwAPUunrroIDkY+mcD0dHKccdaznSVp8EoX3w==}
+ vue-component-type-helpers@2.1.8:
+ resolution: {integrity: sha512-ii36gDzrYAfOQIkOlo44yceDdT5269gKmNGxf07Qx6seH2U50+tQ2ol02XLhYPmxrh6YabAsOdte8WDrpaO6Tw==}
vue-demi@0.14.10:
resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==}
@@ -4376,8 +4574,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- vue-global-config@0.6.2:
- resolution: {integrity: sha512-kf49Zxk8OcUzMDu32f8BMG0I1ID51wYZ8+EpjFym0sFZl7nN+wNMRQiMzGPmciKKdY2CneaH3ZNqN+UMmFSPJQ==}
+ vue-global-config@0.6.3:
+ resolution: {integrity: sha512-Qlf3xe9dpFpXxk+RTyCCrx5yTw8mThQ/lnYYY+NC9sH6eWMvtnuJWzK0lzbeAdgHb69kea3CYUUUtzQMX8By9g==}
peerDependencies:
'@vue/composition-api': '>=1'
element-plus: '>=2'
@@ -4388,8 +4586,8 @@ packages:
element-plus:
optional: true
- vue@3.5.11:
- resolution: {integrity: sha512-/8Wurrd9J3lb72FTQS7gRMNQD4nztTtKPmuDuPuhqXmmpD6+skVjAeahNpVzsuky6Sy9gy7wn8UadqPtt9SQIg==}
+ vue@3.5.12:
+ resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4476,6 +4674,11 @@ packages:
engines: {node: '>= 14'}
hasBin: true
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
+ engines: {node: '>= 14'}
+ hasBin: true
+
yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
@@ -4504,6 +4707,9 @@ packages:
resolution: {integrity: sha512-C1UXU6WFJ4KC4fJ5sFwydKDRUUzAMoq5dLN7yGHwbYu2QFJ0gzGOpYA4JHQCfIlOUmik9I1e7hBlli3SvrJQ6Q==}
hasBin: true
+ zimmerframe@1.1.2:
+ resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -4641,16 +4847,16 @@ snapshots:
'@andrewbranch/untar.js@1.0.3': {}
- '@antfu/eslint-config@3.7.3(@typescript-eslint/utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.11)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@4.2.19)(typescript@5.6.3)(vitest@2.1.2)':
+ '@antfu/eslint-config@3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vitest@2.1.3)':
dependencies:
'@antfu/install-pkg': 0.4.1
'@clack/prompts': 0.7.0
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.0(eslint@9.11.1(jiti@2.3.3))
- '@eslint/markdown': 6.2.0
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.11.1(jiti@2.3.3))
+ '@eslint/markdown': 6.2.1
'@stylistic/eslint-plugin': 2.9.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/parser': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.2)
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3)
eslint: 9.11.1(jiti@2.3.3)
eslint-config-flat-gitignore: 0.3.0(eslint@9.11.1(jiti@2.3.3))
eslint-flat-config-utils: 0.4.0
@@ -4658,23 +4864,23 @@ snapshots:
eslint-plugin-antfu: 2.7.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-command: 0.2.6(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-import-x: 4.3.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- eslint-plugin-jsdoc: 50.3.1(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-jsdoc: 50.4.3(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-jsonc: 2.16.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-n: 17.11.1(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 3.8.0(eslint@9.11.1(jiti@2.3.3))(svelte@4.2.19)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3)))
+ eslint-plugin-perfectionist: 3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3)))
eslint-plugin-regexp: 2.6.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-toml: 0.11.1(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-unicorn: 55.0.0(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-vue: 9.28.0(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-vue: 9.30.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-yml: 1.14.0(eslint@9.11.1(jiti@2.3.3))
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.11)(eslint@9.11.1(jiti@2.3.3))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.12)(eslint@9.11.1(jiti@2.3.3))
globals: 15.11.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.0
parse-gitignore: 2.0.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
toml-eslint-parser: 0.10.0
vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.3.3))
yaml-eslint-parser: 1.2.3
@@ -4692,7 +4898,7 @@ snapshots:
'@antfu/install-pkg@0.4.1':
dependencies:
package-manager-detector: 0.2.2
- tinyexec: 0.3.0
+ tinyexec: 0.3.1
'@antfu/utils@0.7.10': {}
@@ -4716,26 +4922,27 @@ snapshots:
typescript: 5.6.1-rc
validate-npm-package-name: 5.0.1
- '@babel/code-frame@7.25.7':
+ '@babel/code-frame@7.26.0':
dependencies:
- '@babel/highlight': 7.25.7
- picocolors: 1.1.0
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.25.8':
+ '@babel/compat-data@7.26.0':
optional: true
- '@babel/core@7.25.8':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
debug: 4.3.7
gensync: 1.0.0-beta.2
@@ -4745,127 +4952,111 @@ snapshots:
- supports-color
optional: true
- '@babel/generator@7.25.7':
+ '@babel/generator@7.26.0':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
optional: true
- '@babel/helper-compilation-targets@7.25.7':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/helper-validator-option': 7.25.7
- browserslist: 4.24.0
+ '@babel/compat-data': 7.26.0
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
optional: true
- '@babel/helper-module-imports@7.25.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
- transitivePeerDependencies:
- - supports-color
- optional: true
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
optional: true
- '@babel/helper-simple-access@7.25.7':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
optional: true
- '@babel/helper-string-parser@7.25.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-identifier@7.25.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-option@7.25.7':
+ '@babel/helper-validator-option@7.25.9':
optional: true
- '@babel/helpers@7.25.7':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
optional: true
- '@babel/highlight@7.25.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.25.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
-
- '@babel/parser@7.25.8':
+ '@babel/parser@7.26.1':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.26.0
- '@babel/standalone@7.25.8':
+ '@babel/standalone@7.26.1':
optional: true
- '@babel/template@7.25.7':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
optional: true
- '@babel/traverse@7.25.7':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
optional: true
- '@babel/types@7.25.8':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
'@clack/core@0.3.4':
dependencies:
- picocolors: 1.1.0
+ picocolors: 1.1.1
sisteransi: 1.0.5
'@clack/prompts@0.7.0':
dependencies:
'@clack/core': 0.3.4
- picocolors: 1.1.0
+ picocolors: 1.1.1
sisteransi: 1.0.5
- '@codemirror/autocomplete@6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.2)':
+ '@codemirror/autocomplete@6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)':
dependencies:
'@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
'@codemirror/view': 6.34.1
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
- '@codemirror/commands@6.7.0':
+ '@codemirror/commands@6.7.1':
dependencies:
'@codemirror/language': 6.10.3
'@codemirror/state': 6.4.1
'@codemirror/view': 6.34.1
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
'@codemirror/lang-json@6.0.1':
dependencies:
@@ -4876,7 +5067,7 @@ snapshots:
dependencies:
'@codemirror/state': 6.4.1
'@codemirror/view': 6.34.1
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
style-mod: 4.1.2
@@ -4904,14 +5095,14 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@19.5.0(@types/node@22.7.5)(typescript@5.6.3)':
+ '@commitlint/cli@19.5.0(@types/node@22.8.1)(typescript@5.6.3)':
dependencies:
'@commitlint/format': 19.5.0
'@commitlint/lint': 19.5.0
- '@commitlint/load': 19.5.0(@types/node@22.7.5)(typescript@5.6.3)
+ '@commitlint/load': 19.5.0(@types/node@22.8.1)(typescript@5.6.3)
'@commitlint/read': 19.5.0
'@commitlint/types': 19.5.0
- tinyexec: 0.3.0
+ tinyexec: 0.3.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -4955,7 +5146,7 @@ snapshots:
'@commitlint/rules': 19.5.0
'@commitlint/types': 19.5.0
- '@commitlint/load@19.5.0(@types/node@22.7.5)(typescript@5.6.3)':
+ '@commitlint/load@19.5.0(@types/node@22.8.1)(typescript@5.6.3)':
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/execute-rule': 19.5.0
@@ -4963,7 +5154,7 @@ snapshots:
'@commitlint/types': 19.5.0
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.6.3)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.5)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3)
+ cosmiconfig-typescript-loader: 5.1.0(@types/node@22.8.1)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -4985,7 +5176,7 @@ snapshots:
'@commitlint/types': 19.5.0
git-raw-commits: 4.0.0
minimist: 1.2.8
- tinyexec: 0.3.0
+ tinyexec: 0.3.1
'@commitlint/resolve-extends@19.5.0':
dependencies:
@@ -5019,7 +5210,7 @@ snapshots:
'@docsearch/js@3.6.2(@algolia/client-search@5.5.3)(search-insights@2.17.2)':
dependencies:
'@docsearch/react': 3.6.2(@algolia/client-search@5.5.3)(search-insights@2.17.2)
- preact: 10.24.2
+ preact: 10.24.3
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -5050,161 +5241,239 @@ snapshots:
esquery: 1.6.0
jsdoc-type-pratt-parser: 4.1.0
+ '@es-joy/jsdoccomment@0.49.0':
+ dependencies:
+ comment-parser: 1.4.1
+ esquery: 1.6.0
+ jsdoc-type-pratt-parser: 4.1.0
+
'@esbuild/aix-ppc64@0.21.5':
optional: true
'@esbuild/aix-ppc64@0.23.1':
optional: true
+ '@esbuild/aix-ppc64@0.24.0':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
'@esbuild/android-arm64@0.23.1':
optional: true
+ '@esbuild/android-arm64@0.24.0':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
'@esbuild/android-arm@0.23.1':
optional: true
+ '@esbuild/android-arm@0.24.0':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
'@esbuild/android-x64@0.23.1':
optional: true
+ '@esbuild/android-x64@0.24.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
'@esbuild/darwin-arm64@0.23.1':
optional: true
+ '@esbuild/darwin-arm64@0.24.0':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
'@esbuild/darwin-x64@0.23.1':
optional: true
+ '@esbuild/darwin-x64@0.24.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
'@esbuild/freebsd-arm64@0.23.1':
optional: true
+ '@esbuild/freebsd-arm64@0.24.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
'@esbuild/freebsd-x64@0.23.1':
optional: true
+ '@esbuild/freebsd-x64@0.24.0':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
'@esbuild/linux-arm64@0.23.1':
optional: true
+ '@esbuild/linux-arm64@0.24.0':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
'@esbuild/linux-arm@0.23.1':
optional: true
+ '@esbuild/linux-arm@0.24.0':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
'@esbuild/linux-ia32@0.23.1':
optional: true
+ '@esbuild/linux-ia32@0.24.0':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
'@esbuild/linux-loong64@0.23.1':
optional: true
+ '@esbuild/linux-loong64@0.24.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
'@esbuild/linux-mips64el@0.23.1':
optional: true
+ '@esbuild/linux-mips64el@0.24.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
'@esbuild/linux-ppc64@0.23.1':
optional: true
+ '@esbuild/linux-ppc64@0.24.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
'@esbuild/linux-riscv64@0.23.1':
optional: true
+ '@esbuild/linux-riscv64@0.24.0':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
'@esbuild/linux-s390x@0.23.1':
optional: true
+ '@esbuild/linux-s390x@0.24.0':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
'@esbuild/linux-x64@0.23.1':
optional: true
+ '@esbuild/linux-x64@0.24.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
'@esbuild/netbsd-x64@0.23.1':
optional: true
+ '@esbuild/netbsd-x64@0.24.0':
+ optional: true
+
'@esbuild/openbsd-arm64@0.23.1':
optional: true
+ '@esbuild/openbsd-arm64@0.24.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
'@esbuild/openbsd-x64@0.23.1':
optional: true
+ '@esbuild/openbsd-x64@0.24.0':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
'@esbuild/sunos-x64@0.23.1':
optional: true
+ '@esbuild/sunos-x64@0.24.0':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
'@esbuild/win32-arm64@0.23.1':
optional: true
+ '@esbuild/win32-arm64@0.24.0':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
'@esbuild/win32-ia32@0.23.1':
optional: true
+ '@esbuild/win32-ia32@0.24.0':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
'@esbuild/win32-x64@0.23.1':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.0(eslint@9.11.1(jiti@2.3.3))':
+ '@esbuild/win32-x64@0.24.0':
+ optional: true
+
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.11.1(jiti@2.3.3))':
dependencies:
escape-string-regexp: 4.0.0
eslint: 9.11.1(jiti@2.3.3)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1(jiti@2.3.3))':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.11.1(jiti@2.3.3))':
dependencies:
eslint: 9.11.1(jiti@2.3.3)
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.0(eslint@9.11.1(jiti@2.3.3))':
+ '@eslint/compat@1.2.1(eslint@9.11.1(jiti@2.3.3))':
optionalDependencies:
eslint: 9.11.1(jiti@2.3.3)
@@ -5234,10 +5503,10 @@ snapshots:
'@eslint/js@9.11.1': {}
- '@eslint/markdown@6.2.0':
+ '@eslint/markdown@6.2.1':
dependencies:
- '@eslint/plugin-kit': 0.2.0
- mdast-util-from-markdown: 2.0.1
+ '@eslint/plugin-kit': 0.2.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.0.0
micromark-extension-gfm: 3.0.0
transitivePeerDependencies:
@@ -5245,7 +5514,7 @@ snapshots:
'@eslint/object-schema@2.1.4': {}
- '@eslint/plugin-kit@0.2.0':
+ '@eslint/plugin-kit@0.2.1':
dependencies:
levn: 0.4.1
@@ -5305,39 +5574,39 @@ snapshots:
'@jsonquerylang/jsonquery@3.1.1': {}
- '@lezer/common@1.2.2': {}
+ '@lezer/common@1.2.3': {}
'@lezer/highlight@1.2.1':
dependencies:
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
'@lezer/json@1.0.2':
dependencies:
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
'@lezer/lr@1.4.2':
dependencies:
- '@lezer/common': 1.2.2
+ '@lezer/common': 1.2.3
- '@microsoft/api-extractor-model@7.29.6(@types/node@22.7.5)':
+ '@microsoft/api-extractor-model@7.29.8(@types/node@22.8.1)':
dependencies:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.7.0(@types/node@22.7.5)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.47.7(@types/node@22.7.5)':
+ '@microsoft/api-extractor@7.47.11(@types/node@22.8.1)':
dependencies:
- '@microsoft/api-extractor-model': 7.29.6(@types/node@22.7.5)
+ '@microsoft/api-extractor-model': 7.29.8(@types/node@22.8.1)
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.7.0(@types/node@22.7.5)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.14.0(@types/node@22.7.5)
- '@rushstack/ts-command-line': 4.22.6(@types/node@22.7.5)
+ '@rushstack/terminal': 0.14.2(@types/node@22.8.1)
+ '@rushstack/ts-command-line': 4.23.0(@types/node@22.8.1)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -5368,9 +5637,9 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/schema': 3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -5388,7 +5657,7 @@ snapshots:
semver: 7.6.3
ufo: 1.5.4
unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
@@ -5397,7 +5666,7 @@ snapshots:
- webpack-sources
optional: true
- '@nuxt/schema@3.13.2(rollup@4.24.0)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)':
dependencies:
compatx: 0.1.8
consola: 3.2.3
@@ -5409,7 +5678,7 @@ snapshots:
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
- rollup
@@ -5419,6 +5688,62 @@ snapshots:
'@one-ini/wasm@0.1.1': {}
+ '@parcel/watcher-android-arm64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-darwin-x64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-freebsd-x64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm-glibc@2.4.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-musl@2.4.1':
+ optional: true
+
+ '@parcel/watcher-linux-x64-glibc@2.4.1':
+ optional: true
+
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ optional: true
+
+ '@parcel/watcher-win32-arm64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-win32-ia32@2.4.1':
+ optional: true
+
+ '@parcel/watcher-win32-x64@2.4.1':
+ optional: true
+
+ '@parcel/watcher@2.4.1':
+ dependencies:
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
+
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -5432,63 +5757,69 @@ snapshots:
'@codemirror/state': 6.4.1
'@codemirror/view': 6.34.1
- '@rollup/pluginutils@5.1.2(rollup@4.24.0)':
+ '@rollup/pluginutils@5.1.3(rollup@4.24.2)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.24.2
+
+ '@rollup/rollup-android-arm-eabi@4.24.2':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.24.0':
+ '@rollup/rollup-android-arm64@4.24.2':
optional: true
- '@rollup/rollup-android-arm64@4.24.0':
+ '@rollup/rollup-darwin-arm64@4.24.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.0':
+ '@rollup/rollup-darwin-x64@4.24.2':
optional: true
- '@rollup/rollup-darwin-x64@4.24.0':
+ '@rollup/rollup-freebsd-arm64@4.24.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.0':
+ '@rollup/rollup-freebsd-x64@4.24.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.24.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.0':
+ '@rollup/rollup-linux-arm64-gnu@4.24.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.0':
+ '@rollup/rollup-linux-arm64-musl@4.24.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.24.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.0':
+ '@rollup/rollup-linux-s390x-gnu@4.24.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.0':
+ '@rollup/rollup-linux-x64-gnu@4.24.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.0':
+ '@rollup/rollup-linux-x64-musl@4.24.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.0':
+ '@rollup/rollup-win32-arm64-msvc@4.24.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.0':
+ '@rollup/rollup-win32-ia32-msvc@4.24.2':
optional: true
- '@rushstack/node-core-library@5.7.0(@types/node@22.7.5)':
+ '@rollup/rollup-win32-x64-msvc@4.24.2':
+ optional: true
+
+ '@rushstack/node-core-library@5.9.0(@types/node@22.8.1)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -5499,54 +5830,54 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.14.0(@types/node@22.7.5)':
+ '@rushstack/terminal@0.14.2(@types/node@22.8.1)':
dependencies:
- '@rushstack/node-core-library': 5.7.0(@types/node@22.7.5)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
- '@rushstack/ts-command-line@4.22.6(@types/node@22.7.5)':
+ '@rushstack/ts-command-line@4.23.0(@types/node@22.8.1)':
dependencies:
- '@rushstack/terminal': 0.14.0(@types/node@22.7.5)
+ '@rushstack/terminal': 0.14.2(@types/node@22.8.1)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- '@types/node'
- '@shikijs/core@1.22.0':
+ '@shikijs/core@1.22.1':
dependencies:
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/engine-javascript': 1.22.1
+ '@shikijs/engine-oniguruma': 1.22.1
+ '@shikijs/types': 1.22.1
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/engine-javascript@1.22.0':
+ '@shikijs/engine-javascript@1.22.1':
dependencies:
- '@shikijs/types': 1.22.0
+ '@shikijs/types': 1.22.1
'@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
- '@shikijs/engine-oniguruma@1.22.0':
+ '@shikijs/engine-oniguruma@1.22.1':
dependencies:
- '@shikijs/types': 1.22.0
+ '@shikijs/types': 1.22.1
'@shikijs/vscode-textmate': 9.3.0
- '@shikijs/transformers@1.22.0':
+ '@shikijs/transformers@1.22.1':
dependencies:
- shiki: 1.22.0
+ shiki: 1.22.1
- '@shikijs/types@1.22.0':
+ '@shikijs/types@1.22.1':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -5561,7 +5892,7 @@ snapshots:
'@stylistic/eslint-plugin@2.9.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
eslint-visitor-keys: 4.1.0
espree: 10.2.0
@@ -5575,11 +5906,11 @@ snapshots:
'@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
'@types/debug@4.1.12':
dependencies:
@@ -5597,9 +5928,9 @@ snapshots:
'@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.17.10
+ '@types/lodash': 4.17.12
- '@types/lodash@4.17.10': {}
+ '@types/lodash@4.17.12': {}
'@types/markdown-it@14.1.2':
dependencies:
@@ -5618,7 +5949,7 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/node@22.7.5':
+ '@types/node@22.8.1':
dependencies:
undici-types: 6.19.8
@@ -5626,7 +5957,7 @@ snapshots:
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
kleur: 3.0.3
'@types/semver@7.5.8': {}
@@ -5637,14 +5968,14 @@ snapshots:
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/type-utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.8.1
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/type-utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.11.0
eslint: 9.11.1(jiti@2.3.3)
graphemer: 1.4.0
ignore: 5.3.2
@@ -5655,12 +5986,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.8.1
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.11.0
debug: 4.3.7
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
@@ -5668,15 +5999,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.8.1':
+ '@typescript-eslint/scope-manager@8.11.0':
dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/visitor-keys': 8.8.1
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
- '@typescript-eslint/type-utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
debug: 4.3.7
ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
@@ -5685,12 +6016,12 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/types@8.8.1': {}
+ '@typescript-eslint/types@8.11.0': {}
- '@typescript-eslint/typescript-estree@8.8.1(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/visitor-keys': 8.8.1
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
@@ -5702,146 +6033,146 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
- '@typescript-eslint/scope-manager': 8.8.1
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.6.3)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.8.1':
+ '@typescript-eslint/visitor-keys@8.11.0':
dependencies:
- '@typescript-eslint/types': 8.8.1
+ '@typescript-eslint/types': 8.11.0
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))(vue@3.5.11(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
- vue: 3.5.11(typescript@5.6.3)
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vue: 3.5.12(typescript@5.6.3)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.2)':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3)':
dependencies:
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.2(@types/node@22.7.5)(@vitest/ui@2.1.2)(happy-dom@15.7.4)(sass@1.79.3)(terser@5.33.0)
+ vitest: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
- '@vitest/expect@2.1.2':
+ '@vitest/expect@2.1.3':
dependencies:
- '@vitest/spy': 2.1.2
- '@vitest/utils': 2.1.2
- chai: 5.1.1
+ '@vitest/spy': 2.1.3
+ '@vitest/utils': 2.1.3
+ chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))':
+ '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))':
dependencies:
- '@vitest/spy': 2.1.2
+ '@vitest/spy': 2.1.3
estree-walker: 3.0.3
- magic-string: 0.30.11
+ magic-string: 0.30.12
optionalDependencies:
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
- '@vitest/pretty-format@2.1.2':
+ '@vitest/pretty-format@2.1.3':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.2':
+ '@vitest/runner@2.1.3':
dependencies:
- '@vitest/utils': 2.1.2
+ '@vitest/utils': 2.1.3
pathe: 1.1.2
- '@vitest/snapshot@2.1.2':
+ '@vitest/snapshot@2.1.3':
dependencies:
- '@vitest/pretty-format': 2.1.2
- magic-string: 0.30.11
+ '@vitest/pretty-format': 2.1.3
+ magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.1.2':
+ '@vitest/spy@2.1.3':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@2.1.2(vitest@2.1.2)':
+ '@vitest/ui@2.1.3(vitest@2.1.3)':
dependencies:
- '@vitest/utils': 2.1.2
+ '@vitest/utils': 2.1.3
fflate: 0.8.2
flatted: 3.3.1
pathe: 1.1.2
sirv: 2.0.4
- tinyglobby: 0.2.9
+ tinyglobby: 0.2.10
tinyrainbow: 1.2.0
- vitest: 2.1.2(@types/node@22.7.5)(@vitest/ui@2.1.2)(happy-dom@15.7.4)(sass@1.79.3)(terser@5.33.0)
+ vitest: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
- '@vitest/utils@2.1.2':
+ '@vitest/utils@2.1.3':
dependencies:
- '@vitest/pretty-format': 2.1.2
+ '@vitest/pretty-format': 2.1.3
loupe: 3.1.2
tinyrainbow: 1.2.0
- '@volar/language-core@2.4.6':
+ '@volar/language-core@2.4.8':
dependencies:
- '@volar/source-map': 2.4.6
+ '@volar/source-map': 2.4.8
- '@volar/source-map@2.4.6': {}
+ '@volar/source-map@2.4.8': {}
- '@volar/typescript@2.4.6':
+ '@volar/typescript@2.4.8':
dependencies:
- '@volar/language-core': 2.4.6
+ '@volar/language-core': 2.4.8
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue/compiler-core@3.5.11':
+ '@vue/compiler-core@3.5.12':
dependencies:
- '@babel/parser': 7.25.8
- '@vue/shared': 3.5.11
+ '@babel/parser': 7.26.1
+ '@vue/shared': 3.5.12
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.11':
+ '@vue/compiler-dom@3.5.12':
dependencies:
- '@vue/compiler-core': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/compiler-core': 3.5.12
+ '@vue/shared': 3.5.12
- '@vue/compiler-sfc@3.5.11':
+ '@vue/compiler-sfc@3.5.12':
dependencies:
- '@babel/parser': 7.25.8
- '@vue/compiler-core': 3.5.11
- '@vue/compiler-dom': 3.5.11
- '@vue/compiler-ssr': 3.5.11
- '@vue/shared': 3.5.11
+ '@babel/parser': 7.26.1
+ '@vue/compiler-core': 3.5.12
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.12
postcss: 8.4.47
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.11':
+ '@vue/compiler-ssr@3.5.12':
dependencies:
- '@vue/compiler-dom': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/compiler-dom': 3.5.12
+ '@vue/shared': 3.5.12
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
he: 1.2.0
- '@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3))':
+ '@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vue: 3.5.11(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
- '@vue/devtools-api@7.4.6':
+ '@vue/devtools-api@7.5.4':
dependencies:
- '@vue/devtools-kit': 7.4.6
+ '@vue/devtools-kit': 7.5.4
- '@vue/devtools-kit@7.4.6':
+ '@vue/devtools-kit@7.5.4':
dependencies:
- '@vue/devtools-shared': 7.4.6
+ '@vue/devtools-shared': 7.5.4
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -5849,16 +6180,16 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.4.6':
+ '@vue/devtools-shared@7.5.4':
dependencies:
rfdc: 1.4.1
'@vue/language-core@2.1.6(typescript@5.6.3)':
dependencies:
- '@volar/language-core': 2.4.6
- '@vue/compiler-dom': 3.5.11
+ '@volar/language-core': 2.4.8
+ '@vue/compiler-dom': 3.5.12
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.11
+ '@vue/shared': 3.5.12
computeds: 0.0.1
minimatch: 9.0.5
muggle-string: 0.4.1
@@ -5866,50 +6197,50 @@ snapshots:
optionalDependencies:
typescript: 5.6.3
- '@vue/reactivity@3.5.11':
+ '@vue/reactivity@3.5.12':
dependencies:
- '@vue/shared': 3.5.11
+ '@vue/shared': 3.5.12
- '@vue/runtime-core@3.5.11':
+ '@vue/runtime-core@3.5.12':
dependencies:
- '@vue/reactivity': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/reactivity': 3.5.12
+ '@vue/shared': 3.5.12
- '@vue/runtime-dom@3.5.11':
+ '@vue/runtime-dom@3.5.12':
dependencies:
- '@vue/reactivity': 3.5.11
- '@vue/runtime-core': 3.5.11
- '@vue/shared': 3.5.11
+ '@vue/reactivity': 3.5.12
+ '@vue/runtime-core': 3.5.12
+ '@vue/shared': 3.5.12
csstype: 3.1.3
- '@vue/server-renderer@3.5.11(vue@3.5.11(typescript@5.6.3))':
+ '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.11
- '@vue/shared': 3.5.11
- vue: 3.5.11(typescript@5.6.3)
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
+ vue: 3.5.12(typescript@5.6.3)
- '@vue/shared@3.5.11': {}
+ '@vue/shared@3.5.12': {}
'@vue/test-utils@2.4.6':
dependencies:
js-beautify: 1.15.1
- vue-component-type-helpers: 2.1.6
+ vue-component-type-helpers: 2.1.8
- '@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))':
+ '@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 11.1.0
- '@vueuse/shared': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
- vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ '@vueuse/shared': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.11(typescript@5.6.3))':
+ '@vueuse/integrations@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.12(typescript@5.6.3))':
dependencies:
- '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
- '@vueuse/shared': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
- vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ '@vueuse/shared': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
optionalDependencies:
axios: 1.7.7
focus-trap: 7.6.0
@@ -5919,9 +6250,9 @@ snapshots:
'@vueuse/metadata@11.1.0': {}
- '@vueuse/shared@11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))':
+ '@vueuse/shared@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -5935,11 +6266,15 @@ snapshots:
abbrev@2.0.0: {}
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
- acorn@8.12.1: {}
+ acorn-typescript@1.4.13(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
+ acorn@8.14.0: {}
ajv-draft-04@1.0.0(ajv@8.13.0):
optionalDependencies:
@@ -5973,7 +6308,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.2
+ fast-uri: 3.0.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -6073,12 +6408,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.24.0:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001667
- electron-to-chromium: 1.5.36
+ caniuse-lite: 1.0.30001673
+ electron-to-chromium: 1.5.47
node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
buffer-from@1.1.2:
optional: true
@@ -6089,9 +6424,9 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.0.0(esbuild@0.23.1):
+ bundle-require@5.0.0(esbuild@0.24.0):
dependencies:
- esbuild: 0.23.1
+ esbuild: 0.24.0
load-tsconfig: 0.2.5
c12@1.11.2(magicast@0.3.5):
@@ -6116,13 +6451,13 @@ snapshots:
callsites@3.1.0: {}
- caniuse-lite@1.0.30001667: {}
+ caniuse-lite@1.0.30001673: {}
case-police@0.7.0: {}
ccount@2.0.1: {}
- chai@5.1.1:
+ chai@5.1.2:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
@@ -6173,7 +6508,6 @@ snapshots:
chokidar@4.0.1:
dependencies:
readdirp: 4.0.2
- optional: true
chownr@2.0.0:
optional: true
@@ -6229,14 +6563,6 @@ snapshots:
cnpm@9.4.0: {}
- code-red@1.0.4:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- '@types/estree': 1.0.6
- acorn: 8.12.1
- estree-walker: 3.0.3
- periscopic: 3.1.0
-
codemirror-wrapped-line-indent@1.0.8(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1):
dependencies:
'@codemirror/language': 6.10.3
@@ -6321,11 +6647,11 @@ snapshots:
core-js-compat@3.38.1:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
- cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.5)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3):
+ cosmiconfig-typescript-loader@5.1.0(@types/node@22.8.1)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3):
dependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
typescript: 5.6.3
@@ -6347,11 +6673,6 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- css-tree@2.3.1:
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.1
-
cssesc@3.0.0: {}
csstype@3.1.3: {}
@@ -6407,6 +6728,8 @@ snapshots:
destr@2.0.3: {}
+ detect-libc@1.0.3: {}
+
devlop@1.1.0:
dependencies:
dequal: 2.0.3
@@ -6440,7 +6763,7 @@ snapshots:
minimatch: 9.0.1
semver: 7.6.3
- electron-to-chromium@1.5.36: {}
+ electron-to-chromium@1.5.47: {}
emoji-regex@10.4.0: {}
@@ -6520,6 +6843,33 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
+ esbuild@0.24.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.24.0
+ '@esbuild/android-arm': 0.24.0
+ '@esbuild/android-arm64': 0.24.0
+ '@esbuild/android-x64': 0.24.0
+ '@esbuild/darwin-arm64': 0.24.0
+ '@esbuild/darwin-x64': 0.24.0
+ '@esbuild/freebsd-arm64': 0.24.0
+ '@esbuild/freebsd-x64': 0.24.0
+ '@esbuild/linux-arm': 0.24.0
+ '@esbuild/linux-arm64': 0.24.0
+ '@esbuild/linux-ia32': 0.24.0
+ '@esbuild/linux-loong64': 0.24.0
+ '@esbuild/linux-mips64el': 0.24.0
+ '@esbuild/linux-ppc64': 0.24.0
+ '@esbuild/linux-riscv64': 0.24.0
+ '@esbuild/linux-s390x': 0.24.0
+ '@esbuild/linux-x64': 0.24.0
+ '@esbuild/netbsd-x64': 0.24.0
+ '@esbuild/openbsd-arm64': 0.24.0
+ '@esbuild/openbsd-x64': 0.24.0
+ '@esbuild/sunos-x64': 0.24.0
+ '@esbuild/win32-arm64': 0.24.0
+ '@esbuild/win32-ia32': 0.24.0
+ '@esbuild/win32-x64': 0.24.0
+
escalade@3.2.0: {}
escape-string-regexp@1.0.5: {}
@@ -6535,7 +6885,7 @@ snapshots:
eslint-config-flat-gitignore@0.3.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint/compat': 1.2.0(eslint@9.11.1(jiti@2.3.3))
+ '@eslint/compat': 1.2.1(eslint@9.11.1(jiti@2.3.3))
eslint: 9.11.1(jiti@2.3.3)
find-up-simple: 1.0.0
@@ -6574,8 +6924,8 @@ snapshots:
eslint-plugin-es-x@7.8.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/regexpp': 4.12.1
eslint: 9.11.1(jiti@2.3.3)
eslint-compat-utils: 0.5.1(eslint@9.11.1(jiti@2.3.3))
@@ -6592,7 +6942,7 @@ snapshots:
eslint-plugin-import-x@4.3.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
debug: 4.3.7
doctrine: 3.0.0
eslint: 9.11.1(jiti@2.3.3)
@@ -6602,14 +6952,14 @@ snapshots:
minimatch: 9.0.5
semver: 7.6.3
stable-hash: 0.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsdoc@50.3.1(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-jsdoc@50.4.3(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@es-joy/jsdoccomment': 0.48.0
+ '@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.3.7
@@ -6626,7 +6976,7 @@ snapshots:
eslint-plugin-jsonc@2.16.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
eslint: 9.11.1(jiti@2.3.3)
eslint-compat-utils: 0.5.1(eslint@9.11.1(jiti@2.3.3))
espree: 9.6.1
@@ -6637,7 +6987,7 @@ snapshots:
eslint-plugin-n@17.11.1(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
enhanced-resolve: 5.17.1
eslint: 9.11.1(jiti@2.3.3)
eslint-plugin-es-x: 7.8.0(eslint@9.11.1(jiti@2.3.3))
@@ -6649,15 +6999,15 @@ snapshots:
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@3.8.0(eslint@9.11.1(jiti@2.3.3))(svelte@4.2.19)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3))):
+ eslint-plugin-perfectionist@3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3))):
dependencies:
- '@typescript-eslint/types': 8.8.1
- '@typescript-eslint/utils': 8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
minimatch: 9.0.5
natural-compare-lite: 1.4.0
optionalDependencies:
- svelte: 4.2.19
+ svelte: 5.1.3
vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.3.3))
transitivePeerDependencies:
- supports-color
@@ -6665,8 +7015,8 @@ snapshots:
eslint-plugin-regexp@2.6.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
eslint: 9.11.1(jiti@2.3.3)
jsdoc-type-pratt-parser: 4.1.0
@@ -6684,10 +7034,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@55.0.0(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-unicorn@56.0.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
+ '@babel/helper-validator-identifier': 7.25.9
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.1
@@ -6704,15 +7054,15 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3)):
dependencies:
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- eslint-plugin-vue@9.28.0(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-vue@9.30.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
eslint: 9.11.1(jiti@2.3.3)
globals: 13.24.0
natural-compare: 1.4.0
@@ -6735,9 +7085,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.11)(eslint@9.11.1(jiti@2.3.3)):
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.12)(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@vue/compiler-sfc': 3.5.11
+ '@vue/compiler-sfc': 3.5.12
eslint: 9.11.1(jiti@2.3.3)
eslint-scope@7.2.2:
@@ -6756,13 +7106,13 @@ snapshots:
eslint@9.11.1(jiti@2.3.3):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1(jiti@2.3.3))
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
+ '@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.18.0
'@eslint/core': 0.6.0
'@eslint/eslintrc': 3.1.0
'@eslint/js': 9.11.1
- '@eslint/plugin-kit': 0.2.0
+ '@eslint/plugin-kit': 0.2.1
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.3.1
'@nodelib/fs.walk': 1.2.8
@@ -6798,26 +7148,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ esm-env@1.0.0: {}
+
esno@4.8.0:
dependencies:
- tsx: 4.19.1
+ tsx: 4.19.2
espree@10.2.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 4.1.0
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
esquery@1.6.0:
dependencies:
estraverse: 5.3.0
+ esrap@1.2.2:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@types/estree': 1.0.6
+
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -6834,18 +7191,6 @@ snapshots:
eventemitter3@5.0.1: {}
- execa@5.1.1:
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
-
execa@8.0.1:
dependencies:
cross-spawn: 7.0.3
@@ -6876,7 +7221,7 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-uri@3.0.2: {}
+ fast-uri@3.0.3: {}
fastq@1.17.1:
dependencies:
@@ -6886,7 +7231,7 @@ snapshots:
dependencies:
format: 0.2.2
- fdir@6.4.0(picomatch@4.0.2):
+ fdir@6.4.2(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -6967,9 +7312,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.2.0: {}
-
- get-stream@6.0.1: {}
+ get-east-asian-width@1.3.0: {}
get-stream@8.0.1: {}
@@ -7102,8 +7445,6 @@ snapshots:
html-void-elements@3.0.0: {}
- human-signals@2.1.0: {}
-
human-signals@5.0.0: {}
ignore-walk@5.0.1:
@@ -7168,7 +7509,7 @@ snapshots:
is-fullwidth-code-point@5.0.0:
dependencies:
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.3.0
is-glob@4.0.3:
dependencies:
@@ -7194,8 +7535,6 @@ snapshots:
dependencies:
'@types/estree': 1.0.6
- is-stream@2.0.1: {}
-
is-stream@3.0.0: {}
is-text-path@2.0.0:
@@ -7274,7 +7613,7 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.6.3
@@ -7285,13 +7624,13 @@ snapshots:
jsonparse@1.3.1: {}
- jsonpath-plus@9.0.0:
+ jsonpath-plus@10.1.0:
dependencies:
'@jsep-plugin/assignment': 1.2.1(jsep@1.3.9)
'@jsep-plugin/regex': 1.0.3(jsep@1.3.9)
jsep: 1.3.9
- jsonrepair@3.8.1: {}
+ jsonrepair@3.9.0: {}
keyv@4.5.4:
dependencies:
@@ -7427,19 +7766,19 @@ snapshots:
dependencies:
yallist: 4.0.0
- magic-string@0.30.11:
+ magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
source-map-js: 1.2.1
mark.js@8.11.1: {}
- markdown-table@3.0.3: {}
+ markdown-table@3.0.4: {}
marked-terminal@7.1.0(marked@9.1.6):
dependencies:
@@ -7484,7 +7823,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-from-markdown@2.0.1:
+ mdast-util-from-markdown@2.0.2:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
@@ -7532,7 +7871,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
@@ -7546,7 +7885,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -7554,7 +7893,7 @@ snapshots:
mdast-util-gfm-table@1.0.7:
dependencies:
'@types/mdast': 3.0.15
- markdown-table: 3.0.3
+ markdown-table: 3.0.4
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -7564,8 +7903,8 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- markdown-table: 3.0.3
- mdast-util-from-markdown: 2.0.1
+ markdown-table: 3.0.4
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -7579,7 +7918,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -7598,7 +7937,7 @@ snapshots:
mdast-util-gfm@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.0.0
mdast-util-gfm-strikethrough: 2.0.0
@@ -7660,8 +7999,6 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
- mdn-data@2.0.30: {}
-
memoize-one@6.0.0: {}
meow@12.1.1: {}
@@ -8070,8 +8407,6 @@ snapshots:
dependencies:
mime-db: 1.52.0
- mimic-fn@2.1.0: {}
-
mimic-fn@4.0.0: {}
mimic-function@5.0.1: {}
@@ -8129,7 +8464,7 @@ snapshots:
mlly@1.7.2:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
pathe: 1.1.2
pkg-types: 1.2.1
ufo: 1.5.4
@@ -8154,6 +8489,8 @@ snapshots:
natural-compare@1.4.0: {}
+ node-addon-api@7.1.1: {}
+
node-emoji@2.1.3:
dependencies:
'@sindresorhus/is': 4.6.0
@@ -8199,10 +8536,6 @@ snapshots:
npm-bundled: 2.0.1
npm-normalize-package-bin: 2.0.0
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
@@ -8230,10 +8563,6 @@ snapshots:
dependencies:
wrappy: 1.0.2
- onetime@5.1.2:
- dependencies:
- mimic-fn: 2.1.0
-
onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
@@ -8326,7 +8655,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.0
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -8366,13 +8695,7 @@ snapshots:
perfect-debounce@1.0.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
- picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -8390,14 +8713,14 @@ snapshots:
pluralize@8.0.0: {}
- postcss-load-config@6.0.1(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1):
+ postcss-load-config@6.0.1(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(yaml@2.6.0):
dependencies:
lilconfig: 3.1.2
optionalDependencies:
jiti: 2.3.3
postcss: 8.4.47
- tsx: 4.19.1
- yaml: 2.5.1
+ tsx: 4.19.2
+ yaml: 2.6.0
postcss-selector-parser@6.1.2:
dependencies:
@@ -8407,10 +8730,10 @@ snapshots:
postcss@8.4.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.24.2: {}
+ preact@10.24.3: {}
prelude-ls@1.2.1: {}
@@ -8431,10 +8754,10 @@ snapshots:
proxy-from-env@1.1.0: {}
- publint@0.2.11:
+ publint@0.2.12:
dependencies:
npm-packlist: 5.1.3
- picocolors: 1.1.0
+ picocolors: 1.1.1
sade: 1.8.1
punycode@2.3.1: {}
@@ -8489,18 +8812,17 @@ snapshots:
dependencies:
picomatch: 2.3.1
- readdirp@4.0.2:
- optional: true
+ readdirp@4.0.2: {}
refa@0.12.1:
dependencies:
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/regexpp': 4.12.1
regex@4.3.3: {}
regexp-ast-analysis@0.7.1:
dependencies:
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/regexpp': 4.12.1
refa: 0.12.1
regexp-tree@0.1.27: {}
@@ -8562,35 +8884,37 @@ snapshots:
rfdc@1.4.1: {}
- rollup-plugin-visualizer@5.12.0(rollup@4.24.0):
+ rollup-plugin-visualizer@5.12.0(rollup@4.24.2):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.24.0
+ rollup: 4.24.2
- rollup@4.24.0:
+ rollup@4.24.2:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.0
- '@rollup/rollup-android-arm64': 4.24.0
- '@rollup/rollup-darwin-arm64': 4.24.0
- '@rollup/rollup-darwin-x64': 4.24.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.0
- '@rollup/rollup-linux-arm-musleabihf': 4.24.0
- '@rollup/rollup-linux-arm64-gnu': 4.24.0
- '@rollup/rollup-linux-arm64-musl': 4.24.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.0
- '@rollup/rollup-linux-riscv64-gnu': 4.24.0
- '@rollup/rollup-linux-s390x-gnu': 4.24.0
- '@rollup/rollup-linux-x64-gnu': 4.24.0
- '@rollup/rollup-linux-x64-musl': 4.24.0
- '@rollup/rollup-win32-arm64-msvc': 4.24.0
- '@rollup/rollup-win32-ia32-msvc': 4.24.0
- '@rollup/rollup-win32-x64-msvc': 4.24.0
+ '@rollup/rollup-android-arm-eabi': 4.24.2
+ '@rollup/rollup-android-arm64': 4.24.2
+ '@rollup/rollup-darwin-arm64': 4.24.2
+ '@rollup/rollup-darwin-x64': 4.24.2
+ '@rollup/rollup-freebsd-arm64': 4.24.2
+ '@rollup/rollup-freebsd-x64': 4.24.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.2
+ '@rollup/rollup-linux-arm64-gnu': 4.24.2
+ '@rollup/rollup-linux-arm64-musl': 4.24.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.2
+ '@rollup/rollup-linux-s390x-gnu': 4.24.2
+ '@rollup/rollup-linux-x64-gnu': 4.24.2
+ '@rollup/rollup-linux-x64-musl': 4.24.2
+ '@rollup/rollup-win32-arm64-msvc': 4.24.2
+ '@rollup/rollup-win32-ia32-msvc': 4.24.2
+ '@rollup/rollup-win32-x64-msvc': 4.24.2
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -8603,22 +8927,16 @@ snapshots:
dependencies:
mri: 1.2.0
- sass@1.78.0:
- dependencies:
- chokidar: 3.6.0
- immutable: 4.3.7
- source-map-js: 1.2.1
-
- sass@1.79.3:
+ sass@1.80.4:
dependencies:
+ '@parcel/watcher': 2.4.1
chokidar: 4.0.1
immutable: 4.3.7
source-map-js: 1.2.1
- optional: true
scslre@0.3.0:
dependencies:
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/regexpp': 4.12.1
refa: 0.12.1
regexp-ast-analysis: 0.7.1
@@ -8643,19 +8961,17 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.22.0:
+ shiki@1.22.1:
dependencies:
- '@shikijs/core': 1.22.0
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/core': 1.22.1
+ '@shikijs/engine-javascript': 1.22.1
+ '@shikijs/engine-oniguruma': 1.22.1
+ '@shikijs/types': 1.22.1
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
siginfo@2.0.0: {}
- signal-exit@3.0.7: {}
-
signal-exit@4.1.0: {}
simple-git-hooks@2.11.1: {}
@@ -8768,7 +9084,7 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.4.0
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
stringify-entities@4.0.4:
@@ -8784,8 +9100,6 @@ snapshots:
dependencies:
ansi-regex: 6.1.0
- strip-final-newline@2.0.0: {}
-
strip-final-newline@3.0.0: {}
strip-indent@3.0.0:
@@ -8833,31 +9147,30 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte@4.2.19:
+ svelte@5.1.3:
dependencies:
'@ampproject/remapping': 2.3.0
'@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
'@types/estree': 1.0.6
- acorn: 8.12.1
+ acorn: 8.14.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
aria-query: 5.3.2
axobject-query: 4.1.0
- code-red: 1.0.4
- css-tree: 2.3.1
- estree-walker: 3.0.3
+ esm-env: 1.0.0
+ esrap: 1.2.2
is-reference: 3.0.2
locate-character: 3.0.0
- magic-string: 0.30.11
- periscopic: 3.1.0
+ magic-string: 0.30.12
+ zimmerframe: 1.1.2
synckit@0.6.2:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.7.0
+ tslib: 2.8.0
tabbable@6.2.0: {}
@@ -8876,7 +9189,7 @@ snapshots:
terser@5.33.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
optional: true
@@ -8897,11 +9210,11 @@ snapshots:
tinybench@2.9.0: {}
- tinyexec@0.3.0: {}
+ tinyexec@0.3.1: {}
- tinyglobby@0.2.9:
+ tinyglobby@0.2.10:
dependencies:
- fdir: 6.4.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.0.1: {}
@@ -8910,8 +9223,6 @@ snapshots:
tinyspy@3.0.2: {}
- to-fast-properties@2.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -8940,28 +9251,28 @@ snapshots:
ts-interface-checker@0.1.13: {}
- tslib@2.7.0: {}
+ tslib@2.8.0: {}
- tsup@8.3.0(@microsoft/api-extractor@7.47.7(@types/node@22.7.5))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1):
+ tsup@8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.1))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0):
dependencies:
- bundle-require: 5.0.0(esbuild@0.23.1)
+ bundle-require: 5.0.0(esbuild@0.24.0)
cac: 6.7.14
- chokidar: 3.6.0
+ chokidar: 4.0.1
consola: 3.2.3
debug: 4.3.7
- esbuild: 0.23.1
- execa: 5.1.1
+ esbuild: 0.24.0
joycon: 3.1.1
- picocolors: 1.1.0
- postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1)
+ picocolors: 1.1.1
+ postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(yaml@2.6.0)
resolve-from: 5.0.0
- rollup: 4.24.0
+ rollup: 4.24.2
source-map: 0.8.0-beta.0
sucrase: 3.35.0
- tinyglobby: 0.2.9
+ tinyexec: 0.3.1
+ tinyglobby: 0.2.10
tree-kill: 1.2.2
optionalDependencies:
- '@microsoft/api-extractor': 7.47.7(@types/node@22.7.5)
+ '@microsoft/api-extractor': 7.47.11(@types/node@22.8.1)
postcss: 8.4.47
typescript: 5.6.3
transitivePeerDependencies:
@@ -8970,7 +9281,7 @@ snapshots:
- tsx
- yaml
- tsx@4.19.1:
+ tsx@4.19.2:
dependencies:
esbuild: 0.23.1
get-tsconfig: 4.8.1
@@ -9000,9 +9311,9 @@ snapshots:
unctx@2.3.1(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
estree-walker: 3.0.3
- magic-string: 0.30.11
+ magic-string: 0.30.12
unplugin: 1.14.1(webpack-sources@3.2.3)
transitivePeerDependencies:
- webpack-sources
@@ -9024,15 +9335,15 @@ snapshots:
trough: 2.2.0
vfile: 5.3.7
- unimport@3.13.1(rollup@4.24.0)(webpack-sources@3.2.3):
+ unimport@3.13.1(rollup@4.24.2)(webpack-sources@3.2.3):
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- acorn: 8.12.1
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
mlly: 1.7.2
pathe: 1.1.2
pkg-types: 1.2.1
@@ -9087,39 +9398,39 @@ snapshots:
universalify@0.1.2: {}
- unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3)))(rollup@4.24.0)(webpack-sources@3.2.3):
+ unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
minimatch: 9.0.5
- unimport: 3.13.1(rollup@4.24.0)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
unplugin: 1.14.1(webpack-sources@3.2.3)
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
- '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- rollup
- webpack-sources
- unplugin-vue-components@0.27.4(@babel/parser@7.25.8)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3))(rollup@4.24.0)(vue@3.5.11(typescript@5.6.3))(webpack-sources@3.2.3):
+ unplugin-vue-components@0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
chokidar: 3.6.0
debug: 4.3.7
fast-glob: 3.3.2
local-pkg: 0.5.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
minimatch: 9.0.5
mlly: 1.7.2
unplugin: 1.14.1(webpack-sources@3.2.3)
- vue: 3.5.11(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
optionalDependencies:
- '@babel/parser': 7.25.8
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.0)(webpack-sources@3.2.3)
+ '@babel/parser': 7.26.1
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- supports-color
@@ -9127,16 +9438,16 @@ snapshots:
unplugin@1.14.1(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
webpack-virtual-modules: 0.6.2
optionalDependencies:
webpack-sources: 3.2.3
untyped@1.5.1:
dependencies:
- '@babel/core': 7.25.8
- '@babel/standalone': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/core': 7.26.0
+ '@babel/standalone': 7.26.1
+ '@babel/types': 7.26.0
defu: 6.1.4
jiti: 2.3.3
mri: 1.2.0
@@ -9145,11 +9456,11 @@ snapshots:
- supports-color
optional: true
- update-browserslist-db@1.1.1(browserslist@4.24.0):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
@@ -9173,10 +9484,10 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- vanilla-jsoneditor@1.0.7(@lezer/common@1.2.2):
+ vanilla-jsoneditor@2.0.0(@lezer/common@1.2.3):
dependencies:
- '@codemirror/autocomplete': 6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.2)
- '@codemirror/commands': 6.7.0
+ '@codemirror/autocomplete': 6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.3)
+ '@codemirror/commands': 6.7.1
'@codemirror/lang-json': 6.0.1
'@codemirror/language': 6.10.3
'@codemirror/lint': 6.8.2
@@ -9194,13 +9505,13 @@ snapshots:
immutable-json-patch: 6.0.1
jmespath: 0.16.0
json-source-map: 0.6.1
- jsonpath-plus: 9.0.0
- jsonrepair: 3.8.1
+ jsonpath-plus: 10.1.0
+ jsonrepair: 3.9.0
lodash-es: 4.17.21
memoize-one: 6.0.0
natural-compare-lite: 1.4.0
- sass: 1.78.0
- svelte: 4.2.19
+ sass: 1.80.4
+ svelte: 5.1.3
vanilla-picker: 2.12.3
transitivePeerDependencies:
- '@lezer/common'
@@ -9231,12 +9542,12 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@2.1.2(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0):
+ vite-node@2.1.3(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0):
dependencies:
cac: 6.7.14
debug: 4.3.7
pathe: 1.1.2
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -9248,55 +9559,55 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@4.2.3(@types/node@22.7.5)(rollup@4.24.0)(typescript@5.6.3)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)):
+ vite-plugin-dts@4.3.0(@types/node@22.8.1)(rollup@4.24.2)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)):
dependencies:
- '@microsoft/api-extractor': 7.47.7(@types/node@22.7.5)
- '@rollup/pluginutils': 5.1.2(rollup@4.24.0)
- '@volar/typescript': 2.4.6
+ '@microsoft/api-extractor': 7.47.11(@types/node@22.8.1)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@volar/typescript': 2.4.8
'@vue/language-core': 2.1.6(typescript@5.6.3)
compare-versions: 6.1.1
debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.5.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
typescript: 5.6.3
optionalDependencies:
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0):
+ vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.0
+ rollup: 4.24.2
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.8.1
fsevents: 2.3.3
- sass: 1.79.3
+ sass: 1.80.4
terser: 5.33.0
- vitepress@1.4.0(@algolia/client-search@5.5.3)(@types/node@22.7.5)(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.79.3)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3):
+ vitepress@1.4.1(@algolia/client-search@5.5.3)(@types/node@22.8.1)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.4)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3):
dependencies:
'@docsearch/css': 3.6.2
'@docsearch/js': 3.6.2(@algolia/client-search@5.5.3)(search-insights@2.17.2)
- '@shikijs/core': 1.22.0
- '@shikijs/transformers': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/core': 1.22.1
+ '@shikijs/transformers': 1.22.1
+ '@shikijs/types': 1.22.1
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))(vue@3.5.11(typescript@5.6.3))
- '@vue/devtools-api': 7.4.6
- '@vue/shared': 3.5.11
- '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
- '@vueuse/integrations': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.11(typescript@5.6.3))
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
+ '@vue/devtools-api': 7.5.4
+ '@vue/shared': 3.5.12
+ '@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
+ '@vueuse/integrations': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.12(typescript@5.6.3))
focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.22.0
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
- vue: 3.5.11(typescript@5.6.3)
+ shiki: 1.22.1
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vue: 3.5.12(typescript@5.6.3)
optionalDependencies:
postcss: 8.4.47
transitivePeerDependencies:
@@ -9327,30 +9638,30 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.1.2(@types/node@22.7.5)(@vitest/ui@2.1.2)(happy-dom@15.7.4)(sass@1.79.3)(terser@5.33.0):
+ vitest@2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0):
dependencies:
- '@vitest/expect': 2.1.2
- '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(vite@5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0))
- '@vitest/pretty-format': 2.1.2
- '@vitest/runner': 2.1.2
- '@vitest/snapshot': 2.1.2
- '@vitest/spy': 2.1.2
- '@vitest/utils': 2.1.2
- chai: 5.1.1
+ '@vitest/expect': 2.1.3
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))
+ '@vitest/pretty-format': 2.1.3
+ '@vitest/runner': 2.1.3
+ '@vitest/snapshot': 2.1.3
+ '@vitest/spy': 2.1.3
+ '@vitest/utils': 2.1.3
+ chai: 5.1.2
debug: 4.3.7
- magic-string: 0.30.11
+ magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.7.0
tinybench: 2.9.0
- tinyexec: 0.3.0
+ tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.8(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
- vite-node: 2.1.2(@types/node@22.7.5)(sass@1.79.3)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite-node: 2.1.3(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.7.5
- '@vitest/ui': 2.1.2(vitest@2.1.2)
+ '@types/node': 22.8.1
+ '@vitest/ui': 2.1.3(vitest@2.1.3)
happy-dom: 15.7.4
transitivePeerDependencies:
- less
@@ -9365,13 +9676,13 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-component-type-helpers@2.1.6: {}
+ vue-component-type-helpers@2.1.8: {}
- vue-demi@0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3)):
+ vue-demi@0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)):
dependencies:
- vue: 3.5.11(typescript@5.6.3)
+ vue: 3.5.12(typescript@5.6.3)
optionalDependencies:
- '@vue/composition-api': 1.7.2(vue@3.5.11(typescript@5.6.3))
+ '@vue/composition-api': 1.7.2(vue@3.5.12(typescript@5.6.3))
vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3)):
dependencies:
@@ -9386,20 +9697,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-global-config@0.6.2(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3)):
+ vue-global-config@0.6.3(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)):
dependencies:
- vue: 3.5.11(typescript@5.6.3)
- vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.11(typescript@5.6.3)))(vue@3.5.11(typescript@5.6.3))
+ vue: 3.5.12(typescript@5.6.3)
+ vue-demi: 0.14.10(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
optionalDependencies:
- '@vue/composition-api': 1.7.2(vue@3.5.11(typescript@5.6.3))
+ '@vue/composition-api': 1.7.2(vue@3.5.12(typescript@5.6.3))
- vue@3.5.11(typescript@5.6.3):
+ vue@3.5.12(typescript@5.6.3):
dependencies:
- '@vue/compiler-dom': 3.5.11
- '@vue/compiler-sfc': 3.5.11
- '@vue/runtime-dom': 3.5.11
- '@vue/server-renderer': 3.5.11(vue@3.5.11(typescript@5.6.3))
- '@vue/shared': 3.5.11
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-sfc': 3.5.12
+ '@vue/runtime-dom': 3.5.12
+ '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3))
+ '@vue/shared': 3.5.12
optionalDependencies:
typescript: 5.6.3
@@ -9468,10 +9779,12 @@ snapshots:
dependencies:
eslint-visitor-keys: 3.4.3
lodash: 4.17.21
- yaml: 2.5.1
+ yaml: 2.6.0
yaml@2.5.1: {}
+ yaml@2.6.0: {}
+
yargs-parser@20.2.9: {}
yargs-parser@21.1.1: {}
@@ -9514,4 +9827,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ zimmerframe@1.1.2: {}
+
zwitch@2.0.4: {}
From e0a408f97287b111f3553b91fc5b1b7e458fef68 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Mon, 28 Oct 2024 20:33:07 +0800
Subject: [PATCH 05/22] release: v0.17.3
---
.github/workflows/release.yml | 2 +-
jsr.json | 2 +-
package.json | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 8b6b09f6..03d138e7 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -26,7 +26,7 @@ jobs:
- run: pnpm i
- run: pnpm build
- - run: npx jsr publish
+ - run: npx jsr publish --allow-dirty
- run: npm publish --registry=https://registry.npmjs.org --provenance
env:
diff --git a/jsr.json b/jsr.json
index 55ce273a..ed65cb95 100644
--- a/jsr.json
+++ b/jsr.json
@@ -1,6 +1,6 @@
{
"name": "@cloydlau/json-editor-vue",
- "version": "0.17.2",
+ "version": "0.17.3",
"exports": "./dist/json-editor-vue.mjs",
"publish": {
"include": [
diff --git a/package.json b/package.json
index 9731a101..4506bb96 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "json-editor-vue",
"PascalCasedName": "JsonEditorVue",
"type": "commonjs",
- "version": "0.17.2",
+ "version": "0.17.3",
"private": false,
"description": "Vue and Nuxt 2/3 isomorphic JSON editor, viewer, formatter and validator.",
"author": {
From e401b8bc7057031e1e999da6aa90b281c8229707 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Tue, 29 Oct 2024 19:45:02 +0800
Subject: [PATCH 06/22] workflow: try to fix 403 Forbidden error on
changelogithub
---
.github/workflows/release.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 8b6b09f6..21c5a94a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -7,6 +7,7 @@ on:
permissions:
id-token: write # This is required for requesting the JWT
+ contents: write
jobs:
release:
From c318328c1e2c8157f5b55af4ea124cfffd282929 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Tue, 29 Oct 2024 19:53:21 +0800
Subject: [PATCH 07/22] =?UTF-8?q?workflow:=20try=20to=20fix=20the=20error?=
=?UTF-8?q?=20on=20`npx=20jsr=20publish`=20=E2=80=94=20Aborting=20due=20to?=
=?UTF-8?q?=20uncommitted=20changes.=20Check=20in=20source=20code=20or=20r?=
=?UTF-8?q?un=20with=20--allow-dirty?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/release.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index bf5e67f0..d4616b69 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -7,7 +7,7 @@ on:
permissions:
id-token: write # This is required for requesting the JWT
- contents: write
+ contents: write # 403 Forbidden error on changelogithub
jobs:
release:
@@ -22,12 +22,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: latest
- registry-url: https://registry.npmjs.org
cache: pnpm
+ - run: pnpm config set registry https://registry.npmmirror.com
- run: pnpm i
- run: pnpm build
- - run: npx jsr publish --allow-dirty
+ - run: npx jsr publish
- run: npm publish --registry=https://registry.npmjs.org --provenance
env:
From bf09d4d86a83c3e55974da7a2f528482c0ec2e7f Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Wed, 30 Oct 2024 21:47:32 +0800
Subject: [PATCH 08/22] chore: use a separate file to store constants
---
package.json | 8 +-
pnpm-lock.yaml | 791 ++++++++++++++++++++++++-----------------------
src/constants.ts | 12 +
src/index.ts | 22 +-
4 files changed, 421 insertions(+), 412 deletions(-)
create mode 100644 src/constants.ts
diff --git a/package.json b/package.json
index 4506bb96..fbc4b395 100644
--- a/package.json
+++ b/package.json
@@ -96,11 +96,11 @@
"@commitlint/config-conventional": "^19.5.0",
"@types/cross-spawn": "^6.0.6",
"@types/lodash-es": "^4.17.12",
- "@types/node": "^22.8.1",
+ "@types/node": "^22.8.4",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@vitejs/plugin-vue": "^5.1.4",
- "@vitest/ui": "^2.1.3",
+ "@vitest/ui": "^2.1.4",
"@vue/compiler-sfc": "^3.5.12",
"@vue/test-utils": "^2.4.6",
"axios": "^1.7.7",
@@ -132,8 +132,8 @@
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.10",
"vite-plugin-dts": "4.3.0",
- "vitepress": "^1.4.1",
- "vitest": "^2.1.3",
+ "vitepress": "^1.4.2",
+ "vitest": "^2.1.4",
"vue": "^3.5.12",
"vue-global-config": "^0.6.3",
"zhlint": "^0.8.2"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 503b1d37..98d346e8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -20,13 +20,13 @@ importers:
devDependencies:
'@antfu/eslint-config':
specifier: ^3.8.0
- version: 3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vitest@2.1.3)
+ version: 3.8.0(@typescript-eslint/utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.4)(typescript@5.6.3)(vitest@2.1.4)
'@arethetypeswrong/cli':
specifier: ^0.16.4
version: 0.16.4
'@commitlint/cli':
specifier: ^19.5.0
- version: 19.5.0(@types/node@22.8.1)(typescript@5.6.3)
+ version: 19.5.0(@types/node@22.8.4)(typescript@5.6.3)
'@commitlint/config-conventional':
specifier: ^19.5.0
version: 19.5.0
@@ -37,8 +37,8 @@ importers:
specifier: ^4.17.12
version: 4.17.12
'@types/node':
- specifier: ^22.8.1
- version: 22.8.1
+ specifier: ^22.8.4
+ version: 22.8.4
'@types/prompts':
specifier: ^2.4.9
version: 2.4.9
@@ -47,10 +47,10 @@ importers:
version: 7.5.8
'@vitejs/plugin-vue':
specifier: ^5.1.4
- version: 5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
+ version: 5.1.4(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
'@vitest/ui':
- specifier: ^2.1.3
- version: 2.1.3(vitest@2.1.3)
+ specifier: ^2.1.4
+ version: 2.1.4(vitest@2.1.4)
'@vue/compiler-sfc':
specifier: ^3.5.12
version: 3.5.12
@@ -119,7 +119,7 @@ importers:
version: 0.2.12
rollup-plugin-visualizer:
specifier: ^5.12.0
- version: 5.12.0(rollup@4.24.2)
+ version: 5.12.0(rollup@4.24.3)
semver:
specifier: ^7.6.3
version: 7.6.3
@@ -128,28 +128,28 @@ importers:
version: 2.11.1
tsup:
specifier: ^8.3.5
- version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.1))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0)
+ version: 8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.4))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0)
typescript:
specifier: ^5.6.3
version: 5.6.3
unplugin-auto-import:
specifier: ^0.18.3
- version: 0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3)
+ version: 0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.3)(webpack-sources@3.2.3)
unplugin-vue-components:
specifier: ^0.27.4
- version: 0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
+ version: 0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3)
vite:
specifier: ^5.4.10
- version: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ version: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
vite-plugin-dts:
specifier: 4.3.0
- version: 4.3.0(@types/node@22.8.1)(rollup@4.24.2)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))
+ version: 4.3.0(@types/node@22.8.4)(rollup@4.24.3)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))
vitepress:
- specifier: ^1.4.1
- version: 1.4.1(@algolia/client-search@5.5.3)(@types/node@22.8.1)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.4)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3)
+ specifier: ^1.4.2
+ version: 1.4.2(@algolia/client-search@5.5.3)(@types/node@22.8.4)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.5)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3)
vitest:
- specifier: ^2.1.3
- version: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
+ specifier: ^2.1.4
+ version: 2.1.4(@types/node@22.8.4)(@vitest/ui@2.1.4)(happy-dom@15.7.4)(sass@1.80.5)(terser@5.33.0)
vue:
specifier: ^3.5.12
version: 3.5.12(typescript@5.6.3)
@@ -974,8 +974,8 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/compat@1.2.1':
- resolution: {integrity: sha512-JbHG2TWuCeNzh87fXo+/46Z1LEo9DBA9T188d0fZgGxAD+cNyS6sx9fdiyxjGPBMyQVRlCutTByZ6a5+YMkF7g==}
+ '@eslint/compat@1.2.2':
+ resolution: {integrity: sha512-jhgiIrsw+tRfcBQ4BFl2C3vCrIUw2trCY0cnDvGZpwTtKCEDmZhAtMfrEUP/KpnwM6PrO0T+Ltm+ccW74olG3Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^9.10.0
@@ -1007,8 +1007,8 @@ packages:
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.2.1':
- resolution: {integrity: sha512-HFZ4Mp26nbWk9d/BpvP0YNL6W4UoZF0VFcTw/aPPA8RpOxeFQgK+ClABGgAUXs9Y/RGX/l1vOmrqz1MQt9MNuw==}
+ '@eslint/plugin-kit@0.2.2':
+ resolution: {integrity: sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@fortawesome/fontawesome-common-types@6.6.0':
@@ -1228,102 +1228,102 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.24.2':
- resolution: {integrity: sha512-ufoveNTKDg9t/b7nqI3lwbCG/9IJMhADBNjjz/Jn6LxIZxD7T5L8l2uO/wD99945F1Oo8FvgbbZJRguyk/BdzA==}
+ '@rollup/rollup-android-arm-eabi@4.24.3':
+ resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.24.2':
- resolution: {integrity: sha512-iZoYCiJz3Uek4NI0J06/ZxUgwAfNzqltK0MptPDO4OR0a88R4h0DSELMsflS6ibMCJ4PnLvq8f7O1d7WexUvIA==}
+ '@rollup/rollup-android-arm64@4.24.3':
+ resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.24.2':
- resolution: {integrity: sha512-/UhrIxobHYCBfhi5paTkUDQ0w+jckjRZDZ1kcBL132WeHZQ6+S5v9jQPVGLVrLbNUebdIRpIt00lQ+4Z7ys4Rg==}
+ '@rollup/rollup-darwin-arm64@4.24.3':
+ resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.24.2':
- resolution: {integrity: sha512-1F/jrfhxJtWILusgx63WeTvGTwE4vmsT9+e/z7cZLKU8sBMddwqw3UV5ERfOV+H1FuRK3YREZ46J4Gy0aP3qDA==}
+ '@rollup/rollup-darwin-x64@4.24.3':
+ resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.24.2':
- resolution: {integrity: sha512-1YWOpFcGuC6iGAS4EI+o3BV2/6S0H+m9kFOIlyFtp4xIX5rjSnL3AwbTBxROX0c8yWtiWM7ZI6mEPTI7VkSpZw==}
+ '@rollup/rollup-freebsd-arm64@4.24.3':
+ resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.24.2':
- resolution: {integrity: sha512-3qAqTewYrCdnOD9Gl9yvPoAoFAVmPJsBvleabvx4bnu1Kt6DrB2OALeRVag7BdWGWLhP1yooeMLEi6r2nYSOjg==}
+ '@rollup/rollup-freebsd-x64@4.24.3':
+ resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
- resolution: {integrity: sha512-ArdGtPHjLqWkqQuoVQ6a5UC5ebdX8INPuJuJNWRe0RGa/YNhVvxeWmCTFQ7LdmNCSUzVZzxAvUznKaYx645Rig==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
+ resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
- resolution: {integrity: sha512-B6UHHeNnnih8xH6wRKB0mOcJGvjZTww1FV59HqJoTJ5da9LCG6R4SEBt6uPqzlawv1LoEXSS0d4fBlHNWl6iYw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
+ resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
- resolution: {integrity: sha512-kr3gqzczJjSAncwOS6i7fpb4dlqcvLidqrX5hpGBIM1wtt0QEVtf4wFaAwVv8QygFU8iWUMYEoJZWuWxyua4GQ==}
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
+ resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.24.2':
- resolution: {integrity: sha512-TDdHLKCWgPuq9vQcmyLrhg/bgbOvIQ8rtWQK7MRxJ9nvaxKx38NvY7/Lo6cYuEnNHqf6rMqnivOIPIQt6H2AoA==}
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
+ resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
- resolution: {integrity: sha512-xv9vS648T3X4AxFFZGWeB5Dou8ilsv4VVqJ0+loOIgDO20zIhYfDLkk5xoQiej2RiSQkld9ijF/fhLeonrz2mw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
+ resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
- resolution: {integrity: sha512-tbtXwnofRoTt223WUZYiUnbxhGAOVul/3StZ947U4A5NNjnQJV5irKMm76G0LGItWs6y+SCjUn/Q0WaMLkEskg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
+ resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
- resolution: {integrity: sha512-gc97UebApwdsSNT3q79glOSPdfwgwj5ELuiyuiMY3pEWMxeVqLGKfpDFoum4ujivzxn6veUPzkGuSYoh5deQ2Q==}
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
+ resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.24.2':
- resolution: {integrity: sha512-jOG/0nXb3z+EM6SioY8RofqqmZ+9NKYvJ6QQaa9Mvd3RQxlH68/jcB/lpyVt4lCiqr04IyaC34NzhUqcXbB5FQ==}
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
+ resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.24.2':
- resolution: {integrity: sha512-XAo7cJec80NWx9LlZFEJQxqKOMz/lX3geWs2iNT5CHIERLFfd90f3RYLLjiCBm1IMaQ4VOX/lTC9lWfzzQm14Q==}
+ '@rollup/rollup-linux-x64-musl@4.24.3':
+ resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
- resolution: {integrity: sha512-A+JAs4+EhsTjnPQvo9XY/DC0ztaws3vfqzrMNMKlwQXuniBKOIIvAAI8M0fBYiTCxQnElYu7mLk7JrhlQ+HeOw==}
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
+ resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
- resolution: {integrity: sha512-ZhcrakbqA1SCiJRMKSU64AZcYzlZ/9M5LaYil9QWxx9vLnkQ9Vnkve17Qn4SjlipqIIBFKjBES6Zxhnvh0EAEw==}
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
+ resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.24.2':
- resolution: {integrity: sha512-2mLH46K1u3r6uwc95hU+OR9q/ggYMpnS7pSp83Ece1HUQgF9Nh/QwTK5rcgbFnV9j+08yBrU5sA/P0RK2MSBNA==}
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
+ resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==}
cpu: [x64]
os: [win32]
@@ -1349,20 +1349,20 @@ packages:
'@rushstack/ts-command-line@4.23.0':
resolution: {integrity: sha512-jYREBtsxduPV6ptNq8jOKp9+yx0ld1Tb/Tkdnlj8gTjazl1sF3DwX2VbluyYrNd0meWIL0bNeer7WDf5tKFjaQ==}
- '@shikijs/core@1.22.1':
- resolution: {integrity: sha512-bqAhT/Ri5ixV4oYsvJNH8UJjpjbINWlWyXY6tBTsP4OmD6XnFv43nRJ+lTdxd2rmG5pgam/x+zGR6kLRXrpEKA==}
+ '@shikijs/core@1.22.2':
+ resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
- '@shikijs/engine-javascript@1.22.1':
- resolution: {integrity: sha512-540pyoy0LWe4jj2BVbgELwOFu1uFvRI7lg4hdsExrSXA9x7gqfzZ/Nnh4RfX86aDAgJ647gx4TCmRwACbnQSvw==}
+ '@shikijs/engine-javascript@1.22.2':
+ resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
- '@shikijs/engine-oniguruma@1.22.1':
- resolution: {integrity: sha512-L+1Vmd+a2kk8HtogUFymQS6BjUfJnzcWoUp1BUgxoDiklbKSMvrsMuLZGevTOP1m0rEjgnC5MsDmsr8lX1lC+Q==}
+ '@shikijs/engine-oniguruma@1.22.2':
+ resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
- '@shikijs/transformers@1.22.1':
- resolution: {integrity: sha512-KvG49YFV6gV116sC4L3Sn1Rp6HXsioMKBBG373j088rw849440hm8s2r+/dgjsGLvT4p+QB7newev+5a3ARM6w==}
+ '@shikijs/transformers@1.22.2':
+ resolution: {integrity: sha512-8f78OiBa6pZDoZ53lYTmuvpFPlWtevn23bzG+azpPVvZg7ITax57o/K3TC91eYL3OMJOO0onPbgnQyZjRos8XQ==}
- '@shikijs/types@1.22.1':
- resolution: {integrity: sha512-+45f8mu/Hxqs6Kyhfm98Nld5n7Q7lwhjU8UtdQwrOPs7BnM4VAb929O3IQ2ce+4D7SlNFlZGd8CnKRSnwbQreQ==}
+ '@shikijs/types@1.22.2':
+ resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
@@ -1411,8 +1411,8 @@ packages:
'@types/lodash-es@4.17.12':
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
- '@types/lodash@4.17.12':
- resolution: {integrity: sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==}
+ '@types/lodash@4.17.13':
+ resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
'@types/markdown-it@14.1.2':
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
@@ -1429,8 +1429,8 @@ packages:
'@types/ms@0.7.34':
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- '@types/node@22.8.1':
- resolution: {integrity: sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==}
+ '@types/node@22.8.4':
+ resolution: {integrity: sha512-SpNNxkftTJOPk0oN+y2bIqurEXHTA2AOZ3EJDDKeJ5VzkvvORSvmQXGQarcOzWV1ac7DCaPBEdMDxBsM+d8jWw==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1450,8 +1450,8 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@8.11.0':
- resolution: {integrity: sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==}
+ '@typescript-eslint/eslint-plugin@8.12.2':
+ resolution: {integrity: sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -1461,8 +1461,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.11.0':
- resolution: {integrity: sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==}
+ '@typescript-eslint/parser@8.12.2':
+ resolution: {integrity: sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1471,12 +1471,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.11.0':
- resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==}
+ '@typescript-eslint/scope-manager@8.12.2':
+ resolution: {integrity: sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.11.0':
- resolution: {integrity: sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==}
+ '@typescript-eslint/type-utils@8.12.2':
+ resolution: {integrity: sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1484,12 +1484,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.11.0':
- resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==}
+ '@typescript-eslint/types@8.12.2':
+ resolution: {integrity: sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.11.0':
- resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==}
+ '@typescript-eslint/typescript-estree@8.12.2':
+ resolution: {integrity: sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1497,14 +1497,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.11.0':
- resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==}
+ '@typescript-eslint/utils@8.12.2':
+ resolution: {integrity: sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.11.0':
- resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==}
+ '@typescript-eslint/visitor-keys@8.12.2':
+ resolution: {integrity: sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
@@ -1530,14 +1530,13 @@ packages:
vitest:
optional: true
- '@vitest/expect@2.1.3':
- resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
+ '@vitest/expect@2.1.4':
+ resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==}
- '@vitest/mocker@2.1.3':
- resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
+ '@vitest/mocker@2.1.4':
+ resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==}
peerDependencies:
- '@vitest/spy': 2.1.3
- msw: ^2.3.5
+ msw: ^2.4.9
vite: ^5.0.0
peerDependenciesMeta:
msw:
@@ -1545,25 +1544,25 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@2.1.3':
- resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
+ '@vitest/pretty-format@2.1.4':
+ resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==}
- '@vitest/runner@2.1.3':
- resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
+ '@vitest/runner@2.1.4':
+ resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==}
- '@vitest/snapshot@2.1.3':
- resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
+ '@vitest/snapshot@2.1.4':
+ resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==}
- '@vitest/spy@2.1.3':
- resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
+ '@vitest/spy@2.1.4':
+ resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==}
- '@vitest/ui@2.1.3':
- resolution: {integrity: sha512-2XwTrHVJw3t9NYES26LQUYy51ZB8W4bRPgqUH2Eyda3kIuOlYw1ZdPNU22qcVlUVx4WKgECFQOSXuopsczuVjQ==}
+ '@vitest/ui@2.1.4':
+ resolution: {integrity: sha512-Zd9e5oU063c+j9N9XzGJagCLNvG71x/2tOme3Js4JEZKX55zsgxhJwUgLI8hkN6NjMLpdJO8d7nVUUuPGAA58Q==}
peerDependencies:
- vitest: 2.1.3
+ vitest: 2.1.4
- '@vitest/utils@2.1.3':
- resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
+ '@vitest/utils@2.1.4':
+ resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==}
'@volar/language-core@2.4.8':
resolution: {integrity: sha512-K/GxMOXGq997bO00cdFhTNuR85xPxj0BEEAy+BaqqayTmy9Tmhfgmq2wpJcVspRhcwfgPoE2/mEJa26emUhG/g==}
@@ -1594,14 +1593,14 @@ packages:
peerDependencies:
vue: '>= 2.5 < 2.7'
- '@vue/devtools-api@7.5.4':
- resolution: {integrity: sha512-j9UC/KeYUNZ6AyCJxBROBCbogB5YHW6PZv9VnCNp2ntE4rq426Lfc8WP5B9V+rXBwqWmrgZTGYBa31CBSxdAUg==}
+ '@vue/devtools-api@7.5.6':
+ resolution: {integrity: sha512-/7ov2ioU80fYcYENEJXp88l88gX1PJCGJdMtQmUV3VQmGgQvKrpeUoPWgkpXPkUxmAquh6PZnVtXeDpTX5mmLg==}
- '@vue/devtools-kit@7.5.4':
- resolution: {integrity: sha512-0i7WFgc1B2TL52tstn82zlb9opSA0aIiHfkUYFXtZb8CIpmlFMTkHtgwVl6PMWNBj3LNhYou1YJCLpCYvJYYoA==}
+ '@vue/devtools-kit@7.5.6':
+ resolution: {integrity: sha512-44qr4/l9BsNP5hKETucueP8SKkyDZBHEurV4pQnRWs906OG9f2aYWhk4vL+27tsB4ZoWJM2h3RLhygzeeKZzWg==}
- '@vue/devtools-shared@7.5.4':
- resolution: {integrity: sha512-dwuq4YmwTyLc7eBOqX63s3JB8il7qnKsNgENglSMkUPwiItHkVAYYfPESN1rxSdYkl1RCux1l5TBidYqfUDNAA==}
+ '@vue/devtools-shared@7.5.6':
+ resolution: {integrity: sha512-5iq/BF6f05JTcC7J/1DTUm4CpyVVB4KiyLAo/fDcoyWR7EulharWQVbr6W7ek5lO23f5mbnJ+adA5tfFTJt6Sw==}
'@vue/language-core@2.1.6':
resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
@@ -1871,8 +1870,8 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001673:
- resolution: {integrity: sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==}
+ caniuse-lite@1.0.30001675:
+ resolution: {integrity: sha512-/wV1bQwPrkLiQMjaJF5yUMVM/VdRPOCU8QZ+PmG6uW6DvYSrNY1bpwHI/3mOcUosLaJCzYDi5o91IQB51ft6cg==}
case-police@0.7.0:
resolution: {integrity: sha512-ULkv4kNeSBFCFwXE1NA/x6/FqY8lRRXT10HsGX7K0LcMcA/B45SgnNY98hnQ9c05AaVhgbR5jlCO0BXMlIEuPg==}
@@ -2225,8 +2224,8 @@ packages:
engines: {node: '>=14'}
hasBin: true
- electron-to-chromium@1.5.47:
- resolution: {integrity: sha512-zS5Yer0MOYw4rtK2iq43cJagHZ8sXN0jDHDKzB+86gSBSAI4v07S97mcq+Gs2vclAxSh1j7vOAHxSVgduiiuVQ==}
+ electron-to-chromium@1.5.49:
+ resolution: {integrity: sha512-ZXfs1Of8fDb6z7WEYZjXpgIRF6MEu8JdeGA0A40aZq6OQbS+eJpnnV49epZRna2DU/YsEjSQuGtQPPtvt6J65A==}
emoji-regex@10.4.0:
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
@@ -2344,8 +2343,8 @@ packages:
peerDependencies:
eslint: ^8.40.0 || ^9.0.0
- eslint-plugin-import-x@4.3.1:
- resolution: {integrity: sha512-5TriWkXulDl486XnYYRgsL+VQoS/7mhN/2ci02iLCuL7gdhbiWxnsuL/NTcaKY9fpMgsMFjWZBtIGW7pb+RX0g==}
+ eslint-plugin-import-x@4.4.0:
+ resolution: {integrity: sha512-me58aWTjdkPtgmOzPe+uP0bebpN5etH4bJRnYzy85Rn9g/3QyASg6kTCqdwNzyaJRqMI2ii2o8s01P2LZpREHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2362,8 +2361,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-n@17.11.1:
- resolution: {integrity: sha512-93IUD82N6tIEgjztVI/l3ElHtC2wTa9boJHrD8iN+NyDxjxz/daZUZKfkedjBZNdg6EqDk4irybUsiPwDqXAEA==}
+ eslint-plugin-n@17.12.0:
+ resolution: {integrity: sha512-zNAtz/erDn0v78bIY3MASSQlyaarV4IOTvP5ldHsqblRFrXriikB6ghkDTkHjUad+nMRrIbOy9euod2azjRfBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -2440,16 +2439,16 @@ packages:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-scope@8.1.0:
- resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.1.0:
- resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==}
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint@9.11.1:
@@ -2462,15 +2461,15 @@ packages:
jiti:
optional: true
- esm-env@1.0.0:
- resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
+ esm-env@1.1.4:
+ resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==}
esno@4.8.0:
resolution: {integrity: sha512-acMtooReAQGzLU0zcuEDHa8S62meh5aIyi8jboYxyvAePdmuWx2Mpwmt0xjwO0bs9/SXf+dvXJ0QJoDWw814Iw==}
hasBin: true
- espree@10.2.0:
- resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
espree@9.6.1:
@@ -2509,6 +2508,10 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -3211,8 +3214,8 @@ packages:
mdast-util-to-markdown@1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
- mdast-util-to-markdown@2.1.0:
- resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+ mdast-util-to-markdown@2.1.1:
+ resolution: {integrity: sha512-OrkcCoqAkEg9b1ykXBrA0ehRc8H4fGU/03cACmW2xXzau1+dIdS+qJugh1Cqex3hMumSBgSE/5pc7uqP12nLAw==}
mdast-util-to-string@3.2.0:
resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
@@ -3925,8 +3928,8 @@ packages:
rollup:
optional: true
- rollup@4.24.2:
- resolution: {integrity: sha512-do/DFGq5g6rdDhdpPq5qb2ecoczeK6y+2UAjdJ5trjQJj5f1AiVdLRWRc9A9/fFukfvJRgM0UXzxBIYMovm5ww==}
+ rollup@4.24.3:
+ resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -3941,8 +3944,8 @@ packages:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
- sass@1.80.4:
- resolution: {integrity: sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w==}
+ sass@1.80.5:
+ resolution: {integrity: sha512-TQd2aoQl/+zsxRMEDSxVdpPIqeq9UFc6pr7PzkugiTx3VYCFPUaa3P4RrBQsqok4PO200Vkz0vXQBNlg7W907g==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -3982,8 +3985,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.22.1:
- resolution: {integrity: sha512-PbJ6XxrWLMwB2rm3qdjIHNm3zq4SfFnOx0B3rEoi4AN8AUngsdyZ1tRe5slMPtn6jQkbUURLNZPpLR7Do3k78g==}
+ shiki@1.22.2:
+ resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -3996,9 +3999,9 @@ packages:
resolution: {integrity: sha512-tgqwPUMDcNDhuf1Xf6KTUsyeqGdgKMhzaH4PAZZuzguOgTl5uuyeYe/8mWgAr6IBxB5V06uqEf6Dy37gIWDtDg==}
hasBin: true
- sirv@2.0.4:
- resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
- engines: {node: '>= 10'}
+ sirv@3.0.0:
+ resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ engines: {node: '>=18'}
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -4165,8 +4168,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte@5.1.3:
- resolution: {integrity: sha512-Sl8UFHlBvF54aK8MElFvyvaUfPE2REOz6LnhR2pBClCL11MU4qpn4V+KgAggaXxDyrP2iQixvHbtpHqL/zXlSQ==}
+ svelte@5.1.4:
+ resolution: {integrity: sha512-qgHDV7AyvBZa2pbf+V0tnvWrN1LKD8LdUsBkR/SSYVVN6zXexiXnOy5Pjcjft2y/2NJJVa8ORUHFVn3oiWCLVQ==}
engines: {node: '>=18'}
synckit@0.6.2:
@@ -4410,8 +4413,8 @@ packages:
'@nuxt/kit':
optional: true
- unplugin@1.14.1:
- resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
+ unplugin@1.15.0:
+ resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==}
engines: {node: '>=14.0.0'}
peerDependencies:
webpack-sources: ^3
@@ -4468,8 +4471,8 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite-node@2.1.3:
- resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
+ vite-node@2.1.4:
+ resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -4514,8 +4517,8 @@ packages:
terser:
optional: true
- vitepress@1.4.1:
- resolution: {integrity: sha512-C2rQ7PMlDVqgsaHOa0uJtgGGWaGv74QMaGL62lxKbtFkYtosJB5HAfZ8+pEbfzzvLemYaYwaiQdFLBlexK2sFw==}
+ vitepress@1.4.2:
+ resolution: {integrity: sha512-10v92Lqx0N4r7YC3cQLBvu+gRS2rHviE7vgdKiwlupUGfSWkyiQDqYccxM5iPStDGSi1Brnec1lf+lmhaQcZXw==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -4526,15 +4529,15 @@ packages:
postcss:
optional: true
- vitest@2.1.3:
- resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
+ vitest@2.1.4:
+ resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.1.3
- '@vitest/ui': 2.1.3
+ '@vitest/browser': 2.1.4
+ '@vitest/ui': 2.1.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -4847,32 +4850,32 @@ snapshots:
'@andrewbranch/untar.js@1.0.3': {}
- '@antfu/eslint-config@3.8.0(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vitest@2.1.3)':
+ '@antfu/eslint-config@3.8.0(@typescript-eslint/utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(@vue/compiler-sfc@3.5.12)(eslint-plugin-format@0.1.2(eslint@9.11.1(jiti@2.3.3)))(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.4)(typescript@5.6.3)(vitest@2.1.4)':
dependencies:
'@antfu/install-pkg': 0.4.1
'@clack/prompts': 0.7.0
'@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.11.1(jiti@2.3.3))
'@eslint/markdown': 6.2.1
'@stylistic/eslint-plugin': 2.9.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/parser': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3)
+ '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.4)
eslint: 9.11.1(jiti@2.3.3)
eslint-config-flat-gitignore: 0.3.0(eslint@9.11.1(jiti@2.3.3))
eslint-flat-config-utils: 0.4.0
eslint-merge-processors: 0.1.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-antfu: 2.7.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-command: 0.2.6(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-import-x: 4.3.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ eslint-plugin-import-x: 4.4.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint-plugin-jsdoc: 50.4.3(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-jsonc: 2.16.0(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-n: 17.11.1(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-n: 17.12.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3)))
+ eslint-plugin-perfectionist: 3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.4)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3)))
eslint-plugin-regexp: 2.6.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-toml: 0.11.1(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-unicorn: 56.0.0(eslint@9.11.1(jiti@2.3.3))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-vue: 9.30.0(eslint@9.11.1(jiti@2.3.3))
eslint-plugin-yml: 1.14.0(eslint@9.11.1(jiti@2.3.3))
eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.12)(eslint@9.11.1(jiti@2.3.3))
@@ -5095,11 +5098,11 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@19.5.0(@types/node@22.8.1)(typescript@5.6.3)':
+ '@commitlint/cli@19.5.0(@types/node@22.8.4)(typescript@5.6.3)':
dependencies:
'@commitlint/format': 19.5.0
'@commitlint/lint': 19.5.0
- '@commitlint/load': 19.5.0(@types/node@22.8.1)(typescript@5.6.3)
+ '@commitlint/load': 19.5.0(@types/node@22.8.4)(typescript@5.6.3)
'@commitlint/read': 19.5.0
'@commitlint/types': 19.5.0
tinyexec: 0.3.1
@@ -5146,7 +5149,7 @@ snapshots:
'@commitlint/rules': 19.5.0
'@commitlint/types': 19.5.0
- '@commitlint/load@19.5.0(@types/node@22.8.1)(typescript@5.6.3)':
+ '@commitlint/load@19.5.0(@types/node@22.8.4)(typescript@5.6.3)':
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/execute-rule': 19.5.0
@@ -5154,7 +5157,7 @@ snapshots:
'@commitlint/types': 19.5.0
chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.6.3)
- cosmiconfig-typescript-loader: 5.1.0(@types/node@22.8.1)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3)
+ cosmiconfig-typescript-loader: 5.1.0(@types/node@22.8.4)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -5473,7 +5476,7 @@ snapshots:
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.1(eslint@9.11.1(jiti@2.3.3))':
+ '@eslint/compat@1.2.2(eslint@9.11.1(jiti@2.3.3))':
optionalDependencies:
eslint: 9.11.1(jiti@2.3.3)
@@ -5491,7 +5494,7 @@ snapshots:
dependencies:
ajv: 6.12.6
debug: 4.3.7
- espree: 10.2.0
+ espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.0
@@ -5505,7 +5508,7 @@ snapshots:
'@eslint/markdown@6.2.1':
dependencies:
- '@eslint/plugin-kit': 0.2.1
+ '@eslint/plugin-kit': 0.2.2
mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.0.0
micromark-extension-gfm: 3.0.0
@@ -5514,7 +5517,7 @@ snapshots:
'@eslint/object-schema@2.1.4': {}
- '@eslint/plugin-kit@0.2.1':
+ '@eslint/plugin-kit@0.2.2':
dependencies:
levn: 0.4.1
@@ -5590,23 +5593,23 @@ snapshots:
dependencies:
'@lezer/common': 1.2.3
- '@microsoft/api-extractor-model@7.29.8(@types/node@22.8.1)':
+ '@microsoft/api-extractor-model@7.29.8(@types/node@22.8.4)':
dependencies:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.4)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.47.11(@types/node@22.8.1)':
+ '@microsoft/api-extractor@7.47.11(@types/node@22.8.4)':
dependencies:
- '@microsoft/api-extractor-model': 7.29.8(@types/node@22.8.1)
+ '@microsoft/api-extractor-model': 7.29.8(@types/node@22.8.4)
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.4)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.14.2(@types/node@22.8.1)
- '@rushstack/ts-command-line': 4.23.0(@types/node@22.8.1)
+ '@rushstack/terminal': 0.14.2(@types/node@22.8.4)
+ '@rushstack/ts-command-line': 4.23.0(@types/node@22.8.4)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -5637,9 +5640,9 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3)':
dependencies:
- '@nuxt/schema': 3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/schema': 3.13.2(rollup@4.24.3)(webpack-sources@3.2.3)
c12: 1.11.2(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -5657,7 +5660,7 @@ snapshots:
semver: 7.6.3
ufo: 1.5.4
unctx: 2.3.1(webpack-sources@3.2.3)
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.3)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
- magicast
@@ -5666,7 +5669,7 @@ snapshots:
- webpack-sources
optional: true
- '@nuxt/schema@3.13.2(rollup@4.24.2)(webpack-sources@3.2.3)':
+ '@nuxt/schema@3.13.2(rollup@4.24.3)(webpack-sources@3.2.3)':
dependencies:
compatx: 0.1.8
consola: 3.2.3
@@ -5678,7 +5681,7 @@ snapshots:
std-env: 3.7.0
ufo: 1.5.4
uncrypto: 0.1.3
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.3)(webpack-sources@3.2.3)
untyped: 1.5.1
transitivePeerDependencies:
- rollup
@@ -5757,69 +5760,69 @@ snapshots:
'@codemirror/state': 6.4.1
'@codemirror/view': 6.34.1
- '@rollup/pluginutils@5.1.3(rollup@4.24.2)':
+ '@rollup/pluginutils@5.1.3(rollup@4.24.3)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.3
- '@rollup/rollup-android-arm-eabi@4.24.2':
+ '@rollup/rollup-android-arm-eabi@4.24.3':
optional: true
- '@rollup/rollup-android-arm64@4.24.2':
+ '@rollup/rollup-android-arm64@4.24.3':
optional: true
- '@rollup/rollup-darwin-arm64@4.24.2':
+ '@rollup/rollup-darwin-arm64@4.24.3':
optional: true
- '@rollup/rollup-darwin-x64@4.24.2':
+ '@rollup/rollup-darwin-x64@4.24.3':
optional: true
- '@rollup/rollup-freebsd-arm64@4.24.2':
+ '@rollup/rollup-freebsd-arm64@4.24.3':
optional: true
- '@rollup/rollup-freebsd-x64@4.24.2':
+ '@rollup/rollup-freebsd-x64@4.24.3':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.24.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.24.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.24.2':
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.24.2':
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.24.2':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.24.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.24.2':
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.24.2':
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-x64-musl@4.24.2':
+ '@rollup/rollup-linux-x64-musl@4.24.3':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.24.2':
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.24.2':
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.24.2':
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
optional: true
- '@rushstack/node-core-library@5.9.0(@types/node@22.8.1)':
+ '@rushstack/node-core-library@5.9.0(@types/node@22.8.4)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -5830,54 +5833,54 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.14.2(@types/node@22.8.1)':
+ '@rushstack/terminal@0.14.2(@types/node@22.8.4)':
dependencies:
- '@rushstack/node-core-library': 5.9.0(@types/node@22.8.1)
+ '@rushstack/node-core-library': 5.9.0(@types/node@22.8.4)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
- '@rushstack/ts-command-line@4.23.0(@types/node@22.8.1)':
+ '@rushstack/ts-command-line@4.23.0(@types/node@22.8.4)':
dependencies:
- '@rushstack/terminal': 0.14.2(@types/node@22.8.1)
+ '@rushstack/terminal': 0.14.2(@types/node@22.8.4)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- '@types/node'
- '@shikijs/core@1.22.1':
+ '@shikijs/core@1.22.2':
dependencies:
- '@shikijs/engine-javascript': 1.22.1
- '@shikijs/engine-oniguruma': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/engine-javascript@1.22.1':
+ '@shikijs/engine-javascript@1.22.2':
dependencies:
- '@shikijs/types': 1.22.1
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
- '@shikijs/engine-oniguruma@1.22.1':
+ '@shikijs/engine-oniguruma@1.22.2':
dependencies:
- '@shikijs/types': 1.22.1
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
- '@shikijs/transformers@1.22.1':
+ '@shikijs/transformers@1.22.2':
dependencies:
- shiki: 1.22.1
+ shiki: 1.22.2
- '@shikijs/types@1.22.1':
+ '@shikijs/types@1.22.2':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -5892,10 +5895,10 @@ snapshots:
'@stylistic/eslint-plugin@2.9.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
- eslint-visitor-keys: 4.1.0
- espree: 10.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
estraverse: 5.3.0
picomatch: 4.0.2
transitivePeerDependencies:
@@ -5906,11 +5909,11 @@ snapshots:
'@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
'@types/debug@4.1.12':
dependencies:
@@ -5928,9 +5931,9 @@ snapshots:
'@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.17.12
+ '@types/lodash': 4.17.13
- '@types/lodash@4.17.12': {}
+ '@types/lodash@4.17.13': {}
'@types/markdown-it@14.1.2':
dependencies:
@@ -5949,7 +5952,7 @@ snapshots:
'@types/ms@0.7.34': {}
- '@types/node@22.8.1':
+ '@types/node@22.8.4':
dependencies:
undici-types: 6.19.8
@@ -5957,7 +5960,7 @@ snapshots:
'@types/prompts@2.4.9':
dependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
kleur: 3.0.3
'@types/semver@7.5.8': {}
@@ -5968,14 +5971,14 @@ snapshots:
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/scope-manager': 8.11.0
- '@typescript-eslint/type-utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.11.0
+ '@typescript-eslint/parser': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/type-utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
eslint: 9.11.1(jiti@2.3.3)
graphemer: 1.4.0
ignore: 5.3.2
@@ -5986,12 +5989,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.11.0
- '@typescript-eslint/types': 8.11.0
- '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
- '@typescript-eslint/visitor-keys': 8.11.0
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
debug: 4.3.7
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
@@ -5999,15 +6002,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.11.0':
+ '@typescript-eslint/scope-manager@8.12.2':
dependencies:
- '@typescript-eslint/types': 8.11.0
- '@typescript-eslint/visitor-keys': 8.11.0
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
- '@typescript-eslint/type-utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
debug: 4.3.7
ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
@@ -6016,12 +6019,12 @@ snapshots:
- eslint
- supports-color
- '@typescript-eslint/types@8.11.0': {}
+ '@typescript-eslint/types@8.12.2': {}
- '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.12.2(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.11.0
- '@typescript-eslint/visitor-keys': 8.11.0
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
@@ -6033,85 +6036,85 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
- '@typescript-eslint/scope-manager': 8.11.0
- '@typescript-eslint/types': 8.11.0
- '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.11.0':
+ '@typescript-eslint/visitor-keys@8.12.2':
dependencies:
- '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/types': 8.12.2
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))':
dependencies:
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
vue: 3.5.12(typescript@5.6.3)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3)':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.4)':
dependencies:
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
+ vitest: 2.1.4(@types/node@22.8.4)(@vitest/ui@2.1.4)(happy-dom@15.7.4)(sass@1.80.5)(terser@5.33.0)
- '@vitest/expect@2.1.3':
+ '@vitest/expect@2.1.4':
dependencies:
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))':
+ '@vitest/mocker@2.1.4(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))':
dependencies:
- '@vitest/spy': 2.1.3
+ '@vitest/spy': 2.1.4
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
- '@vitest/pretty-format@2.1.3':
+ '@vitest/pretty-format@2.1.4':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.1.3':
+ '@vitest/runner@2.1.4':
dependencies:
- '@vitest/utils': 2.1.3
+ '@vitest/utils': 2.1.4
pathe: 1.1.2
- '@vitest/snapshot@2.1.3':
+ '@vitest/snapshot@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.4
magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.1.3':
+ '@vitest/spy@2.1.4':
dependencies:
tinyspy: 3.0.2
- '@vitest/ui@2.1.3(vitest@2.1.3)':
+ '@vitest/ui@2.1.4(vitest@2.1.4)':
dependencies:
- '@vitest/utils': 2.1.3
+ '@vitest/utils': 2.1.4
fflate: 0.8.2
flatted: 3.3.1
pathe: 1.1.2
- sirv: 2.0.4
+ sirv: 3.0.0
tinyglobby: 0.2.10
tinyrainbow: 1.2.0
- vitest: 2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0)
+ vitest: 2.1.4(@types/node@22.8.4)(@vitest/ui@2.1.4)(happy-dom@15.7.4)(sass@1.80.5)(terser@5.33.0)
- '@vitest/utils@2.1.3':
+ '@vitest/utils@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.3
+ '@vitest/pretty-format': 2.1.4
loupe: 3.1.2
tinyrainbow: 1.2.0
@@ -6166,13 +6169,13 @@ snapshots:
dependencies:
vue: 3.5.12(typescript@5.6.3)
- '@vue/devtools-api@7.5.4':
+ '@vue/devtools-api@7.5.6':
dependencies:
- '@vue/devtools-kit': 7.5.4
+ '@vue/devtools-kit': 7.5.6
- '@vue/devtools-kit@7.5.4':
+ '@vue/devtools-kit@7.5.6':
dependencies:
- '@vue/devtools-shared': 7.5.4
+ '@vue/devtools-shared': 7.5.6
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -6180,7 +6183,7 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.5.4':
+ '@vue/devtools-shared@7.5.6':
dependencies:
rfdc: 1.4.1
@@ -6410,8 +6413,8 @@ snapshots:
browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001673
- electron-to-chromium: 1.5.47
+ caniuse-lite: 1.0.30001675
+ electron-to-chromium: 1.5.49
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
@@ -6451,7 +6454,7 @@ snapshots:
callsites@3.1.0: {}
- caniuse-lite@1.0.30001673: {}
+ caniuse-lite@1.0.30001675: {}
case-police@0.7.0: {}
@@ -6649,9 +6652,9 @@ snapshots:
dependencies:
browserslist: 4.24.2
- cosmiconfig-typescript-loader@5.1.0(@types/node@22.8.1)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3):
+ cosmiconfig-typescript-loader@5.1.0(@types/node@22.8.4)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3):
dependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
typescript: 5.6.3
@@ -6763,7 +6766,7 @@ snapshots:
minimatch: 9.0.1
semver: 7.6.3
- electron-to-chromium@1.5.47: {}
+ electron-to-chromium@1.5.49: {}
emoji-regex@10.4.0: {}
@@ -6885,7 +6888,7 @@ snapshots:
eslint-config-flat-gitignore@0.3.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
- '@eslint/compat': 1.2.1(eslint@9.11.1(jiti@2.3.3))
+ '@eslint/compat': 1.2.2(eslint@9.11.1(jiti@2.3.3))
eslint: 9.11.1(jiti@2.3.3)
find-up-simple: 1.0.0
@@ -6940,9 +6943,9 @@ snapshots:
prettier: 3.3.3
synckit: 0.9.2
- eslint-plugin-import-x@4.3.1(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3):
+ eslint-plugin-import-x@4.4.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
debug: 4.3.7
doctrine: 3.0.0
eslint: 9.11.1(jiti@2.3.3)
@@ -6965,7 +6968,7 @@ snapshots:
debug: 4.3.7
escape-string-regexp: 4.0.0
eslint: 9.11.1(jiti@2.3.3)
- espree: 10.2.0
+ espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
semver: 7.6.3
@@ -6985,7 +6988,7 @@ snapshots:
natural-compare: 1.4.0
synckit: 0.6.2
- eslint-plugin-n@17.11.1(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-n@17.12.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
'@eslint-community/eslint-utils': 4.4.1(eslint@9.11.1(jiti@2.3.3))
enhanced-resolve: 5.17.1
@@ -6999,15 +7002,15 @@ snapshots:
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.3)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3))):
+ eslint-plugin-perfectionist@3.9.1(eslint@9.11.1(jiti@2.3.3))(svelte@5.1.4)(typescript@5.6.3)(vue-eslint-parser@9.4.3(eslint@9.11.1(jiti@2.3.3))):
dependencies:
- '@typescript-eslint/types': 8.11.0
- '@typescript-eslint/utils': 8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/utils': 8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint: 9.11.1(jiti@2.3.3)
minimatch: 9.0.5
natural-compare-lite: 1.4.0
optionalDependencies:
- svelte: 5.1.3
+ svelte: 5.1.4
vue-eslint-parser: 9.4.3(eslint@9.11.1(jiti@2.3.3))
transitivePeerDependencies:
- supports-color
@@ -7054,11 +7057,11 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3)):
dependencies:
eslint: 9.11.1(jiti@2.3.3)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3))(eslint@9.11.1(jiti@2.3.3))(typescript@5.6.3)
eslint-plugin-vue@9.30.0(eslint@9.11.1(jiti@2.3.3)):
dependencies:
@@ -7095,14 +7098,14 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-scope@8.1.0:
+ eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.1.0: {}
+ eslint-visitor-keys@4.2.0: {}
eslint@9.11.1(jiti@2.3.3):
dependencies:
@@ -7112,7 +7115,7 @@ snapshots:
'@eslint/core': 0.6.0
'@eslint/eslintrc': 3.1.0
'@eslint/js': 9.11.1
- '@eslint/plugin-kit': 0.2.1
+ '@eslint/plugin-kit': 0.2.2
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.3.1
'@nodelib/fs.walk': 1.2.8
@@ -7123,9 +7126,9 @@ snapshots:
cross-spawn: 7.0.3
debug: 4.3.7
escape-string-regexp: 4.0.0
- eslint-scope: 8.1.0
- eslint-visitor-keys: 4.1.0
- espree: 10.2.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -7148,17 +7151,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- esm-env@1.0.0: {}
+ esm-env@1.1.4: {}
esno@4.8.0:
dependencies:
tsx: 4.19.2
- espree@10.2.0:
+ espree@10.3.0:
dependencies:
acorn: 8.14.0
acorn-jsx: 5.3.2(acorn@8.14.0)
- eslint-visitor-keys: 4.1.0
+ eslint-visitor-keys: 4.2.0
espree@9.6.1:
dependencies:
@@ -7203,6 +7206,8 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
+ expect-type@1.1.0: {}
+
extend@3.0.2: {}
fast-deep-equal@3.1.3: {}
@@ -7872,7 +7877,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.1
micromark-util-normalize-identifier: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -7886,7 +7891,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -7905,7 +7910,7 @@ snapshots:
devlop: 1.1.0
markdown-table: 3.0.4
mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -7919,7 +7924,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
mdast-util-from-markdown: 2.0.2
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -7943,7 +7948,7 @@ snapshots:
mdast-util-gfm-strikethrough: 2.0.0
mdast-util-gfm-table: 2.0.0
mdast-util-gfm-task-list-item: 2.0.0
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-markdown: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -7980,13 +7985,14 @@ snapshots:
unist-util-visit: 4.1.2
zwitch: 2.0.4
- mdast-util-to-markdown@2.1.0:
+ mdast-util-to-markdown@2.1.1:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
+ micromark-util-classify-character: 2.0.0
micromark-util-decode-string: 2.0.0
unist-util-visit: 5.0.0
zwitch: 2.0.4
@@ -8884,37 +8890,37 @@ snapshots:
rfdc@1.4.1: {}
- rollup-plugin-visualizer@5.12.0(rollup@4.24.2):
+ rollup-plugin-visualizer@5.12.0(rollup@4.24.3):
dependencies:
open: 8.4.2
picomatch: 2.3.1
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.24.2
+ rollup: 4.24.3
- rollup@4.24.2:
+ rollup@4.24.3:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.24.2
- '@rollup/rollup-android-arm64': 4.24.2
- '@rollup/rollup-darwin-arm64': 4.24.2
- '@rollup/rollup-darwin-x64': 4.24.2
- '@rollup/rollup-freebsd-arm64': 4.24.2
- '@rollup/rollup-freebsd-x64': 4.24.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.24.2
- '@rollup/rollup-linux-arm-musleabihf': 4.24.2
- '@rollup/rollup-linux-arm64-gnu': 4.24.2
- '@rollup/rollup-linux-arm64-musl': 4.24.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.24.2
- '@rollup/rollup-linux-riscv64-gnu': 4.24.2
- '@rollup/rollup-linux-s390x-gnu': 4.24.2
- '@rollup/rollup-linux-x64-gnu': 4.24.2
- '@rollup/rollup-linux-x64-musl': 4.24.2
- '@rollup/rollup-win32-arm64-msvc': 4.24.2
- '@rollup/rollup-win32-ia32-msvc': 4.24.2
- '@rollup/rollup-win32-x64-msvc': 4.24.2
+ '@rollup/rollup-android-arm-eabi': 4.24.3
+ '@rollup/rollup-android-arm64': 4.24.3
+ '@rollup/rollup-darwin-arm64': 4.24.3
+ '@rollup/rollup-darwin-x64': 4.24.3
+ '@rollup/rollup-freebsd-arm64': 4.24.3
+ '@rollup/rollup-freebsd-x64': 4.24.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.3
+ '@rollup/rollup-linux-arm64-gnu': 4.24.3
+ '@rollup/rollup-linux-arm64-musl': 4.24.3
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.3
+ '@rollup/rollup-linux-s390x-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-musl': 4.24.3
+ '@rollup/rollup-win32-arm64-msvc': 4.24.3
+ '@rollup/rollup-win32-ia32-msvc': 4.24.3
+ '@rollup/rollup-win32-x64-msvc': 4.24.3
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -8927,7 +8933,7 @@ snapshots:
dependencies:
mri: 1.2.0
- sass@1.80.4:
+ sass@1.80.5:
dependencies:
'@parcel/watcher': 2.4.1
chokidar: 4.0.1
@@ -8961,12 +8967,12 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.22.1:
+ shiki@1.22.2:
dependencies:
- '@shikijs/core': 1.22.1
- '@shikijs/engine-javascript': 1.22.1
- '@shikijs/engine-oniguruma': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -8976,7 +8982,7 @@ snapshots:
simple-git-hooks@2.11.1: {}
- sirv@2.0.4:
+ sirv@3.0.0:
dependencies:
'@polka/url': 1.0.0-next.28
mrmime: 2.0.0
@@ -9147,7 +9153,7 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte@5.1.3:
+ svelte@5.1.4:
dependencies:
'@ampproject/remapping': 2.3.0
'@jridgewell/sourcemap-codec': 1.5.0
@@ -9156,7 +9162,7 @@ snapshots:
acorn-typescript: 1.4.13(acorn@8.14.0)
aria-query: 5.3.2
axobject-query: 4.1.0
- esm-env: 1.0.0
+ esm-env: 1.1.4
esrap: 1.2.2
is-reference: 3.0.2
locate-character: 3.0.0
@@ -9253,7 +9259,7 @@ snapshots:
tslib@2.8.0: {}
- tsup@8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.1))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0):
+ tsup@8.3.5(@microsoft/api-extractor@7.47.11(@types/node@22.8.4))(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.0):
dependencies:
bundle-require: 5.0.0(esbuild@0.24.0)
cac: 6.7.14
@@ -9265,14 +9271,14 @@ snapshots:
picocolors: 1.1.1
postcss-load-config: 6.0.1(jiti@2.3.3)(postcss@8.4.47)(tsx@4.19.2)(yaml@2.6.0)
resolve-from: 5.0.0
- rollup: 4.24.2
+ rollup: 4.24.3
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tinyexec: 0.3.1
tinyglobby: 0.2.10
tree-kill: 1.2.2
optionalDependencies:
- '@microsoft/api-extractor': 7.47.11(@types/node@22.8.1)
+ '@microsoft/api-extractor': 7.47.11(@types/node@22.8.4)
postcss: 8.4.47
typescript: 5.6.3
transitivePeerDependencies:
@@ -9314,7 +9320,7 @@ snapshots:
acorn: 8.14.0
estree-walker: 3.0.3
magic-string: 0.30.12
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- webpack-sources
optional: true
@@ -9335,9 +9341,9 @@ snapshots:
trough: 2.2.0
vfile: 5.3.7
- unimport@3.13.1(rollup@4.24.2)(webpack-sources@3.2.3):
+ unimport@3.13.1(rollup@4.24.3)(webpack-sources@3.2.3):
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
@@ -9349,7 +9355,7 @@ snapshots:
pkg-types: 1.2.1
scule: 1.3.0
strip-literal: 2.1.0
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- webpack-sources
@@ -9398,27 +9404,27 @@ snapshots:
universalify@0.1.2: {}
- unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.2)(webpack-sources@3.2.3):
+ unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(@vueuse/core@11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3)))(rollup@4.24.3)(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
fast-glob: 3.3.2
local-pkg: 0.5.0
magic-string: 0.30.12
minimatch: 9.0.5
- unimport: 3.13.1(rollup@4.24.2)(webpack-sources@3.2.3)
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unimport: 3.13.1(rollup@4.24.3)(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
optionalDependencies:
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3)
'@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
transitivePeerDependencies:
- rollup
- webpack-sources
- unplugin-vue-components@0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3))(rollup@4.24.2)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
+ unplugin-vue-components@0.27.4(@babel/parser@7.26.1)(@nuxt/kit@3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3))(rollup@4.24.3)(vue@3.5.12(typescript@5.6.3))(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
chokidar: 3.6.0
debug: 4.3.7
fast-glob: 3.3.2
@@ -9426,17 +9432,17 @@ snapshots:
magic-string: 0.30.12
minimatch: 9.0.5
mlly: 1.7.2
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ unplugin: 1.15.0(webpack-sources@3.2.3)
vue: 3.5.12(typescript@5.6.3)
optionalDependencies:
'@babel/parser': 7.26.1
- '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.2)(webpack-sources@3.2.3)
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.24.3)(webpack-sources@3.2.3)
transitivePeerDependencies:
- rollup
- supports-color
- webpack-sources
- unplugin@1.14.1(webpack-sources@3.2.3):
+ unplugin@1.15.0(webpack-sources@3.2.3):
dependencies:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
@@ -9510,8 +9516,8 @@ snapshots:
lodash-es: 4.17.21
memoize-one: 6.0.0
natural-compare-lite: 1.4.0
- sass: 1.80.4
- svelte: 5.1.3
+ sass: 1.80.5
+ svelte: 5.1.4
vanilla-picker: 2.12.3
transitivePeerDependencies:
- '@lezer/common'
@@ -9542,12 +9548,12 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@2.1.3(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0):
+ vite-node@2.1.4(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0):
dependencies:
cac: 6.7.14
debug: 4.3.7
pathe: 1.1.2
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -9559,10 +9565,10 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@4.3.0(@types/node@22.8.1)(rollup@4.24.2)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)):
+ vite-plugin-dts@4.3.0(@types/node@22.8.4)(rollup@4.24.3)(typescript@5.6.3)(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)):
dependencies:
- '@microsoft/api-extractor': 7.47.11(@types/node@22.8.1)
- '@rollup/pluginutils': 5.1.3(rollup@4.24.2)
+ '@microsoft/api-extractor': 7.47.11(@types/node@22.8.4)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
'@volar/typescript': 2.4.8
'@vue/language-core': 2.1.6(typescript@5.6.3)
compare-versions: 6.1.1
@@ -9572,41 +9578,41 @@ snapshots:
magic-string: 0.30.12
typescript: 5.6.3
optionalDependencies:
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0):
+ vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
- rollup: 4.24.2
+ rollup: 4.24.3
optionalDependencies:
- '@types/node': 22.8.1
+ '@types/node': 22.8.4
fsevents: 2.3.3
- sass: 1.80.4
+ sass: 1.80.5
terser: 5.33.0
- vitepress@1.4.1(@algolia/client-search@5.5.3)(@types/node@22.8.1)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.4)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3):
+ vitepress@1.4.2(@algolia/client-search@5.5.3)(@types/node@22.8.4)(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(postcss@8.4.47)(sass@1.80.5)(search-insights@2.17.2)(terser@5.33.0)(typescript@5.6.3):
dependencies:
'@docsearch/css': 3.6.2
'@docsearch/js': 3.6.2(@algolia/client-search@5.5.3)(search-insights@2.17.2)
- '@shikijs/core': 1.22.1
- '@shikijs/transformers': 1.22.1
- '@shikijs/types': 1.22.1
+ '@shikijs/core': 1.22.2
+ '@shikijs/transformers': 1.22.2
+ '@shikijs/types': 1.22.2
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
- '@vue/devtools-api': 7.5.4
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))(vue@3.5.12(typescript@5.6.3))
+ '@vue/devtools-api': 7.5.6
'@vue/shared': 3.5.12
'@vueuse/core': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(vue@3.5.12(typescript@5.6.3))
'@vueuse/integrations': 11.1.0(@vue/composition-api@1.7.2(vue@3.5.12(typescript@5.6.3)))(axios@1.7.7)(focus-trap@7.6.0)(vue@3.5.12(typescript@5.6.3))
focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.22.1
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ shiki: 1.22.2
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
vue: 3.5.12(typescript@5.6.3)
optionalDependencies:
postcss: 8.4.47
@@ -9638,17 +9644,18 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.1.3(@types/node@22.8.1)(@vitest/ui@2.1.3)(happy-dom@15.7.4)(sass@1.80.4)(terser@5.33.0):
+ vitest@2.1.4(@types/node@22.8.4)(@vitest/ui@2.1.4)(happy-dom@15.7.4)(sass@1.80.5)(terser@5.33.0):
dependencies:
- '@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0))
- '@vitest/pretty-format': 2.1.3
- '@vitest/runner': 2.1.3
- '@vitest/snapshot': 2.1.3
- '@vitest/spy': 2.1.3
- '@vitest/utils': 2.1.3
+ '@vitest/expect': 2.1.4
+ '@vitest/mocker': 2.1.4(vite@5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0))
+ '@vitest/pretty-format': 2.1.4
+ '@vitest/runner': 2.1.4
+ '@vitest/snapshot': 2.1.4
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
chai: 5.1.2
debug: 4.3.7
+ expect-type: 1.1.0
magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.7.0
@@ -9656,12 +9663,12 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.10(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
- vite-node: 2.1.3(@types/node@22.8.1)(sass@1.80.4)(terser@5.33.0)
+ vite: 5.4.10(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
+ vite-node: 2.1.4(@types/node@22.8.4)(sass@1.80.5)(terser@5.33.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.8.1
- '@vitest/ui': 2.1.3(vitest@2.1.3)
+ '@types/node': 22.8.4
+ '@vitest/ui': 2.1.4(vitest@2.1.4)
happy-dom: 15.7.4
transitivePeerDependencies:
- less
diff --git a/src/constants.ts b/src/constants.ts
new file mode 100644
index 00000000..de523821
--- /dev/null
+++ b/src/constants.ts
@@ -0,0 +1,12 @@
+const BOOL_ATTRS = [
+ 'mainMenuBar',
+ 'navigationBar',
+ 'statusBar',
+ 'askToFormat',
+ 'readOnly',
+ 'escapeControlCharacters',
+ 'escapeUnicodeCharacters',
+ 'flattenColumns',
+] as const
+
+export { BOOL_ATTRS }
diff --git a/src/index.ts b/src/index.ts
index 2423988a..c0bf2a74 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -6,6 +6,7 @@ import { createJSONEditor, Mode } from 'vanilla-jsoneditor'
import { computed, defineComponent, getCurrentInstance, h, isVue3, onMounted, onUnmounted, ref, unref, watch, watchEffect } from 'vue-demi'
import { conclude, resolveConfig } from 'vue-global-config'
import { PascalCasedName as name } from '../package.json'
+import { BOOL_ATTRS } from './constants'
type SFCWithInstall = T & Plugin
type UpdatedContent = JSONContent & Partial
@@ -26,17 +27,6 @@ enum UpdateModelValueEvent {
}
const updateModelValueEvent = isVue3 ? UpdateModelValueEvent.vue3 : UpdateModelValueEvent.vue2
-const boolAttrs = [
- 'mainMenuBar',
- 'navigationBar',
- 'statusBar',
- 'askToFormat',
- 'readOnly',
- 'escapeControlCharacters',
- 'escapeUnicodeCharacters',
- 'flattenColumns',
-] as const
-
const props = {
[modelValueProp]: {},
mode: {
@@ -50,7 +40,7 @@ const props = {
default: undefined,
},
...Object.fromEntries(
- boolAttrs.map(boolAttr => [
+ BOOL_ATTRS.map(boolAttr => [
boolAttr,
{
type: Boolean as PropType,
@@ -65,7 +55,7 @@ const props = {
debounce: { type: PropType }
stringified: { type: PropType, default: undefined }
} & {
- [key in typeof boolAttrs[number]]: {
+ [key in typeof BOOL_ATTRS[number]]: {
type: PropType
default: undefined
}
@@ -160,7 +150,7 @@ const JsonEditorVue = defineComponent({
onMounted(() => {
const initialValue = conclude([props[modelValueProp], propsGlobal[modelValueProp]])
const initialBoolAttrs = Object.fromEntries(
- Array.from(boolAttrs, boolAttr => [boolAttr, conclude([props[boolAttr], propsGlobal[boolAttr]])]).filter(
+ Array.from(BOOL_ATTRS, boolAttr => [boolAttr, conclude([props[boolAttr], propsGlobal[boolAttr]])]).filter(
([, v]) => v !== undefined,
),
)
@@ -237,10 +227,10 @@ const JsonEditorVue = defineComponent({
)
watch(
- () => Array.from(boolAttrs, boolAttr => props[boolAttr]),
+ () => Array.from(BOOL_ATTRS, boolAttr => props[boolAttr]),
(values) => {
jsonEditor.value?.updateProps(
- Object.fromEntries(Array.from(values, (v, i) => [boolAttrs[i], v]).filter(([, v]) => v !== undefined)),
+ Object.fromEntries(Array.from(values, (v, i) => [BOOL_ATTRS[i], v]).filter(([, v]) => v !== undefined)),
)
},
)
From 078aa6e5bb6c607854fcfae366a44b4f02ee60aa Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Mon, 4 Nov 2024 20:10:02 +0800
Subject: [PATCH 09/22] docs: describe how to bump major versions of
dependencies
---
README.md | 4 ++++
docs/README.zh-CN.md | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/README.md b/README.md
index 24e38014..40ef268c 100644
--- a/README.md
+++ b/README.md
@@ -73,6 +73,10 @@ As of v0.11, it's no longer necessary to explicitly install the [vanilla-jsonedi
npm rm json-editor-vue && npm i json-editor-vue
```
+> [!Warning]
+>
+> Not working for major version bump, fot that you can [specify dependency versions](#specify-dependency-versions) (if necessary)
+
#### Specify Dependency Versions
```json5
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 930e2b33..71d88cc2 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -73,6 +73,10 @@
npm rm json-editor-vue && npm i json-editor-vue
```
+> [!Warning]
+>
+> 无法升级大版本号,你可以通过[指定依赖版本](#指定依赖版本)来升级大版本(如有必要)
+
#### 指定依赖版本
```json5
From 982ece2319c72a6f957c76498f0e0986f9ccc0e0 Mon Sep 17 00:00:00 2001
From: Cloyd Lau <31238760+cloydlau@users.noreply.github.com>
Date: Sun, 29 Dec 2024 21:56:02 +0800
Subject: [PATCH 10/22] docs: update cases
---
README.md | 75 ++++++++++++++++++++------------------
docs/README.zh-CN.md | 75 ++++++++++++++++++++------------------
docs/langbot.png | Bin 0 -> 14953 bytes
docs/mrc_tu_cambridge.png | Bin 0 -> 75864 bytes
4 files changed, 80 insertions(+), 70 deletions(-)
create mode 100644 docs/langbot.png
create mode 100644 docs/mrc_tu_cambridge.png
diff --git a/README.md b/README.md
index 40ef268c..f99ba638 100644
--- a/README.md
+++ b/README.md
@@ -25,19 +25,11 @@
-
+
-> [!Important]
->
-> json-editor-vue had surpassed [1 million downloads](https://npm.chart.dev/json-editor-vue):
->
-> While having a extremely dismal number of Stars:
->
-> Please consider [starring ⭐](https://github.com/cloydlau/json-editor-vue) or [donating](#donate) to support our ongoing maintenance if it helps:
-
## Features
@@ -61,6 +53,45 @@
+## Cases
+
+
+
+> [!Important]
+>
+> json-editor-vue had surpassed [1 million downloads](https://npm.chart.dev/json-editor-vue):
+>
+> While having a extremely dismal number of Stars:
+>
+> Please consider [starring ⭐](https://github.com/cloydlau/json-editor-vue) or [donating](#donate) to support our ongoing maintenance if it helps:
+
+
+
## Install
### Dependencies
@@ -1085,32 +1116,6 @@ Detailed changes for each release are documented in the [release notes](https://
-## Cases
-
-
-
-
-
## Donate
You can buy us a coffee via WeChat Pay 💗
diff --git a/docs/README.zh-CN.md b/docs/README.zh-CN.md
index 71d88cc2..ed73dffe 100644
--- a/docs/README.zh-CN.md
+++ b/docs/README.zh-CN.md
@@ -25,19 +25,11 @@
-
+
-> [!Important]
->
-> json-editor-vue 已过[百万下载](https://npm.chart.dev/json-editor-vue):
->
-> 与 Star 数量是天上地下的差别:
->
-> 如有帮助,请考虑[点亮一下 ⭐](https://github.com/cloydlau/json-editor-vue) 或[买一杯咖啡](#捐赠)以支持我们的长期维护工作:
-
## 特性
@@ -61,6 +53,45 @@
+## 案例
+
+
+
+> [!Important]
+>
+> json-editor-vue 已过[百万下载](https://npm.chart.dev/json-editor-vue):
+>
+> 与 Star 数量是天上地下的差别:
+>
+> 如有帮助,请考虑[点亮一下 ⭐](https://github.com/cloydlau/json-editor-vue) 或[买一杯咖啡](#捐赠)以支持我们的长期维护工作:
+
+
+
## 安装
### 依赖
@@ -1083,32 +1114,6 @@ import 'vanilla-jsoneditor/themes/jse-theme-dark.css'
-## 案例
-
-
-
-
-
## 捐赠
可以通过微信支付帮维护团队买一杯咖啡 💗
diff --git a/docs/langbot.png b/docs/langbot.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2caca7b6b950b6fb2b79d71d1bbe20576c2c906
GIT binary patch
literal 14953
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
WM;=@(*}%7>bk-Jj=8dMlDgOfo2LuHG
literal 0
HcmV?d00001
diff --git a/docs/mrc_tu_cambridge.png b/docs/mrc_tu_cambridge.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8a6eda6638831c935bb93e4b779dfb1157be4c6
GIT binary patch
literal 75864
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 8zZ~>6
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