diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 0b64188..b6b2bc0 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -28,7 +28,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v4
with:
- node-version: 23.5.0
+ node-version: 23.8.0
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
@@ -46,7 +46,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
- version: 9.15.4
+ version: 10.6.2
- name: install frontend dependencies
run: pnpm install
diff --git a/.nuxtignore b/.nuxtignore
new file mode 100644
index 0000000..e449b59
--- /dev/null
+++ b/.nuxtignore
@@ -0,0 +1,2 @@
+./*
+!./app/**
\ No newline at end of file
diff --git a/.nvmrc b/.nvmrc
index dd6db9f..801a2a0 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-23.5.0
\ No newline at end of file
+23.8.0
\ No newline at end of file
diff --git a/README.md b/README.md
index 2efea0d..a369786 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,8 @@ Build super fast desktop applications!
Powered by Nuxt 3
+Check more screenshots at [preview](https://github.com/NicolaSpadari/nuxtor/preview.md)
+
## Technologies run-down
diff --git a/app/app.config.ts b/app/app.config.ts
index 7daabe2..7235117 100644
--- a/app/app.config.ts
+++ b/app/app.config.ts
@@ -7,6 +7,24 @@ export default defineAppConfig({
nuxtSite: "https://nuxt.com",
nuxtUiSite: "https://ui3.nuxt.dev"
},
+ pageCategories: {
+ system: {
+ label: "System",
+ icon: "lucide:square-terminal"
+ },
+ storage: {
+ label: "Storage",
+ icon: "lucide:archive"
+ },
+ interface: {
+ label: "Interface",
+ icon: "lucide:app-window-mac"
+ },
+ other: {
+ label: "Other",
+ icon: "lucide:folder"
+ }
+ },
ui: {
colors: {
primary: "green",
@@ -37,11 +55,11 @@ export default defineAppConfig({
slots: {
trigger: "cursor-pointer",
item: "md:py-2"
- },
+ }
},
navigationMenu: {
slots: {
- link: "cursor-pointer",
+ link: "cursor-pointer"
},
variants: {
disabled: {
diff --git a/app/assets/css/main.css b/app/assets/css/main.css
index 17fcc48..2232ce2 100644
--- a/app/assets/css/main.css
+++ b/app/assets/css/main.css
@@ -1,4 +1,4 @@
-@import "tailwindcss";
+@import "tailwindcss" theme(static);
@import "@nuxt/ui";
@theme {
diff --git a/app/components/Site/Navbar.vue b/app/components/Site/Navbar.vue
index c02cbee..6bc3b11 100644
--- a/app/components/Site/Navbar.vue
+++ b/app/components/Site/Navbar.vue
@@ -13,6 +13,7 @@
variant="link"
:ui="{
root: 'hidden md:flex',
+ viewportWrapper: 'max-w-2xl absolute-center-h',
list: 'md:gap-x-2'
}"
/>
diff --git a/app/components/Site/Sidebar.vue b/app/components/Site/Sidebar.vue
index d8e7b26..b303434 100644
--- a/app/components/Site/Sidebar.vue
+++ b/app/components/Site/Sidebar.vue
@@ -3,7 +3,7 @@
- NUXTOR
+ {{ name }}
@@ -20,6 +20,7 @@
diff --git a/app/router.options.ts b/app/router.options.ts
new file mode 100644
index 0000000..7fe4711
--- /dev/null
+++ b/app/router.options.ts
@@ -0,0 +1,22 @@
+import type { RouterOptions } from "@nuxt/schema";
+
+export default {
+ scrollBehavior(to, _from, savedPosition) {
+ return new Promise((resolve, _reject) => {
+ setTimeout(() => {
+ if (savedPosition) {
+ resolve(savedPosition);
+ } else {
+ if (to.hash) {
+ resolve({
+ el: to.hash,
+ top: 0
+ });
+ } else {
+ resolve({ top: 0 });
+ }
+ }
+ }, 100);
+ });
+ }
+} satisfies RouterOptions;
diff --git a/eslint.config.mjs b/eslint.config.mjs
index 178befc..3004088 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -29,6 +29,7 @@ export default eslintConfig(
"vue/comma-dangle": ["warn", "never"],
"antfu/top-level-function": "off",
"antfu/if-newline": "off",
+ "new-cap": "off",
"node/prefer-global/process": ["off"]
}
},
diff --git a/nuxt.config.ts b/nuxt.config.ts
index fbd2051..602fe26 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -46,11 +46,14 @@ export default defineNuxtConfig({
presets: [
{
from: "zod",
- imports: ["z", {
- name: "infer",
- as: "zInfer",
- type: true
- }]
+ imports: [
+ "z",
+ {
+ name: "infer",
+ as: "zInfer",
+ type: true
+ }
+ ]
}
]
},
@@ -72,6 +75,11 @@ export default defineNuxtConfig({
devServer: {
host: "0.0.0.0"
},
+ router: {
+ options: {
+ scrollBehaviorType: "smooth"
+ }
+ },
eslint: {
config: {
standalone: false
@@ -83,5 +91,5 @@ export default defineNuxtConfig({
future: {
compatibilityVersion: 4
},
- compatibilityDate: "2025-02-01"
+ compatibilityDate: "2025-03-01"
});
diff --git a/package.json b/package.json
index 836c2e4..9045123 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,9 @@
{
"name": "nuxtor",
"type": "module",
- "version": "1.2.0",
+ "version": "1.3.0",
"private": true,
- "packageManager": "pnpm@9.15.4",
+ "packageManager": "pnpm@10.6.2",
"description": "Starter template for Nuxt 3 and Tauri 2",
"author": "Nicola Spadari",
"license": "MIT",
@@ -23,27 +23,30 @@
"tauri:build:debug": "tauri build --debug"
},
"dependencies": {
- "@nuxt/ui": "3.0.0-alpha.12",
- "@tauri-apps/api": ">=2.2.0",
+ "@nuxt/ui": "^3.0.0-beta.3",
+ "@tauri-apps/api": "^2.3.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.1",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
- "nuxt": "^3.15.4",
+ "nuxt": "^3.16.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
- "zod": "^3.24.1"
+ "zod": "^3.24.2"
},
"devDependencies": {
- "@antfu/eslint-config": "^4.1.1",
- "@nuxt/eslint": "^1.0.1",
- "@tauri-apps/cli": ">=2.2.7",
- "@vueuse/core": "^12.5.0",
- "@vueuse/nuxt": "^12.5.0",
- "bumpp": "^10.0.2",
- "eslint": "9.17.0",
- "nuxt-svgo": "^4.0.14",
- "typescript": "^5.7.3"
+ "@antfu/eslint-config": "^4.8.1",
+ "@nuxt/eslint": "^1.2.0",
+ "@tauri-apps/cli": "^2.3.1",
+ "@vueuse/core": "^13.0.0",
+ "@vueuse/nuxt": "^13.0.0",
+ "bumpp": "^10.0.3",
+ "eslint": "^9.22.0",
+ "nuxt-svgo": "^4.0.15",
+ "typescript": "^5.8.2"
+ },
+ "resolutions": {
+ "typescript": "npm:tslite@latest"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index dbad794..dc9a7a5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,16 +4,19 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ typescript: npm:tslite@latest
+
importers:
.:
dependencies:
'@nuxt/ui':
- specifier: 3.0.0-alpha.12
- version: 3.0.0-alpha.12(@babel/parser@7.26.8)(change-case@5.4.4)(db0@0.2.3)(embla-carousel@8.5.2)(ioredis@5.5.0)(magicast@0.3.5)(radix-vue@1.9.13(vue@3.5.13(typescript@5.7.3)))(rollup@4.34.6)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
+ specifier: ^3.0.0-beta.3
+ version: 3.0.0-beta.3(@babel/parser@7.26.8)(change-case@5.4.4)(db0@0.3.1)(embla-carousel@8.5.2)(ioredis@5.6.0)(magicast@0.3.5)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
'@tauri-apps/api':
- specifier: '>=2.2.0'
- version: 2.2.0
+ specifier: ^2.3.0
+ version: 2.3.0
'@tauri-apps/plugin-fs':
specifier: ^2.2.0
version: 2.2.0
@@ -30,45 +33,45 @@ importers:
specifier: ^2.2.0
version: 2.2.0
nuxt:
- specifier: ^3.15.4
- version: 3.15.4(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.2.3)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.5.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0)
+ specifier: ^3.16.0
+ version: 3.16.0(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.3.1)(eslint@9.22.0(jiti@2.4.2))(ioredis@5.6.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0)
vue:
specifier: ^3.5.13
- version: 3.5.13(typescript@5.7.3)
+ version: 3.5.13(tslite@5.7.3)
vue-router:
specifier: ^4.5.0
- version: 4.5.0(vue@3.5.13(typescript@5.7.3))
+ version: 4.5.0(vue@3.5.13(tslite@5.7.3))
zod:
- specifier: ^3.24.1
- version: 3.24.1
+ specifier: ^3.24.2
+ version: 3.24.2
devDependencies:
'@antfu/eslint-config':
- specifier: ^4.1.1
- version: 4.1.1(@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
+ specifier: ^4.8.1
+ version: 4.8.1(@typescript-eslint/utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
'@nuxt/eslint':
- specifier: ^1.0.1
- version: 1.0.1(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(magicast@0.3.5)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ specifier: ^1.2.0
+ version: 1.2.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(magicast@0.3.5)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
'@tauri-apps/cli':
- specifier: '>=2.2.7'
- version: 2.2.7
+ specifier: ^2.3.1
+ version: 2.3.1
'@vueuse/core':
- specifier: ^12.5.0
- version: 12.5.0(typescript@5.7.3)
+ specifier: ^13.0.0
+ version: 13.0.0(vue@3.5.13(tslite@5.7.3))
'@vueuse/nuxt':
- specifier: ^12.5.0
- version: 12.5.0(magicast@0.3.5)(nuxt@3.15.4(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.2.3)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.5.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0))(typescript@5.7.3)
+ specifier: ^13.0.0
+ version: 13.0.0(magicast@0.3.5)(nuxt@3.16.0(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.3.1)(eslint@9.22.0(jiti@2.4.2))(ioredis@5.6.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
bumpp:
- specifier: ^10.0.2
- version: 10.0.2(magicast@0.3.5)
+ specifier: ^10.0.3
+ version: 10.0.3(magicast@0.3.5)
eslint:
- specifier: 9.17.0
- version: 9.17.0(jiti@2.4.2)
+ specifier: ^9.22.0
+ version: 9.22.0(jiti@2.4.2)
nuxt-svgo:
- specifier: ^4.0.14
- version: 4.0.14(magicast@0.3.5)(vue@3.5.13(typescript@5.7.3))
+ specifier: ^4.0.15
+ version: 4.0.15(magicast@0.3.5)(vue@3.5.13(tslite@5.7.3))
typescript:
- specifier: ^5.7.3
- version: 5.7.3
+ specifier: npm:tslite@latest
+ version: tslite@5.7.3
packages:
@@ -80,8 +83,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@4.1.1':
- resolution: {integrity: sha512-5UVRu8uC6Q9e+o49ppafvIfOT3geqo74bZNAZ1Rvx10OF8gkUh7gT6b5yEJkUeej3WHRyVw3kTTgK52To1E+VQ==}
+ '@antfu/eslint-config@4.8.1':
+ resolution: {integrity: sha512-RCMiqZzMeIhBj8NgtNUjw/cbrOneuAjTRfykGFNzNQnTV6iTgBIccG1T1fB8zekxPkkUDLiqrocNdPJCBGvRcA==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.19.0
@@ -129,9 +132,6 @@ packages:
'@antfu/install-pkg@1.0.0':
resolution: {integrity: sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==}
- '@antfu/utils@0.7.10':
- resolution: {integrity: sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==}
-
'@antfu/utils@8.1.0':
resolution: {integrity: sha512-XPR7Jfwp0FFl/dFYPX8ZjpmU4/1mIXTjnZ1ba48BLMyKOV62/tiRjdsFcPs2hsYcSud4tzk7w3a3LjX8Fu3huA==}
@@ -222,29 +222,6 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-proposal-decorators@7.25.9':
- resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-decorators@7.25.9':
- resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-meta@7.10.4':
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
@@ -288,13 +265,22 @@ packages:
'@clack/core@0.4.1':
resolution: {integrity: sha512-Pxhij4UXg8KSr7rPek6Zowm+5M22rbd2g1nfojHJkxp5YkFqiZ2+YLEM/XGVIzvGOcM0nqjIFxrpDwWRZYWYjA==}
- '@clack/prompts@0.9.1':
- resolution: {integrity: sha512-JIpyaboYZeWYlyP0H+OoPPxd6nqueG/CmN6ixBiNFsIDHREevjIf0n0Ohh5gr5C8pEDknzgvz+pIJ8dMhzWIeg==}
+ '@clack/prompts@0.10.0':
+ resolution: {integrity: sha512-H3rCl6CwW1NdQt9rE3n373t7o5cthPv7yUoxF2ytZvyvlJv89C5RYMJu83Hed8ODgys5vpBU0GKxIRG83jd8NQ==}
'@cloudflare/kv-asset-handler@0.3.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
+ '@emnapi/core@1.3.1':
+ resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==}
+
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
+ '@emnapi/wasi-threads@1.0.1':
+ resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
+
'@es-joy/jsdoccomment@0.49.0':
resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==}
engines: {node: '>=16'}
@@ -309,150 +295,300 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.1':
+ resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.1':
+ resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.1':
+ resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.1':
+ resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.1':
+ resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.1':
+ resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.1':
+ resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.1':
+ resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.1':
+ resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.1':
+ resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.1':
+ resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.1':
+ resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.1':
+ resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.1':
+ resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.1':
+ resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.1':
+ resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.1':
+ resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.24.2':
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.1':
+ resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.24.2':
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.1':
+ resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.1':
+ resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.1':
+ resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.25.1':
+ resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.1':
+ resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.25.1':
+ resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
+ 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}
@@ -482,8 +618,12 @@ packages:
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/config-inspector@1.0.0':
- resolution: {integrity: sha512-fzl4OHQazPSpsT5LIoE5qQV+8m48pdLN92lPdmIZJpQpD+kZmYC5JfxRilj5vcSaVmB9klJ8s81knNyC3hG7Eg==}
+ '@eslint/config-helpers@0.1.0':
+ resolution: {integrity: sha512-kLrdPDJE1ckPo94kmPPf9Hfd0DU0Jw6oKYrhe+pwSC0iTUInmTa+w6fw8sGgcfkFJGNdWOUeOaDM4quW4a7OkA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/config-inspector@1.0.2':
+ resolution: {integrity: sha512-lPo4ijqq/xA2eVXpfc9jdTN4Y1YTFLBXF1TpgxGqwBFymrpSl5IbxEPcEq7v82xv94EuQsGCqzI/QVMZ16cafg==}
hasBin: true
peerDependencies:
eslint: ^8.50.0 || ^9.0.0
@@ -492,24 +632,20 @@ packages:
resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.9.1':
- resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
+ '@eslint/core@0.12.0':
+ resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/eslintrc@3.2.0':
- resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ '@eslint/eslintrc@3.3.0':
+ resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.17.0':
- resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
+ '@eslint/js@9.22.0':
+ resolution: {integrity: sha512-vLFajx9o8d1/oL2ZkpMYbkLv8nDB6yaIwFNt7nI4+I80U/z03SxmfOMsLbvWr3p7C+Wnoh//aOu2pQW8cS0HCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.20.0':
- resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
- '@eslint/markdown@6.2.2':
- resolution: {integrity: sha512-U0/KgzI9BVUuHDQ9M2fuVgB0QZ1fSyzwm8jKmHr1dlsLHGHYzoeIA9yqLMdTbV3ivZfp6rTdt6zqre3TfNExUQ==}
+ '@eslint/markdown@6.3.0':
+ resolution: {integrity: sha512-8rj7wmuP5hwXZ0HWoad+WL9nftpN373bCCQz9QL6sA+clZiz7et8Pk0yDAKeo//xLlPONKQ6wCpjkOHCLkbYUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
@@ -520,6 +656,10 @@ packages:
resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/plugin-kit@0.2.7':
+ resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
@@ -548,8 +688,8 @@ packages:
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
- '@humanwhocodes/retry@0.4.1':
- resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ '@humanwhocodes/retry@0.4.2':
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
engines: {node: '>=18.18'}
'@iconify/collections@1.0.515':
@@ -618,16 +758,19 @@ packages:
engines: {node: '>=18'}
hasBin: true
- '@netlify/functions@2.8.2':
- resolution: {integrity: sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA==}
- engines: {node: '>=14.0.0'}
+ '@napi-rs/wasm-runtime@0.2.7':
+ resolution: {integrity: sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==}
+
+ '@netlify/functions@3.0.0':
+ resolution: {integrity: sha512-XXf9mNw4+fkxUzukDpJtzc32bl1+YlXZwEhc5ZgMcTbJPLpgRLDs5WWSPJ4eY/Mv1ZFvtxmMwmfgoQYVt68Qog==}
+ engines: {node: '>=18.0.0'}
'@netlify/node-cookies@0.1.0':
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- '@netlify/serverless-functions-api@1.26.1':
- resolution: {integrity: sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw==}
+ '@netlify/serverless-functions-api@1.30.1':
+ resolution: {integrity: sha512-JkbaWFeydQdeDHz1mAy4rw+E3bl9YtbCgkntfTxq+IlNX/aIMv2/b1kZnQZcil4/sPoZGL831Dq6E374qRpU1A==}
engines: {node: '>=18.0.0'}
'@nodelib/fs.scandir@2.1.5':
@@ -654,8 +797,8 @@ packages:
resolution: {integrity: sha512-nIh/M6Kh3ZtOmlY00DaUYB4xeeV6F3/ts1l29iwl3/cfyY/OuCfUx+v08zgx8TKPTifXRcjjqVQ4KB2zOYSbyw==}
engines: {node: '>=18.18.0'}
- '@nuxt/cli@3.21.1':
- resolution: {integrity: sha512-GFFHSEtNtf1s4anMKWFfKSbKiNvEwOKxfP3uls7anZ8GCVYrKthMMxeou4fZBcRhTAFbiLC7DytsKnjfmY2t9w==}
+ '@nuxt/cli@3.22.5':
+ resolution: {integrity: sha512-vNwmNBQb/T062MxUEqrtSOTvxFHOwSWjzUQSnjUxSqfOrGap/ljx9toT/HngTs1zRHSOBvBz8lxrSju+F/806Q==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
@@ -667,18 +810,23 @@ packages:
peerDependencies:
vite: '*'
- '@nuxt/devtools-wizard@1.7.0':
- resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
+ '@nuxt/devtools-kit@2.2.1':
+ resolution: {integrity: sha512-6txRZPOs+YmiuqjaqZy0rls0CjcmNaJPMITZsLS3hTfKAsKOEMslPjgr0jnf4fpFujmkxFZc10txYlG24JZCAA==}
+ peerDependencies:
+ vite: '>=6.0'
+
+ '@nuxt/devtools-wizard@2.2.1':
+ resolution: {integrity: sha512-tJGIwFxwIOsDdpefnSPhiVJEjBC5Kr88EORV6PRYVQRPZThiO8if5UM0qhhkwoDYJ5U21nZpyIzKuCQ6svo9vA==}
hasBin: true
- '@nuxt/devtools@1.7.0':
- resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
+ '@nuxt/devtools@2.2.1':
+ resolution: {integrity: sha512-JkFRYLWFoklBuf+Zv6GwS9HPOFMuN3nomApWCnsNg8H7XqlFNIvB+wetmm6+u+43bNApjqE0ne7Y//o0V6FSaA==}
hasBin: true
peerDependencies:
- vite: '*'
+ vite: '>=6.0'
- '@nuxt/eslint-config@1.0.1':
- resolution: {integrity: sha512-N1sSvtrCWehBHOhB4VBVDxZyDxkXv5b4QN+NQC0suCGR4VekZj8mciaepWFTb66gNrpA/IHYfBId308Na++FwA==}
+ '@nuxt/eslint-config@1.2.0':
+ resolution: {integrity: sha512-ZoxtPjRUy7/m5w9ibjg7y3/v3ycC00xcs+MKr6xttRo0/MNwdtj4qQQyiyOcJQIDXinJMp4qOxQpBJLI0VzIMQ==}
peerDependencies:
eslint: ^9.0.0
eslint-plugin-format: '*'
@@ -686,13 +834,13 @@ packages:
eslint-plugin-format:
optional: true
- '@nuxt/eslint-plugin@1.0.1':
- resolution: {integrity: sha512-pqad64otqRmYTnaUSD1Jc57iWHACdWebD6UUb1hLVl/ML1B4yFxn5xq8kXRjzQsSKX3yMs7dFTYS0ygw04n+SA==}
+ '@nuxt/eslint-plugin@1.2.0':
+ resolution: {integrity: sha512-Rd0ATAW1cvCPHHGQvHoRR5TItZo7s9WygPOq/BYisSCcn83l+PCKo8SlCSXWpa7f4g4rIzLjL0svt8XPBj7dTw==}
peerDependencies:
eslint: ^9.0.0
- '@nuxt/eslint@1.0.1':
- resolution: {integrity: sha512-Bh6M9Tjf4jyIyfobu/ekW6YHMCsWpvZHuZN/6tRVKwXgAL6fiJG6tHm3uYJ5ILcVTdp6tz/j/sW8dgP+ijHLDQ==}
+ '@nuxt/eslint@1.2.0':
+ resolution: {integrity: sha512-5hvlB0ZQMnIaXtgWH9V1xzub2YurFFJ66yMtQcy42sxwaEGUxJ+fYLDjfHbZKxTX0VE/CuNG7A57kEtrM9diPg==}
peerDependencies:
eslint: ^9.0.0
eslint-webpack-plugin: ^4.1.0
@@ -713,23 +861,31 @@ packages:
resolution: {integrity: sha512-dr7I7eZOoRLl4uxdxeL2dQsH0OrbEiVPIyBHnBpA4co24CBnoJoF+JINuP9l3PAM3IhUzc5JIVq3/YY3lEc3Hw==}
engines: {node: '>=18.12.0'}
+ '@nuxt/kit@3.16.0':
+ resolution: {integrity: sha512-yPfhk58BG6wJhELkGOTCOlkMDbZkizk3IaINcyTKm+hBKiK3SheLt7S9HStNL+qZSfH2Cf7A8sYp6M72lOIEtA==}
+ engines: {node: '>=18.12.0'}
+
'@nuxt/schema@3.15.4':
resolution: {integrity: sha512-pAYZb/3ocSC/db1EFd5y+otmgHqUkvfxfhd9EknDB5DygnJuOIQNuGJ7LMJM6S2c0DYgBIHOdEelLxKHOjwbgQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/telemetry@2.6.4':
- resolution: {integrity: sha512-2Lgdn07Suraly5dSfVQ4ttBQBMtmjvCTGKGUHpc1UyH87HT9xCm3KLFO0UcVQ8+LNYCgoOaK7lq9qDJOfBfZ5A==}
- engines: {node: '>=18.20.5'}
+ '@nuxt/schema@3.16.0':
+ resolution: {integrity: sha512-uCpcqWO6C4P5c4vi1/sq5GyajO0EOp+ZWFtPrnKaJ1pXAhA+W1aMVxAjfi2f18QMJHuRXBz1TouFg1RmWA6FuA==}
+ engines: {node: ^14.18.0 || >=16.10.0}
+
+ '@nuxt/telemetry@2.6.5':
+ resolution: {integrity: sha512-lwMp9OHML/m0mjh7P5iz9PxINnk5smGkGebh88Wh8PjvnRooY1TBsbyq7mlSrNibpwD1BkwqhV5IAZOXWHLxMQ==}
+ engines: {node: '>=18.12.0'}
hasBin: true
- '@nuxt/ui@3.0.0-alpha.12':
- resolution: {integrity: sha512-ANm/CUum3bkxEaBN9+Bny+SXGZA9eCAN1+ALV5YDPQ4P2VXZ6V0switxAOzKxDQ9qw1n2dxROyfdwkbg/bKl4A==}
+ '@nuxt/ui@3.0.0-beta.3':
+ resolution: {integrity: sha512-/hzNllMI4mFK+s9saRZbCELWO28l2RovrynwZ7QqZosN05D3e96bmIaZ/l/5sEycGv2ovHK444czRE78dy4ZOg==}
hasBin: true
peerDependencies:
typescript: ^5.6.3
- '@nuxt/vite-builder@3.15.4':
- resolution: {integrity: sha512-yBK6tWT973+ExKC3ciTWymZpjJ+enToOtYz574kXCyGO0PbSnuXdoJKTvrwXw1lK97PajCKxExlmwI/3oLOmMQ==}
+ '@nuxt/vite-builder@3.16.0':
+ resolution: {integrity: sha512-H/mRrDmpWWLIiF1J9jguCKITF0ydFxmgcBcbveQac6vVhaOZunBAv9SsKHZgnH8CDM1v5BnuRNyIQ9y4Y9wW8g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
peerDependencies:
vue: ^3.3.4
@@ -737,6 +893,71 @@ packages:
'@nuxtjs/color-mode@3.5.2':
resolution: {integrity: sha512-cC6RfgZh3guHBMLLjrBB2Uti5eUoGM9KyauOaYS9ETmxNWBMTvpgjvSiSJp1OFljIXPIqVTJ3xtJpSNZiO3ZaA==}
+ '@oxc-parser/binding-darwin-arm64@0.56.5':
+ resolution: {integrity: sha512-rj4WZqQVJQgLnGnDu2ciIOC5SqcBPc4x11RN0NwuedSGzny5mtBdNVLwt0+8iB15lIjrOKg5pjYJ8GQVPca5HA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-parser/binding-darwin-x64@0.56.5':
+ resolution: {integrity: sha512-Rr7aMkqcxGIM6fgkpaj9SJj0u1O1g+AT7mJwmdi5PLSQRPR4CkDKfztEnAj5k+d2blWvh9nPZH8G0OCwxIHk1Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.56.5':
+ resolution: {integrity: sha512-jcFCThrWUt5k1GM43tdmI1m2dEnWUPPHHTWKBJbZBXzXLrJJzkqv5OU87Spf1004rYj9swwpa13kIldFwMzglA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.56.5':
+ resolution: {integrity: sha512-zo/9RDgWvugKxCpHHcAC5EW0AqoEvODJ4Iv4aT1Xonv6kcydbyPSXJBQhhZUvTXTAFIlQKl6INHl+Xki9Qs3fw==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-arm64-musl@0.56.5':
+ resolution: {integrity: sha512-SCIqrL5apVbrtMoqOpKX/Ez+c46WmW0Tyhtu+Xby281biH+wYu70m+fux9ZsGmbHc2ojd4FxUcaUdCZtb5uTOQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-x64-gnu@0.56.5':
+ resolution: {integrity: sha512-I2mpX35NWo83hay4wrnzFLk3VuGK1BBwHaqvEdqsCode8iG8slYJRJPICVbCEWlkR3rotlTQ+608JcRU0VqZ5Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxc-parser/binding-linux-x64-musl@0.56.5':
+ resolution: {integrity: sha512-xfzUHGYOh3PGWZdBuY5r1czvE8EGWPAmhTWHqkw3/uAfUVWN/qrrLjMojiaiWyUgl/9XIFg05m5CJH9dnngh5Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@oxc-parser/binding-wasm32-wasi@0.56.5':
+ resolution: {integrity: sha512-+z3Ofmc1v5kcu8fXgG5vn7T1f52P47ceTTmTXsm5HPY7rq5EMYRUaBnxH6cesXwY1OVVCwYlIZbCiy8Pm1w8zQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.56.5':
+ resolution: {integrity: sha512-pRg8QrbMh8PgnXBreiONoJBR306u+JN19BXQC7oKIaG4Zxt9Mn8XIyuhUv3ytqjLudSiG2ERWQUoCGLs+yfW0A==}
+ engines: {node: '>=14.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-parser/binding-win32-x64-msvc@0.56.5':
+ resolution: {integrity: sha512-VALZNcuyw/6rwsxOACQ2YS6rey2d/ym4cNfXqJrHB/MZduAPj4xvij72gHGu3Ywm31KVGLVWk/mrMRiM9CINcA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@oxc-parser/wasm@0.56.5':
+ resolution: {integrity: sha512-9vtn56ok7PHS0elihFP+Q+alveQuGR0vnF6OeZesxkKWLJr8mCk0kZJx5ZxLjibaPA/sxWTmOyn31UMM9jg9fg==}
+
+ '@oxc-project/types@0.56.5':
+ resolution: {integrity: sha512-skY3kOJwp22W4RkaadH1hZ3hqFHjkRrIIE0uQ4VUg+/Chvbl+2pF+B55IrIk2dgsKXS57YEUsJuN6I6s4rgFjA==}
+
'@parcel/watcher-android-arm64@2.5.1':
resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
engines: {node: '>= 10.0.0'}
@@ -836,6 +1057,17 @@ packages:
'@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@poppinss/colors@4.1.4':
+ resolution: {integrity: sha512-FA+nTU8p6OcSH4tLDY5JilGYr1bVWHpNmcLr7xmMEdbWmKHa+3QZ+DqefrXKmdjO/brHTnQZo20lLSjaO7ydog==}
+ engines: {node: '>=18.16.0'}
+
+ '@poppinss/dumper@0.6.3':
+ resolution: {integrity: sha512-iombbn8ckOixMtuV1p3f8jN6vqhXefNjJttoPaJDMeIk/yIGhkkL3OrHkEjE9SRsgoAx1vBUU2GtgggjvA5hCA==}
+
+ '@poppinss/exception@1.2.1':
+ resolution: {integrity: sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A==}
+ engines: {node: '>=18'}
+
'@redocly/ajv@8.11.2':
resolution: {integrity: sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==}
@@ -855,8 +1087,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@28.0.2':
- resolution: {integrity: sha512-BEFI2EDqzl+vA1rl97IDRZ61AIwGH093d9nz8+dThxJNH8oSoB7MjWvPCX3dkaK1/RCJ/1v/R1XB15FuSs0fQw==}
+ '@rollup/plugin-commonjs@28.0.3':
+ resolution: {integrity: sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -882,8 +1114,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-node-resolve@15.3.1':
- resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
+ '@rollup/plugin-node-resolve@16.0.0':
+ resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0||^4.0.0
@@ -923,199 +1155,308 @@ packages:
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm-eabi@4.35.0':
+ resolution: {integrity: sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==}
+ cpu: [arm]
+ os: [android]
+
'@rollup/rollup-android-arm64@4.34.6':
resolution: {integrity: sha512-E8+2qCIjciYUnCa1AiVF1BkRgqIGW9KzJeesQqVfyRITGQN+dFuoivO0hnro1DjT74wXLRZ7QF8MIbz+luGaJA==}
cpu: [arm64]
os: [android]
+ '@rollup/rollup-android-arm64@4.35.0':
+ resolution: {integrity: sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==}
+ cpu: [arm64]
+ os: [android]
+
'@rollup/rollup-darwin-arm64@4.34.6':
resolution: {integrity: sha512-z9Ib+OzqN3DZEjX7PDQMHEhtF+t6Mi2z/ueChQPLS/qUMKY7Ybn5A2ggFoKRNRh1q1T03YTQfBTQCJZiepESAg==}
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-arm64@4.35.0':
+ resolution: {integrity: sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rollup/rollup-darwin-x64@4.34.6':
resolution: {integrity: sha512-PShKVY4u0FDAR7jskyFIYVyHEPCPnIQY8s5OcXkdU8mz3Y7eXDJPdyM/ZWjkYdR2m0izD9HHWA8sGcXn+Qrsyg==}
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.35.0':
+ resolution: {integrity: sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==}
+ cpu: [x64]
+ os: [darwin]
+
'@rollup/rollup-freebsd-arm64@4.34.6':
resolution: {integrity: sha512-YSwyOqlDAdKqs0iKuqvRHLN4SrD2TiswfoLfvYXseKbL47ht1grQpq46MSiQAx6rQEN8o8URtpXARCpqabqxGQ==}
cpu: [arm64]
os: [freebsd]
+ '@rollup/rollup-freebsd-arm64@4.35.0':
+ resolution: {integrity: sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==}
+ cpu: [arm64]
+ os: [freebsd]
+
'@rollup/rollup-freebsd-x64@4.34.6':
resolution: {integrity: sha512-HEP4CgPAY1RxXwwL5sPFv6BBM3tVeLnshF03HMhJYCNc6kvSqBgTMmsEjb72RkZBAWIqiPUyF1JpEBv5XT9wKQ==}
cpu: [x64]
os: [freebsd]
+ '@rollup/rollup-freebsd-x64@4.35.0':
+ resolution: {integrity: sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==}
+ cpu: [x64]
+ os: [freebsd]
+
'@rollup/rollup-linux-arm-gnueabihf@4.34.6':
resolution: {integrity: sha512-88fSzjC5xeH9S2Vg3rPgXJULkHcLYMkh8faix8DX4h4TIAL65ekwuQMA/g2CXq8W+NJC43V6fUpYZNjaX3+IIg==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
+ resolution: {integrity: sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-musleabihf@4.34.6':
resolution: {integrity: sha512-wM4ztnutBqYFyvNeR7Av+reWI/enK9tDOTKNF+6Kk2Q96k9bwhDDOlnCUNRPvromlVXo04riSliMBs/Z7RteEg==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
+ resolution: {integrity: sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-gnu@4.34.6':
resolution: {integrity: sha512-9RyprECbRa9zEjXLtvvshhw4CMrRa3K+0wcp3KME0zmBe1ILmvcVHnypZ/aIDXpRyfhSYSuN4EPdCCj5Du8FIA==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
+ resolution: {integrity: sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-musl@4.34.6':
resolution: {integrity: sha512-qTmklhCTyaJSB05S+iSovfo++EwnIEZxHkzv5dep4qoszUMX5Ca4WM4zAVUMbfdviLgCSQOu5oU8YoGk1s6M9Q==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
+ resolution: {integrity: sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-loongarch64-gnu@4.34.6':
resolution: {integrity: sha512-4Qmkaps9yqmpjY5pvpkfOerYgKNUGzQpFxV6rnS7c/JfYbDSU0y6WpbbredB5cCpLFGJEqYX40WUmxMkwhWCjw==}
cpu: [loong64]
os: [linux]
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
+ resolution: {integrity: sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==}
+ cpu: [loong64]
+ os: [linux]
+
'@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
resolution: {integrity: sha512-Zsrtux3PuaxuBTX/zHdLaFmcofWGzaWW1scwLU3ZbW/X+hSsFbz9wDIp6XvnT7pzYRl9MezWqEqKy7ssmDEnuQ==}
cpu: [ppc64]
os: [linux]
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
+ resolution: {integrity: sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==}
+ cpu: [ppc64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-gnu@4.34.6':
resolution: {integrity: sha512-aK+Zp+CRM55iPrlyKiU3/zyhgzWBxLVrw2mwiQSYJRobCURb781+XstzvA8Gkjg/hbdQFuDw44aUOxVQFycrAg==}
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
+ resolution: {integrity: sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-s390x-gnu@4.34.6':
resolution: {integrity: sha512-WoKLVrY9ogmaYPXwTH326+ErlCIgMmsoRSx6bO+l68YgJnlOXhygDYSZe/qbUJCSiCiZAQ+tKm88NcWuUXqOzw==}
cpu: [s390x]
os: [linux]
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
+ resolution: {integrity: sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.34.6':
resolution: {integrity: sha512-Sht4aFvmA4ToHd2vFzwMFaQCiYm2lDFho5rPcvPBT5pCdC+GwHG6CMch4GQfmWTQ1SwRKS0dhDYb54khSrjDWw==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
+ resolution: {integrity: sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-musl@4.34.6':
resolution: {integrity: sha512-zmmpOQh8vXc2QITsnCiODCDGXFC8LMi64+/oPpPx5qz3pqv0s6x46ps4xoycfUiVZps5PFn1gksZzo4RGTKT+A==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.35.0':
+ resolution: {integrity: sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-win32-arm64-msvc@4.34.6':
resolution: {integrity: sha512-3/q1qUsO/tLqGBaD4uXsB6coVGB3usxw3qyeVb59aArCgedSF66MPdgRStUd7vbZOsko/CgVaY5fo2vkvPLWiA==}
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
+ resolution: {integrity: sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==}
+ cpu: [arm64]
+ os: [win32]
+
'@rollup/rollup-win32-ia32-msvc@4.34.6':
resolution: {integrity: sha512-oLHxuyywc6efdKVTxvc0135zPrRdtYVjtVD5GUm55I3ODxhU/PwkQFD97z16Xzxa1Fz0AEe4W/2hzRtd+IfpOA==}
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
+ resolution: {integrity: sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==}
+ cpu: [ia32]
+ os: [win32]
+
'@rollup/rollup-win32-x64-msvc@4.34.6':
resolution: {integrity: sha512-0PVwmgzZ8+TZ9oGBmdZoQVXflbvuwzN/HRclujpl4N/q3i+y0lqLw8n1bXA8ru3sApDjlmONaNAuYr38y1Kr9w==}
cpu: [x64]
os: [win32]
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
+ resolution: {integrity: sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==}
+ cpu: [x64]
+ os: [win32]
+
+ '@sec-ant/readable-stream@0.4.1':
+ resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
+
+ '@sindresorhus/is@7.0.1':
+ resolution: {integrity: sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==}
+ engines: {node: '>=18'}
+
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- '@stylistic/eslint-plugin@3.1.0':
- resolution: {integrity: sha512-pA6VOrOqk0+S8toJYhQGv2MWpQQR0QpeUo9AhNkC49Y26nxBQ/nH1rta9bUU1rPw2fJ1zZEMV5oCX5AazT7J2g==}
+ '@sindresorhus/merge-streams@4.0.0':
+ resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
+ engines: {node: '>=18'}
+
+ '@speed-highlight/core@1.2.7':
+ resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
+
+ '@stylistic/eslint-plugin@4.2.0':
+ resolution: {integrity: sha512-8hXezgz7jexGHdo5WN6JBEIPHCSFyyU4vgbxevu4YLVS5vl+sxqAAGyXSzfNDyR6xMNSH5H1x67nsXcYMOHtZA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: '>=8.40.0'
+ eslint: '>=9.0.0'
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
- '@tailwindcss/node@4.0.4':
- resolution: {integrity: sha512-VLFq80IyoV1hsHPcCm1mmlyPyUT6NlovQLoO2y7PGm84mW94ZrNJ7ax5H6K4M7Aj/fdMfem5IX7Ka+LXWZpDGg==}
+ '@tailwindcss/node@4.0.12':
+ resolution: {integrity: sha512-a6J11K1Ztdln9OrGfoM75/hChYPcHYGNYimqciMrvKXRmmPaS8XZTHhdvb5a3glz4Kd4ZxE1MnuFE2c0fGGmtg==}
- '@tailwindcss/oxide-android-arm64@4.0.4':
- resolution: {integrity: sha512-hiGUA8d15ynH/LdurQNObnuTjri7i4ApAzhesusNxoz4br7vhZ6QO5CFgniYAYNZvf8Q8wCTBg0nj61RalBeVQ==}
+ '@tailwindcss/oxide-android-arm64@4.0.12':
+ resolution: {integrity: sha512-dAXCaemu3mHLXcA5GwGlQynX8n7tTdvn5i1zAxRvZ5iC9fWLl5bGnjZnzrQqT7ttxCvRwdVf3IHUnMVdDBO/kQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.0.4':
- resolution: {integrity: sha512-vTca+ysNl8BYmYJTni9pLC+L3S4bvrj0ai1eUV3yYXYa5Cpugr5Fni6ylV0gcTZOyETm2RCCJ/0azU6MgqE6HA==}
+ '@tailwindcss/oxide-darwin-arm64@4.0.12':
+ resolution: {integrity: sha512-vPNI+TpJQ7sizselDXIJdYkx9Cu6JBdtmRWujw9pVIxW8uz3O2PjgGGzL/7A0sXI8XDjSyRChrUnEW9rQygmJQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.0.4':
- resolution: {integrity: sha512-rxPWb5AQJ/aAM/5UDCjaQaMYIcrZHe/Dr9xZu9+P9nJf3WAweNsGi+e+SW9EYGRiF3hkBtP2dvxVNAkTiEbNQQ==}
+ '@tailwindcss/oxide-darwin-x64@4.0.12':
+ resolution: {integrity: sha512-RL/9jM41Fdq4Efr35C5wgLx98BirnrfwuD+zgMFK6Ir68HeOSqBhW9jsEeC7Y/JcGyPd3MEoJVIU4fAb7YLg7A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.0.4':
- resolution: {integrity: sha512-UOnRHzlS5V5cxaMgBo6rk1E92tTDUtO/falc9vOpNiRdWhNcofYNN9zvZP63Wuo5FC6/XCyAnJo6OXUm18TwrQ==}
+ '@tailwindcss/oxide-freebsd-x64@4.0.12':
+ resolution: {integrity: sha512-7WzWiax+LguJcMEimY0Q4sBLlFXu1tYxVka3+G2M9KmU/3m84J3jAIV4KZWnockbHsbb2XgrEjtlJKVwHQCoRA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.4':
- resolution: {integrity: sha512-0Ry9Qfnf22rmJwHxsCFmHQIl5RZw+yOUUGHaqNT42REL8r308cU/bi4UqdrjqVRfAlu51gOGxTRf2NRueczuIA==}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.12':
+ resolution: {integrity: sha512-X9LRC7jjE1QlfIaBbXjY0PGeQP87lz5mEfLSVs2J1yRc9PSg1tEPS9NBqY4BU9v5toZgJgzKeaNltORyTs22TQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.4':
- resolution: {integrity: sha512-5a7WD30nVdI7Rl1ohZ0Ojj9t5yRnZkJBizvh3uIW52h9UeNpon8TfoknF6rU/TwD32dQ0Cjo5CcCHtQ2wW9PCA==}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.12':
+ resolution: {integrity: sha512-i24IFNq2402zfDdoWKypXz0ZNS2G4NKaA82tgBlE2OhHIE+4mg2JDb5wVfyP6R+MCm5grgXvurcIcKWvo44QiQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-musl@4.0.4':
- resolution: {integrity: sha512-m6s5jKSqos07l6NtHFd49Ljcaw4jIWHE7jq6eNPNz9SCzQqRzs4esP1t7jH8UljQ7JffKOl7yZPwK5Nf+irliw==}
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.12':
+ resolution: {integrity: sha512-LmOdshJBfAGIBG0DdBWhI0n5LTMurnGGJCHcsm9F//ISfsHtCnnYIKgYQui5oOz1SUCkqsMGfkAzWyNKZqbGNw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-gnu@4.0.4':
- resolution: {integrity: sha512-K5dBjGHzby9eyUBwy9YHFhKY+5i8fzIBZM1NBWp6L2xpM7OzW9WJDgNcgESkZami9g+EozkQLt3ZmMZHAieXkw==}
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.12':
+ resolution: {integrity: sha512-OSK667qZRH30ep8RiHbZDQfqkXjnzKxdn0oRwWzgCO8CoTxV+MvIkd0BWdQbYtYuM1wrakARV/Hwp0eA/qzdbw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-musl@4.0.4':
- resolution: {integrity: sha512-J8sskt+fA5ooq+kxy0Tf4E2TRWZD9Y8j3K+pnBwp9zdilLmSd8OHrB3e0/rO78KveZ6BE9ae75cKOWrT6wONmw==}
+ '@tailwindcss/oxide-linux-x64-musl@4.0.12':
+ resolution: {integrity: sha512-uylhWq6OWQ8krV8Jk+v0H/3AZKJW6xYMgNMyNnUbbYXWi7hIVdxRKNUB5UvrlC3RxtgsK5EAV2i1CWTRsNcAnA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.4':
- resolution: {integrity: sha512-flFaaMc77NQbz0Fq73wBs9EH2lX1Oc2Z/3JuxoewpnGHpAGJ/j05tvBNMyTaGrKcHvf/+dk+mCDxb6+PmzGgnQ==}
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.12':
+ resolution: {integrity: sha512-XDLnhMoXZEEOir1LK43/gHHwK84V1GlV8+pAncUAIN2wloeD+nNciI9WRIY/BeFTqES22DhTIGoilSO39xDb2g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.0.4':
- resolution: {integrity: sha512-WzMA0aL/24/JyNrv2Yhr/Og24QGRPWJMjRyCJ4HRoGMs6/8svOQKrnnZ/9LUFwn56irAndFBjWWnlaqykH+g5Q==}
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.12':
+ resolution: {integrity: sha512-I/BbjCLpKDQucvtn6rFuYLst1nfFwSMYyPzkx/095RE+tuzk5+fwXuzQh7T3fIBTcbn82qH/sFka7yPGA50tLw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.0.4':
- resolution: {integrity: sha512-vPpu30KFLiGyPOoElkYt8WRvzGKVrrOz49KpfiGGtnQGmyUpL8VCbJzzEEcpKT5BpaaQidhFok+OXscf6hHjOQ==}
+ '@tailwindcss/oxide@4.0.12':
+ resolution: {integrity: sha512-DWb+myvJB9xJwelwT9GHaMc1qJj6MDXRDR0CS+T8IdkejAtu8ctJAgV4r1drQJLPeS7mNwq2UHW2GWrudTf63A==}
engines: {node: '>= 10'}
- '@tailwindcss/postcss@4.0.0':
- resolution: {integrity: sha512-lI2bPk4TvwavHdehjr5WiC6HnZ59hacM6ySEo4RM/H7tsjWd8JpqiNW9ThH7rO/yKtrn4mGBoXshpvn8clXjPg==}
+ '@tailwindcss/postcss@4.0.12':
+ resolution: {integrity: sha512-r59Sdr8djCW4dL3kvc4aWU8PHdUAVM3O3te2nbYzXsWwKLlHPCuUoZAc9FafXb/YyNDZOMI7sTbKTKFmwOrMjw==}
- '@tailwindcss/vite@4.0.0':
- resolution: {integrity: sha512-4uukMiU9gHui8KMPMdWic5SP1O/tmQ1NFSRNrQWmcop5evAVl/LZ6/LuWL3quEiecp2RBcRWwqJrG+mFXlRlew==}
+ '@tailwindcss/vite@4.0.12':
+ resolution: {integrity: sha512-JM3gp601UJiryIZ9R2bSqalzcOy15RCybQ1Q+BJqDEwVyo4LkWKeqQAcrpHapWXY31OJFTuOUVBFDWMhzHm2Bg==}
peerDependencies:
vite: ^5.2.0 || ^6
- '@tanstack/table-core@8.20.5':
- resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==}
+ '@tanstack/table-core@8.21.2':
+ resolution: {integrity: sha512-uvXk/U4cBiFMxt+p9/G7yUWI/UbHYbyghLCjlpWZ3mLeIZiUBSKcUnw9UnKkdRz7Z/N4UBuFLWQdJCjUe7HjvA==}
engines: {node: '>=12'}
'@tanstack/virtual-core@3.13.0':
resolution: {integrity: sha512-NBKJP3OIdmZY3COJdWkSonr50FMVIi+aj5ZJ7hI/DTpEKg2RMfo/KvP8A3B/zOSpMgIe52B5E2yn7rryULzA6g==}
- '@tanstack/vue-table@8.20.5':
- resolution: {integrity: sha512-2xixT3BEgSDw+jOSqPt6ylO/eutDI107t2WdFMVYIZZ45UmTHLySqNriNs0+dMaKR56K5z3t+97P6VuVnI2L+Q==}
+ '@tanstack/vue-table@8.21.2':
+ resolution: {integrity: sha512-KBgOWxha/x4m1EdhVWxOpqHb661UjqAxzPcmXR3QiA7aShZ547x19Gw0UJX9we+m+tVcPuLRZ61JsYW47QZFfQ==}
engines: {node: '>=12'}
peerDependencies:
vue: '>=3.2'
@@ -1125,71 +1466,71 @@ packages:
peerDependencies:
vue: ^2.7.0 || ^3.0.0
- '@tauri-apps/api@2.2.0':
- resolution: {integrity: sha512-R8epOeZl1eJEl603aUMIGb4RXlhPjpgxbGVEaqY+0G5JG9vzV/clNlzTeqc+NLYXVqXcn8mb4c5b9pJIUDEyAg==}
+ '@tauri-apps/api@2.3.0':
+ resolution: {integrity: sha512-33Z+0lX2wgZbx1SPFfqvzI6su63hCBkbzv+5NexeYjIx7WA9htdOKoRR7Dh3dJyltqS5/J8vQFyybiRoaL0hlA==}
- '@tauri-apps/cli-darwin-arm64@2.2.7':
- resolution: {integrity: sha512-54kcpxZ3X1Rq+pPTzk3iIcjEVY4yv493uRx/80rLoAA95vAC0c//31Whz75UVddDjJfZvXlXZ3uSZ+bnCOnt0A==}
+ '@tauri-apps/cli-darwin-arm64@2.3.1':
+ resolution: {integrity: sha512-TOhSdsXYt+f+asRU+Dl+Wufglj/7+CX9h8RO4hl5k7D6lR4L8yTtdhpS7btaclOMmjYC4piNfJE70GoxhOoYWw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tauri-apps/cli-darwin-x64@2.2.7':
- resolution: {integrity: sha512-Vgu2XtBWemLnarB+6LqQeLanDlRj7CeFN//H8bVVdjbNzxcSxsvbLYMBP8+3boa7eBnjDrqMImRySSgL6IrwTw==}
+ '@tauri-apps/cli-darwin-x64@2.3.1':
+ resolution: {integrity: sha512-LDwGg3AuBQ3aCeMAFaFwt0MSGOVFoXuXEe0z4QxQ7jZE5tdAOhKABaq4i569V5lShCgQZ6nLD/tmA5+GipvHnA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tauri-apps/cli-linux-arm-gnueabihf@2.2.7':
- resolution: {integrity: sha512-+Clha2iQAiK9zoY/KKW0KLHkR0k36O78YLx5Sl98tWkwI3OBZFg5H5WT1plH/4sbZIS2aLFN6dw58/JlY9Bu/g==}
+ '@tauri-apps/cli-linux-arm-gnueabihf@2.3.1':
+ resolution: {integrity: sha512-hu3HpbbtJBvHXw5i54QHwLxOUoXWqhf7CL2YYSPOrWEEQo10NKddulP61L5gfr5z+bSSaitfLwqgTidgnaNJCA==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tauri-apps/cli-linux-arm64-gnu@2.2.7':
- resolution: {integrity: sha512-Z/Lp4SQe6BUEOays9BQAEum2pvZF4w9igyXijP+WbkOejZx4cDvarFJ5qXrqSLmBh7vxrdZcLwoLk9U//+yQrg==}
+ '@tauri-apps/cli-linux-arm64-gnu@2.3.1':
+ resolution: {integrity: sha512-mEGgwkiGSKYXWHhGodo7zU9PCd2I/d6KkR+Wp1nzK+DxsCrEK6yJ5XxYLSQSDcKkM4dCxpVEPUiVMbDhmn08jg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tauri-apps/cli-linux-arm64-musl@2.2.7':
- resolution: {integrity: sha512-+8HZ+txff/Y3YjAh80XcLXcX8kpGXVdr1P8AfjLHxHdS6QD4Md+acSxGTTNbplmHuBaSHJvuTvZf9tU1eDCTDg==}
+ '@tauri-apps/cli-linux-arm64-musl@2.3.1':
+ resolution: {integrity: sha512-tqQkafikGfnc7ISnGjSYkbpnzJKEyO8XSa0YOXTAL3J8R5Pss5ZIZY7G8kq1mwQSR/dPVR1ZLTVXgZGuysjP8w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tauri-apps/cli-linux-x64-gnu@2.2.7':
- resolution: {integrity: sha512-ahlSnuCnUntblp9dG7/w5ZWZOdzRFi3zl0oScgt7GF4KNAOEa7duADsxPA4/FT2hLRa0SvpqtD4IYFvCxoVv3Q==}
+ '@tauri-apps/cli-linux-x64-gnu@2.3.1':
+ resolution: {integrity: sha512-I3puDJ2wGEauXlXbzIHn2etz78TaWs1cpN6zre02maHr6ZR7nf7euTCOGPhhfoMG0opA5mT/eLuYpVw648/VAA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tauri-apps/cli-linux-x64-musl@2.2.7':
- resolution: {integrity: sha512-+qKAWnJRSX+pjjRbKAQgTdFY8ecdcu8UdJ69i7wn3ZcRn2nMMzOO2LOMOTQV42B7/Q64D1pIpmZj9yblTMvadA==}
+ '@tauri-apps/cli-linux-x64-musl@2.3.1':
+ resolution: {integrity: sha512-rbWiCOBuQN7tPySkUyBs914uUikE3mEUOqV/IFospvKESw4UC3G1DL5+ybfXH7Orb8/in3JpJuVzYQjo+OSbBA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tauri-apps/cli-win32-arm64-msvc@2.2.7':
- resolution: {integrity: sha512-aa86nRnrwT04u9D9fhf5JVssuAZlUCCc8AjqQjqODQjMd4BMA2+d4K9qBMpEG/1kVh95vZaNsLogjEaqSTTw4A==}
+ '@tauri-apps/cli-win32-arm64-msvc@2.3.1':
+ resolution: {integrity: sha512-PdTmUzSeTHjJuBpCV7L+V29fPhPtToU+NZU46slHKSA1aT38MiFDXBZ/6P5Zudrt9QPMfIubqnJKbK8Ivvv7Ww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tauri-apps/cli-win32-ia32-msvc@2.2.7':
- resolution: {integrity: sha512-EiJ5/25tLSQOSGvv+t6o3ZBfOTKB5S3vb+hHQuKbfmKdRF0XQu2YPdIi1CQw1DU97ZAE0Dq4frvnyYEKWgMzVQ==}
+ '@tauri-apps/cli-win32-ia32-msvc@2.3.1':
+ resolution: {integrity: sha512-K/Xa97kspWT4UWj3t26lL2D3QsopTAxS7kWi5kObdqtAGn3qD52qBi24FH38TdvHYz4QlnLIb30TukviCgh4gw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@tauri-apps/cli-win32-x64-msvc@2.2.7':
- resolution: {integrity: sha512-ZB8Kw90j8Ld+9tCWyD2fWCYfIrzbQohJ4DJSidNwbnehlZzP7wAz6Z3xjsvUdKtQ3ibtfoeTqVInzCCEpI+pWg==}
+ '@tauri-apps/cli-win32-x64-msvc@2.3.1':
+ resolution: {integrity: sha512-RgwzXbP8gAno3kQEsybMtgLp6D1Z1Nec2cftryYbPTJmoMJs6e4qgtxuTSbUz5SKnHe8rGgMiFSvEGoHvbG72Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tauri-apps/cli@2.2.7':
- resolution: {integrity: sha512-ZnsS2B4BplwXP37celanNANiIy8TCYhvg5RT09n72uR/o+navFZtGpFSqljV8fy1Y4ixIPds8FrGSXJCN2BerA==}
+ '@tauri-apps/cli@2.3.1':
+ resolution: {integrity: sha512-xewcw/ZsCqgilTy2h7+pp2Baxoy7zLR2wXOV7SZLzkb6SshHVbm1BFAjn8iFATURRW85KLzl6wSGJ2dQHjVHqw==}
engines: {node: '>= 10'}
hasBin: true
@@ -1212,6 +1553,9 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
+ '@tybys/wasm-util@0.9.0':
+ resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
+
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
@@ -1257,42 +1601,59 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@8.23.0':
- resolution: {integrity: sha512-vBz65tJgRrA1Q5gWlRfvoH+w943dq9K1p1yDBY2pc+a1nbBLZp7fB9+Hk8DaALUbzjqlMfgaqlVPT1REJdkt/w==}
+ '@types/web-bluetooth@0.0.21':
+ resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
+
+ '@typescript-eslint/eslint-plugin@8.26.0':
+ resolution: {integrity: sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.23.0':
- resolution: {integrity: sha512-h2lUByouOXFAlMec2mILeELUbME5SZRN/7R9Cw2RD2lRQQY08MWMM+PmVVKKJNK1aIwqTo9t/0CvOxwPbRIE2Q==}
+ '@typescript-eslint/parser@8.26.0':
+ resolution: {integrity: sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.9.0'
'@typescript-eslint/scope-manager@8.23.0':
resolution: {integrity: sha512-OGqo7+dXHqI7Hfm+WqkZjKjsiRtFUQHPdGMXzk5mYXhJUedO7e/Y7i8AK3MyLMgZR93TX4bIzYrfyVjLC+0VSw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.23.0':
- resolution: {integrity: sha512-iIuLdYpQWZKbiH+RkCGc6iu+VwscP5rCtQ1lyQ7TYuKLrcZoeJVpcLiG8DliXVkUxirW/PWlmS+d6yD51L9jvA==}
+ '@typescript-eslint/scope-manager@8.26.0':
+ resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/type-utils@8.26.0':
+ resolution: {integrity: sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.9.0'
'@typescript-eslint/types@8.23.0':
resolution: {integrity: sha512-1sK4ILJbCmZOTt9k4vkoulT6/y5CHJ1qUYxqpF1K/DBAd8+ZUL4LlSCxOssuH5m4rUaaN0uS0HlVPvd45zjduQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/types@8.26.0':
+ resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@8.23.0':
resolution: {integrity: sha512-LcqzfipsB8RTvH8FX24W4UUFk1bl+0yTOf9ZA08XngFwMg4Kj8A+9hwz8Cr/ZS4KwHrmo9PJiLZkOt49vPnuvQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/typescript-estree@8.26.0':
+ resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.9.0'
+
'@typescript-eslint/utils@8.23.0':
resolution: {integrity: sha512-uB/+PSo6Exu02b5ZEiVtmY6RVYO7YU5xqgzTIVZwTHvvK3HsL8tZZHFaTLFtRG3CsV4A5mhOv+NZx5BlhXPyIA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1300,30 +1661,43 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/utils@8.26.0':
+ resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
+
'@typescript-eslint/visitor-keys@8.23.0':
resolution: {integrity: sha512-oWWhcWDLwDfu++BGTZcmXWqpwtkwb5o7fxUIGksMQQDSdPW9prsSnfIOZMlsj4vBOSrcnjIUZMiIjODgGosFhQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@unhead/dom@1.11.18':
- resolution: {integrity: sha512-zQuJUw/et9zYEV0SZWTDX23IgurwMaXycAuxt4L6OgNL0T4TWP3a0J/Vm3Q02hmdNo/cPKeVBrwBdnFUXjGU4w==}
+ '@typescript-eslint/visitor-keys@8.26.0':
+ resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@unhead/schema@1.11.18':
- resolution: {integrity: sha512-a3TA/OJCRdfbFhcA3Hq24k1ZU1o9szicESrw8DZcGyQFacHnh84mVgnyqSkMnwgCmfN4kvjSiTBlLEHS6+wATw==}
+ '@unhead/dom@1.11.20':
+ resolution: {integrity: sha512-jgfGYdOH+xHJF/j8gudjsYu3oIjFyXhCWcgKaw3vQnT616gSqyqnGQGOItL+BQtQZACKNISwIfx5PuOtztMKLA==}
- '@unhead/shared@1.11.18':
- resolution: {integrity: sha512-OsupRQRxJqqnuKiL1Guqipjbl7MndD5DofvmGa3PFGu2qNPmOmH2mxGFjRBBgq2XxY1KalIHl/2I9HV6gbK8cw==}
+ '@unhead/schema@1.11.20':
+ resolution: {integrity: sha512-0zWykKAaJdm+/Y7yi/Yds20PrUK7XabLe9c3IRcjnwYmSWY6z0Cr19VIs3ozCj8P+GhR+/TI2mwtGlueCEYouA==}
- '@unhead/ssr@1.11.18':
- resolution: {integrity: sha512-uaHPz0RRAb18yKeCmHyHk5QKWRk/uHpOrqSbhRXTOhbrd3Ur3gGTVaAoyUoRYKGPU5B5/pyHh3TfLw0LkfrH1A==}
+ '@unhead/shared@1.11.20':
+ resolution: {integrity: sha512-1MOrBkGgkUXS+sOKz/DBh4U20DNoITlJwpmvSInxEUNhghSNb56S0RnaHRq0iHkhrO/cDgz2zvfdlRpoPLGI3w==}
- '@unhead/vue@1.11.18':
- resolution: {integrity: sha512-Jfi7t/XNBnlcauP9UTH3VHBcS69G70ikFd2e5zdgULLDRWpOlLs1sSTH1V2juNptc93DOk9RQfC5jLWbLcivFw==}
+ '@unhead/vue@1.11.20':
+ resolution: {integrity: sha512-sqQaLbwqY9TvLEGeq8Fd7+F2TIuV3nZ5ihVISHjWpAM3y7DwNWRU7NmT9+yYT+2/jw1Vjwdkv5/HvDnvCLrgmg==}
peerDependencies:
vue: '>=2.7 || >=3'
- '@vercel/nft@0.27.10':
- resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==}
- engines: {node: '>=16'}
+ '@unhead/vue@2.0.0-rc.9':
+ resolution: {integrity: sha512-bXQAMVqU6TFtThcvs4II1C/WOHXEcihSWNPahx1IlzAD2J/uZAb5QEIds4sM7yyLFwBPbQgqr175m67QfDRS4g==}
+ peerDependencies:
+ vue: '>=3.5.13'
+
+ '@vercel/nft@0.29.2':
+ resolution: {integrity: sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==}
+ engines: {node: '>=18'}
hasBin: true
'@vitejs/plugin-vue-jsx@4.1.1':
@@ -1340,10 +1714,10 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/eslint-plugin@1.1.26':
- resolution: {integrity: sha512-qZoaWeThjk8MAJHmAFIrLDa3oBCixSAo90+DkvZXDdDnjBYjo+ILPsfNR6uSKDub+XjpgFvz0jeezuYhWs67aA==}
+ '@vitest/eslint-plugin@1.1.36':
+ resolution: {integrity: sha512-IjBV/fcL9NJRxGw221ieaDsqKqj8qUo7rvSupDxMjTXyhsCusHC6M+jFUNqBp4PCkYFcf5bjrKxeZoCEWoPxig==}
peerDependencies:
- '@typescript-eslint/utils': '>= 8.0'
+ '@typescript-eslint/utils': ^8.24.0
eslint: '>= 8.57.0'
typescript: '>= 5.0.0'
vitest: '*'
@@ -1393,16 +1767,16 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-core@7.6.8':
- resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
+ '@vue/devtools-core@7.7.2':
+ resolution: {integrity: sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.6.8':
- resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
+ '@vue/devtools-kit@7.7.2':
+ resolution: {integrity: sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==}
- '@vue/devtools-shared@7.7.1':
- resolution: {integrity: sha512-BtgF7kHq4BHG23Lezc/3W2UhK2ga7a8ohAIAGJMBr4BkxUFzhqntQtCiuL1ijo2ztWnmusymkirgqUrXoQKumA==}
+ '@vue/devtools-shared@7.7.2':
+ resolution: {integrity: sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==}
'@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
@@ -1424,11 +1798,16 @@ packages:
'@vueuse/core@10.11.1':
resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==}
- '@vueuse/core@12.5.0':
- resolution: {integrity: sha512-GVyH1iYqNANwcahAx8JBm6awaNgvR/SwZ1fjr10b8l1HIgDp82ngNbfzJUgOgWEoxjL+URAggnlilAEXwCOZtg==}
+ '@vueuse/core@12.8.2':
+ resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==}
- '@vueuse/integrations@12.5.0':
- resolution: {integrity: sha512-HYLt8M6mjUfcoUOzyBcX2RjpfapIwHPBmQJtTmXOQW845Y/Osu9VuTJ5kPvnmWJ6IUa05WpblfOwZ+P0G4iZsQ==}
+ '@vueuse/core@13.0.0':
+ resolution: {integrity: sha512-rkgb4a8/0b234lMGCT29WkCjPfsX0oxrIRR7FDndRoW3FsaC9NBzefXg/9TLhAgwM11f49XnutshM4LzJBrQ5g==}
+ peerDependencies:
+ vue: ^3.5.0
+
+ '@vueuse/integrations@12.8.2':
+ resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -1471,13 +1850,17 @@ packages:
'@vueuse/metadata@10.11.1':
resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==}
- '@vueuse/metadata@12.5.0':
- resolution: {integrity: sha512-Ui7Lo2a7AxrMAXRF+fAp9QsXuwTeeZ8fIB9wsLHqzq9MQk+2gMYE2IGJW48VMJ8ecvCB3z3GsGLKLbSasQ5Qlg==}
+ '@vueuse/metadata@12.8.2':
+ resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==}
- '@vueuse/nuxt@12.5.0':
- resolution: {integrity: sha512-daqSOlXv5ilAiT5GlRBtfqdkYjeMO9P6n50OpbEVm9hXmfXmZoXK3YMND8l5n5KcscD4pnD66IrYPqqOW5eH1Q==}
+ '@vueuse/metadata@13.0.0':
+ resolution: {integrity: sha512-TRNksqmvtvqsuHf7bbgH9OSXEV2b6+M3BSN4LR5oxWKykOFT9gV78+C2/0++Pq9KCp9KQ1OQDPvGlWNQpOb2Mw==}
+
+ '@vueuse/nuxt@13.0.0':
+ resolution: {integrity: sha512-tVb57PW0aUGMHwvzp4uH2mo8ut3D/3c7DA936E4ValhQq2VMZMCMxaKGz1nE8etFC7p18fVypyzpe8o6CBAYFw==}
peerDependencies:
- nuxt: ^3.0.0
+ nuxt: ^3.0.0 || ^4.0.0-0
+ vue: ^3.5.0
'@vueuse/shared@10.11.1':
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
@@ -1485,6 +1868,14 @@ packages:
'@vueuse/shared@12.5.0':
resolution: {integrity: sha512-vMpcL1lStUU6O+kdj6YdHDixh0odjPAUM15uJ9f7MY781jcYkIwFA4iv2EfoIPO6vBmvutI1HxxAwmf0cx5ISQ==}
+ '@vueuse/shared@12.8.2':
+ resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==}
+
+ '@vueuse/shared@13.0.0':
+ resolution: {integrity: sha512-9MiHhAPw+sqCF/RLo8V6HsjRqEdNEWVpDLm2WBRW2G/kSQjb8X901sozXpSCaeLG0f7TEfMrT4XNaA5m1ez7Dg==}
+ peerDependencies:
+ vue: ^3.5.0
+
abbrev@3.0.0:
resolution: {integrity: sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -1519,10 +1910,6 @@ packages:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- ansi-escapes@4.3.2:
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
- engines: {node: '>=8'}
-
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -1539,6 +1926,10 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
+ ansis@3.17.0:
+ resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
+ engines: {node: '>=14'}
+
anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
@@ -1608,6 +1999,9 @@ packages:
birpc@0.2.19:
resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
+ birpc@2.2.0:
+ resolution: {integrity: sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==}
+
blob-to-buffer@1.2.9:
resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==}
@@ -1642,12 +2036,12 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- builtin-modules@3.3.0:
- resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==}
- engines: {node: '>=6'}
+ builtin-modules@4.0.0:
+ resolution: {integrity: sha512-p1n8zyCkt1BVrKNFymOHjcDSAl7oq/gUvfgULv2EblgpPVQlQr9yHnWjg9IJ2MhfwPqiYqMMrr01OY7yQoK2yA==}
+ engines: {node: '>=18.20'}
- bumpp@10.0.2:
- resolution: {integrity: sha512-17ztVdFfdoSStJyauUjhi+fWJ9wWmMloOhqwimLHnM3Pfd5+o/BJFwy3TDcK11bMVP5phari5/C4FxFgxXZHhw==}
+ bumpp@10.0.3:
+ resolution: {integrity: sha512-5ONBZenNf9yfTIl2vFvDEfeeioidt0fG10SzjHQw50BRxOmXzsdY+lab1+SDMfiW6UyJ1xQqzFymcy5wa8YhTA==}
engines: {node: '>=18'}
hasBin: true
@@ -1669,6 +2063,14 @@ packages:
magicast:
optional: true
+ c12@3.0.2:
+ resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==}
+ peerDependencies:
+ magicast: ^0.3.5
+ peerDependenciesMeta:
+ magicast:
+ optional: true
+
cac@6.7.14:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
@@ -1766,10 +2168,6 @@ packages:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- commander@8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
-
comment-parser@1.4.1:
resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
@@ -1790,6 +2188,9 @@ packages:
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+ confbox@0.2.1:
+ resolution: {integrity: sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==}
+
consola@3.4.0:
resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
engines: {node: ^14.18.0 || >=16.10.0}
@@ -1800,6 +2201,13 @@ packages:
cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
+ cookie-es@2.0.0:
+ resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==}
+
+ cookie@1.0.2:
+ resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
+ engines: {node: '>=18'}
+
copy-anything@3.0.5:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
@@ -1823,10 +2231,6 @@ packages:
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
- cronstrue@2.54.0:
- resolution: {integrity: sha512-vyp5NklDxA5MjPfQgkn0bA+0vRQe7Q9keX7RPdV6rMgd7LtDvbuKgnT+3T5ZAX16anSP5HmahcRp8mziXsLfaw==}
- hasBin: true
-
cross-fetch@3.2.0:
resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
@@ -1837,6 +2241,9 @@ packages:
crossws@0.3.3:
resolution: {integrity: sha512-/71DJT3xJlqSnBr83uGJesmVHSzZEvgxHt/fIKxBAAngqMHmnBWQNxCphVxxJ2XL3xleu5+hJD6IQ3TglBedcw==}
+ crossws@0.3.4:
+ resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
+
css-declaration-sorter@7.2.0:
resolution: {integrity: sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==}
engines: {node: ^14 || ^16 || >=18}
@@ -1892,8 +2299,8 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- db0@0.2.3:
- resolution: {integrity: sha512-PunuHESDNefmwVy1LDpY663uWwKt2ogLGoB6NOz2sflGREWqDreMwDgF8gfkXxgNXW+dqviyiJGm924H1BaGiw==}
+ db0@0.3.1:
+ resolution: {integrity: sha512-3RogPLE2LLq6t4YiFCREyl572aBjkfMvfwPyN51df00TbPbryL3XqBYuJ/j6mgPssPK8AKfYdLxizaO5UG10sA==}
peerDependencies:
'@electric-sql/pglite': '*'
'@libsql/client': '*'
@@ -2113,11 +2520,8 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
- error-ex@1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
-
- error-stack-parser-es@0.1.5:
- resolution: {integrity: sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==}
+ error-stack-parser-es@1.0.5:
+ resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
errx@0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
@@ -2130,6 +2534,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.1:
+ resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -2161,8 +2570,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-flat-gitignore@2.0.0:
- resolution: {integrity: sha512-9iH+DZO94uxsw5iFjzqa9GfahA5oK3nA1GoJK/6u8evAtooYJMwuSWiLcGDfrdLoqdQ5/kqFJKKuMY/+SAasvg==}
+ eslint-config-flat-gitignore@2.1.0:
+ resolution: {integrity: sha512-cJzNJ7L+psWp5mXM7jBX+fjHtBvvh06RBlcweMhKD8jWqQw0G78hOW5tpVALGHGFPsBV+ot2H+pdDGJy6CV8pA==}
peerDependencies:
eslint: ^9.5.0
@@ -2183,18 +2592,18 @@ packages:
'@eslint/json':
optional: true
- eslint-merge-processors@1.0.0:
- resolution: {integrity: sha512-4GybyHmhXtT7/W8RAouQzNM0791sYasJCTYHIAYjuiJvbNFY0jMKkoESREhX+mjX37dxiN6v4EqhZ1nc0tJF7A==}
+ eslint-merge-processors@2.0.0:
+ resolution: {integrity: sha512-sUuhSf3IrJdGooquEUB5TNpGNpBoQccbnaLHsb1XkBLUPPqCNivCpY05ZcpCOiV9uHwO2yxXEWVczVclzMxYlA==}
peerDependencies:
eslint: '*'
- eslint-plugin-antfu@3.0.0:
- resolution: {integrity: sha512-USaQMR17+l7a0XWS9Pk0T+t9PszkdeIncyAOp1vsjHQnDKIlusSg+9bwTYWIzlJXkHDarAI06cdt+d5mbAGEKA==}
+ eslint-plugin-antfu@3.1.1:
+ resolution: {integrity: sha512-7Q+NhwLfHJFvopI2HBZbSxWXngTwBLKxW1AGXLr2lEGxcEIK/AsDs8pn8fvIizl5aZjBbVbVK5ujmMpBe4Tvdg==}
peerDependencies:
eslint: '*'
- eslint-plugin-command@3.0.0:
- resolution: {integrity: sha512-6EFOKGnBMHr0dN/9uKYmxYz6RbsCmEzPRcKYrl+dfEMvlt6+zf6x5TzXKzOowhh3f/hqSBMZmxcB3HHyfbpwWw==}
+ eslint-plugin-command@3.1.0:
+ resolution: {integrity: sha512-KLgxB8NMQ0iL7iwehyeqWVE7MaqRPwLTGW4d2CXYOj5tt4j6yU/hiNxQ/35FLq4SnMhv+tpE6FCvYbV4VS+BLw==}
peerDependencies:
eslint: '*'
@@ -2222,8 +2631,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-n@17.15.1:
- resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
+ eslint-plugin-n@17.16.2:
+ resolution: {integrity: sha512-iQM5Oj+9o0KaeLoObJC/uxNGpktZCkYiTTBo8PkRWq3HwNcRxwpvSDFjBhQ5+HLJzBTy+CLDC5+bw0Z5GyhlOQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -2232,11 +2641,16 @@ packages:
resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@4.8.0:
- resolution: {integrity: sha512-ZF04IAPGItYMlj9xjgvvl/QpksZf79g0dkxbNcuxDjbcUSZ4CwucJ7h5Yzt5JuHe+i6igQbUYEp40j4ndfbvWQ==}
+ eslint-plugin-perfectionist@4.10.1:
+ resolution: {integrity: sha512-GXwFfL47RfBLZRGQdrvGZw9Ali2T2GPW8p4Gyj2fyWQ9396R/HgJMf0m9kn7D6WXRwrINfTDGLS+QYIeok9qEg==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- eslint: '>=8.0.0'
+ eslint: '>=8.45.0'
+
+ eslint-plugin-pnpm@0.1.2:
+ resolution: {integrity: sha512-Ta70r1MEUEv8Q5KqJBOklYE/Bal/qrCClu/jhLMC8US6emkYvYPgkoO4QCO/fmDECKU8GWZB8b91GIiapXbm2w==}
+ peerDependencies:
+ eslint: ^9.0.0
eslint-plugin-regexp@2.7.0:
resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==}
@@ -2250,11 +2664,11 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-unicorn@56.0.1:
- resolution: {integrity: sha512-FwVV0Uwf8XPfVnKSGpMg7NtlZh0G0gBarCaFcMUOoqPxXryxdYxTRRv4kH6B9TFCVIrjRXG+emcxIk2ayZilog==}
+ eslint-plugin-unicorn@57.0.0:
+ resolution: {integrity: sha512-zUYYa6zfNdTeG9BISWDlcLmz16c+2Ck2o5ZDHh0UzXJz3DEP7xjmlVDTzbyV0W+XksgZ0q37WEWzN2D2Ze+g9Q==}
engines: {node: '>=18.18'}
peerDependencies:
- eslint: '>=8.56.0'
+ eslint: '>=9.20.0'
eslint-plugin-unused-imports@4.1.4:
resolution: {integrity: sha512-YptD6IzQjDardkl0POxnnRBhU1OEePMV0nd6siHaRBbd+lyh6NAhFEobiznKU7kTsSsDeSD62Pe7kAM1b7dAZQ==}
@@ -2265,36 +2679,37 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
- eslint-plugin-vue@9.32.0:
- resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ eslint-plugin-vue@10.0.0:
+ resolution: {integrity: sha512-XKckedtajqwmaX6u1VnECmZ6xJt+YvlmMzBPZd+/sI3ub2lpYZyFnsyWo7c3nMOQKJQudeyk1lw/JxdgeKT64w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
+ eslint: ^8.57.0 || ^9.0.0
+ vue-eslint-parser: ^10.0.0
- eslint-plugin-yml@1.16.0:
- resolution: {integrity: sha512-t4MNCetPjTn18/fUDlQ/wKkcYjnuLYKChBrZ0qUaNqRigVqChHWzTP8SrfFi5s4keX3vdlkWRSu8zHJMdKwxWQ==}
+ eslint-plugin-yml@1.17.0:
+ resolution: {integrity: sha512-Q3LXFRnNpGYAK/PM0BY1Xs0IY1xTLfM0kC986nNQkx1l8tOGz+YS50N6wXkAJkrBpeUN9OxEMB7QJ+9MTDAqIQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
- eslint-processor-vue-blocks@1.0.0:
- resolution: {integrity: sha512-q+Wn9bCml65NwYtuINVCE5dUqZa/uVoY4jfc8qEDwWbcGqdRyfJJmAONNZsreA4Q9EJqjYGjk8Hk1QuwAktgkw==}
+ eslint-processor-vue-blocks@2.0.0:
+ resolution: {integrity: sha512-u4W0CJwGoWY3bjXAuFpc/b6eK3NQEI8MoeW7ritKj3G3z/WtHrKjkqf+wk8mPEy5rlMGS+k6AZYOw2XBoN/02Q==}
peerDependencies:
'@vue/compiler-sfc': ^3.3.0
- eslint: ^8.50.0 || ^9.0.0
-
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint: '>=9.0.0'
eslint-scope@8.2.0:
resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint-typegen@1.0.0:
- resolution: {integrity: sha512-1Dku9Ljb/lBjpuI2tT5VZPTivPirs+fjrAnoXSy97BDMIs6fcz8nOqajv/zzPrSxtiRINxz/DymGLn4X+Oiksg==}
+ eslint-scope@8.3.0:
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint-typegen@2.0.0:
+ resolution: {integrity: sha512-70TEVfim9XxuVWQ104cv4x9d3XJt/t7i0u8/m+/6B/Kc21fnznLjF63M/L4/1VtquCoAUw9+N97VzbENuLlexw==}
peerDependencies:
- eslint: ^8.45.0 || ^9.0.0
+ eslint: ^9.0.0
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
@@ -2304,8 +2719,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.17.0:
- resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
+ eslint@9.22.0:
+ resolution: {integrity: sha512-9V/QURhsRN40xuHXWjV64yvrzMjcz7ZyNoF2jJFmy9j/SLk0u1OLSZgXi28MrXjymnjEGSR80WCdab3RGMDveQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -2364,6 +2779,13 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
+ execa@9.5.2:
+ resolution: {integrity: sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==}
+ engines: {node: ^18.19.0 || >=20.5.0}
+
+ exsolve@1.0.4:
+ resolution: {integrity: sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==}
+
externality@1.0.2:
resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
@@ -2383,8 +2805,8 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fast-npm-meta@0.2.2:
- resolution: {integrity: sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==}
+ fast-npm-meta@0.3.1:
+ resolution: {integrity: sha512-W9gVhqRyz2O3j20I0nFmYEyaMC/046oaMRxxAQ0w6noakfbhpLmlIXmnnqSOmVVuJZ6x5hOPVwlv7PocuawZsw==}
fastq@1.19.0:
resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
@@ -2397,6 +2819,10 @@ packages:
picomatch:
optional: true
+ figures@6.1.0:
+ resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
+ engines: {node: '>=18'}
+
file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
@@ -2408,9 +2834,9 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- find-up@4.1.0:
- resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
- engines: {node: '>=8'}
+ find-up-simple@1.0.1:
+ resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==}
+ engines: {node: '>=18'}
find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
@@ -2452,9 +2878,6 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
- fs.realpath@1.0.0:
- resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
-
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -2486,6 +2909,10 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
+ get-stream@9.0.1:
+ resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
+ engines: {node: '>=18'}
+
get-tsconfig@4.10.0:
resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
@@ -2493,6 +2920,10 @@ packages:
resolution: {integrity: sha512-Wv+daGyispVoA31TrWAVR+aAdP7roubTPEM/8JzRnqXhLbdJH0T9eQyXVFF8fjk3WKTsctII6QcyxILYgNp2DA==}
hasBin: true
+ giget@2.0.0:
+ resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==}
+ hasBin: true
+
git-config-path@2.0.0:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
engines: {node: '>=4'}
@@ -2515,10 +2946,6 @@ packages:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
- glob@7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
-
global-directory@4.0.1:
resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==}
engines: {node: '>=18'}
@@ -2527,10 +2954,6 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
-
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
@@ -2539,10 +2962,22 @@ packages:
resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
engines: {node: '>=18'}
+ globals@15.15.0:
+ resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
+ engines: {node: '>=18'}
+
+ globals@16.0.0:
+ resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ engines: {node: '>=18'}
+
globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
+ globby@14.1.0:
+ resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
+ engines: {node: '>=18'}
+
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -2556,6 +2991,9 @@ packages:
h3@1.15.0:
resolution: {integrity: sha512-OsjX4JW8J4XGgCgEcad20pepFQWnuKH+OwkCJjogF3C+9AZ1iYdtB4hX6vAb5DskBiu5ljEXqApINjR8CqoCMQ==}
+ h3@1.15.1:
+ resolution: {integrity: sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==}
+
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -2567,8 +3005,9 @@ packages:
hookable@5.5.3:
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
- hosted-git-info@2.8.9:
- resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
html-tags@3.3.1:
resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
@@ -2597,6 +3036,10 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
+ human-signals@8.0.0:
+ resolution: {integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==}
+ engines: {node: '>=18.18.0'}
+
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
@@ -2622,18 +3065,14 @@ packages:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- indent-string@4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
+ indent-string@5.0.0:
+ resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
+ engines: {node: '>=12'}
index-to-position@0.1.2:
resolution: {integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==}
engines: {node: '>=18'}
- inflight@1.0.6:
- resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
- deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
@@ -2644,23 +3083,20 @@ packages:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- ioredis@5.5.0:
- resolution: {integrity: sha512-7CutT89g23FfSa8MDoIFs2GYYa0PaNiW/OrT+nRyjRXHDZd17HmIgy+reOQ/yhh72NznNjGuS8kbCAcA4Ro4mw==}
+ ioredis@5.6.0:
+ resolution: {integrity: sha512-tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg==}
engines: {node: '>=12.22.0'}
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
- is-arrayish@0.2.1:
- resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
-
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-builtin-module@3.2.1:
- resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==}
- engines: {node: '>=6'}
+ is-builtin-module@4.0.0:
+ resolution: {integrity: sha512-rWP3AMAalQSesXO8gleROyL2iKU73SX5Er66losQn9rWOWL4Gef0a/xOEOVqjWGMuR2vHG3FJ8UUmT700O8oFg==}
+ engines: {node: '>=18.20'}
is-core-module@2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
@@ -2708,6 +3144,10 @@ packages:
resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==}
engines: {node: '>=12'}
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
@@ -2722,6 +3162,14 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ is-stream@4.0.1:
+ resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
+ engines: {node: '>=18'}
+
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
is-what@4.1.16:
resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
engines: {node: '>=12.13'}
@@ -2744,6 +3192,10 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
@@ -2769,8 +3221,9 @@ packages:
resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
engines: {node: '>=12.0.0'}
- jsesc@0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
jsesc@3.1.0:
@@ -2781,9 +3234,6 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- json-parse-even-better-errors@2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
-
json-schema-to-typescript-lite@14.1.0:
resolution: {integrity: sha512-b8K6P3aiLgiYKYcHacgZKrwPXPyjekqRPV5vkNfBt0EoohcOSXEbcuGzgi6KQmsAhuy5Mh2KMxofXodRhMxURA==}
@@ -2818,6 +3268,10 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
+ kleur@4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
+ engines: {node: '>=6'}
+
klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
@@ -2828,8 +3282,8 @@ packages:
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- launch-editor@2.9.1:
- resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
+ launch-editor@2.10.0:
+ resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
@@ -2907,9 +3361,6 @@ packages:
resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
- lines-and-columns@1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
-
listhen@1.9.0:
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
hasBin: true
@@ -2926,9 +3377,9 @@ packages:
resolution: {integrity: sha512-bbgPw/wmroJsil/GgL4qjDzs5YLTBMQ99weRsok1XCDccQeehbHA/I1oRvk2NPtr7KGZgT/Y5tPRnAtMqeG2Kg==}
engines: {node: '>=14'}
- locate-path@5.0.0:
- resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
- engines: {node: '>=8'}
+ local-pkg@1.1.1:
+ resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==}
+ engines: {node: '>=14'}
locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
@@ -3196,6 +3647,10 @@ packages:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
+ mrmime@2.0.1:
+ resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
+ engines: {node: '>=10'}
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -3222,8 +3677,8 @@ packages:
resolution: {integrity: sha512-kKHJhxwpR/Okycz4HhQKKlhWe4ASEfPgkSWNmKFHd7+ezuQlxkA5cM3+XkBPvm1gmHen3w53qsYAv+8GwRrBlg==}
engines: {node: '>=18'}
- nitropack@2.10.4:
- resolution: {integrity: sha512-sJiG/MIQlZCVSw2cQrFG1H6mLeSqHlYfFerRjLKz69vUfdu0EL2l0WdOxlQbzJr3mMv/l4cOlCCLzVRzjzzF/g==}
+ nitropack@2.11.6:
+ resolution: {integrity: sha512-iaLzOKYxsNL8G6h9cMFTC/hAN4RfhZsrFzFFzemr6Vfn57MooYEz6KLeUoRyTposlAeEWTVejz8naYOORIrnDg==}
engines: {node: ^16.11.0 || >=17.0.0}
hasBin: true
peerDependencies:
@@ -3266,8 +3721,9 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- normalize-package-data@2.5.0:
- resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ normalize-package-data@6.0.2:
+ resolution: {integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==}
+ engines: {node: ^16.14.0 || >=18.0.0}
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
@@ -3277,19 +3733,19 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- 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}
+ npm-run-path@6.0.0:
+ resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==}
+ engines: {node: '>=18'}
+
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxt-svgo@4.0.14:
- resolution: {integrity: sha512-1rPyZN0JErUzCuhIf/n+dgmQztnuEmqSh7q/YqvCoyXrExqIXteC6KdSHjHzdWBFbycNesfmBk8gH9PumJCc/Q==}
+ nuxt-svgo@4.0.15:
+ resolution: {integrity: sha512-zyf5JgGVdoO1k6GVzkGboUgMVOMZthSVr2zleFvsbTo5Eh/M+gOJS/9Un12FC25CgXFLezl0w5jYbTbeTQx5mw==}
peerDependencies:
svgo-loader: ^4.0.0
vue: '>=3.2.13'
@@ -3303,9 +3759,9 @@ packages:
vue-svg-loader:
optional: true
- nuxt@3.15.4:
- resolution: {integrity: sha512-hSbZO4mR0uAMJtZPNTnCfiAtgleoOu28gvJcBNU7KQHgWnNXPjlWgwMczko2O4Tmnv9zIe/CQged+2HsPwl2ZA==}
- engines: {node: ^18.20.5 || ^20.9.0 || >=22.0.0}
+ nuxt@3.16.0:
+ resolution: {integrity: sha512-4j2tuHo+kcComQ1WrCD+i1w3UFOHrcnNH30cwiEY/WZZlBZOlC6DtUm6aBjhfpBFaMYsF4PbyKsNW+7FHwckHA==}
+ engines: {node: ^18.12.0 || ^20.9.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@parcel/watcher': ^2.1.0
@@ -3316,13 +3772,13 @@ packages:
'@types/node':
optional: true
- nypm@0.4.1:
- resolution: {integrity: sha512-1b9mihliBh8UCcKtcGRu//G50iHpjxIQVUqkdhPT/SDVE7KdJKoHXLS0heuYTQCx95dFqiyUbXZB9r8ikn+93g==}
+ nypm@0.5.2:
+ resolution: {integrity: sha512-AHzvnyUJYSrrphPhRWWZNcoZfArGNp3Vrc4pm/ZurO74tYNTgAPrEyBQEKy+qioqmWlPXwvMZCG2wOaHlPG0Pw==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
- nypm@0.5.2:
- resolution: {integrity: sha512-AHzvnyUJYSrrphPhRWWZNcoZfArGNp3Vrc4pm/ZurO74tYNTgAPrEyBQEKy+qioqmWlPXwvMZCG2wOaHlPG0Pw==}
+ nypm@0.6.0:
+ resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -3332,13 +3788,17 @@ packages:
ohash@1.1.4:
resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
+ ohash@2.0.11:
+ resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==}
+
+ on-change@5.0.1:
+ resolution: {integrity: sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==}
+ engines: {node: '>=18'}
+
on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
- once@1.4.0:
- resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
-
onetime@6.0.0:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
@@ -3361,9 +3821,9 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- p-limit@2.3.0:
- resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
- engines: {node: '>=6'}
+ oxc-parser@0.56.5:
+ resolution: {integrity: sha512-MNT32sqiTFeSbQZP2WZIRQ/mlIpNNq4sua+/4hBG4qT5aef2iQe+1/BjezZURPlvucZeSfN1Y6b60l7OgBdyUA==}
+ engines: {node: '>=14.0.0'}
p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
@@ -3373,10 +3833,6 @@ packages:
resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-locate@4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
-
p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
@@ -3385,10 +3841,6 @@ packages:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-try@2.2.0:
- resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
- engines: {node: '>=6'}
-
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
@@ -3417,14 +3869,14 @@ packages:
resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==}
engines: {node: '>= 18'}
- parse-json@5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
-
parse-json@8.1.0:
resolution: {integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==}
engines: {node: '>=18'}
+ parse-ms@4.0.0:
+ resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
+ engines: {node: '>=18'}
+
parse-path@7.0.0:
resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
@@ -3444,10 +3896,6 @@ packages:
resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- path-is-absolute@1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
-
path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -3467,12 +3915,19 @@ packages:
resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
engines: {node: '>=12'}
+ path-type@6.0.0:
+ resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
+ engines: {node: '>=18'}
+
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
pathe@2.0.2:
resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==}
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
@@ -3490,10 +3945,16 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+ pkg-types@2.1.0:
+ resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==}
+
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
+ pnpm-workspace-yaml@0.1.2:
+ resolution: {integrity: sha512-FaSo51Psz+jHV8YtnuIVemTheOIO5EnMtw0HSPTUsASEdOf3ppM5OBxKO5Dpvx4fWKNZF44vEEMFKc5YZG4qjA==}
+
postcss-calc@10.1.1:
resolution: {integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==}
engines: {node: ^18.12 || ^20.9 || >=22.0}
@@ -3671,6 +4132,10 @@ packages:
resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ engines: {node: ^10 || ^12 || >=14}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -3679,6 +4144,10 @@ packages:
resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
engines: {node: ^14.13.1 || >=16.0.0}
+ pretty-ms@9.2.0:
+ resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
+ engines: {node: '>=18'}
+
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -3697,14 +4166,12 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
+ quansync@0.2.8:
+ resolution: {integrity: sha512-4+saucphJMazjt7iOM27mbFCk+D9dd/zmgMDCzRZ8MEoBfYp7lAvoN38et/phRQF6wOPMy/OROBGgoWeSKyluA==}
+
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- radix-vue@1.9.13:
- resolution: {integrity: sha512-wk0G69vRDU5TDmhYHZv5Y4j905CLfnvcsFB+CXAbXRuQIl5fUCmOWSOukKhj0MT9YRsW5ujZUjtDF0Ou/hg+8Q==}
- peerDependencies:
- vue: '>= 3.2.0'
-
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
@@ -3718,13 +4185,13 @@ packages:
rc9@2.1.2:
resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==}
- read-pkg-up@7.0.1:
- resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
- engines: {node: '>=8'}
+ read-package-up@11.0.0:
+ resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==}
+ engines: {node: '>=18'}
- read-pkg@5.2.0:
- resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
- engines: {node: '>=8'}
+ read-pkg@9.0.1:
+ resolution: {integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==}
+ engines: {node: '>=18'}
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -3764,12 +4231,12 @@ packages:
resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
hasBin: true
- regjsparser@0.10.0:
- resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
- reka-ui@1.0.0-alpha.8:
- resolution: {integrity: sha512-FmAUxWFLWtvbheBLvjgotR/RsE1KSjciMJOLmo7wL0Sbe+sW7M35O8K6f141a0Vc1cE0mH57UHcWBuVpeJNQNA==}
+ reka-ui@2.0.2:
+ resolution: {integrity: sha512-pC2UF6Z+kJF96aJvIErhkSO4DJYIeq9pgvh3pntNqcZb3zFGMzw8h2uny+GnLX2CKiQV54kZNYXxecYIiPMGyg==}
peerDependencies:
vue: '>= 3.2.0'
@@ -3829,6 +4296,11 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.35.0:
+ resolution: {integrity: sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
run-applescript@7.0.0:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
@@ -3849,10 +4321,6 @@ packages:
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
- semver@5.7.2:
- resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
- hasBin: true
-
semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
@@ -3905,6 +4373,10 @@ packages:
resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
engines: {node: '>=18'}
+ sirv@3.0.1:
+ resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ engines: {node: '>=18'}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -3965,6 +4437,9 @@ packages:
std-env@3.8.0:
resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
+ std-env@3.8.1:
+ resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==}
+
streamx@2.22.0:
resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
@@ -3994,20 +4469,24 @@ packages:
resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
engines: {node: '>=12'}
- strip-indent@3.0.0:
- resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
- engines: {node: '>=8'}
+ strip-final-newline@4.0.0:
+ resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==}
+ engines: {node: '>=18'}
+
+ strip-indent@4.0.0:
+ resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
+ engines: {node: '>=12'}
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-literal@2.1.1:
- resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
-
strip-literal@3.0.0:
resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+ structured-clone-es@1.0.0:
+ resolution: {integrity: sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==}
+
stylehacks@7.0.4:
resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -4018,6 +4497,10 @@ packages:
resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
engines: {node: '>=16'}
+ supports-color@10.0.0:
+ resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==}
+ engines: {node: '>=18'}
+
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -4064,11 +4547,8 @@ packages:
peerDependencies:
tailwindcss: '*'
- tailwindcss@4.0.0:
- resolution: {integrity: sha512-ULRPI3A+e39T7pSaf1xoi58AqqJxVCLg8F/uM5A3FadUbnyDTgltVnXJvdkTjwCOGA6NazqHVcwPJC5h2vRYVQ==}
-
- tailwindcss@4.0.4:
- resolution: {integrity: sha512-/ezDLEkOLf1lXkr9F2iI5BHJbexJpty5zkV2B8bGHCqAdbc9vk85Jgdkq+ZOvNkNPa3yAaqJ8DjRt584Bc84kw==}
+ tailwindcss@4.0.12:
+ resolution: {integrity: sha512-bT0hJo91FtncsAMSsMzUkoo/iEU0Xs5xgFgVC9XmdM9bw5MhZuQFjPNl6wxAE0SiQF/YTZJa+PndGWYSDtuxAg==}
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
@@ -4106,6 +4586,10 @@ packages:
resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.12:
+ resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
+ engines: {node: '>=12.0.0'}
+
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -4134,26 +4618,15 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+ tslite@5.7.3:
+ resolution: {integrity: sha512-fKoEdoHjQtisqnsoAMTCmleGtjhVHYtrzLTvOYrCAhlGLjzTuFZzlXH6e4gl5hkuQsQwR4tp0xaVrb/LsvHpWg==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
- type-fest@0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
- engines: {node: '>=10'}
-
- type-fest@0.6.0:
- resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
- engines: {node: '>=8'}
-
- type-fest@0.8.1:
- resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
- engines: {node: '>=8'}
-
type-fest@4.33.0:
resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==}
engines: {node: '>=16'}
@@ -4161,11 +4634,6 @@ packages:
type-level-regexp@0.1.17:
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
- typescript@5.7.3:
- resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
- engines: {node: '>=14.17'}
- hasBin: true
-
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
@@ -4184,8 +4652,14 @@ packages:
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unhead@1.11.18:
- resolution: {integrity: sha512-TWgGUoZMpYe2yJwY6jZ0/9kpQT18ygr2h5lI6cUXdfD9UzDc0ytM9jGaleSYkj9guJWXkk7izYBnzJvxl8mRvQ==}
+ unenv@2.0.0-rc.14:
+ resolution: {integrity: sha512-od496pShMen7nOy5VmVJCnq8rptd45vh6Nx/r2iPbrba6pa6p+tS2ywuIHRZ/OBvSbQZB0kWvpO9XBNVFXHD3Q==}
+
+ unhead@1.11.20:
+ resolution: {integrity: sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==}
+
+ unhead@2.0.0-rc.9:
+ resolution: {integrity: sha512-N1p9as7Hg9Gs3l5kkxxsi9eTa8xTHUADZgN1U+hCKHWKegGhvJ4wApzBjk4Zng7O92wPlPDGk8oHSWgO6jg6tw==}
unicode-properties@1.4.1:
resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==}
@@ -4197,16 +4671,21 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
+ unicorn-magic@0.3.0:
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
+
unifont@0.1.7:
resolution: {integrity: sha512-UyN6r/TUyl69iW/jhXaCtuwA6bP9ZSLhVViwgP8LH9EHRGk5FyIMDxvClqD5z2BV6MI9GMATzd0dyLqFxKkUmQ==}
- unimport@3.14.6:
- resolution: {integrity: sha512-CYvbDaTT04Rh8bmD8jz3WPmHYZRG/NnvYVzwD6V1YAlvvKROlAeNDUBhkBGzNav2RKaeuXvlWYaa1V4Lfi/O0g==}
-
unimport@4.1.0:
resolution: {integrity: sha512-y5ZYDG+j7IB45+Y6CIkWIKou4E1JFigCUw6vI+h15HdYAKmT0oQWcawnxXuwJG8srJyXhIZuWz5uXB1MQ/ARZw==}
engines: {node: '>=18.20.6'}
+ unimport@4.1.2:
+ resolution: {integrity: sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==}
+ engines: {node: '>=18.12.0'}
+
unist-util-is@6.0.0:
resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
@@ -4223,8 +4702,8 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unplugin-auto-import@19.0.0:
- resolution: {integrity: sha512-TREXtXqCM6YLy3rE2tjvKZEaCiPlP2e5bmnRKaS8AM2MlNgjV7UP4RPieWIfs4Isv0GoeHmov956PIIvJYdqpQ==}
+ unplugin-auto-import@19.1.1:
+ resolution: {integrity: sha512-sCGZZrSR1Bc8RfN8Q0RUDxXtC20rdAt7UB4lDyq8MNtKVHiXXh+5af6Nz4JRp9Q+7HjnbgQfQox0TkEymjdUAQ==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': ^3.2.2
@@ -4239,8 +4718,12 @@ packages:
resolution: {integrity: sha512-unB2e2ogZwEoMw/X0Gq1vj2jaRKLmTh9wcSEJggESPllcrZI68uO7B8ykixbXqsSwG8r9T7qaHZudXIC/3qvhw==}
engines: {node: '>=18.12.0'}
- unplugin-vue-components@28.0.0:
- resolution: {integrity: sha512-vYe0wSyqTVhyNFIad1iiGyQGhG++tDOMgohqenMDOAooMJP9vvzCdXTqCVx20A0rCQXFNjgoRbSeDAioLPH36Q==}
+ unplugin-utils@0.2.4:
+ resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==}
+ engines: {node: '>=18.12.0'}
+
+ unplugin-vue-components@28.4.1:
+ resolution: {integrity: sha512-niGSc0vJD9ueAnsqcfAldmtpkppZ09B6p2G1dL7X5S8KPdgbk1P+txPwaaDCe7N+eZh2VG1aAypLXkuJs3OSUg==}
engines: {node: '>=14'}
peerDependencies:
'@babel/parser': ^7.15.8
@@ -4252,8 +4735,8 @@ packages:
'@nuxt/kit':
optional: true
- unplugin-vue-router@0.11.2:
- resolution: {integrity: sha512-X8BbQ3BNnMqaCYeMj80jtz5jC4AB0jcpdmECIYey9qKm6jy/upaPZ/WzfuT+iTGRiQAY4WemHueXxuzH127oOg==}
+ unplugin-vue-router@0.12.0:
+ resolution: {integrity: sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==}
peerDependencies:
vue-router: ^4.4.0
peerDependenciesMeta:
@@ -4268,6 +4751,10 @@ packages:
resolution: {integrity: sha512-Q3LU0e4zxKfRko1wMV2HmP8lB9KWislY7hxXpxd+lGx0PRInE4vhMBVEZwpdVYHvtqzhSrzuIfErsob6bQfCzw==}
engines: {node: '>=18.12.0'}
+ unplugin@2.2.0:
+ resolution: {integrity: sha512-m1ekpSwuOT5hxkJeZGRxO7gXbXT3gF26NjQ7GdVHoLoF8/nopLcd/QfPigpCy7i51oFHiRJg/CyHhj4vs2+KGw==}
+ engines: {node: '>=18.12.0'}
+
unstorage@1.14.4:
resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==}
peerDependencies:
@@ -4327,6 +4814,65 @@ packages:
uploadthing:
optional: true
+ unstorage@1.15.0:
+ resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
+ peerDependencies:
+ '@azure/app-configuration': ^1.8.0
+ '@azure/cosmos': ^4.2.0
+ '@azure/data-tables': ^13.3.0
+ '@azure/identity': ^4.6.0
+ '@azure/keyvault-secrets': ^4.9.0
+ '@azure/storage-blob': ^12.26.0
+ '@capacitor/preferences': ^6.0.3
+ '@deno/kv': '>=0.9.0'
+ '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
+ '@planetscale/database': ^1.19.0
+ '@upstash/redis': ^1.34.3
+ '@vercel/blob': '>=0.27.1'
+ '@vercel/kv': ^1.0.1
+ aws4fetch: ^1.0.20
+ db0: '>=0.2.1'
+ idb-keyval: ^6.2.1
+ ioredis: ^5.4.2
+ uploadthing: ^7.4.4
+ peerDependenciesMeta:
+ '@azure/app-configuration':
+ optional: true
+ '@azure/cosmos':
+ optional: true
+ '@azure/data-tables':
+ optional: true
+ '@azure/identity':
+ optional: true
+ '@azure/keyvault-secrets':
+ optional: true
+ '@azure/storage-blob':
+ optional: true
+ '@capacitor/preferences':
+ optional: true
+ '@deno/kv':
+ optional: true
+ '@netlify/blobs':
+ optional: true
+ '@planetscale/database':
+ optional: true
+ '@upstash/redis':
+ optional: true
+ '@vercel/blob':
+ optional: true
+ '@vercel/kv':
+ optional: true
+ aws4fetch:
+ optional: true
+ db0:
+ optional: true
+ idb-keyval:
+ optional: true
+ ioredis:
+ optional: true
+ uploadthing:
+ optional: true
+
untun@0.1.3:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
@@ -4335,6 +4881,10 @@ packages:
resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
hasBin: true
+ untyped@2.0.0:
+ resolution: {integrity: sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==}
+ hasBin: true
+
unwasm@0.3.9:
resolution: {integrity: sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==}
@@ -4362,36 +4912,46 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- vaul-vue@0.2.1:
- resolution: {integrity: sha512-iF91R1JQZzxb9mb9uGNHYv8rVFxR5bL5Fj51iqvyXjzMPAzNMciCrXb9OUBu2NdlhcF6rVtEADXnQoTY+pKIeA==}
+ vaul-vue@0.3.0:
+ resolution: {integrity: sha512-LwhBd7xLJtbdhq+vnQk9etOjZxr09GNFtMjOEYh969y5f8JKV5oR30CfB4toPkbtVMxFAFhMrp77EVWQgbtpHA==}
peerDependencies:
- radix-vue: ^1.4.0
+ reka-ui: ^2.0.0
vue: ^3.3.0
+ vite-dev-rpc@1.0.7:
+ resolution: {integrity: sha512-FxSTEofDbUi2XXujCA+hdzCDkXFG1PXktMjSk1efq9Qb5lOYaaM9zNSvKvPPF7645Bak79kSp1PTooMW2wktcA==}
+ peerDependencies:
+ vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1
+
vite-hot-client@0.2.4:
resolution: {integrity: sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==}
peerDependencies:
vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
- vite-node@3.0.5:
- resolution: {integrity: sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==}
+ vite-hot-client@2.0.4:
+ resolution: {integrity: sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0
+
+ vite-node@3.0.8:
+ resolution: {integrity: sha512-6PhR4H9VGlcwXZ+KWCdMqbtG649xCPZqfI9j2PsK1FcXgEzro5bGHcVKFCTqPLaNKZES8Evqv4LwvZARsq5qlg==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-plugin-checker@0.8.0:
- resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
+ vite-plugin-checker@0.9.0:
+ resolution: {integrity: sha512-gf/zc0KWX8ATEOgnpgAM1I+IbvWkkO80RB+FxlLtC5cabXSesbJmAUw6E+mMDDMGIT+VHAktmxJZpMTt3lSubQ==}
engines: {node: '>=14.16'}
peerDependencies:
'@biomejs/biome': '>=1.7'
eslint: '>=7'
- meow: ^9.0.0
+ meow: ^13.2.0
optionator: ^0.9.1
- stylelint: '>=13'
+ stylelint: '>=16'
typescript: '*'
vite: '>=2.0.0'
vls: '*'
vti: '*'
- vue-tsc: ~2.1.6
+ vue-tsc: ~2.2.2
peerDependenciesMeta:
'@biomejs/biome':
optional: true
@@ -4412,23 +4972,24 @@ packages:
vue-tsc:
optional: true
- vite-plugin-inspect@0.8.9:
- resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==}
+ vite-plugin-inspect@11.0.0:
+ resolution: {integrity: sha512-Q0RDNcMs1mbI2yGRwOzSapnnA6NFO0j88+Vb8pJX0iYMw34WczwKJi3JgheItDhbWRq/CLUR0cs+ajZpcUaIFQ==}
engines: {node: '>=14'}
peerDependencies:
'@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.1
+ vite: ^6.0.0
peerDependenciesMeta:
'@nuxt/kit':
optional: true
- vite-plugin-vue-inspector@5.3.1:
- resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
+ vite-plugin-vue-tracer@0.1.1:
+ resolution: {integrity: sha512-8BuReHmbSPd6iRQDQhlyK5+DexY1Hmb4K0GUVo9Te1Yaz8gyOZspBm9qdG1SvebdSIKw3WNlzpdstJ47TJ4bOw==}
peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+ vite: ^6.0.0
+ vue: ^3.5.0
- vite@6.1.0:
- resolution: {integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==}
+ vite@6.2.1:
+ resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
@@ -4467,27 +5028,6 @@ packages:
yaml:
optional: true
- vscode-jsonrpc@6.0.0:
- resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
- engines: {node: '>=8.0.0 || >=10.0.0'}
-
- vscode-languageclient@7.0.0:
- resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==}
- engines: {vscode: ^1.52.0}
-
- vscode-languageserver-protocol@3.16.0:
- resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==}
-
- vscode-languageserver-textdocument@1.0.12:
- resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
-
- vscode-languageserver-types@3.16.0:
- resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==}
-
- vscode-languageserver@7.0.0:
- resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==}
- hasBin: true
-
vscode-uri@3.1.0:
resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
@@ -4508,11 +5048,11 @@ packages:
vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
- vue-eslint-parser@9.4.3:
- resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
- engines: {node: ^14.17.0 || >=16.0.0}
+ vue-eslint-parser@10.1.1:
+ resolution: {integrity: sha512-bh2Z/Au5slro9QJ3neFYLanZtb1jH+W2bKqGHXAoYD4vZgNG3KeotL7JpPv5xzY4UXUXJl7TrIsnzECH63kd3Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: '>=6.0.0'
+ eslint: ^8.57.0 || ^9.0.0
vue-router@4.5.0:
resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
@@ -4545,9 +5085,9 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- which@3.0.1:
- resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ which@5.0.0:
+ resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
word-wrap@1.2.5:
@@ -4562,11 +5102,8 @@ packages:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
- wrappy@1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
-
- ws@8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ ws@8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -4598,8 +5135,8 @@ packages:
yaml-ast-parser@0.0.43:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
- yaml-eslint-parser@1.2.3:
- resolution: {integrity: sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==}
+ yaml-eslint-parser@1.3.0:
+ resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==}
engines: {node: ^14.17.0 || >=16.0.0}
yaml@2.7.0:
@@ -4623,6 +5160,18 @@ packages:
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
+ yoctocolors@2.1.1:
+ resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
+ engines: {node: '>=18'}
+
+ youch-core@0.3.2:
+ resolution: {integrity: sha512-fusrlIMLeRvTFYLUjJ9KzlGC3N+6MOPJ68HNj/yJv2nz7zq8t4HEviLms2gkdRPUS7F5rZ5n+pYx9r88m6IE1g==}
+ engines: {node: '>=18'}
+
+ youch@4.1.0-beta.6:
+ resolution: {integrity: sha512-y1aNsEeoLXnWb6pI9TvfNPIxySyo4Un3OGxKn7rsNj8+tgSquzXEWkzfA5y6gU0fvzmQgvx3JBn/p51qQ8Xg9A==}
+ engines: {node: '>=18'}
+
zhead@2.2.4:
resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
@@ -4630,8 +5179,8 @@ packages:
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
engines: {node: '>= 14'}
- zod@3.24.1:
- resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
+ zod@3.24.2:
+ resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -4645,44 +5194,45 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@4.1.1(@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@antfu/eslint-config@4.8.1(@typescript-eslint/utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
'@antfu/install-pkg': 1.0.0
- '@clack/prompts': 0.9.1
- '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- '@eslint/markdown': 6.2.2
- '@stylistic/eslint-plugin': 3.1.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/parser': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@vitest/eslint-plugin': 1.1.26(@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-config-flat-gitignore: 2.0.0(eslint@9.17.0(jiti@2.4.2))
+ '@clack/prompts': 0.10.0
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ '@eslint/markdown': 6.3.0
+ '@stylistic/eslint-plugin': 4.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/eslint-plugin': 8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/parser': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@vitest/eslint-plugin': 1.1.36(@typescript-eslint/utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ ansis: 3.17.0
+ cac: 6.7.14
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-config-flat-gitignore: 2.1.0(eslint@9.22.0(jiti@2.4.2))
eslint-flat-config-utils: 2.0.1
- eslint-merge-processors: 1.0.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-antfu: 3.0.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-command: 3.0.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-import-x: 4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint-plugin-jsdoc: 50.6.3(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-jsonc: 2.19.1(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2))
+ eslint-merge-processors: 2.0.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-antfu: 3.1.1(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-command: 3.1.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-import-x: 4.6.1(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint-plugin-jsdoc: 50.6.3(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-jsonc: 2.19.1(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-n: 17.16.2(eslint@9.22.0(jiti@2.4.2))
eslint-plugin-no-only-tests: 3.3.0
- eslint-plugin-perfectionist: 4.8.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint-plugin-regexp: 2.7.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-toml: 0.12.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-unicorn: 56.0.1(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-yml: 1.16.0(eslint@9.17.0(jiti@2.4.2))
- eslint-processor-vue-blocks: 1.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))
- globals: 15.14.0
+ eslint-plugin-perfectionist: 4.10.1(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint-plugin-pnpm: 0.1.2(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-regexp: 2.7.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-toml: 0.12.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-unicorn: 57.0.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-vue: 10.0.0(eslint@9.22.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2)))
+ eslint-plugin-yml: 1.17.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))
+ globals: 16.0.0
jsonc-eslint-parser: 2.4.0
- local-pkg: 1.0.0
+ local-pkg: 1.1.1
parse-gitignore: 2.0.0
- picocolors: 1.1.1
toml-eslint-parser: 0.10.0
- vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
- yaml-eslint-parser: 1.2.3
- yargs: 17.7.2
+ vue-eslint-parser: 10.1.1(eslint@9.22.0(jiti@2.4.2))
+ yaml-eslint-parser: 1.3.0
transitivePeerDependencies:
- '@eslint/json'
- '@typescript-eslint/utils'
@@ -4696,8 +5246,6 @@ snapshots:
package-manager-detector: 0.2.9
tinyexec: 0.3.2
- '@antfu/utils@0.7.10': {}
-
'@antfu/utils@8.1.0': {}
'@apidevtools/json-schema-ref-parser@11.9.0':
@@ -4828,30 +5376,6 @@ snapshots:
dependencies:
'@babel/types': 7.26.8
- '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.8)':
- dependencies:
- '@babel/core': 7.26.8
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.8)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.8)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.8)':
- dependencies:
- '@babel/core': 7.26.8
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.8)':
- dependencies:
- '@babel/core': 7.26.8
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.8)':
- dependencies:
- '@babel/core': 7.26.8
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -4913,7 +5437,7 @@ snapshots:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clack/prompts@0.9.1':
+ '@clack/prompts@0.10.0':
dependencies:
'@clack/core': 0.4.1
picocolors: 1.1.1
@@ -4923,6 +5447,22 @@ snapshots:
dependencies:
mime: 3.0.0
+ '@emnapi/core@1.3.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.1
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/wasi-threads@1.0.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@es-joy/jsdoccomment@0.49.0':
dependencies:
comment-parser: 1.4.1
@@ -4941,94 +5481,169 @@ snapshots:
'@esbuild/aix-ppc64@0.24.2':
optional: true
+ '@esbuild/aix-ppc64@0.25.1':
+ optional: true
+
'@esbuild/android-arm64@0.24.2':
optional: true
+ '@esbuild/android-arm64@0.25.1':
+ optional: true
+
'@esbuild/android-arm@0.24.2':
optional: true
+ '@esbuild/android-arm@0.25.1':
+ optional: true
+
'@esbuild/android-x64@0.24.2':
optional: true
+ '@esbuild/android-x64@0.25.1':
+ optional: true
+
'@esbuild/darwin-arm64@0.24.2':
optional: true
+ '@esbuild/darwin-arm64@0.25.1':
+ optional: true
+
'@esbuild/darwin-x64@0.24.2':
optional: true
+ '@esbuild/darwin-x64@0.25.1':
+ optional: true
+
'@esbuild/freebsd-arm64@0.24.2':
optional: true
+ '@esbuild/freebsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/freebsd-x64@0.24.2':
optional: true
+ '@esbuild/freebsd-x64@0.25.1':
+ optional: true
+
'@esbuild/linux-arm64@0.24.2':
optional: true
+ '@esbuild/linux-arm64@0.25.1':
+ optional: true
+
'@esbuild/linux-arm@0.24.2':
optional: true
+ '@esbuild/linux-arm@0.25.1':
+ optional: true
+
'@esbuild/linux-ia32@0.24.2':
optional: true
+ '@esbuild/linux-ia32@0.25.1':
+ optional: true
+
'@esbuild/linux-loong64@0.24.2':
optional: true
+ '@esbuild/linux-loong64@0.25.1':
+ optional: true
+
'@esbuild/linux-mips64el@0.24.2':
optional: true
+ '@esbuild/linux-mips64el@0.25.1':
+ optional: true
+
'@esbuild/linux-ppc64@0.24.2':
optional: true
+ '@esbuild/linux-ppc64@0.25.1':
+ optional: true
+
'@esbuild/linux-riscv64@0.24.2':
optional: true
+ '@esbuild/linux-riscv64@0.25.1':
+ optional: true
+
'@esbuild/linux-s390x@0.24.2':
optional: true
+ '@esbuild/linux-s390x@0.25.1':
+ optional: true
+
'@esbuild/linux-x64@0.24.2':
optional: true
+ '@esbuild/linux-x64@0.25.1':
+ optional: true
+
'@esbuild/netbsd-arm64@0.24.2':
optional: true
+ '@esbuild/netbsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/netbsd-x64@0.24.2':
optional: true
+ '@esbuild/netbsd-x64@0.25.1':
+ optional: true
+
'@esbuild/openbsd-arm64@0.24.2':
optional: true
+ '@esbuild/openbsd-arm64@0.25.1':
+ optional: true
+
'@esbuild/openbsd-x64@0.24.2':
optional: true
+ '@esbuild/openbsd-x64@0.25.1':
+ optional: true
+
'@esbuild/sunos-x64@0.24.2':
optional: true
+ '@esbuild/sunos-x64@0.25.1':
+ optional: true
+
'@esbuild/win32-arm64@0.24.2':
optional: true
+ '@esbuild/win32-arm64@0.25.1':
+ optional: true
+
'@esbuild/win32-ia32@0.24.2':
optional: true
+ '@esbuild/win32-ia32@0.25.1':
+ optional: true
+
'@esbuild/win32-x64@0.24.2':
optional: true
- '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.17.0(jiti@2.4.2))':
+ '@esbuild/win32-x64@0.25.1':
+ optional: true
+
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.22.0(jiti@2.4.2))':
dependencies:
escape-string-regexp: 4.0.0
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
ignore: 5.3.2
- '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.22.0(jiti@2.4.2))':
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/compat@1.2.6(eslint@9.17.0(jiti@2.4.2))':
+ '@eslint/compat@1.2.6(eslint@9.22.0(jiti@2.4.2))':
optionalDependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
'@eslint/config-array@0.19.2':
dependencies:
@@ -5038,24 +5653,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/config-inspector@1.0.0(eslint@9.17.0(jiti@2.4.2))':
+ '@eslint/config-helpers@0.1.0': {}
+
+ '@eslint/config-inspector@1.0.2(eslint@9.22.0(jiti@2.4.2))':
dependencies:
'@nodelib/fs.walk': 3.0.1
- bundle-require: 5.1.0(esbuild@0.24.2)
+ ansis: 3.17.0
+ bundle-require: 5.1.0(esbuild@0.25.1)
cac: 6.7.14
chokidar: 4.0.3
debug: 4.4.0(supports-color@9.4.0)
- esbuild: 0.24.2
- eslint: 9.17.0(jiti@2.4.2)
- fast-glob: 3.3.3
+ esbuild: 0.25.1
+ eslint: 9.22.0(jiti@2.4.2)
find-up: 7.0.0
get-port-please: 3.1.2
- h3: 1.15.0
+ h3: 1.15.1
mlly: 1.7.4
- mrmime: 2.0.0
+ mrmime: 2.0.1
open: 10.1.0
- picocolors: 1.1.1
- ws: 8.18.0
+ tinyglobby: 0.2.12
+ ws: 8.18.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -5065,11 +5682,11 @@ snapshots:
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/core@0.9.1':
+ '@eslint/core@0.12.0':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.2.0':
+ '@eslint/eslintrc@3.3.0':
dependencies:
ajv: 6.12.6
debug: 4.4.0(supports-color@9.4.0)
@@ -5083,11 +5700,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.17.0': {}
+ '@eslint/js@9.22.0': {}
- '@eslint/js@9.20.0': {}
-
- '@eslint/markdown@6.2.2':
+ '@eslint/markdown@6.3.0':
dependencies:
'@eslint/core': 0.10.0
'@eslint/plugin-kit': 0.2.5
@@ -5104,6 +5719,11 @@ snapshots:
'@eslint/core': 0.10.0
levn: 0.4.1
+ '@eslint/plugin-kit@0.2.7':
+ dependencies:
+ '@eslint/core': 0.12.0
+ levn: 0.4.1
+
'@floating-ui/core@1.6.9':
dependencies:
'@floating-ui/utils': 0.2.9
@@ -5115,11 +5735,11 @@ snapshots:
'@floating-ui/utils@0.2.9': {}
- '@floating-ui/vue@1.1.6(vue@3.5.13(typescript@5.7.3))':
+ '@floating-ui/vue@1.1.6(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@floating-ui/dom': 1.6.13
'@floating-ui/utils': 0.2.9
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
+ vue-demi: 0.14.10(vue@3.5.13(tslite@5.7.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -5135,7 +5755,7 @@ snapshots:
'@humanwhocodes/retry@0.3.1': {}
- '@humanwhocodes/retry@0.4.1': {}
+ '@humanwhocodes/retry@0.4.2': {}
'@iconify/collections@1.0.515':
dependencies:
@@ -5156,10 +5776,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@iconify/vue@4.3.0(vue@3.5.13(typescript@5.7.3))':
+ '@iconify/vue@4.3.0(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
'@internationalized/date@3.7.0':
dependencies:
@@ -5229,13 +5849,20 @@ snapshots:
- encoding
- supports-color
- '@netlify/functions@2.8.2':
+ '@napi-rs/wasm-runtime@0.2.7':
dependencies:
- '@netlify/serverless-functions-api': 1.26.1
+ '@emnapi/core': 1.3.1
+ '@emnapi/runtime': 1.3.1
+ '@tybys/wasm-util': 0.9.0
+ optional: true
+
+ '@netlify/functions@3.0.0':
+ dependencies:
+ '@netlify/serverless-functions-api': 1.30.1
'@netlify/node-cookies@0.1.0': {}
- '@netlify/serverless-functions-api@1.26.1':
+ '@netlify/serverless-functions-api@1.30.1':
dependencies:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
@@ -5264,29 +5891,29 @@ snapshots:
'@nodelib/fs.scandir': 4.0.1
fastq: 1.19.0
- '@nuxt/cli@3.21.1(magicast@0.3.5)':
+ '@nuxt/cli@3.22.5(magicast@0.3.5)':
dependencies:
- c12: 2.0.1(magicast@0.3.5)
+ c12: 3.0.2(magicast@0.3.5)
chokidar: 4.0.3
citty: 0.1.6
clipboardy: 4.0.0
consola: 3.4.0
defu: 6.1.4
fuse.js: 7.1.0
- giget: 1.2.4
- h3: 1.15.0
+ giget: 2.0.0
+ h3: 1.15.1
httpxy: 0.1.7
jiti: 2.4.2
listhen: 1.9.0
- nypm: 0.5.2
+ nypm: 0.6.0
ofetch: 1.4.1
- ohash: 1.1.4
- pathe: 2.0.2
+ ohash: 2.0.11
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
+ pkg-types: 2.1.0
scule: 1.3.0
semver: 7.7.1
- std-env: 3.8.0
+ std-env: 3.8.1
tinyexec: 0.3.2
ufo: 1.5.4
transitivePeerDependencies:
@@ -5294,129 +5921,130 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
+ '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
'@nuxt/schema': 3.15.4
execa: 7.2.0
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
transitivePeerDependencies:
- magicast
- supports-color
- '@nuxt/devtools-wizard@1.7.0':
+ '@nuxt/devtools-kit@2.2.1(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
+ dependencies:
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
+ '@nuxt/schema': 3.15.4
+ execa: 9.5.2
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ transitivePeerDependencies:
+ - magicast
+
+ '@nuxt/devtools-wizard@2.2.1':
dependencies:
consola: 3.4.0
diff: 7.0.0
- execa: 7.2.0
- global-directory: 4.0.1
+ execa: 9.5.2
magicast: 0.3.5
- pathe: 1.1.2
- pkg-types: 1.3.1
+ pathe: 2.0.3
+ pkg-types: 2.1.0
prompts: 2.4.2
- rc9: 2.1.2
semver: 7.7.1
- '@nuxt/devtools@1.7.0(rollup@4.34.6)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@nuxt/devtools@2.2.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- '@nuxt/devtools-wizard': 1.7.0
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@vue/devtools-core': 7.6.8(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
- '@vue/devtools-kit': 7.6.8
- birpc: 0.2.19
+ '@nuxt/devtools-kit': 2.2.1(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@nuxt/devtools-wizard': 2.2.1
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
+ '@vue/devtools-core': 7.7.2(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
+ '@vue/devtools-kit': 7.7.2
+ birpc: 2.2.0
consola: 3.4.0
- cronstrue: 2.54.0
destr: 2.0.3
- error-stack-parser-es: 0.1.5
- execa: 7.2.0
- fast-npm-meta: 0.2.2
- flatted: 3.3.2
+ error-stack-parser-es: 1.0.5
+ execa: 9.5.2
+ fast-npm-meta: 0.3.1
get-port-please: 3.1.2
hookable: 5.5.3
image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.9.1
- local-pkg: 0.5.1
+ launch-editor: 2.10.0
+ local-pkg: 1.1.1
magicast: 0.3.5
- nypm: 0.4.1
- ohash: 1.1.4
- pathe: 1.1.2
+ nypm: 0.6.0
+ ohash: 2.0.11
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- rc9: 2.1.2
- scule: 1.3.0
+ pkg-types: 2.1.0
semver: 7.7.1
simple-git: 3.27.0
- sirv: 3.0.0
- tinyglobby: 0.2.10
- unimport: 3.14.6(rollup@4.34.6)
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.34.6)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- vite-plugin-vue-inspector: 5.3.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- which: 3.0.1
- ws: 8.18.0
+ sirv: 3.0.1
+ structured-clone-es: 1.0.0
+ tinyglobby: 0.2.12
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite-plugin-inspect: 11.0.0(@nuxt/kit@3.16.0(magicast@0.3.5))(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ vite-plugin-vue-tracer: 0.1.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
+ which: 5.0.0
+ ws: 8.18.1
transitivePeerDependencies:
- bufferutil
- - rollup
- supports-color
- utf-8-validate
- vue
- '@nuxt/eslint-config@1.0.1(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@nuxt/eslint-config@1.2.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
'@antfu/install-pkg': 1.0.0
- '@clack/prompts': 0.9.1
- '@eslint/js': 9.20.0
- '@nuxt/eslint-plugin': 1.0.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@stylistic/eslint-plugin': 3.1.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/parser': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-config-flat-gitignore: 2.0.0(eslint@9.17.0(jiti@2.4.2))
+ '@clack/prompts': 0.10.0
+ '@eslint/js': 9.22.0
+ '@nuxt/eslint-plugin': 1.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@stylistic/eslint-plugin': 4.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/eslint-plugin': 8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/parser': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-config-flat-gitignore: 2.1.0(eslint@9.22.0(jiti@2.4.2))
eslint-flat-config-utils: 2.0.1
- eslint-merge-processors: 1.0.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-import-x: 4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint-plugin-jsdoc: 50.6.3(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-regexp: 2.7.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-unicorn: 56.0.1(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.4.2))
- eslint-processor-vue-blocks: 1.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))
- globals: 15.14.0
- local-pkg: 1.0.0
- pathe: 2.0.2
- vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
+ eslint-merge-processors: 2.0.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-import-x: 4.6.1(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint-plugin-jsdoc: 50.6.3(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-regexp: 2.7.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-unicorn: 57.0.0(eslint@9.22.0(jiti@2.4.2))
+ eslint-plugin-vue: 10.0.0(eslint@9.22.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2)))
+ eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))
+ globals: 16.0.0
+ local-pkg: 1.1.1
+ pathe: 2.0.3
+ vue-eslint-parser: 10.1.1(eslint@9.22.0(jiti@2.4.2))
transitivePeerDependencies:
- '@vue/compiler-sfc'
- supports-color
- typescript
- '@nuxt/eslint-plugin@1.0.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@nuxt/eslint-plugin@1.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
transitivePeerDependencies:
- supports-color
- typescript
- '@nuxt/eslint@1.0.1(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(magicast@0.3.5)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
+ '@nuxt/eslint@1.2.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(magicast@0.3.5)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
dependencies:
- '@eslint/config-inspector': 1.0.0(eslint@9.17.0(jiti@2.4.2))
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- '@nuxt/eslint-config': 1.0.1(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@nuxt/eslint-plugin': 1.0.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
+ '@eslint/config-inspector': 1.0.2(eslint@9.22.0(jiti@2.4.2))
+ '@nuxt/devtools-kit': 2.2.1(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@nuxt/eslint-config': 1.2.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@nuxt/eslint-plugin': 1.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
chokidar: 4.0.3
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-flat-config-utils: 2.0.1
- eslint-typegen: 1.0.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-typegen: 2.0.0(eslint@9.22.0(jiti@2.4.2))
find-up: 7.0.0
get-port-please: 3.1.2
mlly: 1.7.4
- pathe: 2.0.2
- unimport: 4.1.0
+ pathe: 2.0.3
+ unimport: 4.1.2
transitivePeerDependencies:
- '@vue/compiler-sfc'
- bufferutil
@@ -5427,9 +6055,9 @@ snapshots:
- utf-8-validate
- vite
- '@nuxt/fonts@0.10.3(db0@0.2.3)(ioredis@5.5.0)(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
+ '@nuxt/fonts@0.10.3(db0@0.3.1)(ioredis@5.6.0)(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
dependencies:
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
'@nuxt/kit': 3.15.4(magicast@0.3.5)
chalk: 5.4.1
css-tree: 3.1.0
@@ -5444,11 +6072,11 @@ snapshots:
ohash: 1.1.4
pathe: 1.1.2
sirv: 3.0.0
- tinyglobby: 0.2.10
+ tinyglobby: 0.2.12
ufo: 1.5.4
unifont: 0.1.7
- unplugin: 2.1.2
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.5.0)
+ unplugin: 2.2.0
+ unstorage: 1.14.4(db0@0.3.1)(ioredis@5.6.0)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -5473,13 +6101,13 @@ snapshots:
- uploadthing
- vite
- '@nuxt/icon@1.10.3(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@nuxt/icon@1.10.3(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@iconify/collections': 1.0.515
'@iconify/types': 2.0.0
'@iconify/utils': 2.3.0
- '@iconify/vue': 4.3.0(vue@3.5.13(typescript@5.7.3))
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@iconify/vue': 4.3.0(vue@3.5.13(tslite@5.7.3))
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
'@nuxt/kit': 3.15.4(magicast@0.3.5)
consola: 3.4.0
local-pkg: 0.5.1
@@ -5488,7 +6116,7 @@ snapshots:
pathe: 1.1.2
picomatch: 4.0.2
std-env: 3.8.0
- tinyglobby: 0.2.10
+ tinyglobby: 0.2.12
transitivePeerDependencies:
- magicast
- supports-color
@@ -5521,16 +6149,50 @@ snapshots:
- magicast
- supports-color
+ '@nuxt/kit@3.16.0(magicast@0.3.5)':
+ dependencies:
+ c12: 3.0.2(magicast@0.3.5)
+ consola: 3.4.0
+ defu: 6.1.4
+ destr: 2.0.3
+ errx: 0.1.0
+ exsolve: 1.0.4
+ globby: 14.1.0
+ ignore: 7.0.3
+ jiti: 2.4.2
+ klona: 2.0.6
+ knitwork: 1.2.0
+ mlly: 1.7.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ scule: 1.3.0
+ semver: 7.7.1
+ std-env: 3.8.1
+ ufo: 1.5.4
+ unctx: 2.4.1
+ unimport: 4.1.2
+ untyped: 2.0.0
+ transitivePeerDependencies:
+ - magicast
+
'@nuxt/schema@3.15.4':
dependencies:
consola: 3.4.0
defu: 6.1.4
- pathe: 2.0.2
+ pathe: 2.0.3
std-env: 3.8.0
- '@nuxt/telemetry@2.6.4(magicast@0.3.5)':
+ '@nuxt/schema@3.16.0':
dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
+ consola: 3.4.0
+ defu: 6.1.4
+ pathe: 2.0.3
+ std-env: 3.8.1
+
+ '@nuxt/telemetry@2.6.5(magicast@0.3.5)':
+ dependencies:
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
citty: 0.1.6
consola: 3.4.0
destr: 2.0.3
@@ -5540,30 +6202,28 @@ snapshots:
ofetch: 1.4.1
package-manager-detector: 0.2.9
parse-git-config: 3.0.0
- pathe: 2.0.2
+ pathe: 2.0.3
rc9: 2.1.2
- std-env: 3.8.0
+ std-env: 3.8.1
transitivePeerDependencies:
- magicast
- - supports-color
- '@nuxt/ui@3.0.0-alpha.12(@babel/parser@7.26.8)(change-case@5.4.4)(db0@0.2.3)(embla-carousel@8.5.2)(ioredis@5.5.0)(magicast@0.3.5)(radix-vue@1.9.13(vue@3.5.13(typescript@5.7.3)))(rollup@4.34.6)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@nuxt/ui@3.0.0-beta.3(@babel/parser@7.26.8)(change-case@5.4.4)(db0@0.3.1)(embla-carousel@8.5.2)(ioredis@5.6.0)(magicast@0.3.5)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@iconify/vue': 4.3.0(vue@3.5.13(typescript@5.7.3))
+ '@iconify/vue': 4.3.0(vue@3.5.13(tslite@5.7.3))
'@internationalized/date': 3.7.0
'@internationalized/number': 3.6.0
- '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- '@nuxt/fonts': 0.10.3(db0@0.2.3)(ioredis@5.5.0)(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- '@nuxt/icon': 1.10.3(magicast@0.3.5)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
+ '@nuxt/fonts': 0.10.3(db0@0.3.1)(ioredis@5.6.0)(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@nuxt/icon': 1.10.3(magicast@0.3.5)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
'@nuxt/kit': 3.15.4(magicast@0.3.5)
'@nuxt/schema': 3.15.4
'@nuxtjs/color-mode': 3.5.2(magicast@0.3.5)
- '@tailwindcss/postcss': 4.0.0
- '@tailwindcss/vite': 4.0.0(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- '@tanstack/vue-table': 8.20.5(vue@3.5.13(typescript@5.7.3))
- '@unhead/vue': 1.11.18(vue@3.5.13(typescript@5.7.3))
- '@vueuse/core': 12.5.0(typescript@5.7.3)
- '@vueuse/integrations': 12.5.0(change-case@5.4.4)(fuse.js@7.1.0)(typescript@5.7.3)
+ '@tailwindcss/postcss': 4.0.12
+ '@tailwindcss/vite': 4.0.12(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ '@tanstack/vue-table': 8.21.2(vue@3.5.13(tslite@5.7.3))
+ '@unhead/vue': 1.11.20(vue@3.5.13(tslite@5.7.3))
+ '@vueuse/core': 12.8.2(tslite@5.7.3)
+ '@vueuse/integrations': 12.8.2(change-case@5.4.4)(fuse.js@7.1.0)(tslite@5.7.3)
colortranslator: 4.1.0
consola: 3.4.0
defu: 6.1.4
@@ -5572,26 +6232,24 @@ snapshots:
embla-carousel-autoplay: 8.5.2(embla-carousel@8.5.2)
embla-carousel-class-names: 8.5.2(embla-carousel@8.5.2)
embla-carousel-fade: 8.5.2(embla-carousel@8.5.2)
- embla-carousel-vue: 8.5.2(vue@3.5.13(typescript@5.7.3))
+ embla-carousel-vue: 8.5.2(vue@3.5.13(tslite@5.7.3))
embla-carousel-wheel-gestures: 8.0.1(embla-carousel@8.5.2)
fuse.js: 7.1.0
- get-port-please: 3.1.2
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
- ohash: 1.1.4
- pathe: 2.0.2
- reka-ui: 1.0.0-alpha.8(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))
+ ohash: 2.0.11
+ pathe: 2.0.3
+ reka-ui: 2.0.2(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3))
scule: 1.3.0
- sirv: 3.0.0
- tailwind-variants: 0.3.1(tailwindcss@4.0.0)
- tailwindcss: 4.0.0
- tinyglobby: 0.2.10
- typescript: 5.7.3
- unplugin: 2.1.2
- unplugin-auto-import: 19.0.0(@nuxt/kit@3.15.4(magicast@0.3.5))(@vueuse/core@12.5.0(typescript@5.7.3))(rollup@4.34.6)
- unplugin-vue-components: 28.0.0(@babel/parser@7.26.8)(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.34.6)(vue@3.5.13(typescript@5.7.3))
- vaul-vue: 0.2.1(radix-vue@1.9.13(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
+ tailwind-variants: 0.3.1(tailwindcss@4.0.12)
+ tailwindcss: 4.0.12
+ tinyglobby: 0.2.12
+ typescript: tslite@5.7.3
+ unplugin: 2.2.0
+ unplugin-auto-import: 19.1.1(@nuxt/kit@3.15.4(magicast@0.3.5))(@vueuse/core@12.8.2(tslite@5.7.3))
+ unplugin-vue-components: 28.4.1(@babel/parser@7.26.8)(@nuxt/kit@3.15.4(magicast@0.3.5))(vue@3.5.13(tslite@5.7.3))
+ vaul-vue: 0.3.0(reka-ui@2.0.2(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3)))(vue@3.5.13(tslite@5.7.3))
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -5623,8 +6281,6 @@ snapshots:
- magicast
- nprogress
- qrcode
- - radix-vue
- - rollup
- sortablejs
- supports-color
- universal-cookie
@@ -5632,39 +6288,40 @@ snapshots:
- vite
- vue
- '@nuxt/vite-builder@3.15.4(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.2))(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))(yaml@2.7.0)':
+ '@nuxt/vite-builder@3.16.0(@types/node@22.13.1)(eslint@9.22.0(jiti@2.4.2))(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3))(yaml@2.7.0)':
dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@rollup/plugin-replace': 6.0.2(rollup@4.34.6)
- '@vitejs/plugin-vue': 5.2.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
- '@vitejs/plugin-vue-jsx': 4.1.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
- autoprefixer: 10.4.20(postcss@8.5.1)
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.35.0)
+ '@vitejs/plugin-vue': 5.2.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
+ autoprefixer: 10.4.20(postcss@8.5.3)
consola: 3.4.0
- cssnano: 7.0.6(postcss@8.5.1)
+ cssnano: 7.0.6(postcss@8.5.3)
defu: 6.1.4
- esbuild: 0.24.2
+ esbuild: 0.25.1
escape-string-regexp: 5.0.0
+ exsolve: 1.0.4
externality: 1.0.2
get-port-please: 3.1.2
- h3: 1.15.0
+ h3: 1.15.1
jiti: 2.4.2
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
- ohash: 1.1.4
- pathe: 2.0.2
+ ohash: 2.0.11
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
- postcss: 8.5.1
- rollup-plugin-visualizer: 5.14.0(rollup@4.34.6)
- std-env: 3.8.0
+ pkg-types: 2.1.0
+ postcss: 8.5.3
+ rollup-plugin-visualizer: 5.14.0(rollup@4.35.0)
+ std-env: 3.8.1
ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 2.1.2
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vite-node: 3.0.5(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.7.3)
+ unenv: 2.0.0-rc.14
+ unplugin: 2.2.0
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite-node: 3.0.8(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite-plugin-checker: 0.9.0(eslint@9.22.0(jiti@2.4.2))(optionator@0.9.4)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ vue: 3.5.13(tslite@5.7.3)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -5701,6 +6358,44 @@ snapshots:
- magicast
- supports-color
+ '@oxc-parser/binding-darwin-arm64@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-darwin-x64@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm-gnueabihf@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-gnu@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-linux-arm64-musl@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-gnu@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-linux-x64-musl@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-wasm32-wasi@0.56.5':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.7
+ optional: true
+
+ '@oxc-parser/binding-win32-arm64-msvc@0.56.5':
+ optional: true
+
+ '@oxc-parser/binding-win32-x64-msvc@0.56.5':
+ optional: true
+
+ '@oxc-parser/wasm@0.56.5':
+ dependencies:
+ '@oxc-project/types': 0.56.5
+
+ '@oxc-project/types@0.56.5': {}
+
'@parcel/watcher-android-arm64@2.5.1':
optional: true
@@ -5773,6 +6468,18 @@ snapshots:
'@polka/url@1.0.0-next.28': {}
+ '@poppinss/colors@4.1.4':
+ dependencies:
+ kleur: 4.1.5
+
+ '@poppinss/dumper@0.6.3':
+ dependencies:
+ '@poppinss/colors': 4.1.4
+ '@sindresorhus/is': 7.0.1
+ supports-color: 10.0.0
+
+ '@poppinss/exception@1.2.1': {}
+
'@redocly/ajv@8.11.2':
dependencies:
fast-deep-equal: 3.1.3
@@ -5796,13 +6503,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-alias@5.1.1(rollup@4.34.6)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.35.0)':
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-commonjs@28.0.2(rollup@4.34.6)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.3(picomatch@4.0.2)
@@ -5810,118 +6517,183 @@ snapshots:
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-inject@5.0.5(rollup@4.34.6)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
estree-walker: 2.0.2
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-json@6.1.0(rollup@4.34.6)':
+ '@rollup/plugin-json@6.1.0(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-node-resolve@15.3.1(rollup@4.34.6)':
+ '@rollup/plugin-node-resolve@16.0.0(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-replace@6.0.2(rollup@4.34.6)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.35.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/plugin-terser@0.4.4(rollup@4.34.6)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.35.0)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.38.1
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
- '@rollup/pluginutils@5.1.4(rollup@4.34.6)':
+ '@rollup/pluginutils@5.1.4(rollup@4.35.0)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
'@rollup/rollup-android-arm-eabi@4.34.6':
optional: true
+ '@rollup/rollup-android-arm-eabi@4.35.0':
+ optional: true
+
'@rollup/rollup-android-arm64@4.34.6':
optional: true
+ '@rollup/rollup-android-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.34.6':
optional: true
+ '@rollup/rollup-darwin-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.34.6':
optional: true
+ '@rollup/rollup-darwin-x64@4.35.0':
+ optional: true
+
'@rollup/rollup-freebsd-arm64@4.34.6':
optional: true
+ '@rollup/rollup-freebsd-arm64@4.35.0':
+ optional: true
+
'@rollup/rollup-freebsd-x64@4.34.6':
optional: true
+ '@rollup/rollup-freebsd-x64@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.34.6':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.34.6':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.34.6':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-loongarch64-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-loongarch64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.34.6':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.35.0':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.34.6':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.34.6':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.34.6':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.35.0':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.34.6':
optional: true
+ '@rollup/rollup-win32-x64-msvc@4.35.0':
+ optional: true
+
+ '@sec-ant/readable-stream@0.4.1': {}
+
+ '@sindresorhus/is@7.0.1': {}
+
'@sindresorhus/merge-streams@2.3.0': {}
- '@stylistic/eslint-plugin@3.1.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@sindresorhus/merge-streams@4.0.0': {}
+
+ '@speed-highlight/core@1.2.7': {}
+
+ '@stylistic/eslint-plugin@4.2.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.23.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-visitor-keys: 4.2.0
espree: 10.3.0
estraverse: 5.3.0
@@ -5934,157 +6706,162 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@tailwindcss/node@4.0.4':
+ '@tailwindcss/node@4.0.12':
dependencies:
enhanced-resolve: 5.18.1
jiti: 2.4.2
- tailwindcss: 4.0.4
+ tailwindcss: 4.0.12
- '@tailwindcss/oxide-android-arm64@4.0.4':
+ '@tailwindcss/oxide-android-arm64@4.0.12':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.0.4':
+ '@tailwindcss/oxide-darwin-arm64@4.0.12':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.0.4':
+ '@tailwindcss/oxide-darwin-x64@4.0.12':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.0.4':
+ '@tailwindcss/oxide-freebsd-x64@4.0.12':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.4':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.0.12':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.0.4':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.0.12':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.0.4':
+ '@tailwindcss/oxide-linux-arm64-musl@4.0.12':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.0.4':
+ '@tailwindcss/oxide-linux-x64-gnu@4.0.12':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.0.4':
+ '@tailwindcss/oxide-linux-x64-musl@4.0.12':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.0.4':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.0.12':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.0.4':
+ '@tailwindcss/oxide-win32-x64-msvc@4.0.12':
optional: true
- '@tailwindcss/oxide@4.0.4':
+ '@tailwindcss/oxide@4.0.12':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.0.4
- '@tailwindcss/oxide-darwin-arm64': 4.0.4
- '@tailwindcss/oxide-darwin-x64': 4.0.4
- '@tailwindcss/oxide-freebsd-x64': 4.0.4
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.4
- '@tailwindcss/oxide-linux-arm64-gnu': 4.0.4
- '@tailwindcss/oxide-linux-arm64-musl': 4.0.4
- '@tailwindcss/oxide-linux-x64-gnu': 4.0.4
- '@tailwindcss/oxide-linux-x64-musl': 4.0.4
- '@tailwindcss/oxide-win32-arm64-msvc': 4.0.4
- '@tailwindcss/oxide-win32-x64-msvc': 4.0.4
+ '@tailwindcss/oxide-android-arm64': 4.0.12
+ '@tailwindcss/oxide-darwin-arm64': 4.0.12
+ '@tailwindcss/oxide-darwin-x64': 4.0.12
+ '@tailwindcss/oxide-freebsd-x64': 4.0.12
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.0.12
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.0.12
+ '@tailwindcss/oxide-linux-arm64-musl': 4.0.12
+ '@tailwindcss/oxide-linux-x64-gnu': 4.0.12
+ '@tailwindcss/oxide-linux-x64-musl': 4.0.12
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.0.12
+ '@tailwindcss/oxide-win32-x64-msvc': 4.0.12
- '@tailwindcss/postcss@4.0.0':
+ '@tailwindcss/postcss@4.0.12':
dependencies:
'@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.0.4
- '@tailwindcss/oxide': 4.0.4
+ '@tailwindcss/node': 4.0.12
+ '@tailwindcss/oxide': 4.0.12
lightningcss: 1.29.1
postcss: 8.5.1
- tailwindcss: 4.0.0
+ tailwindcss: 4.0.12
- '@tailwindcss/vite@4.0.0(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
+ '@tailwindcss/vite@4.0.12(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))':
dependencies:
- '@tailwindcss/node': 4.0.4
- '@tailwindcss/oxide': 4.0.4
+ '@tailwindcss/node': 4.0.12
+ '@tailwindcss/oxide': 4.0.12
lightningcss: 1.29.1
- tailwindcss: 4.0.0
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ tailwindcss: 4.0.12
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- '@tanstack/table-core@8.20.5': {}
+ '@tanstack/table-core@8.21.2': {}
'@tanstack/virtual-core@3.13.0': {}
- '@tanstack/vue-table@8.20.5(vue@3.5.13(typescript@5.7.3))':
+ '@tanstack/vue-table@8.21.2(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@tanstack/table-core': 8.20.5
- vue: 3.5.13(typescript@5.7.3)
+ '@tanstack/table-core': 8.21.2
+ vue: 3.5.13(tslite@5.7.3)
- '@tanstack/vue-virtual@3.13.0(vue@3.5.13(typescript@5.7.3))':
+ '@tanstack/vue-virtual@3.13.0(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@tanstack/virtual-core': 3.13.0
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
- '@tauri-apps/api@2.2.0': {}
+ '@tauri-apps/api@2.3.0': {}
- '@tauri-apps/cli-darwin-arm64@2.2.7':
+ '@tauri-apps/cli-darwin-arm64@2.3.1':
optional: true
- '@tauri-apps/cli-darwin-x64@2.2.7':
+ '@tauri-apps/cli-darwin-x64@2.3.1':
optional: true
- '@tauri-apps/cli-linux-arm-gnueabihf@2.2.7':
+ '@tauri-apps/cli-linux-arm-gnueabihf@2.3.1':
optional: true
- '@tauri-apps/cli-linux-arm64-gnu@2.2.7':
+ '@tauri-apps/cli-linux-arm64-gnu@2.3.1':
optional: true
- '@tauri-apps/cli-linux-arm64-musl@2.2.7':
+ '@tauri-apps/cli-linux-arm64-musl@2.3.1':
optional: true
- '@tauri-apps/cli-linux-x64-gnu@2.2.7':
+ '@tauri-apps/cli-linux-x64-gnu@2.3.1':
optional: true
- '@tauri-apps/cli-linux-x64-musl@2.2.7':
+ '@tauri-apps/cli-linux-x64-musl@2.3.1':
optional: true
- '@tauri-apps/cli-win32-arm64-msvc@2.2.7':
+ '@tauri-apps/cli-win32-arm64-msvc@2.3.1':
optional: true
- '@tauri-apps/cli-win32-ia32-msvc@2.2.7':
+ '@tauri-apps/cli-win32-ia32-msvc@2.3.1':
optional: true
- '@tauri-apps/cli-win32-x64-msvc@2.2.7':
+ '@tauri-apps/cli-win32-x64-msvc@2.3.1':
optional: true
- '@tauri-apps/cli@2.2.7':
+ '@tauri-apps/cli@2.3.1':
optionalDependencies:
- '@tauri-apps/cli-darwin-arm64': 2.2.7
- '@tauri-apps/cli-darwin-x64': 2.2.7
- '@tauri-apps/cli-linux-arm-gnueabihf': 2.2.7
- '@tauri-apps/cli-linux-arm64-gnu': 2.2.7
- '@tauri-apps/cli-linux-arm64-musl': 2.2.7
- '@tauri-apps/cli-linux-x64-gnu': 2.2.7
- '@tauri-apps/cli-linux-x64-musl': 2.2.7
- '@tauri-apps/cli-win32-arm64-msvc': 2.2.7
- '@tauri-apps/cli-win32-ia32-msvc': 2.2.7
- '@tauri-apps/cli-win32-x64-msvc': 2.2.7
+ '@tauri-apps/cli-darwin-arm64': 2.3.1
+ '@tauri-apps/cli-darwin-x64': 2.3.1
+ '@tauri-apps/cli-linux-arm-gnueabihf': 2.3.1
+ '@tauri-apps/cli-linux-arm64-gnu': 2.3.1
+ '@tauri-apps/cli-linux-arm64-musl': 2.3.1
+ '@tauri-apps/cli-linux-x64-gnu': 2.3.1
+ '@tauri-apps/cli-linux-x64-musl': 2.3.1
+ '@tauri-apps/cli-win32-arm64-msvc': 2.3.1
+ '@tauri-apps/cli-win32-ia32-msvc': 2.3.1
+ '@tauri-apps/cli-win32-x64-msvc': 2.3.1
'@tauri-apps/plugin-fs@2.2.0':
dependencies:
- '@tauri-apps/api': 2.2.0
+ '@tauri-apps/api': 2.3.0
'@tauri-apps/plugin-notification@2.2.1':
dependencies:
- '@tauri-apps/api': 2.2.0
+ '@tauri-apps/api': 2.3.0
'@tauri-apps/plugin-os@2.2.0':
dependencies:
- '@tauri-apps/api': 2.2.0
+ '@tauri-apps/api': 2.3.0
'@tauri-apps/plugin-shell@2.2.0':
dependencies:
- '@tauri-apps/api': 2.2.0
+ '@tauri-apps/api': 2.3.0
'@tauri-apps/plugin-store@2.2.0':
dependencies:
- '@tauri-apps/api': 2.2.0
+ '@tauri-apps/api': 2.3.0
'@trysound/sax@0.2.0': {}
+ '@tybys/wasm-util@0.9.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/debug@4.1.12':
dependencies:
'@types/ms': 2.1.0
@@ -6126,32 +6903,34 @@ snapshots:
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@types/web-bluetooth@0.0.21': {}
+
+ '@typescript-eslint/eslint-plugin@8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/scope-manager': 8.23.0
- '@typescript-eslint/type-utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.23.0
- eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/type-utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.26.0
+ eslint: 9.22.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ ts-api-utils: 2.0.1(tslite@5.7.3)
+ typescript: tslite@5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.23.0
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.23.0
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0(tslite@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.26.0
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.7.3
+ eslint: 9.22.0(jiti@2.4.2)
+ typescript: tslite@5.7.3
transitivePeerDependencies:
- supports-color
@@ -6160,20 +6939,27 @@ snapshots:
'@typescript-eslint/types': 8.23.0
'@typescript-eslint/visitor-keys': 8.23.0
- '@typescript-eslint/type-utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/scope-manager@8.26.0':
dependencies:
- '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.7.3)
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
+
+ '@typescript-eslint/type-utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.26.0(tslite@5.7.3)
+ '@typescript-eslint/utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ eslint: 9.22.0(jiti@2.4.2)
+ ts-api-utils: 2.0.1(tslite@5.7.3)
+ typescript: tslite@5.7.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/types@8.23.0': {}
- '@typescript-eslint/typescript-estree@8.23.0(typescript@5.7.3)':
+ '@typescript-eslint/types@8.26.0': {}
+
+ '@typescript-eslint/typescript-estree@8.23.0(tslite@5.7.3)':
dependencies:
'@typescript-eslint/types': 8.23.0
'@typescript-eslint/visitor-keys': 8.23.0
@@ -6182,19 +6968,44 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.7.1
- ts-api-utils: 2.0.1(typescript@5.7.3)
- typescript: 5.7.3
+ ts-api-utils: 2.0.1(tslite@5.7.3)
+ typescript: tslite@5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/typescript-estree@8.26.0(tslite@5.7.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
+ debug: 4.4.0(supports-color@9.4.0)
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.1
+ ts-api-utils: 2.0.1(tslite@5.7.3)
+ typescript: tslite@5.7.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.23.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
'@typescript-eslint/scope-manager': 8.23.0
'@typescript-eslint/types': 8.23.0
- '@typescript-eslint/typescript-estree': 8.23.0(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.7.3
+ '@typescript-eslint/typescript-estree': 8.23.0(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
+ typescript: tslite@5.7.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
+ typescript: tslite@5.7.3
transitivePeerDependencies:
- supports-color
@@ -6203,44 +7014,50 @@ snapshots:
'@typescript-eslint/types': 8.23.0
eslint-visitor-keys: 4.2.0
- '@unhead/dom@1.11.18':
+ '@typescript-eslint/visitor-keys@8.26.0':
dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
+ '@typescript-eslint/types': 8.26.0
+ eslint-visitor-keys: 4.2.0
- '@unhead/schema@1.11.18':
+ '@unhead/dom@1.11.20':
+ dependencies:
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
+
+ '@unhead/schema@1.11.20':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.11.18':
+ '@unhead/shared@1.11.20':
dependencies:
- '@unhead/schema': 1.11.18
+ '@unhead/schema': 1.11.20
packrup: 0.1.2
- '@unhead/ssr@1.11.18':
+ '@unhead/vue@1.11.20(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
-
- '@unhead/vue@1.11.18(vue@3.5.13(typescript@5.7.3))':
- dependencies:
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
hookable: 5.5.3
- unhead: 1.11.18
- vue: 3.5.13(typescript@5.7.3)
+ unhead: 1.11.20
+ vue: 3.5.13(tslite@5.7.3)
- '@vercel/nft@0.27.10(rollup@4.34.6)':
+ '@unhead/vue@2.0.0-rc.9(vue@3.5.13(tslite@5.7.3))':
+ dependencies:
+ hookable: 5.5.3
+ unhead: 2.0.0-rc.9
+ vue: 3.5.13(tslite@5.7.3)
+
+ '@vercel/nft@0.29.2(rollup@4.35.0)':
dependencies:
'@mapbox/node-pre-gyp': 2.0.0
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
acorn: 8.14.0
acorn-import-attributes: 1.9.5(acorn@8.14.0)
async-sema: 3.1.1
bindings: 1.5.0
estree-walker: 2.0.2
- glob: 7.2.3
+ glob: 10.4.5
graceful-fs: 4.2.11
node-gyp-build: 4.8.4
picomatch: 4.0.2
@@ -6250,38 +7067,38 @@ snapshots:
- rollup
- supports-color
- '@vitejs/plugin-vue-jsx@4.1.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@babel/core': 7.26.8
'@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.8)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.8)
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.7.3)
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@vitejs/plugin-vue@5.2.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vue: 3.5.13(typescript@5.7.3)
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vue: 3.5.13(tslite@5.7.3)
- '@vitest/eslint-plugin@1.1.26(@typescript-eslint/utils@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)':
+ '@vitest/eslint-plugin@1.1.36(@typescript-eslint/utils@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)':
dependencies:
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
optionalDependencies:
- typescript: 5.7.3
+ typescript: tslite@5.7.3
- '@vue-macros/common@1.16.1(vue@3.5.13(typescript@5.7.3))':
+ '@vue-macros/common@1.16.1(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@vue/compiler-sfc': 3.5.13
ast-kit: 1.4.0
local-pkg: 1.0.0
magic-string-ast: 0.7.0
- pathe: 2.0.2
+ pathe: 2.0.3
picomatch: 4.0.2
optionalDependencies:
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
'@vue/babel-helper-vue-transform-on@1.2.5': {}
@@ -6345,21 +7162,21 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-core@7.6.8(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))':
+ '@vue/devtools-core@7.7.2(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@vue/devtools-kit': 7.6.8
- '@vue/devtools-shared': 7.7.1
+ '@vue/devtools-kit': 7.7.2
+ '@vue/devtools-shared': 7.7.2
mitt: 3.0.1
nanoid: 5.0.9
- pathe: 1.1.2
- vite-hot-client: 0.2.4(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- vue: 3.5.13(typescript@5.7.3)
+ pathe: 2.0.3
+ vite-hot-client: 0.2.4(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.6.8':
+ '@vue/devtools-kit@7.7.2':
dependencies:
- '@vue/devtools-shared': 7.7.1
+ '@vue/devtools-shared': 7.7.2
birpc: 0.2.19
hookable: 5.5.3
mitt: 3.0.1
@@ -6367,7 +7184,7 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.2
- '@vue/devtools-shared@7.7.1':
+ '@vue/devtools-shared@7.7.2':
dependencies:
rfdc: 1.4.1
@@ -6387,38 +7204,45 @@ snapshots:
'@vue/shared': 3.5.13
csstype: 3.1.3
- '@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.7.3))':
+ '@vue/server-renderer@3.5.13(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
'@vue/shared@3.5.13': {}
- '@vueuse/core@10.11.1(vue@3.5.13(typescript@5.7.3))':
+ '@vueuse/core@10.11.1(vue@3.5.13(tslite@5.7.3))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.11.1
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.7.3))
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
+ '@vueuse/shared': 10.11.1(vue@3.5.13(tslite@5.7.3))
+ vue-demi: 0.14.10(vue@3.5.13(tslite@5.7.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/core@12.5.0(typescript@5.7.3)':
+ '@vueuse/core@12.8.2(tslite@5.7.3)':
dependencies:
- '@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 12.5.0
- '@vueuse/shared': 12.5.0(typescript@5.7.3)
- vue: 3.5.13(typescript@5.7.3)
+ '@types/web-bluetooth': 0.0.21
+ '@vueuse/metadata': 12.8.2
+ '@vueuse/shared': 12.8.2(tslite@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- typescript
- '@vueuse/integrations@12.5.0(change-case@5.4.4)(fuse.js@7.1.0)(typescript@5.7.3)':
+ '@vueuse/core@13.0.0(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@vueuse/core': 12.5.0(typescript@5.7.3)
- '@vueuse/shared': 12.5.0(typescript@5.7.3)
- vue: 3.5.13(typescript@5.7.3)
+ '@types/web-bluetooth': 0.0.21
+ '@vueuse/metadata': 13.0.0
+ '@vueuse/shared': 13.0.0(vue@3.5.13(tslite@5.7.3))
+ vue: 3.5.13(tslite@5.7.3)
+
+ '@vueuse/integrations@12.8.2(change-case@5.4.4)(fuse.js@7.1.0)(tslite@5.7.3)':
+ dependencies:
+ '@vueuse/core': 12.8.2(tslite@5.7.3)
+ '@vueuse/shared': 12.8.2(tslite@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
optionalDependencies:
change-case: 5.4.4
fuse.js: 7.1.0
@@ -6427,34 +7251,44 @@ snapshots:
'@vueuse/metadata@10.11.1': {}
- '@vueuse/metadata@12.5.0': {}
+ '@vueuse/metadata@12.8.2': {}
- '@vueuse/nuxt@12.5.0(magicast@0.3.5)(nuxt@3.15.4(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.2.3)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.5.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0))(typescript@5.7.3)':
+ '@vueuse/metadata@13.0.0': {}
+
+ '@vueuse/nuxt@13.0.0(magicast@0.3.5)(nuxt@3.16.0(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.3.1)(eslint@9.22.0(jiti@2.4.2))(ioredis@5.6.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))':
dependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@vueuse/core': 12.5.0(typescript@5.7.3)
- '@vueuse/metadata': 12.5.0
- local-pkg: 1.0.0
- nuxt: 3.15.4(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.2.3)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.5.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0)
- vue: 3.5.13(typescript@5.7.3)
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
+ '@vueuse/core': 13.0.0(vue@3.5.13(tslite@5.7.3))
+ '@vueuse/metadata': 13.0.0
+ local-pkg: 1.1.1
+ nuxt: 3.16.0(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.3.1)(eslint@9.22.0(jiti@2.4.2))(ioredis@5.6.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- magicast
- - supports-color
- - typescript
- '@vueuse/shared@10.11.1(vue@3.5.13(typescript@5.7.3))':
+ '@vueuse/shared@10.11.1(vue@3.5.13(tslite@5.7.3))':
dependencies:
- vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.3))
+ vue-demi: 0.14.10(vue@3.5.13(tslite@5.7.3))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/shared@12.5.0(typescript@5.7.3)':
+ '@vueuse/shared@12.5.0(tslite@5.7.3)':
dependencies:
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- typescript
+ '@vueuse/shared@12.8.2(tslite@5.7.3)':
+ dependencies:
+ vue: 3.5.13(tslite@5.7.3)
+ transitivePeerDependencies:
+ - typescript
+
+ '@vueuse/shared@13.0.0(vue@3.5.13(tslite@5.7.3))':
+ dependencies:
+ vue: 3.5.13(tslite@5.7.3)
+
abbrev@3.0.0: {}
abort-controller@3.0.0:
@@ -6482,10 +7316,6 @@ snapshots:
ansi-colors@4.1.3: {}
- ansi-escapes@4.3.2:
- dependencies:
- type-fest: 0.21.3
-
ansi-regex@5.0.1: {}
ansi-regex@6.1.0: {}
@@ -6496,6 +7326,8 @@ snapshots:
ansi-styles@6.2.1: {}
+ ansis@3.17.0: {}
+
anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
@@ -6534,7 +7366,7 @@ snapshots:
ast-kit@1.4.0:
dependencies:
'@babel/parser': 7.26.8
- pathe: 2.0.2
+ pathe: 2.0.3
ast-walker-scope@0.6.2:
dependencies:
@@ -6545,14 +7377,14 @@ snapshots:
async@3.2.6: {}
- autoprefixer@10.4.20(postcss@8.5.1):
+ autoprefixer@10.4.20(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
caniuse-lite: 1.0.30001698
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
b4a@1.6.7: {}
@@ -6572,6 +7404,8 @@ snapshots:
birpc@0.2.19: {}
+ birpc@2.2.0: {}
+
blob-to-buffer@1.2.9: {}
boolbase@1.0.0: {}
@@ -6609,9 +7443,9 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.3.0: {}
+ builtin-modules@4.0.0: {}
- bumpp@10.0.2(magicast@0.3.5):
+ bumpp@10.0.3(magicast@0.3.5):
dependencies:
args-tokenizer: 0.3.0
c12: 2.0.1(magicast@0.3.5)
@@ -6631,9 +7465,9 @@ snapshots:
dependencies:
run-applescript: 7.0.0
- bundle-require@5.1.0(esbuild@0.24.2):
+ bundle-require@5.1.0(esbuild@0.25.1):
dependencies:
- esbuild: 0.24.2
+ esbuild: 0.25.1
load-tsconfig: 0.2.5
c12@2.0.1(magicast@0.3.5):
@@ -6653,6 +7487,23 @@ snapshots:
optionalDependencies:
magicast: 0.3.5
+ c12@3.0.2(magicast@0.3.5):
+ dependencies:
+ chokidar: 4.0.3
+ confbox: 0.1.8
+ defu: 6.1.4
+ dotenv: 16.4.7
+ exsolve: 1.0.4
+ giget: 2.0.0
+ jiti: 2.4.2
+ ohash: 2.0.11
+ pathe: 2.0.3
+ perfect-debounce: 1.0.0
+ pkg-types: 2.1.0
+ rc9: 2.1.2
+ optionalDependencies:
+ magicast: 0.3.5
+
cac@6.7.14: {}
callsites@3.1.0: {}
@@ -6741,8 +7592,6 @@ snapshots:
commander@7.2.0: {}
- commander@8.3.0: {}
-
comment-parser@1.4.1: {}
commondir@1.0.1: {}
@@ -6761,12 +7610,18 @@ snapshots:
confbox@0.1.8: {}
+ confbox@0.2.1: {}
+
consola@3.4.0: {}
convert-source-map@2.0.0: {}
cookie-es@1.2.2: {}
+ cookie-es@2.0.0: {}
+
+ cookie@1.0.2: {}
+
copy-anything@3.0.5:
dependencies:
is-what: 4.1.16
@@ -6786,8 +7641,6 @@ snapshots:
croner@9.0.0: {}
- cronstrue@2.54.0: {}
-
cross-fetch@3.2.0:
dependencies:
node-fetch: 2.7.0
@@ -6804,9 +7657,13 @@ snapshots:
dependencies:
uncrypto: 0.1.3
- css-declaration-sorter@7.2.0(postcss@8.5.1):
+ crossws@0.3.4:
dependencies:
- postcss: 8.5.1
+ uncrypto: 0.1.3
+
+ css-declaration-sorter@7.2.0(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
css-select@5.1.0:
dependencies:
@@ -6835,49 +7692,49 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.6(postcss@8.5.1):
+ cssnano-preset-default@7.0.6(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- css-declaration-sorter: 7.2.0(postcss@8.5.1)
- cssnano-utils: 5.0.0(postcss@8.5.1)
- postcss: 8.5.1
- postcss-calc: 10.1.1(postcss@8.5.1)
- postcss-colormin: 7.0.2(postcss@8.5.1)
- postcss-convert-values: 7.0.4(postcss@8.5.1)
- postcss-discard-comments: 7.0.3(postcss@8.5.1)
- postcss-discard-duplicates: 7.0.1(postcss@8.5.1)
- postcss-discard-empty: 7.0.0(postcss@8.5.1)
- postcss-discard-overridden: 7.0.0(postcss@8.5.1)
- postcss-merge-longhand: 7.0.4(postcss@8.5.1)
- postcss-merge-rules: 7.0.4(postcss@8.5.1)
- postcss-minify-font-values: 7.0.0(postcss@8.5.1)
- postcss-minify-gradients: 7.0.0(postcss@8.5.1)
- postcss-minify-params: 7.0.2(postcss@8.5.1)
- postcss-minify-selectors: 7.0.4(postcss@8.5.1)
- postcss-normalize-charset: 7.0.0(postcss@8.5.1)
- postcss-normalize-display-values: 7.0.0(postcss@8.5.1)
- postcss-normalize-positions: 7.0.0(postcss@8.5.1)
- postcss-normalize-repeat-style: 7.0.0(postcss@8.5.1)
- postcss-normalize-string: 7.0.0(postcss@8.5.1)
- postcss-normalize-timing-functions: 7.0.0(postcss@8.5.1)
- postcss-normalize-unicode: 7.0.2(postcss@8.5.1)
- postcss-normalize-url: 7.0.0(postcss@8.5.1)
- postcss-normalize-whitespace: 7.0.0(postcss@8.5.1)
- postcss-ordered-values: 7.0.1(postcss@8.5.1)
- postcss-reduce-initial: 7.0.2(postcss@8.5.1)
- postcss-reduce-transforms: 7.0.0(postcss@8.5.1)
- postcss-svgo: 7.0.1(postcss@8.5.1)
- postcss-unique-selectors: 7.0.3(postcss@8.5.1)
+ css-declaration-sorter: 7.2.0(postcss@8.5.3)
+ cssnano-utils: 5.0.0(postcss@8.5.3)
+ postcss: 8.5.3
+ postcss-calc: 10.1.1(postcss@8.5.3)
+ postcss-colormin: 7.0.2(postcss@8.5.3)
+ postcss-convert-values: 7.0.4(postcss@8.5.3)
+ postcss-discard-comments: 7.0.3(postcss@8.5.3)
+ postcss-discard-duplicates: 7.0.1(postcss@8.5.3)
+ postcss-discard-empty: 7.0.0(postcss@8.5.3)
+ postcss-discard-overridden: 7.0.0(postcss@8.5.3)
+ postcss-merge-longhand: 7.0.4(postcss@8.5.3)
+ postcss-merge-rules: 7.0.4(postcss@8.5.3)
+ postcss-minify-font-values: 7.0.0(postcss@8.5.3)
+ postcss-minify-gradients: 7.0.0(postcss@8.5.3)
+ postcss-minify-params: 7.0.2(postcss@8.5.3)
+ postcss-minify-selectors: 7.0.4(postcss@8.5.3)
+ postcss-normalize-charset: 7.0.0(postcss@8.5.3)
+ postcss-normalize-display-values: 7.0.0(postcss@8.5.3)
+ postcss-normalize-positions: 7.0.0(postcss@8.5.3)
+ postcss-normalize-repeat-style: 7.0.0(postcss@8.5.3)
+ postcss-normalize-string: 7.0.0(postcss@8.5.3)
+ postcss-normalize-timing-functions: 7.0.0(postcss@8.5.3)
+ postcss-normalize-unicode: 7.0.2(postcss@8.5.3)
+ postcss-normalize-url: 7.0.0(postcss@8.5.3)
+ postcss-normalize-whitespace: 7.0.0(postcss@8.5.3)
+ postcss-ordered-values: 7.0.1(postcss@8.5.3)
+ postcss-reduce-initial: 7.0.2(postcss@8.5.3)
+ postcss-reduce-transforms: 7.0.0(postcss@8.5.3)
+ postcss-svgo: 7.0.1(postcss@8.5.3)
+ postcss-unique-selectors: 7.0.3(postcss@8.5.3)
- cssnano-utils@5.0.0(postcss@8.5.1):
+ cssnano-utils@5.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
- cssnano@7.0.6(postcss@8.5.1):
+ cssnano@7.0.6(postcss@8.5.3):
dependencies:
- cssnano-preset-default: 7.0.6(postcss@8.5.1)
+ cssnano-preset-default: 7.0.6(postcss@8.5.3)
lilconfig: 3.1.3
- postcss: 8.5.1
+ postcss: 8.5.3
csso@5.0.5:
dependencies:
@@ -6885,7 +7742,7 @@ snapshots:
csstype@3.1.3: {}
- db0@0.2.3: {}
+ db0@0.3.1: {}
debug@2.6.9:
dependencies:
@@ -7006,11 +7863,11 @@ snapshots:
dependencies:
embla-carousel: 8.5.2
- embla-carousel-vue@8.5.2(vue@3.5.13(typescript@5.7.3)):
+ embla-carousel-vue@8.5.2(vue@3.5.13(tslite@5.7.3)):
dependencies:
embla-carousel: 8.5.2
embla-carousel-reactive-utils: 8.5.2(embla-carousel@8.5.2)
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
embla-carousel-wheel-gestures@8.0.1(embla-carousel@8.5.2):
dependencies:
@@ -7034,11 +7891,7 @@ snapshots:
entities@4.5.0: {}
- error-ex@1.3.2:
- dependencies:
- is-arrayish: 0.2.1
-
- error-stack-parser-es@0.1.5: {}
+ error-stack-parser-es@1.0.5: {}
errx@0.1.0: {}
@@ -7072,6 +7925,34 @@ snapshots:
'@esbuild/win32-ia32': 0.24.2
'@esbuild/win32-x64': 0.24.2
+ esbuild@0.25.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.1
+ '@esbuild/android-arm': 0.25.1
+ '@esbuild/android-arm64': 0.25.1
+ '@esbuild/android-x64': 0.25.1
+ '@esbuild/darwin-arm64': 0.25.1
+ '@esbuild/darwin-x64': 0.25.1
+ '@esbuild/freebsd-arm64': 0.25.1
+ '@esbuild/freebsd-x64': 0.25.1
+ '@esbuild/linux-arm': 0.25.1
+ '@esbuild/linux-arm64': 0.25.1
+ '@esbuild/linux-ia32': 0.25.1
+ '@esbuild/linux-loong64': 0.25.1
+ '@esbuild/linux-mips64el': 0.25.1
+ '@esbuild/linux-ppc64': 0.25.1
+ '@esbuild/linux-riscv64': 0.25.1
+ '@esbuild/linux-s390x': 0.25.1
+ '@esbuild/linux-x64': 0.25.1
+ '@esbuild/netbsd-arm64': 0.25.1
+ '@esbuild/netbsd-x64': 0.25.1
+ '@esbuild/openbsd-arm64': 0.25.1
+ '@esbuild/openbsd-x64': 0.25.1
+ '@esbuild/sunos-x64': 0.25.1
+ '@esbuild/win32-arm64': 0.25.1
+ '@esbuild/win32-ia32': 0.25.1
+ '@esbuild/win32-x64': 0.25.1
+
escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -7082,20 +7963,20 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)):
+ eslint-compat-utils@0.5.1(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
semver: 7.7.1
- eslint-compat-utils@0.6.4(eslint@9.17.0(jiti@2.4.2)):
+ eslint-compat-utils@0.6.4(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
semver: 7.7.1
- eslint-config-flat-gitignore@2.0.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-config-flat-gitignore@2.1.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- '@eslint/compat': 1.2.6(eslint@9.17.0(jiti@2.4.2))
- eslint: 9.17.0(jiti@2.4.2)
+ '@eslint/compat': 1.2.6(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
eslint-flat-config-utils@2.0.1:
dependencies:
@@ -7109,41 +7990,41 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-json-compat-utils@0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
+ eslint-json-compat-utils@0.2.1(eslint@9.22.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
- eslint-merge-processors@1.0.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-merge-processors@2.0.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
- eslint-plugin-antfu@3.0.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-antfu@3.1.1(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
- eslint-plugin-command@3.0.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-command@3.1.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.50.0
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
- eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-es-x@7.8.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.17.0(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.22.0(jiti@2.4.2))
- eslint-plugin-import-x@4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3):
+ eslint-plugin-import-x@4.6.1(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3):
dependencies:
'@types/doctrine': 0.0.9
'@typescript-eslint/scope-manager': 8.23.0
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.23.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
debug: 4.4.0(supports-color@9.4.0)
doctrine: 3.0.0
enhanced-resolve: 5.18.1
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.10.0
is-glob: 4.0.3
@@ -7155,14 +8036,14 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsdoc@50.6.3(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-jsdoc@50.6.3(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
@@ -7172,12 +8053,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.19.1(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-jsonc@2.19.1(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- eslint: 9.17.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
- eslint-json-compat-utils: 0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
+ eslint-json-compat-utils: 0.2.1(eslint@9.22.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -7186,12 +8067,12 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
- eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-n@17.16.2(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
enhanced-resolve: 5.18.1
- eslint: 9.17.0(jiti@2.4.2)
- eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.22.0(jiti@2.4.2))
get-tsconfig: 4.10.0
globals: 15.14.0
ignore: 5.3.2
@@ -7200,106 +8081,110 @@ snapshots:
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-perfectionist@4.8.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3):
+ eslint-plugin-perfectionist@4.10.1(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3):
dependencies:
- '@typescript-eslint/types': 8.23.0
- '@typescript-eslint/utils': 8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/utils': 8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
+ eslint: 9.22.0(jiti@2.4.2)
natural-orderby: 5.0.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-regexp@2.7.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-pnpm@0.1.2(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
+ find-up-simple: 1.0.1
+ jsonc-eslint-parser: 2.4.0
+ pnpm-workspace-yaml: 0.1.2
+
+ eslint-plugin-regexp@2.7.0(eslint@9.22.0(jiti@2.4.2)):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-toml@0.12.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-toml@0.12.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@56.0.1(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-unicorn@57.0.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
ci-info: 4.1.0
clean-regexp: 1.0.0
core-js-compat: 3.40.0
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
esquery: 1.6.0
- globals: 15.14.0
- indent-string: 4.0.0
- is-builtin-module: 3.2.1
+ globals: 15.15.0
+ indent-string: 5.0.0
+ is-builtin-module: 4.0.0
jsesc: 3.1.0
pluralize: 8.0.0
- read-pkg-up: 7.0.1
+ read-package-up: 11.0.0
regexp-tree: 0.1.27
- regjsparser: 0.10.0
+ regjsparser: 0.12.0
semver: 7.7.1
- strip-indent: 3.0.0
+ strip-indent: 4.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2)):
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.23.0(@typescript-eslint/parser@8.23.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/eslint-plugin': 8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3))(eslint@9.22.0(jiti@2.4.2))(tslite@5.7.3)
- eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-vue@10.0.0(eslint@9.22.0(jiti@2.4.2))(vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2))):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
- eslint: 9.17.0(jiti@2.4.2)
- globals: 13.24.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
+ eslint: 9.22.0(jiti@2.4.2)
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.7.1
- vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
+ vue-eslint-parser: 10.1.1(eslint@9.22.0(jiti@2.4.2))
xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - supports-color
- eslint-plugin-yml@1.16.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-plugin-yml@1.17.0(eslint@9.22.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
- lodash: 4.17.21
+ escape-string-regexp: 4.0.0
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.22.0(jiti@2.4.2))
natural-compare: 1.4.0
- yaml-eslint-parser: 1.2.3
+ yaml-eslint-parser: 1.3.0
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@1.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2)):
+ eslint-processor-vue-blocks@2.0.0(@vue/compiler-sfc@3.5.13)(eslint@9.22.0(jiti@2.4.2)):
dependencies:
'@vue/compiler-sfc': 3.5.13
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-scope@7.2.2:
- dependencies:
- esrecurse: 4.3.0
- estraverse: 5.3.0
+ eslint: 9.22.0(jiti@2.4.2)
eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- eslint-typegen@1.0.0(eslint@9.17.0(jiti@2.4.2)):
+ eslint-scope@8.3.0:
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ eslint-typegen@2.0.0(eslint@9.22.0(jiti@2.4.2)):
+ dependencies:
+ eslint: 9.22.0(jiti@2.4.2)
json-schema-to-typescript-lite: 14.1.0
ohash: 1.1.4
@@ -7307,18 +8192,19 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.17.0(jiti@2.4.2):
+ eslint@9.22.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.22.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.2
- '@eslint/core': 0.9.1
- '@eslint/eslintrc': 3.2.0
- '@eslint/js': 9.17.0
- '@eslint/plugin-kit': 0.2.5
+ '@eslint/config-helpers': 0.1.0
+ '@eslint/core': 0.12.0
+ '@eslint/eslintrc': 3.3.0
+ '@eslint/js': 9.22.0
+ '@eslint/plugin-kit': 0.2.7
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.1
+ '@humanwhocodes/retry': 0.4.2
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
ajv: 6.12.6
@@ -7326,7 +8212,7 @@ snapshots:
cross-spawn: 7.0.6
debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
- eslint-scope: 8.2.0
+ eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
esquery: 1.6.0
@@ -7408,6 +8294,23 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
+ execa@9.5.2:
+ dependencies:
+ '@sindresorhus/merge-streams': 4.0.0
+ cross-spawn: 7.0.6
+ figures: 6.1.0
+ get-stream: 9.0.1
+ human-signals: 8.0.0
+ is-plain-obj: 4.1.0
+ is-stream: 4.0.1
+ npm-run-path: 6.0.0
+ pretty-ms: 9.2.0
+ signal-exit: 4.1.0
+ strip-final-newline: 4.0.0
+ yoctocolors: 2.1.1
+
+ exsolve@1.0.4: {}
+
externality@1.0.2:
dependencies:
enhanced-resolve: 5.18.1
@@ -7431,7 +8334,7 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fast-npm-meta@0.2.2: {}
+ fast-npm-meta@0.3.1: {}
fastq@1.19.0:
dependencies:
@@ -7441,6 +8344,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ figures@6.1.0:
+ dependencies:
+ is-unicode-supported: 2.1.0
+
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
@@ -7451,10 +8358,7 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- find-up@4.1.0:
- dependencies:
- locate-path: 5.0.0
- path-exists: 4.0.0
+ find-up-simple@1.0.1: {}
find-up@5.0.0:
dependencies:
@@ -7517,8 +8421,6 @@ snapshots:
dependencies:
minipass: 3.3.6
- fs.realpath@1.0.0: {}
-
fsevents@2.3.3:
optional: true
@@ -7536,6 +8438,11 @@ snapshots:
get-stream@8.0.1: {}
+ get-stream@9.0.1:
+ dependencies:
+ '@sec-ant/readable-stream': 0.4.1
+ is-stream: 4.0.1
+
get-tsconfig@4.10.0:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -7551,6 +8458,15 @@ snapshots:
pathe: 2.0.2
tar: 6.2.1
+ giget@2.0.0:
+ dependencies:
+ citty: 0.1.6
+ consola: 3.4.0
+ defu: 6.1.4
+ node-fetch-native: 1.6.6
+ nypm: 0.6.0
+ pathe: 2.0.3
+
git-config-path@2.0.0: {}
git-up@8.0.0:
@@ -7579,29 +8495,20 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@7.2.3:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
-
global-directory@4.0.1:
dependencies:
ini: 4.1.1
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
-
globals@14.0.0: {}
globals@15.14.0: {}
+ globals@15.15.0: {}
+
+ globals@16.0.0: {}
+
globby@14.0.2:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
@@ -7611,6 +8518,15 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.1.0
+ globby@14.1.0:
+ dependencies:
+ '@sindresorhus/merge-streams': 2.3.0
+ fast-glob: 3.3.3
+ ignore: 7.0.3
+ path-type: 6.0.0
+ slash: 5.1.0
+ unicorn-magic: 0.3.0
+
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -7632,6 +8548,18 @@ snapshots:
ufo: 1.5.4
uncrypto: 0.1.3
+ h3@1.15.1:
+ dependencies:
+ cookie-es: 1.2.2
+ crossws: 0.3.3
+ defu: 6.1.4
+ destr: 2.0.3
+ iron-webcrypto: 1.2.1
+ node-mock-http: 1.0.0
+ radix3: 1.1.2
+ ufo: 1.5.4
+ uncrypto: 0.1.3
+
has-flag@4.0.0: {}
hasown@2.0.2:
@@ -7640,7 +8568,9 @@ snapshots:
hookable@5.5.3: {}
- hosted-git-info@2.8.9: {}
+ hosted-git-info@7.0.2:
+ dependencies:
+ lru-cache: 10.4.3
html-tags@3.3.1: {}
@@ -7667,6 +8597,8 @@ snapshots:
human-signals@5.0.0: {}
+ human-signals@8.0.0: {}
+
ieee754@1.2.1: {}
ignore@5.3.2: {}
@@ -7680,9 +8612,9 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- impound@0.2.0(rollup@4.34.6):
+ impound@0.2.0(rollup@4.35.0):
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@rollup/pluginutils': 5.1.4(rollup@4.35.0)
mlly: 1.7.4
pathe: 1.1.2
unenv: 1.10.0
@@ -7692,22 +8624,17 @@ snapshots:
imurmurhash@0.1.4: {}
- indent-string@4.0.0: {}
+ indent-string@5.0.0: {}
index-to-position@0.1.2: {}
- inflight@1.0.6:
- dependencies:
- once: 1.4.0
- wrappy: 1.0.2
-
inherits@2.0.4: {}
ini@1.3.8: {}
ini@4.1.1: {}
- ioredis@5.5.0:
+ ioredis@5.6.0:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
@@ -7723,15 +8650,13 @@ snapshots:
iron-webcrypto@1.2.1: {}
- is-arrayish@0.2.1: {}
-
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
- is-builtin-module@3.2.1:
+ is-builtin-module@4.0.0:
dependencies:
- builtin-modules: 3.3.0
+ builtin-modules: 4.0.0
is-core-module@2.16.1:
dependencies:
@@ -7764,6 +8689,8 @@ snapshots:
is-path-inside@4.0.0: {}
+ is-plain-obj@4.1.0: {}
+
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.6
@@ -7776,6 +8703,10 @@ snapshots:
is-stream@3.0.0: {}
+ is-stream@4.0.1: {}
+
+ is-unicode-supported@2.1.0: {}
+
is-what@4.1.16: {}
is-wsl@2.2.0:
@@ -7794,6 +8725,8 @@ snapshots:
isexe@2.0.0: {}
+ isexe@3.1.1: {}
+
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
@@ -7814,14 +8747,12 @@ snapshots:
jsdoc-type-pratt-parser@4.1.0: {}
- jsesc@0.5.0: {}
+ jsesc@3.0.2: {}
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
- json-parse-even-better-errors@2.3.1: {}
-
json-schema-to-typescript-lite@14.1.0:
dependencies:
'@apidevtools/json-schema-ref-parser': 11.9.0
@@ -7856,13 +8787,15 @@ snapshots:
kleur@3.0.3: {}
+ kleur@4.1.5: {}
+
klona@2.0.6: {}
knitwork@1.2.0: {}
kolorist@1.8.0: {}
- launch-editor@2.9.1:
+ launch-editor@2.10.0:
dependencies:
picocolors: 1.1.1
shell-quote: 1.8.2
@@ -7923,8 +8856,6 @@ snapshots:
lilconfig@3.1.3: {}
- lines-and-columns@1.2.4: {}
-
listhen@1.9.0:
dependencies:
'@parcel/watcher': 2.5.1
@@ -7935,13 +8866,13 @@ snapshots:
crossws: 0.3.3
defu: 6.1.4
get-port-please: 3.1.2
- h3: 1.15.0
+ h3: 1.15.1
http-shutdown: 1.2.2
jiti: 2.4.2
mlly: 1.7.4
node-forge: 1.3.1
pathe: 1.1.2
- std-env: 3.8.0
+ std-env: 3.8.1
ufo: 1.5.4
untun: 0.1.3
uqr: 0.1.2
@@ -7958,9 +8889,11 @@ snapshots:
mlly: 1.7.4
pkg-types: 1.3.1
- locate-path@5.0.0:
+ local-pkg@1.1.1:
dependencies:
- p-locate: 4.1.0
+ mlly: 1.7.4
+ pkg-types: 2.1.0
+ quansync: 0.2.8
locate-path@6.0.0:
dependencies:
@@ -8375,12 +9308,14 @@ snapshots:
mlly@1.7.4:
dependencies:
acorn: 8.14.0
- pathe: 2.0.2
+ pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.5.4
mrmime@2.0.0: {}
+ mrmime@2.0.1: {}
+
ms@2.0.0: {}
ms@2.1.3: {}
@@ -8395,44 +9330,44 @@ snapshots:
natural-orderby@5.0.0: {}
- nitropack@2.10.4(typescript@5.7.3):
+ nitropack@2.11.6(tslite@5.7.3):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 2.8.2
- '@rollup/plugin-alias': 5.1.1(rollup@4.34.6)
- '@rollup/plugin-commonjs': 28.0.2(rollup@4.34.6)
- '@rollup/plugin-inject': 5.0.5(rollup@4.34.6)
- '@rollup/plugin-json': 6.1.0(rollup@4.34.6)
- '@rollup/plugin-node-resolve': 15.3.1(rollup@4.34.6)
- '@rollup/plugin-replace': 6.0.2(rollup@4.34.6)
- '@rollup/plugin-terser': 0.4.4(rollup@4.34.6)
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ '@netlify/functions': 3.0.0
+ '@rollup/plugin-alias': 5.1.1(rollup@4.35.0)
+ '@rollup/plugin-commonjs': 28.0.3(rollup@4.35.0)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.35.0)
+ '@rollup/plugin-json': 6.1.0(rollup@4.35.0)
+ '@rollup/plugin-node-resolve': 16.0.0(rollup@4.35.0)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.35.0)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.35.0)
'@types/http-proxy': 1.17.16
- '@vercel/nft': 0.27.10(rollup@4.34.6)
+ '@vercel/nft': 0.29.2(rollup@4.35.0)
archiver: 7.0.1
- c12: 2.0.1(magicast@0.3.5)
- chokidar: 3.6.0
+ c12: 3.0.2(magicast@0.3.5)
+ chokidar: 4.0.3
citty: 0.1.6
compatx: 0.1.8
- confbox: 0.1.8
+ confbox: 0.2.1
consola: 3.4.0
- cookie-es: 1.2.2
+ cookie-es: 2.0.0
croner: 9.0.0
- crossws: 0.3.3
- db0: 0.2.3
+ crossws: 0.3.4
+ db0: 0.3.1
defu: 6.1.4
destr: 2.0.3
dot-prop: 9.0.0
- esbuild: 0.24.2
+ esbuild: 0.25.1
escape-string-regexp: 5.0.0
etag: 1.8.1
+ exsolve: 1.0.4
fs-extra: 11.3.0
- globby: 14.0.2
+ globby: 14.1.0
gzip-size: 7.0.0
- h3: 1.15.0
+ h3: 1.15.1
hookable: 5.5.3
httpxy: 0.1.7
- ioredis: 5.5.0
+ ioredis: 5.6.0
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
@@ -8442,29 +9377,35 @@ snapshots:
mime: 4.0.6
mlly: 1.7.4
node-fetch-native: 1.6.6
+ node-mock-http: 1.0.0
ofetch: 1.4.1
- ohash: 1.1.4
- openapi-typescript: 7.6.1(typescript@5.7.3)
- pathe: 1.1.2
+ ohash: 2.0.11
+ openapi-typescript: 7.6.1(tslite@5.7.3)
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
+ pkg-types: 2.1.0
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.34.6
- rollup-plugin-visualizer: 5.14.0(rollup@4.34.6)
+ rollup: 4.35.0
+ rollup-plugin-visualizer: 5.14.0(rollup@4.35.0)
scule: 1.3.0
semver: 7.7.1
serve-placeholder: 2.0.2
serve-static: 1.16.2
- std-env: 3.8.0
+ source-map: 0.7.4
+ std-env: 3.8.1
ufo: 1.5.4
+ ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.4.1
- unenv: 1.10.0
- unimport: 3.14.6(rollup@4.34.6)
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.5.0)
- untyped: 1.5.2
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin-utils: 0.2.4
+ unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
+ untyped: 2.0.0
unwasm: 0.3.9
+ youch: 4.1.0-beta.6
+ youch-core: 0.3.2
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -8513,105 +9454,104 @@ snapshots:
dependencies:
abbrev: 3.0.0
- normalize-package-data@2.5.0:
+ normalize-package-data@6.0.2:
dependencies:
- hosted-git-info: 2.8.9
- resolve: 1.22.10
- semver: 5.7.2
+ hosted-git-info: 7.0.2
+ semver: 7.7.1
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
npm-run-path@5.3.0:
dependencies:
path-key: 4.0.0
+ npm-run-path@6.0.0:
+ dependencies:
+ path-key: 4.0.0
+ unicorn-magic: 0.3.0
+
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
- nuxt-svgo@4.0.14(magicast@0.3.5)(vue@3.5.13(typescript@5.7.3)):
+ nuxt-svgo@4.0.15(magicast@0.3.5)(vue@3.5.13(tslite@5.7.3)):
dependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
mini-svg-data-uri: 1.4.4
svgo: 3.0.2
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- magicast
- supports-color
- nuxt@3.15.4(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.2.3)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.5.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0):
+ nuxt@3.16.0(@parcel/watcher@2.5.1)(@types/node@22.13.1)(db0@0.3.1)(eslint@9.22.0(jiti@2.4.2))(ioredis@5.6.0)(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(yaml@2.7.0):
dependencies:
- '@nuxt/cli': 3.21.1(magicast@0.3.5)
+ '@nuxt/cli': 3.22.5(magicast@0.3.5)
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.7.0(rollup@4.34.6)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(typescript@5.7.3))
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@nuxt/schema': 3.15.4
- '@nuxt/telemetry': 2.6.4(magicast@0.3.5)
- '@nuxt/vite-builder': 3.15.4(@types/node@22.13.1)(eslint@9.17.0(jiti@2.4.2))(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.34.6)(terser@5.38.1)(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3))(yaml@2.7.0)
- '@unhead/dom': 1.11.18
- '@unhead/shared': 1.11.18
- '@unhead/ssr': 1.11.18
- '@unhead/vue': 1.11.18(vue@3.5.13(typescript@5.7.3))
+ '@nuxt/devtools': 2.2.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3))
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
+ '@nuxt/schema': 3.16.0
+ '@nuxt/telemetry': 2.6.5(magicast@0.3.5)
+ '@nuxt/vite-builder': 3.16.0(@types/node@22.13.1)(eslint@9.22.0(jiti@2.4.2))(lightningcss@1.29.1)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.35.0)(terser@5.38.1)(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3))(yaml@2.7.0)
+ '@oxc-parser/wasm': 0.56.5
+ '@unhead/vue': 2.0.0-rc.9(vue@3.5.13(tslite@5.7.3))
'@vue/shared': 3.5.13
- acorn: 8.14.0
- c12: 2.0.1(magicast@0.3.5)
+ c12: 3.0.2(magicast@0.3.5)
chokidar: 4.0.3
compatx: 0.1.8
consola: 3.4.0
- cookie-es: 1.2.2
+ cookie-es: 2.0.0
defu: 6.1.4
destr: 2.0.3
devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.24.2
+ esbuild: 0.25.1
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
- globby: 14.0.2
- h3: 1.15.0
+ exsolve: 1.0.4
+ globby: 14.1.0
+ h3: 1.15.1
hookable: 5.5.3
ignore: 7.0.3
- impound: 0.2.0(rollup@4.34.6)
+ impound: 0.2.0(rollup@4.35.0)
jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.2.0
- nitropack: 2.10.4(typescript@5.7.3)
- nypm: 0.5.2
+ nitropack: 2.11.6(tslite@5.7.3)
+ nypm: 0.6.0
ofetch: 1.4.1
- ohash: 1.1.4
- pathe: 2.0.2
+ ohash: 2.0.11
+ on-change: 5.0.1
+ oxc-parser: 0.56.5
+ pathe: 2.0.3
perfect-debounce: 1.0.0
- pkg-types: 1.3.1
+ pkg-types: 2.1.0
radix3: 1.1.2
scule: 1.3.0
semver: 7.7.1
- std-env: 3.8.0
+ std-env: 3.8.1
strip-literal: 3.0.0
- tinyglobby: 0.2.10
+ tinyglobby: 0.2.12
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.4.1
- unenv: 1.10.0
- unhead: 1.11.18
- unimport: 4.1.0
- unplugin: 2.1.2
- unplugin-vue-router: 0.11.2(rollup@4.34.6)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3))
- unstorage: 1.14.4(db0@0.2.3)(ioredis@5.5.0)
- untyped: 1.5.2
- vue: 3.5.13(typescript@5.7.3)
+ unenv: 2.0.0-rc.14
+ unimport: 4.1.2
+ unplugin: 2.2.0
+ unplugin-vue-router: 0.12.0(vue-router@4.5.0(vue@3.5.13(tslite@5.7.3)))(vue@3.5.13(tslite@5.7.3))
+ unstorage: 1.15.0(db0@0.3.1)(ioredis@5.6.0)
+ untyped: 2.0.0
+ vue: 3.5.13(tslite@5.7.3)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.5.0(vue@3.5.13(typescript@5.7.3))
+ vue-router: 4.5.0(vue@3.5.13(tslite@5.7.3))
optionalDependencies:
'@parcel/watcher': 2.5.1
'@types/node': 22.13.1
@@ -8668,15 +9608,6 @@ snapshots:
- xml2js
- yaml
- nypm@0.4.1:
- dependencies:
- citty: 0.1.6
- consola: 3.4.0
- pathe: 1.1.2
- pkg-types: 1.3.1
- tinyexec: 0.3.2
- ufo: 1.5.4
-
nypm@0.5.2:
dependencies:
citty: 0.1.6
@@ -8686,6 +9617,14 @@ snapshots:
tinyexec: 0.3.2
ufo: 1.5.4
+ nypm@0.6.0:
+ dependencies:
+ citty: 0.1.6
+ consola: 3.4.0
+ pathe: 2.0.3
+ pkg-types: 2.1.0
+ tinyexec: 0.3.2
+
ofetch@1.4.1:
dependencies:
destr: 2.0.3
@@ -8694,14 +9633,14 @@ snapshots:
ohash@1.1.4: {}
+ ohash@2.0.11: {}
+
+ on-change@5.0.1: {}
+
on-finished@2.4.1:
dependencies:
ee-first: 1.1.1
- once@1.4.0:
- dependencies:
- wrappy: 1.0.2
-
onetime@6.0.0:
dependencies:
mimic-fn: 4.0.0
@@ -8719,14 +9658,14 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openapi-typescript@7.6.1(typescript@5.7.3):
+ openapi-typescript@7.6.1(tslite@5.7.3):
dependencies:
'@redocly/openapi-core': 1.28.5(supports-color@9.4.0)
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
supports-color: 9.4.0
- typescript: 5.7.3
+ typescript: tslite@5.7.3
yargs-parser: 21.1.1
optionator@0.9.4:
@@ -8738,9 +9677,20 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- p-limit@2.3.0:
+ oxc-parser@0.56.5:
dependencies:
- p-try: 2.2.0
+ '@oxc-project/types': 0.56.5
+ optionalDependencies:
+ '@oxc-parser/binding-darwin-arm64': 0.56.5
+ '@oxc-parser/binding-darwin-x64': 0.56.5
+ '@oxc-parser/binding-linux-arm-gnueabihf': 0.56.5
+ '@oxc-parser/binding-linux-arm64-gnu': 0.56.5
+ '@oxc-parser/binding-linux-arm64-musl': 0.56.5
+ '@oxc-parser/binding-linux-x64-gnu': 0.56.5
+ '@oxc-parser/binding-linux-x64-musl': 0.56.5
+ '@oxc-parser/binding-wasm32-wasi': 0.56.5
+ '@oxc-parser/binding-win32-arm64-msvc': 0.56.5
+ '@oxc-parser/binding-win32-x64-msvc': 0.56.5
p-limit@3.1.0:
dependencies:
@@ -8750,10 +9700,6 @@ snapshots:
dependencies:
yocto-queue: 1.1.1
- p-locate@4.1.0:
- dependencies:
- p-limit: 2.3.0
-
p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
@@ -8762,8 +9708,6 @@ snapshots:
dependencies:
p-limit: 4.0.0
- p-try@2.2.0: {}
-
package-json-from-dist@1.0.1: {}
package-manager-detector@0.2.9: {}
@@ -8788,19 +9732,14 @@ snapshots:
es-module-lexer: 1.6.0
slashes: 3.0.12
- parse-json@5.2.0:
- dependencies:
- '@babel/code-frame': 7.26.2
- error-ex: 1.3.2
- json-parse-even-better-errors: 2.3.1
- lines-and-columns: 1.2.4
-
parse-json@8.1.0:
dependencies:
'@babel/code-frame': 7.26.2
index-to-position: 0.1.2
type-fest: 4.33.0
+ parse-ms@4.0.0: {}
+
parse-path@7.0.0:
dependencies:
protocols: 2.0.1
@@ -8816,8 +9755,6 @@ snapshots:
path-exists@5.0.0: {}
- path-is-absolute@1.0.1: {}
-
path-key@3.1.1: {}
path-key@4.0.0: {}
@@ -8831,10 +9768,14 @@ snapshots:
path-type@5.0.0: {}
+ path-type@6.0.0: {}
+
pathe@1.1.2: {}
pathe@2.0.2: {}
+ pathe@2.0.3: {}
+
perfect-debounce@1.0.0: {}
picocolors@1.1.1: {}
@@ -8847,146 +9788,156 @@ snapshots:
dependencies:
confbox: 0.1.8
mlly: 1.7.4
- pathe: 2.0.2
+ pathe: 2.0.3
+
+ pkg-types@2.1.0:
+ dependencies:
+ confbox: 0.2.1
+ exsolve: 1.0.4
+ pathe: 2.0.3
pluralize@8.0.0: {}
- postcss-calc@10.1.1(postcss@8.5.1):
+ pnpm-workspace-yaml@0.1.2:
dependencies:
- postcss: 8.5.1
+ yaml: 2.7.0
+
+ postcss-calc@10.1.1(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-colormin@7.0.2(postcss@8.5.1):
+ postcss-colormin@7.0.2(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.4(postcss@8.5.1):
+ postcss-convert-values@7.0.4(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-discard-comments@7.0.3(postcss@8.5.1):
+ postcss-discard-comments@7.0.3(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-discard-duplicates@7.0.1(postcss@8.5.1):
+ postcss-discard-duplicates@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
- postcss-discard-empty@7.0.0(postcss@8.5.1):
+ postcss-discard-empty@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
- postcss-discard-overridden@7.0.0(postcss@8.5.1):
+ postcss-discard-overridden@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
- postcss-merge-longhand@7.0.4(postcss@8.5.1):
+ postcss-merge-longhand@7.0.4(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- stylehacks: 7.0.4(postcss@8.5.1)
+ stylehacks: 7.0.4(postcss@8.5.3)
- postcss-merge-rules@7.0.4(postcss@8.5.1):
+ postcss-merge-rules@7.0.4(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.5.1)
- postcss: 8.5.1
+ cssnano-utils: 5.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@7.0.0(postcss@8.5.1):
+ postcss-minify-font-values@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.0(postcss@8.5.1):
+ postcss-minify-gradients@7.0.0(postcss@8.5.3):
dependencies:
colord: 2.9.3
- cssnano-utils: 5.0.0(postcss@8.5.1)
- postcss: 8.5.1
+ cssnano-utils: 5.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.2(postcss@8.5.1):
+ postcss-minify-params@7.0.2(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- cssnano-utils: 5.0.0(postcss@8.5.1)
- postcss: 8.5.1
+ cssnano-utils: 5.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.4(postcss@8.5.1):
+ postcss-minify-selectors@7.0.4(postcss@8.5.3):
dependencies:
cssesc: 3.0.0
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-normalize-charset@7.0.0(postcss@8.5.1):
+ postcss-normalize-charset@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
- postcss-normalize-display-values@7.0.0(postcss@8.5.1):
+ postcss-normalize-display-values@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.0(postcss@8.5.1):
+ postcss-normalize-positions@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.0(postcss@8.5.1):
+ postcss-normalize-repeat-style@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.0(postcss@8.5.1):
+ postcss-normalize-string@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.0(postcss@8.5.1):
+ postcss-normalize-timing-functions@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.2(postcss@8.5.1):
+ postcss-normalize-unicode@7.0.2(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.0(postcss@8.5.1):
+ postcss-normalize-url@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.0(postcss@8.5.1):
+ postcss-normalize-whitespace@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-ordered-values@7.0.1(postcss@8.5.1):
+ postcss-ordered-values@7.0.1(postcss@8.5.3):
dependencies:
- cssnano-utils: 5.0.0(postcss@8.5.1)
- postcss: 8.5.1
+ cssnano-utils: 5.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-reduce-initial@7.0.2(postcss@8.5.1):
+ postcss-reduce-initial@7.0.2(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
caniuse-api: 3.0.0
- postcss: 8.5.1
+ postcss: 8.5.3
- postcss-reduce-transforms@7.0.0(postcss@8.5.1):
+ postcss-reduce-transforms@7.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
postcss-selector-parser@6.1.2:
@@ -8999,15 +9950,15 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@7.0.1(postcss@8.5.1):
+ postcss-svgo@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@7.0.3(postcss@8.5.1):
+ postcss-unique-selectors@7.0.3(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
postcss-value-parser@4.2.0: {}
@@ -9018,10 +9969,20 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.3:
+ dependencies:
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
prelude-ls@1.2.1: {}
pretty-bytes@6.1.1: {}
+ pretty-ms@9.2.0:
+ dependencies:
+ parse-ms: 4.0.0
+
process-nextick-args@2.0.1: {}
process@0.11.10: {}
@@ -9035,24 +9996,9 @@ snapshots:
punycode@2.3.1: {}
- queue-microtask@1.2.3: {}
+ quansync@0.2.8: {}
- radix-vue@1.9.13(vue@3.5.13(typescript@5.7.3)):
- dependencies:
- '@floating-ui/dom': 1.6.13
- '@floating-ui/vue': 1.1.6(vue@3.5.13(typescript@5.7.3))
- '@internationalized/date': 3.7.0
- '@internationalized/number': 3.6.0
- '@tanstack/vue-virtual': 3.13.0(vue@3.5.13(typescript@5.7.3))
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.3))
- '@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.7.3))
- aria-hidden: 1.2.4
- defu: 6.1.4
- fast-deep-equal: 3.1.3
- nanoid: 5.0.9
- vue: 3.5.13(typescript@5.7.3)
- transitivePeerDependencies:
- - '@vue/composition-api'
+ queue-microtask@1.2.3: {}
radix3@1.1.2: {}
@@ -9067,18 +10013,19 @@ snapshots:
defu: 6.1.4
destr: 2.0.3
- read-pkg-up@7.0.1:
+ read-package-up@11.0.0:
dependencies:
- find-up: 4.1.0
- read-pkg: 5.2.0
- type-fest: 0.8.1
+ find-up-simple: 1.0.1
+ read-pkg: 9.0.1
+ type-fest: 4.33.0
- read-pkg@5.2.0:
+ read-pkg@9.0.1:
dependencies:
'@types/normalize-package-data': 2.4.4
- normalize-package-data: 2.5.0
- parse-json: 5.2.0
- type-fest: 0.6.0
+ normalize-package-data: 6.0.2
+ parse-json: 8.1.0
+ type-fest: 4.33.0
+ unicorn-magic: 0.1.0
readable-stream@2.3.8:
dependencies:
@@ -9125,23 +10072,23 @@ snapshots:
regexp-tree@0.1.27: {}
- regjsparser@0.10.0:
+ regjsparser@0.12.0:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
- reka-ui@1.0.0-alpha.8(typescript@5.7.3)(vue@3.5.13(typescript@5.7.3)):
+ reka-ui@2.0.2(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3)):
dependencies:
'@floating-ui/dom': 1.6.13
- '@floating-ui/vue': 1.1.6(vue@3.5.13(typescript@5.7.3))
+ '@floating-ui/vue': 1.1.6(vue@3.5.13(tslite@5.7.3))
'@internationalized/date': 3.7.0
'@internationalized/number': 3.6.0
- '@tanstack/vue-virtual': 3.13.0(vue@3.5.13(typescript@5.7.3))
- '@vueuse/core': 12.5.0(typescript@5.7.3)
- '@vueuse/shared': 12.5.0(typescript@5.7.3)
+ '@tanstack/vue-virtual': 3.13.0(vue@3.5.13(tslite@5.7.3))
+ '@vueuse/core': 12.8.2(tslite@5.7.3)
+ '@vueuse/shared': 12.5.0(tslite@5.7.3)
aria-hidden: 1.2.4
defu: 6.1.4
ohash: 1.1.4
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
@@ -9172,14 +10119,14 @@ snapshots:
dependencies:
glob: 10.4.5
- rollup-plugin-visualizer@5.14.0(rollup@4.34.6):
+ rollup-plugin-visualizer@5.14.0(rollup@4.35.0):
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.34.6
+ rollup: 4.35.0
rollup@4.34.6:
dependencies:
@@ -9206,6 +10153,31 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.34.6
fsevents: 2.3.3
+ rollup@4.35.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.35.0
+ '@rollup/rollup-android-arm64': 4.35.0
+ '@rollup/rollup-darwin-arm64': 4.35.0
+ '@rollup/rollup-darwin-x64': 4.35.0
+ '@rollup/rollup-freebsd-arm64': 4.35.0
+ '@rollup/rollup-freebsd-x64': 4.35.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.35.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.35.0
+ '@rollup/rollup-linux-arm64-gnu': 4.35.0
+ '@rollup/rollup-linux-arm64-musl': 4.35.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.35.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.35.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.35.0
+ '@rollup/rollup-linux-s390x-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-gnu': 4.35.0
+ '@rollup/rollup-linux-x64-musl': 4.35.0
+ '@rollup/rollup-win32-arm64-msvc': 4.35.0
+ '@rollup/rollup-win32-ia32-msvc': 4.35.0
+ '@rollup/rollup-win32-x64-msvc': 4.35.0
+ fsevents: 2.3.3
+
run-applescript@7.0.0: {}
run-parallel@1.2.0:
@@ -9224,8 +10196,6 @@ snapshots:
scule@1.3.0: {}
- semver@5.7.2: {}
-
semver@6.3.1: {}
semver@7.7.1: {}
@@ -9293,6 +10263,12 @@ snapshots:
mrmime: 2.0.0
totalist: 3.0.1
+ sirv@3.0.1:
+ dependencies:
+ '@polka/url': 1.0.0-next.28
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
sisteransi@1.0.5: {}
slash@5.1.0: {}
@@ -9341,6 +10317,8 @@ snapshots:
std-env@3.8.0: {}
+ std-env@3.8.1: {}
+
streamx@2.22.0:
dependencies:
fast-fifo: 1.3.2
@@ -9378,30 +10356,32 @@ snapshots:
strip-final-newline@3.0.0: {}
- strip-indent@3.0.0:
+ strip-final-newline@4.0.0: {}
+
+ strip-indent@4.0.0:
dependencies:
min-indent: 1.0.1
strip-json-comments@3.1.1: {}
- strip-literal@2.1.1:
- dependencies:
- js-tokens: 9.0.1
-
strip-literal@3.0.0:
dependencies:
js-tokens: 9.0.1
- stylehacks@7.0.4(postcss@8.5.1):
+ structured-clone-es@1.0.0: {}
+
+ stylehacks@7.0.4(postcss@8.5.3):
dependencies:
browserslist: 4.24.4
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
superjson@2.2.2:
dependencies:
copy-anything: 3.0.5
+ supports-color@10.0.0: {}
+
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -9444,14 +10424,12 @@ snapshots:
tailwind-merge@2.5.4: {}
- tailwind-variants@0.3.1(tailwindcss@4.0.0):
+ tailwind-variants@0.3.1(tailwindcss@4.0.12):
dependencies:
tailwind-merge: 2.5.4
- tailwindcss: 4.0.0
+ tailwindcss: 4.0.12
- tailwindcss@4.0.0: {}
-
- tailwindcss@4.0.4: {}
+ tailwindcss@4.0.12: {}
tapable@2.2.1: {}
@@ -9501,6 +10479,11 @@ snapshots:
fdir: 6.4.3(picomatch@4.0.2)
picomatch: 4.0.2
+ tinyglobby@0.2.12:
+ dependencies:
+ fdir: 6.4.3(picomatch@4.0.2)
+ picomatch: 4.0.2
+
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -9515,30 +10498,22 @@ snapshots:
tr46@0.0.3: {}
- ts-api-utils@2.0.1(typescript@5.7.3):
+ ts-api-utils@2.0.1(tslite@5.7.3):
dependencies:
- typescript: 5.7.3
+ typescript: tslite@5.7.3
tslib@2.8.1: {}
+ tslite@5.7.3: {}
+
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- type-fest@0.20.2: {}
-
- type-fest@0.21.3: {}
-
- type-fest@0.6.0: {}
-
- type-fest@0.8.1: {}
-
type-fest@4.33.0: {}
type-level-regexp@0.1.17: {}
- typescript@5.7.3: {}
-
ufo@1.5.4: {}
ultrahtml@1.5.3: {}
@@ -9550,7 +10525,7 @@ snapshots:
acorn: 8.14.0
estree-walker: 3.0.3
magic-string: 0.30.17
- unplugin: 2.1.2
+ unplugin: 2.2.0
undici-types@6.20.0: {}
@@ -9562,11 +10537,23 @@ snapshots:
node-fetch-native: 1.6.6
pathe: 1.1.2
- unhead@1.11.18:
+ unenv@2.0.0-rc.14:
+ dependencies:
+ defu: 6.1.4
+ exsolve: 1.0.4
+ ohash: 2.0.11
+ pathe: 2.0.3
+ ufo: 1.5.4
+
+ unhead@1.11.20:
+ dependencies:
+ '@unhead/dom': 1.11.20
+ '@unhead/schema': 1.11.20
+ '@unhead/shared': 1.11.20
+ hookable: 5.5.3
+
+ unhead@2.0.0-rc.9:
dependencies:
- '@unhead/dom': 1.11.18
- '@unhead/schema': 1.11.18
- '@unhead/shared': 1.11.18
hookable: 5.5.3
unicode-properties@1.4.1:
@@ -9581,30 +10568,13 @@ snapshots:
unicorn-magic@0.1.0: {}
+ unicorn-magic@0.3.0: {}
+
unifont@0.1.7:
dependencies:
css-tree: 3.1.0
ohash: 1.1.4
- unimport@3.14.6(rollup@4.34.6):
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.3
- local-pkg: 1.0.0
- magic-string: 0.30.17
- mlly: 1.7.4
- pathe: 2.0.2
- picomatch: 4.0.2
- pkg-types: 1.3.1
- scule: 1.3.0
- strip-literal: 2.1.1
- unplugin: 1.16.1
- transitivePeerDependencies:
- - rollup
-
unimport@4.1.0:
dependencies:
acorn: 8.14.0
@@ -9622,6 +10592,23 @@ snapshots:
unplugin: 2.1.2
unplugin-utils: 0.2.3
+ unimport@4.1.2:
+ dependencies:
+ acorn: 8.14.0
+ escape-string-regexp: 5.0.0
+ estree-walker: 3.0.3
+ local-pkg: 1.0.0
+ magic-string: 0.30.17
+ mlly: 1.7.4
+ pathe: 2.0.3
+ picomatch: 4.0.2
+ pkg-types: 1.3.1
+ scule: 1.3.0
+ strip-literal: 3.0.0
+ tinyglobby: 0.2.12
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.4
+
unist-util-is@6.0.0:
dependencies:
'@types/unist': 3.0.3
@@ -9643,66 +10630,65 @@ snapshots:
universalify@2.0.1: {}
- unplugin-auto-import@19.0.0(@nuxt/kit@3.15.4(magicast@0.3.5))(@vueuse/core@12.5.0(typescript@5.7.3))(rollup@4.34.6):
+ unplugin-auto-import@19.1.1(@nuxt/kit@3.15.4(magicast@0.3.5))(@vueuse/core@12.8.2(tslite@5.7.3)):
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
- local-pkg: 0.5.1
+ local-pkg: 1.0.0
magic-string: 0.30.17
picomatch: 4.0.2
- unimport: 3.14.6(rollup@4.34.6)
- unplugin: 2.1.2
+ unimport: 4.1.2
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.4
optionalDependencies:
'@nuxt/kit': 3.15.4(magicast@0.3.5)
- '@vueuse/core': 12.5.0(typescript@5.7.3)
- transitivePeerDependencies:
- - rollup
+ '@vueuse/core': 12.8.2(tslite@5.7.3)
unplugin-utils@0.2.3:
dependencies:
- pathe: 2.0.2
+ pathe: 2.0.3
picomatch: 4.0.2
- unplugin-vue-components@28.0.0(@babel/parser@7.26.8)(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.34.6)(vue@3.5.13(typescript@5.7.3)):
+ unplugin-utils@0.2.4:
+ dependencies:
+ pathe: 2.0.3
+ picomatch: 4.0.2
+
+ unplugin-vue-components@28.4.1(@babel/parser@7.26.8)(@nuxt/kit@3.15.4(magicast@0.3.5))(vue@3.5.13(tslite@5.7.3)):
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
chokidar: 3.6.0
debug: 4.4.0(supports-color@9.4.0)
- fast-glob: 3.3.3
- local-pkg: 0.5.1
+ local-pkg: 1.0.0
magic-string: 0.30.17
- minimatch: 9.0.5
mlly: 1.7.4
- unplugin: 2.1.2
- vue: 3.5.13(typescript@5.7.3)
+ tinyglobby: 0.2.12
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.4
+ vue: 3.5.13(tslite@5.7.3)
optionalDependencies:
'@babel/parser': 7.26.8
'@nuxt/kit': 3.15.4(magicast@0.3.5)
transitivePeerDependencies:
- - rollup
- supports-color
- unplugin-vue-router@0.11.2(rollup@4.34.6)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)):
+ unplugin-vue-router@0.12.0(vue-router@4.5.0(vue@3.5.13(tslite@5.7.3)))(vue@3.5.13(tslite@5.7.3)):
dependencies:
'@babel/types': 7.26.8
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
- '@vue-macros/common': 1.16.1(vue@3.5.13(typescript@5.7.3))
+ '@vue-macros/common': 1.16.1(vue@3.5.13(tslite@5.7.3))
ast-walker-scope: 0.6.2
- chokidar: 3.6.0
+ chokidar: 4.0.3
fast-glob: 3.3.3
json5: 2.2.3
local-pkg: 1.0.0
magic-string: 0.30.17
+ micromatch: 4.0.8
mlly: 1.7.4
- pathe: 2.0.2
+ pathe: 2.0.3
scule: 1.3.0
- unplugin: 2.1.2
+ unplugin: 2.2.0
+ unplugin-utils: 0.2.3
yaml: 2.7.0
optionalDependencies:
- vue-router: 4.5.0(vue@3.5.13(typescript@5.7.3))
+ vue-router: 4.5.0(vue@3.5.13(tslite@5.7.3))
transitivePeerDependencies:
- - rollup
- vue
unplugin@1.16.1:
@@ -9715,7 +10701,12 @@ snapshots:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
- unstorage@1.14.4(db0@0.2.3)(ioredis@5.5.0):
+ unplugin@2.2.0:
+ dependencies:
+ acorn: 8.14.0
+ webpack-virtual-modules: 0.6.2
+
+ unstorage@1.14.4(db0@0.3.1)(ioredis@5.6.0):
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
@@ -9726,8 +10717,22 @@ snapshots:
ofetch: 1.4.1
ufo: 1.5.4
optionalDependencies:
- db0: 0.2.3
- ioredis: 5.5.0
+ db0: 0.3.1
+ ioredis: 5.6.0
+
+ unstorage@1.15.0(db0@0.3.1)(ioredis@5.6.0):
+ dependencies:
+ anymatch: 3.1.3
+ chokidar: 4.0.3
+ destr: 2.0.3
+ h3: 1.15.1
+ lru-cache: 10.4.3
+ node-fetch-native: 1.6.6
+ ofetch: 1.4.1
+ ufo: 1.5.4
+ optionalDependencies:
+ db0: 0.3.1
+ ioredis: 5.6.0
untun@0.1.3:
dependencies:
@@ -9748,6 +10753,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ untyped@2.0.0:
+ dependencies:
+ citty: 0.1.6
+ defu: 6.1.4
+ jiti: 2.4.2
+ knitwork: 1.2.0
+ scule: 1.3.0
+
unwasm@0.3.9:
dependencies:
knitwork: 1.2.0
@@ -9780,25 +10793,35 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vaul-vue@0.2.1(radix-vue@1.9.13(vue@3.5.13(typescript@5.7.3)))(vue@3.5.13(typescript@5.7.3)):
+ vaul-vue@0.3.0(reka-ui@2.0.2(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3)))(vue@3.5.13(tslite@5.7.3)):
dependencies:
- '@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.3))
- radix-vue: 1.9.13(vue@3.5.13(typescript@5.7.3))
- vue: 3.5.13(typescript@5.7.3)
+ '@vueuse/core': 10.11.1(vue@3.5.13(tslite@5.7.3))
+ reka-ui: 2.0.2(tslite@5.7.3)(vue@3.5.13(tslite@5.7.3))
+ vue: 3.5.13(tslite@5.7.3)
transitivePeerDependencies:
- '@vue/composition-api'
- vite-hot-client@0.2.4(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ vite-dev-rpc@1.0.7(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
dependencies:
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ birpc: 2.2.0
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite-hot-client: 2.0.4(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
- vite-node@3.0.5(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0):
+ vite-hot-client@0.2.4(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ dependencies:
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+
+ vite-hot-client@2.0.4(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ dependencies:
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+
+ vite-node@3.0.8(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@9.4.0)
es-module-lexer: 1.6.0
- pathe: 2.0.2
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ pathe: 2.0.3
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -9813,65 +10836,53 @@ snapshots:
- tsx
- yaml
- vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.7.3)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ vite-plugin-checker@0.9.0(eslint@9.22.0(jiti@2.4.2))(optionator@0.9.4)(tslite@5.7.3)(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
dependencies:
'@babel/code-frame': 7.26.2
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- chokidar: 3.6.0
- commander: 8.3.0
- fast-glob: 3.3.3
- fs-extra: 11.3.0
- npm-run-path: 4.0.1
- strip-ansi: 6.0.1
+ chokidar: 4.0.3
+ npm-run-path: 6.0.0
+ picocolors: 1.1.1
+ picomatch: 4.0.2
+ strip-ansi: 7.1.0
tiny-invariant: 1.3.3
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- vscode-languageclient: 7.0.0
- vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.12
+ tinyglobby: 0.2.12
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
vscode-uri: 3.1.0
optionalDependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.22.0(jiti@2.4.2)
optionator: 0.9.4
- typescript: 5.7.3
+ typescript: tslite@5.7.3
- vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.4(magicast@0.3.5))(rollup@4.34.6)(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ vite-plugin-inspect@11.0.0(@nuxt/kit@3.16.0(magicast@0.3.5))(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.4(rollup@4.34.6)
+ ansis: 3.17.0
debug: 4.4.0(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.3.0
+ error-stack-parser-es: 1.0.5
+ ohash: 2.0.11
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.1.1
- sirv: 3.0.0
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ sirv: 3.0.1
+ unplugin-utils: 0.2.3
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vite-dev-rpc: 1.0.7(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))
optionalDependencies:
- '@nuxt/kit': 3.15.4(magicast@0.3.5)
+ '@nuxt/kit': 3.16.0(magicast@0.3.5)
transitivePeerDependencies:
- - rollup
- supports-color
- vite-plugin-vue-inspector@5.3.1(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)):
+ vite-plugin-vue-tracer@0.1.1(vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0))(vue@3.5.13(tslite@5.7.3)):
dependencies:
- '@babel/core': 7.26.8
- '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.8)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.8)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.8)
- '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.8)
- '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.8)
- '@vue/compiler-dom': 3.5.13
- kolorist: 1.8.0
+ estree-walker: 3.0.3
magic-string: 0.30.17
- vite: 6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
- transitivePeerDependencies:
- - supports-color
+ pathe: 2.0.3
+ source-map-js: 1.2.1
+ vite: 6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0)
+ vue: 3.5.13(tslite@5.7.3)
- vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0):
+ vite@6.2.1(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.38.1)(yaml@2.7.0):
dependencies:
- esbuild: 0.24.2
- postcss: 8.5.1
+ esbuild: 0.25.1
+ postcss: 8.5.3
rollup: 4.34.6
optionalDependencies:
'@types/node': 22.13.1
@@ -9881,66 +10892,45 @@ snapshots:
terser: 5.38.1
yaml: 2.7.0
- vscode-jsonrpc@6.0.0: {}
-
- vscode-languageclient@7.0.0:
- dependencies:
- minimatch: 3.1.2
- semver: 7.7.1
- vscode-languageserver-protocol: 3.16.0
-
- vscode-languageserver-protocol@3.16.0:
- dependencies:
- vscode-jsonrpc: 6.0.0
- vscode-languageserver-types: 3.16.0
-
- vscode-languageserver-textdocument@1.0.12: {}
-
- vscode-languageserver-types@3.16.0: {}
-
- vscode-languageserver@7.0.0:
- dependencies:
- vscode-languageserver-protocol: 3.16.0
-
vscode-uri@3.1.0: {}
vue-bundle-renderer@2.1.1:
dependencies:
ufo: 1.5.4
- vue-demi@0.14.10(vue@3.5.13(typescript@5.7.3)):
+ vue-demi@0.14.10(vue@3.5.13(tslite@5.7.3)):
dependencies:
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
vue-devtools-stub@0.1.0: {}
- vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
+ vue-eslint-parser@10.1.1(eslint@9.22.0(jiti@2.4.2)):
dependencies:
debug: 4.4.0(supports-color@9.4.0)
- eslint: 9.17.0(jiti@2.4.2)
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
+ eslint: 9.22.0(jiti@2.4.2)
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
esquery: 1.6.0
lodash: 4.17.21
semver: 7.7.1
transitivePeerDependencies:
- supports-color
- vue-router@4.5.0(vue@3.5.13(typescript@5.7.3)):
+ vue-router@4.5.0(vue@3.5.13(tslite@5.7.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.7.3)
+ vue: 3.5.13(tslite@5.7.3)
- vue@3.5.13(typescript@5.7.3):
+ vue@3.5.13(tslite@5.7.3):
dependencies:
'@vue/compiler-dom': 3.5.13
'@vue/compiler-sfc': 3.5.13
'@vue/runtime-dom': 3.5.13
- '@vue/server-renderer': 3.5.13(vue@3.5.13(typescript@5.7.3))
+ '@vue/server-renderer': 3.5.13(vue@3.5.13(tslite@5.7.3))
'@vue/shared': 3.5.13
optionalDependencies:
- typescript: 5.7.3
+ typescript: tslite@5.7.3
webidl-conversions@3.0.1: {}
@@ -9957,9 +10947,9 @@ snapshots:
dependencies:
isexe: 2.0.0
- which@3.0.1:
+ which@5.0.0:
dependencies:
- isexe: 2.0.0
+ isexe: 3.1.1
word-wrap@1.2.5: {}
@@ -9975,9 +10965,7 @@ snapshots:
string-width: 5.1.2
strip-ansi: 7.1.0
- wrappy@1.0.2: {}
-
- ws@8.18.0: {}
+ ws@8.18.1: {}
xml-name-validator@4.0.0: {}
@@ -9991,10 +10979,9 @@ snapshots:
yaml-ast-parser@0.0.43: {}
- yaml-eslint-parser@1.2.3:
+ yaml-eslint-parser@1.3.0:
dependencies:
eslint-visitor-keys: 3.4.3
- lodash: 4.17.21
yaml: 2.7.0
yaml@2.7.0: {}
@@ -10015,6 +11002,20 @@ snapshots:
yocto-queue@1.1.1: {}
+ yoctocolors@2.1.1: {}
+
+ youch-core@0.3.2:
+ dependencies:
+ '@poppinss/exception': 1.2.1
+ error-stack-parser-es: 1.0.5
+
+ youch@4.1.0-beta.6:
+ dependencies:
+ '@poppinss/dumper': 0.6.3
+ '@speed-highlight/core': 1.2.7
+ cookie: 1.0.2
+ youch-core: 0.3.2
+
zhead@2.2.4: {}
zip-stream@6.0.1:
@@ -10023,6 +11024,6 @@ snapshots:
compress-commons: 6.0.2
readable-stream: 4.7.0
- zod@3.24.1: {}
+ zod@3.24.2: {}
zwitch@2.0.4: {}
diff --git a/preview.md b/preview.md
new file mode 100644
index 0000000..55ab5b0
--- /dev/null
+++ b/preview.md
@@ -0,0 +1,63 @@
+# Preview
+
+Since Nuxtor is a desktop application, there is no way of showing the look and feel of the released project.
+
+What follows are each page and its functionalities:
+
+## Commands page
+
+Access the system shell
+
+
+

+
+
+---
+
+## File system page
+
+Access the file system
+
+
+

+
+
+---
+
+## Notifications page
+
+Send custom notifications at os-level
+
+
+

+
+
+---
+
+## OS info page
+
+Show system informations
+
+
+

+
+
+---
+
+## Storage page
+
+Read & write persistent key-value data
+
+
+

+
+
+---
+
+## Webview page
+
+Create a secondary detached window
+
+
+

+
diff --git a/public/page-commands.png b/public/page-commands.png
new file mode 100644
index 0000000..41ff58d
Binary files /dev/null and b/public/page-commands.png differ
diff --git a/public/page-file-system.png b/public/page-file-system.png
new file mode 100644
index 0000000..9ff6116
Binary files /dev/null and b/public/page-file-system.png differ
diff --git a/public/page-notifications.png b/public/page-notifications.png
new file mode 100644
index 0000000..4a084d8
Binary files /dev/null and b/public/page-notifications.png differ
diff --git a/public/page-os-info.png b/public/page-os-info.png
new file mode 100644
index 0000000..88828de
Binary files /dev/null and b/public/page-os-info.png differ
diff --git a/public/page-storage.png b/public/page-storage.png
new file mode 100644
index 0000000..a972984
Binary files /dev/null and b/public/page-storage.png differ
diff --git a/public/page-webview.png b/public/page-webview.png
new file mode 100644
index 0000000..88a6175
Binary files /dev/null and b/public/page-webview.png differ
diff --git a/public/screenshot.png b/public/screenshot.png
index af6225f..13f4a7e 100644
Binary files a/public/screenshot.png and b/public/screenshot.png differ
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index 059eb4f..de223c7 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nuxtor"
-version = "1.2.0"
+version = "1.3.0"
description = "Starter template for Nuxt 3 and Tauri 2"
authors = [ "NicolaSpadari" ]
license = "MIT"
@@ -29,7 +29,10 @@ serde_json = "1"
[dependencies.tauri]
version = "2.2.5"
-features = [ "tray-icon" ]
+features = [
+ "tray-icon",
+ "unstable"
+]
[dependencies.serde]
version = "1"
diff --git a/src-tauri/capabilities/main.json b/src-tauri/capabilities/main.json
index 65c05f0..a17f416 100644
--- a/src-tauri/capabilities/main.json
+++ b/src-tauri/capabilities/main.json
@@ -1,9 +1,10 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "main",
- "description": "Capabilities for the main window",
+ "description": "Capabilities for the app window",
"windows": [
- "main"
+ "main",
+ "secondary"
],
"permissions": [
"core:path:default",
@@ -38,6 +39,8 @@
"os:allow-locale",
"fs:allow-document-read",
"fs:allow-document-write",
- "store:default"
+ "store:default",
+ "core:webview:allow-create-webview",
+ "core:webview:allow-create-webview-window"
]
}
diff --git a/src-tauri/gen/schemas/capabilities.json b/src-tauri/gen/schemas/capabilities.json
index bb04784..df1bbc0 100644
--- a/src-tauri/gen/schemas/capabilities.json
+++ b/src-tauri/gen/schemas/capabilities.json
@@ -1 +1 @@
-{"main":{"identifier":"main","description":"Capabilities for the main window","local":true,"windows":["main"],"permissions":["core:path:default","core:event:default","core:window:default","core:app:default","core:resources:default","core:menu:default","core:tray:default","shell:allow-open",{"identifier":"shell:allow-execute","allow":[{"args":["-c",{"validator":"\\S+"}],"cmd":"sh","name":"exec-sh","sidecar":false}]},"notification:default","os:allow-platform","os:allow-arch","os:allow-family","os:allow-version","os:allow-locale","fs:allow-document-read","fs:allow-document-write","store:default"]}}
\ No newline at end of file
+{"main":{"identifier":"main","description":"Capabilities for the app window","local":true,"windows":["main","secondary"],"permissions":["core:path:default","core:event:default","core:window:default","core:app:default","core:resources:default","core:menu:default","core:tray:default","shell:allow-open",{"identifier":"shell:allow-execute","allow":[{"args":["-c",{"validator":"\\S+"}],"cmd":"sh","name":"exec-sh","sidecar":false}]},"notification:default","os:allow-platform","os:allow-arch","os:allow-family","os:allow-version","os:allow-locale","fs:allow-document-read","fs:allow-document-write","store:default","core:webview:allow-create-webview","core:webview:allow-create-webview-window"]}}
\ No newline at end of file
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index a4d7bc9..76631ee 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -32,7 +32,7 @@
"devUrl": "http://localhost:3000"
},
"productName": "Nuxtor",
- "version": "1.2.0",
+ "version": "1.3.0",
"identifier": "com.nicolaspadari.nuxtor",
"plugins": {},
"app": {