diff --git a/docs/package.json b/docs/package.json index 11138d431..5dd7df7ee 100644 --- a/docs/package.json +++ b/docs/package.json @@ -14,14 +14,14 @@ "@iconify-json/svg-spinners": "^1.1.2", "@shikijs/transformers": "workspace:*", "@shikijs/twoslash": "workspace:*", - "@unocss/reset": "^0.61.5", + "@unocss/reset": "^0.61.9", "@vueuse/core": "^10.11.0", "floating-vue": "^5.2.2", "pinia": "^2.2.0", "shiki": "workspace:*", - "unocss": "^0.61.5", + "unocss": "^0.61.9", "unplugin-vue-components": "^0.27.3", "vitepress": "^1.3.1", - "vue": "^3.4.34" + "vue": "^3.4.35" } } diff --git a/package.json b/package.json index c2264353b..a8a172740 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "prepare": "simple-git-hooks" }, "devDependencies": { - "@antfu/eslint-config": "^2.23.2", + "@antfu/eslint-config": "^2.24.1", "@antfu/ni": "^0.22.0", "@antfu/utils": "^0.7.10", "@rollup/plugin-alias": "^5.1.0", @@ -30,11 +30,11 @@ "@shikijs/vitepress-twoslash": "workspace:*", "@types/fs-extra": "^11.0.4", "@types/hast": "^3.0.4", - "@types/node": "^20.14.12", - "@vitest/coverage-v8": "^2.0.4", + "@types/node": "^22.0.2", + "@vitest/coverage-v8": "^2.0.5", "ansi-sequence-parser": "^1.1.1", "bumpp": "^9.4.1", - "eslint": "^9.7.0", + "eslint": "^9.8.0", "eslint-plugin-format": "^0.1.2", "esno": "^4.7.0", "fast-glob": "^3.3.2", @@ -49,22 +49,22 @@ "pnpm": "^9.6.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", - "rollup": "^4.19.0", + "rollup": "^4.19.2", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-esbuild": "^6.1.1", "rollup-plugin-typescript2": "^0.36.0", "shiki": "workspace:*", "simple-git-hooks": "^2.11.1", - "taze": "^0.16.1", + "taze": "^0.16.3", "typescript": "^5.5.4", "unbuild": "^2.0.0", "vite": "^5.3.5", "vite-tsconfig-paths": "^4.3.2", "vitepress-plugin-mermaid": "^2.0.16", - "vitest": "^2.0.4", + "vitest": "^2.0.5", "vue-tsc": "^2.0.29", - "wrangler": "^3.67.1" + "wrangler": "^3.68.0" }, "resolutions": { "@shikijs/compat": "workspace:*", diff --git a/packages/shiki/package.json b/packages/shiki/package.json index 85680943e..8740579e7 100644 --- a/packages/shiki/package.json +++ b/packages/shiki/package.json @@ -104,8 +104,8 @@ "@types/hast": "^3.0.4" }, "devDependencies": { - "tm-grammars": "^1.15.1", - "tm-themes": "^1.5.7", + "tm-grammars": "^1.16.2", + "tm-themes": "^1.6.0", "vscode-oniguruma": "^1.7.0" } } diff --git a/packages/shiki/src/assets/langs-bundle-full.ts b/packages/shiki/src/assets/langs-bundle-full.ts index 2165b2b3c..4b676d0ad 100644 --- a/packages/shiki/src/assets/langs-bundle-full.ts +++ b/packages/shiki/src/assets/langs-bundle-full.ts @@ -259,6 +259,11 @@ export const bundledLanguagesInfo: BundledLanguageInfo[] = [ ], 'import': (() => import('./langs/docker')) as DynamicImportLanguageRegistration }, + { + 'id': 'dotenv', + 'name': 'dotEnv', + 'import': (() => import('./langs/dotenv')) as DynamicImportLanguageRegistration + }, { 'id': 'dream-maker', 'name': 'Dream Maker', @@ -1321,6 +1326,7 @@ export type BundledLanguage = | 'diff' | 'docker' | 'dockerfile' + | 'dotenv' | 'dream-maker' | 'edge' | 'elisp' diff --git a/packages/shiki/src/assets/themes.ts b/packages/shiki/src/assets/themes.ts index 1d38e08b1..638dd676c 100644 --- a/packages/shiki/src/assets/themes.ts +++ b/packages/shiki/src/assets/themes.ts @@ -62,6 +62,18 @@ export const bundledThemesInfo: BundledThemeInfo[] = [ "type": "dark", "import": (() => import('./themes/dracula-soft')) as unknown as DynamicImportThemeRegistration }, + { + "id": "everforest-dark", + "displayName": "Everforest Dark", + "type": "dark", + "import": (() => import('./themes/everforest-dark')) as unknown as DynamicImportThemeRegistration + }, + { + "id": "everforest-light", + "displayName": "Everforest Light", + "type": "light", + "import": (() => import('./themes/everforest-light')) as unknown as DynamicImportThemeRegistration + }, { "id": "github-dark", "displayName": "GitHub Dark", @@ -291,6 +303,8 @@ export type BundledTheme = | 'dark-plus' | 'dracula' | 'dracula-soft' + | 'everforest-dark' + | 'everforest-light' | 'github-dark' | 'github-dark-default' | 'github-dark-dimmed' diff --git a/packages/shiki/test/bundle.test.ts b/packages/shiki/test/bundle.test.ts index 7f1caecdc..0c28c0d06 100644 --- a/packages/shiki/test/bundle.test.ts +++ b/packages/shiki/test/bundle.test.ts @@ -7,7 +7,7 @@ it('bundle-full', async () => { })) expect(highlighter.getLoadedLanguages().length) - .toMatchInlineSnapshot(`306`) + .toMatchInlineSnapshot(`307`) }) it('bundle-web', async () => { diff --git a/packages/twoslash/test/out/import-vue.ts.html b/packages/twoslash/test/out/import-vue.ts.html index e60108ad6..a5eb63959 100644 --- a/packages/twoslash/test/out/import-vue.ts.html +++ b/packages/twoslash/test/out/import-vue.ts.html @@ -1,6 +1,6 @@ -
import { function ref<T>(value: T): Ref<UnwrapRef<T>> (+1 overload)
Takes an inner value and returns a reactive and mutable ref object, which
+import { function ref<T>(value: T): Ref<UnwrapRef<T>, UnwrapRef<T> | T> (+1 overload)
Takes an inner value and returns a reactive and mutable ref object, which
has a single property `.value` that points to the inner value.ref } from "vue"
-const const a: Ref<number>
a = ref<number>(value: number): Ref<number> (+1 overload)
Takes an inner value and returns a reactive and mutable ref object, which
+const const a: Ref<number, number>
a = ref<number>(value: number): Ref<number, number> (+1 overload)
Takes an inner value and returns a reactive and mutable ref object, which
has a single property `.value` that points to the inner value.ref(10)
a.value = 'hi'
\ No newline at end of file
diff --git a/packages/twoslash/test/out/import-vue.ts.json b/packages/twoslash/test/out/import-vue.ts.json
index 6ed53d0ab..0d905d2fd 100644
--- a/packages/twoslash/test/out/import-vue.ts.json
+++ b/packages/twoslash/test/out/import-vue.ts.json
@@ -286,7 +286,98 @@
"children": [
{
"type": "text",
- "value": ">>"
+ "value": ">,"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " UnwrapRef"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "<"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "T"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ">"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " |"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " T"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ">"
}
]
},
@@ -669,6 +760,32 @@
}
]
},
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ", "
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "number"
+ }
+ ]
+ },
{
"type": "element",
"tagName": "span",
@@ -905,6 +1022,32 @@
}
]
},
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ","
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " number"
+ }
+ ]
+ },
{
"type": "element",
"tagName": "span",
diff --git a/packages/vitepress-twoslash/package.json b/packages/vitepress-twoslash/package.json
index a5e02215c..61ad79b4a 100644
--- a/packages/vitepress-twoslash/package.json
+++ b/packages/vitepress-twoslash/package.json
@@ -61,6 +61,6 @@
"shiki": "workspace:*",
"twoslash": "^0.2.9",
"twoslash-vue": "^0.2.9",
- "vue": "^3.4.34"
+ "vue": "^3.4.35"
}
}
diff --git a/packages/vitepress-twoslash/test/out/import-vue.ts.json b/packages/vitepress-twoslash/test/out/import-vue.ts.json
index d440dcbbc..10f335a08 100644
--- a/packages/vitepress-twoslash/test/out/import-vue.ts.json
+++ b/packages/vitepress-twoslash/test/out/import-vue.ts.json
@@ -309,7 +309,98 @@
"children": [
{
"type": "text",
- "value": ">>"
+ "value": ">,"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " UnwrapRef"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "<"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "T"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ">"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " |"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " T"
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ">"
}
]
},
@@ -853,6 +944,32 @@
}
]
},
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ", "
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": "number"
+ }
+ ]
+ },
{
"type": "element",
"tagName": "span",
@@ -1112,6 +1229,32 @@
}
]
},
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#666666"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": ","
+ }
+ ]
+ },
+ {
+ "type": "element",
+ "tagName": "span",
+ "properties": {
+ "style": "color:#5DA994"
+ },
+ "children": [
+ {
+ "type": "text",
+ "value": " number"
+ }
+ ]
+ },
{
"type": "element",
"tagName": "span",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 267a89609..75c7d9b25 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -24,8 +24,8 @@ importers:
.:
devDependencies:
'@antfu/eslint-config':
- specifier: ^2.23.2
- version: 2.23.2(@vue/compiler-sfc@3.4.34)(eslint-plugin-format@0.1.2(eslint@9.7.0))(eslint@9.7.0)(typescript@5.5.4)(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0))
+ specifier: ^2.24.1
+ version: 2.24.1(@vue/compiler-sfc@3.4.35)(eslint-plugin-format@0.1.2(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0))
'@antfu/ni':
specifier: ^0.22.0
version: 0.22.0
@@ -34,22 +34,22 @@ importers:
version: 0.7.10
'@rollup/plugin-alias':
specifier: ^5.1.0
- version: 5.1.0(rollup@4.19.0)
+ version: 5.1.0(rollup@4.19.2)
'@rollup/plugin-commonjs':
specifier: ^26.0.1
- version: 26.0.1(rollup@4.19.0)
+ version: 26.0.1(rollup@4.19.2)
'@rollup/plugin-json':
specifier: ^6.1.0
- version: 6.1.0(rollup@4.19.0)
+ version: 6.1.0(rollup@4.19.2)
'@rollup/plugin-node-resolve':
specifier: ^15.2.3
- version: 15.2.3(rollup@4.19.0)
+ version: 15.2.3(rollup@4.19.2)
'@rollup/plugin-replace':
specifier: ^5.0.7
- version: 5.0.7(rollup@4.19.0)
+ version: 5.0.7(rollup@4.19.2)
'@rollup/plugin-terser':
specifier: ^0.4.4
- version: 0.4.4(rollup@4.19.0)
+ version: 0.4.4(rollup@4.19.2)
'@shikijs/markdown-it':
specifier: workspace:*
version: link:packages/markdown-it
@@ -72,11 +72,11 @@ importers:
specifier: ^3.0.4
version: 3.0.4
'@types/node':
- specifier: ^20.14.12
- version: 20.14.12
+ specifier: ^22.0.2
+ version: 22.0.2
'@vitest/coverage-v8':
- specifier: ^2.0.4
- version: 2.0.4(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0))
+ specifier: ^2.0.5
+ version: 2.0.5(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0))
ansi-sequence-parser:
specifier: ^1.1.1
version: 1.1.1
@@ -84,11 +84,11 @@ importers:
specifier: ^9.4.1
version: 9.4.1
eslint:
- specifier: ^9.7.0
- version: 9.7.0
+ specifier: ^9.8.0
+ version: 9.8.0
eslint-plugin-format:
specifier: ^0.1.2
- version: 0.1.2(eslint@9.7.0)
+ version: 0.1.2(eslint@9.8.0)
esno:
specifier: ^4.7.0
version: 4.7.0
@@ -129,20 +129,20 @@ importers:
specifier: ^6.0.1
version: 6.0.1
rollup:
- specifier: ^4.19.0
- version: 4.19.0
+ specifier: ^4.19.2
+ version: 4.19.2
rollup-plugin-copy:
specifier: ^3.5.0
version: 3.5.0
rollup-plugin-dts:
specifier: ^6.1.1
- version: 6.1.1(rollup@4.19.0)(typescript@5.5.4)
+ version: 6.1.1(rollup@4.19.2)(typescript@5.5.4)
rollup-plugin-esbuild:
specifier: ^6.1.1
- version: 6.1.1(esbuild@0.17.19)(rollup@4.19.0)
+ version: 6.1.1(esbuild@0.17.19)(rollup@4.19.2)
rollup-plugin-typescript2:
specifier: ^0.36.0
- version: 0.36.0(rollup@4.19.0)(typescript@5.5.4)
+ version: 0.36.0(rollup@4.19.2)(typescript@5.5.4)
shiki:
specifier: workspace:*
version: link:packages/shiki
@@ -150,8 +150,8 @@ importers:
specifier: ^2.11.1
version: 2.11.1
taze:
- specifier: ^0.16.1
- version: 0.16.1
+ specifier: ^0.16.3
+ version: 0.16.3
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -160,22 +160,22 @@ importers:
version: 2.0.0(typescript@5.5.4)
vite:
specifier: ^5.3.5
- version: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ version: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
vite-tsconfig-paths:
specifier: ^4.3.2
- version: 4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))
+ version: 4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))
vitepress-plugin-mermaid:
specifier: ^2.0.16
- version: 2.0.16(mermaid@10.7.0)(vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@20.14.12)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4))
+ version: 2.0.16(mermaid@10.7.0)(vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4))
vitest:
- specifier: ^2.0.4
- version: 2.0.4(@types/node@20.14.12)(terser@5.27.0)
+ specifier: ^2.0.5
+ version: 2.0.5(@types/node@22.0.2)(terser@5.27.0)
vue-tsc:
specifier: ^2.0.29
version: 2.0.29(typescript@5.5.4)
wrangler:
- specifier: ^3.67.1
- version: 3.67.1
+ specifier: ^3.68.0
+ version: 3.68.0
docs:
dependencies:
@@ -196,32 +196,32 @@ importers:
specifier: workspace:*
version: link:../packages/twoslash
'@unocss/reset':
- specifier: ^0.61.5
- version: 0.61.5
+ specifier: ^0.61.9
+ version: 0.61.9
'@vueuse/core':
specifier: ^10.11.0
- version: 10.11.0(vue@3.4.34(typescript@5.5.4))
+ version: 10.11.0(vue@3.4.35(typescript@5.5.4))
floating-vue:
specifier: ^5.2.2
- version: 5.2.2(vue@3.4.34(typescript@5.5.4))
+ version: 5.2.2(vue@3.4.35(typescript@5.5.4))
pinia:
specifier: ^2.2.0
- version: 2.2.0(typescript@5.5.4)(vue@3.4.34(typescript@5.5.4))
+ version: 2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4))
shiki:
specifier: workspace:*
version: link:../packages/shiki
unocss:
- specifier: ^0.61.5
- version: 0.61.5(postcss@8.4.39)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))
+ specifier: ^0.61.9
+ version: 0.61.9(postcss@8.4.40)(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))
unplugin-vue-components:
specifier: ^0.27.3
- version: 0.27.3(@babel/parser@7.24.8)(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4))
+ version: 0.27.3(@babel/parser@7.25.3)(rollup@4.19.2)(vue@3.4.35(typescript@5.5.4))
vitepress:
specifier: ^1.3.1
- version: 1.3.1(@algolia/client-search@4.22.1)(@types/node@20.14.12)(fuse.js@7.0.0)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)
+ version: 1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(fuse.js@7.0.0)(postcss@8.4.40)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)
vue:
- specifier: ^3.4.34
- version: 3.4.34(typescript@5.5.4)
+ specifier: ^3.4.35
+ version: 3.4.35(typescript@5.5.4)
packages/cli:
dependencies:
@@ -301,7 +301,7 @@ importers:
version: 5.5.4
vite:
specifier: ^5.3.5
- version: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ version: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
packages/rehype:
dependencies:
@@ -347,11 +347,11 @@ importers:
version: 3.0.4
devDependencies:
tm-grammars:
- specifier: ^1.15.1
- version: 1.15.1
+ specifier: ^1.16.2
+ version: 1.16.2
tm-themes:
- specifier: ^1.5.7
- version: 1.5.7
+ specifier: ^1.6.0
+ version: 1.6.0
vscode-oniguruma:
specifier: ^1.7.0
version: 1.7.0
@@ -394,7 +394,7 @@ importers:
version: link:../twoslash
floating-vue:
specifier: ^5.2.2
- version: 5.2.2(vue@3.4.34(typescript@5.5.4))
+ version: 5.2.2(vue@3.4.35(typescript@5.5.4))
mdast-util-from-markdown:
specifier: ^2.0.1
version: 2.0.1
@@ -414,8 +414,8 @@ importers:
specifier: ^0.2.9
version: 0.2.9(typescript@5.5.4)
vue:
- specifier: ^3.4.34
- version: 3.4.34(typescript@5.5.4)
+ specifier: ^3.4.35
+ version: 3.4.35(typescript@5.5.4)
packages:
@@ -489,8 +489,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@antfu/eslint-config@2.23.2':
- resolution: {integrity: sha512-O1HYH2EVTm/+NPk30pG5nExHPe7B7Uozv2K6Xq+5u4WMjL7DN/zRO+Dj/4Ea6VqyWDUXVEKoIjATGsngpHjsoA==}
+ '@antfu/eslint-config@2.24.1':
+ resolution: {integrity: sha512-vk2zqPO3HFHxhlIZbMxjo185qvMmCUUc6H58TrXHjMxnCCkw9SqBDWemV6uKUmPSphaOipjzoXYYSyeFYhGa1w==}
hasBin: true
peerDependencies:
'@eslint-react/eslint-plugin': ^1.5.8
@@ -556,14 +556,26 @@ packages:
resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.25.2':
+ resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.24.9':
resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.24.10':
resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.25.0':
+ resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.24.7':
resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
@@ -572,6 +584,10 @@ packages:
resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.24.7':
resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
engines: {node: '>=6.9.0'}
@@ -604,6 +620,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.24.7':
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
@@ -646,6 +668,10 @@ packages:
resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.25.0':
+ resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
@@ -655,6 +681,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.25.3':
+ resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-syntax-jsx@7.24.7':
resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
engines: {node: '>=6.9.0'}
@@ -693,14 +724,26 @@ packages:
resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.24.8':
resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.25.3':
+ resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.24.9':
resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.25.2':
+ resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -719,32 +762,32 @@ packages:
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@cloudflare/workerd-darwin-64@1.20240718.0':
- resolution: {integrity: sha512-BsPZcSCgoGnufog2GIgdPuiKicYTNyO/Dp++HbpLRH+yQdX3x4aWx83M+a0suTl1xv76dO4g9aw7SIB6OSgIyQ==}
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
+ resolution: {integrity: sha512-KpE7eycdZ9ON+tKBuTyqZh8SdFWHGrh2Ru9LcbpeFwb7O9gDQv9ceSdoV/T598qlT0a0yVKM62R6xa5ec0UOWA==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-arm64@1.20240718.0':
- resolution: {integrity: sha512-nlr4gaOO5gcJerILJQph3+2rnas/nx/lYsuaot1ntHu4LAPBoQo1q/Pucj2cSIav4UiMzTbDmoDwPlls4Kteog==}
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
+ resolution: {integrity: sha512-/UQlI04FdXLpPlDzzsWGz8TuKrMZKLowTo+8PkxgEiWIaBhE4DIDM5bwj3jM4Bs8yOLiL2ovQNpld5CnAKqA8g==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20240718.0':
- resolution: {integrity: sha512-LJ/k3y47pBcjax0ee4K+6ZRrSsqWlfU4lbU8Dn6u5tSC9yzwI4YFNXDrKWInB0vd7RT3w4Yqq1S6ZEbfRrqVUg==}
+ '@cloudflare/workerd-linux-64@1.20240725.0':
+ resolution: {integrity: sha512-Z5t12qYLvHz0b3ZRBBm2HQ93RiHrAnjFfdhtjMcgJypAGkiWpOCEn2xar/WqDhMfqnk0sa8aYiYAbMAlP1WN6w==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20240718.0':
- resolution: {integrity: sha512-zBEZvy88EcAMGRGfuVtS00Yl7lJdUM9sH7i651OoL+q0Plv9kphlCC0REQPwzxrEYT1qibSYtWcD9IxQGgx2/g==}
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
+ resolution: {integrity: sha512-j9gYXLOwOyNehLMzP7KxQ+Y6/nxcL9i6LTDJC6RChoaxLRbm0Y/9Otu+hfyzeNeRpt31ip6vqXZ1QQk6ygzI8A==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-windows-64@1.20240718.0':
- resolution: {integrity: sha512-YpCRvvT47XanFum7C3SedOZKK6BfVhqmwdAAVAQFyc4gsCdegZo0JkUkdloC/jwuWlbCACOG2HTADHOqyeolzQ==}
+ '@cloudflare/workerd-windows-64@1.20240725.0':
+ resolution: {integrity: sha512-fkrJLWNN6rrPjZ0eKJx328NVMo4BsainKxAfqaPMEd6uRwjOM8uN8V4sSLsXXP8GQMAx6hAG2hU86givS4GItg==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
@@ -809,12 +852,6 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.20.2':
- resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -833,12 +870,6 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.20.2':
- resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -857,12 +888,6 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.20.2':
- resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -881,12 +906,6 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.20.2':
- resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -905,12 +924,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.20.2':
- resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -929,12 +942,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.20.2':
- resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -953,12 +960,6 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.20.2':
- resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -977,12 +978,6 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.20.2':
- resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -1001,12 +996,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.20.2':
- resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -1025,12 +1014,6 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.20.2':
- resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -1049,12 +1032,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.20.2':
- resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -1073,12 +1050,6 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.20.2':
- resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -1097,12 +1068,6 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.20.2':
- resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -1121,12 +1086,6 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.20.2':
- resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -1145,12 +1104,6 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.20.2':
- resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -1169,12 +1122,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.20.2':
- resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -1193,12 +1140,6 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.20.2':
- resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -1217,12 +1158,6 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.20.2':
- resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -1241,12 +1176,6 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.20.2':
- resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -1265,12 +1194,6 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.20.2':
- resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -1289,12 +1212,6 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.20.2':
- resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -1313,12 +1230,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.20.2':
- resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -1337,12 +1248,6 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.20.2':
- resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -1359,16 +1264,16 @@ packages:
resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.17.0':
- resolution: {integrity: sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==}
+ '@eslint/config-array@0.17.1':
+ resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.7.0':
- resolution: {integrity: sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==}
+ '@eslint/js@9.8.0':
+ resolution: {integrity: sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
@@ -1411,8 +1316,8 @@ packages:
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
- '@iconify/utils@2.1.25':
- resolution: {integrity: sha512-Y+iGko8uv/Fz5bQLLJyNSZGOdMW0G7cnlEX1CiNcKsRXX9cq/y/vwxrIAtLCZhKHr3m0VJmsjVPsvnM4uX8YLg==}
+ '@iconify/utils@2.1.29':
+ resolution: {integrity: sha512-wCcTsmlJvTi1VWBgcJ7HeuWlh7gLGWY7L9HmbgMfjOfsoo7DADemB2Nqnrw1KvCdEAxLL5wTMBAOP5BesFrtng==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -1440,6 +1345,9 @@ packages:
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -1569,109 +1477,186 @@ packages:
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm-eabi@4.19.2':
+ resolution: {integrity: sha512-OHflWINKtoCFSpm/WmuQaWW4jeX+3Qt3XQDepkkiFTsoxFc5BpF3Z5aDxFZgBqRjO6ATP5+b1iilp4kGIZVWlA==}
+ cpu: [arm]
+ os: [android]
+
'@rollup/rollup-android-arm64@4.19.0':
resolution: {integrity: sha512-RDxUSY8D1tWYfn00DDi5myxKgOk6RvWPxhmWexcICt/MEC6yEMr4HNCu1sXXYLw8iAsg0D44NuU+qNq7zVWCrw==}
cpu: [arm64]
os: [android]
+ '@rollup/rollup-android-arm64@4.19.2':
+ resolution: {integrity: sha512-k0OC/b14rNzMLDOE6QMBCjDRm3fQOHAL8Ldc9bxEWvMo4Ty9RY6rWmGetNTWhPo+/+FNd1lsQYRd0/1OSix36A==}
+ cpu: [arm64]
+ os: [android]
+
'@rollup/rollup-darwin-arm64@4.19.0':
resolution: {integrity: sha512-emvKHL4B15x6nlNTBMtIaC9tLPRpeA5jMvRLXVbl/W9Ie7HhkrE7KQjvgS9uxgatL1HmHWDXk5TTS4IaNJxbAA==}
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-arm64@4.19.2':
+ resolution: {integrity: sha512-IIARRgWCNWMTeQH+kr/gFTHJccKzwEaI0YSvtqkEBPj7AshElFq89TyreKNFAGh5frLfDCbodnq+Ye3dqGKPBw==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rollup/rollup-darwin-x64@4.19.0':
resolution: {integrity: sha512-fO28cWA1dC57qCd+D0rfLC4VPbh6EOJXrreBmFLWPGI9dpMlER2YwSPZzSGfq11XgcEpPukPTfEVFtw2q2nYJg==}
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.19.2':
+ resolution: {integrity: sha512-52udDMFDv54BTAdnw+KXNF45QCvcJOcYGl3vQkp4vARyrcdI/cXH8VXTEv/8QWfd6Fru8QQuw1b2uNersXOL0g==}
+ cpu: [x64]
+ os: [darwin]
+
'@rollup/rollup-linux-arm-gnueabihf@4.19.0':
resolution: {integrity: sha512-2Rn36Ubxdv32NUcfm0wB1tgKqkQuft00PtM23VqLuCUR4N5jcNWDoV5iBC9jeGdgS38WK66ElncprqgMUOyomw==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-gnueabihf@4.19.2':
+ resolution: {integrity: sha512-r+SI2t8srMPYZeoa1w0o/AfoVt9akI1ihgazGYPQGRilVAkuzMGiTtexNZkrPkQsyFrvqq/ni8f3zOnHw4hUbA==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-musleabihf@4.19.0':
resolution: {integrity: sha512-gJuzIVdq/X1ZA2bHeCGCISe0VWqCoNT8BvkQ+BfsixXwTOndhtLUpOg0A1Fcx/+eA6ei6rMBzlOz4JzmiDw7JQ==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-musleabihf@4.19.2':
+ resolution: {integrity: sha512-+tYiL4QVjtI3KliKBGtUU7yhw0GMcJJuB9mLTCEauHEsqfk49gtUBXGtGP3h1LW8MbaTY6rSFIQV1XOBps1gBA==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-gnu@4.19.0':
resolution: {integrity: sha512-0EkX2HYPkSADo9cfeGFoQ7R0/wTKb7q6DdwI4Yn/ULFE1wuRRCHybxpl2goQrx4c/yzK3I8OlgtBu4xvted0ug==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-gnu@4.19.2':
+ resolution: {integrity: sha512-OR5DcvZiYN75mXDNQQxlQPTv4D+uNCUsmSCSY2FolLf9W5I4DSoJyg7z9Ea3TjKfhPSGgMJiey1aWvlWuBzMtg==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-musl@4.19.0':
resolution: {integrity: sha512-GlIQRj9px52ISomIOEUq/IojLZqzkvRpdP3cLgIE1wUWaiU5Takwlzpz002q0Nxxr1y2ZgxC2obWxjr13lvxNQ==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.19.2':
+ resolution: {integrity: sha512-Hw3jSfWdUSauEYFBSFIte6I8m6jOj+3vifLg8EU3lreWulAUpch4JBjDMtlKosrBzkr0kwKgL9iCfjA8L3geoA==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-powerpc64le-gnu@4.19.0':
resolution: {integrity: sha512-N6cFJzssruDLUOKfEKeovCKiHcdwVYOT1Hs6dovDQ61+Y9n3Ek4zXvtghPPelt6U0AH4aDGnDLb83uiJMkWYzQ==}
cpu: [ppc64]
os: [linux]
+ '@rollup/rollup-linux-powerpc64le-gnu@4.19.2':
+ resolution: {integrity: sha512-rhjvoPBhBwVnJRq/+hi2Q3EMiVF538/o9dBuj9TVLclo9DuONqt5xfWSaE6MYiFKpo/lFPJ/iSI72rYWw5Hc7w==}
+ cpu: [ppc64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-gnu@4.19.0':
resolution: {integrity: sha512-2DnD3mkS2uuam/alF+I7M84koGwvn3ZVD7uG+LEWpyzo/bq8+kKnus2EVCkcvh6PlNB8QPNFOz6fWd5N8o1CYg==}
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-gnu@4.19.2':
+ resolution: {integrity: sha512-EAz6vjPwHHs2qOCnpQkw4xs14XJq84I81sDRGPEjKPFVPBw7fwvtwhVjcZR6SLydCv8zNK8YGFblKWd/vRmP8g==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-s390x-gnu@4.19.0':
resolution: {integrity: sha512-D6pkaF7OpE7lzlTOFCB2m3Ngzu2ykw40Nka9WmKGUOTS3xcIieHe82slQlNq69sVB04ch73thKYIWz/Ian8DUA==}
cpu: [s390x]
os: [linux]
+ '@rollup/rollup-linux-s390x-gnu@4.19.2':
+ resolution: {integrity: sha512-IJSUX1xb8k/zN9j2I7B5Re6B0NNJDJ1+soezjNojhT8DEVeDNptq2jgycCOpRhyGj0+xBn7Cq+PK7Q+nd2hxLA==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.19.0':
resolution: {integrity: sha512-HBndjQLP8OsdJNSxpNIN0einbDmRFg9+UQeZV1eiYupIRuZsDEoeGU43NQsS34Pp166DtwQOnpcbV/zQxM+rWA==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.19.2':
+ resolution: {integrity: sha512-OgaToJ8jSxTpgGkZSkwKE+JQGihdcaqnyHEFOSAU45utQ+yLruE1dkonB2SDI8t375wOKgNn8pQvaWY9kPzxDQ==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-musl@4.19.0':
resolution: {integrity: sha512-HxfbvfCKJe/RMYJJn0a12eiOI9OOtAUF4G6ozrFUK95BNyoJaSiBjIOHjZskTUffUrB84IPKkFG9H9nEvJGW6A==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.19.2':
+ resolution: {integrity: sha512-5V3mPpWkB066XZZBgSd1lwozBk7tmOkKtquyCJ6T4LN3mzKENXyBwWNQn8d0Ci81hvlBw5RoFgleVpL6aScLYg==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-win32-arm64-msvc@4.19.0':
resolution: {integrity: sha512-HxDMKIhmcguGTiP5TsLNolwBUK3nGGUEoV/BO9ldUBoMLBssvh4J0X8pf11i1fTV7WShWItB1bKAKjX4RQeYmg==}
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-arm64-msvc@4.19.2':
+ resolution: {integrity: sha512-ayVstadfLeeXI9zUPiKRVT8qF55hm7hKa+0N1V6Vj+OTNFfKSoUxyZvzVvgtBxqSb5URQ8sK6fhwxr9/MLmxdA==}
+ cpu: [arm64]
+ os: [win32]
+
'@rollup/rollup-win32-ia32-msvc@4.19.0':
resolution: {integrity: sha512-xItlIAZZaiG/u0wooGzRsx11rokP4qyc/79LkAOdznGRAbOFc+SfEdfUOszG1odsHNgwippUJavag/+W/Etc6Q==}
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.19.2':
+ resolution: {integrity: sha512-Mda7iG4fOLHNsPqjWSjANvNZYoW034yxgrndof0DwCy0D3FvTjeNo+HGE6oGWgvcLZNLlcp0hLEFcRs+UGsMLg==}
+ cpu: [ia32]
+ os: [win32]
+
'@rollup/rollup-win32-x64-msvc@4.19.0':
resolution: {integrity: sha512-xNo5fV5ycvCCKqiZcpB65VMR11NJB+StnxHz20jdqRAktfdfzhgjTiJ2doTDQE/7dqGaV5I7ZGqKpgph6lCIag==}
cpu: [x64]
os: [win32]
- '@rtsao/scc@1.1.0':
- resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+ '@rollup/rollup-win32-x64-msvc@4.19.2':
+ resolution: {integrity: sha512-DPi0ubYhSow/00YqmG1jWm3qt1F8aXziHc/UNy8bo9cpCacqhuWu+iSq/fp2SyEQK7iYTZ60fBU9cat3MXTjIQ==}
+ cpu: [x64]
+ os: [win32]
- '@stylistic/eslint-plugin-js@2.6.0-beta.0':
- resolution: {integrity: sha512-KQiNvzNzvl9AmMs1MiIBszLIy/Xy1bTExnyaVy5dSzOF9c+yT64JQfH0p0jP6XpGwoCnZsrPUNflwP30G42QBQ==}
+ '@stylistic/eslint-plugin-js@2.6.0':
+ resolution: {integrity: sha512-6oN0Djdy8gTRhx2qS1m4P+CeDKqmZZwc4ibgzzJS+8iBW3Ts1c2mAvi+OH6TN4bt0AHm0FnDv2+KtTqqueMATw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
- '@stylistic/eslint-plugin-jsx@2.6.0-beta.0':
- resolution: {integrity: sha512-TOimEpr3vndXHRhuQ5gMqmJv1SBlFI3poIJzyeNMmXi3NWVHoPxfd4QAJHGNJe5G3EO2NAXGf2H7nl8gY5QaZA==}
+ '@stylistic/eslint-plugin-jsx@2.6.0':
+ resolution: {integrity: sha512-Hm7YODwBwAsYtacY9hR5ONiBS7K9og4YZFjBr8mfqsmlCYVFje1HsOKG+tylePkwcu0Qhi+lY86cP3rlV4PhAA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
- '@stylistic/eslint-plugin-plus@2.6.0-beta.0':
- resolution: {integrity: sha512-Wp+e4sTbFq0Uk5ncU3PETYfg1IcCZ1KycdlqFYXIA7/bgcieeShXouXUcA+S/S5+gWLXGuVJ12IxNzY8yfe4IA==}
+ '@stylistic/eslint-plugin-plus@2.6.0':
+ resolution: {integrity: sha512-9GfLF08zx/pNFpQQlNMz6f4IixoS8zdSBFdJLWLTorMilNUjd4dDuA5ej4Z32+mTZf4u6lduzQcUrAYiGKTLTg==}
peerDependencies:
eslint: '*'
- '@stylistic/eslint-plugin-ts@2.6.0-beta.0':
- resolution: {integrity: sha512-WMz1zgmMC3bvg1L/tiYt5ygvDbTDKlbezoHoX2lV9MnUCAEQZUP4xJ9Wj3jmIKxb4mUuK5+vFZJVcOygvbbqow==}
+ '@stylistic/eslint-plugin-ts@2.6.0':
+ resolution: {integrity: sha512-9ooVm+BRNqdyI/p10eKGAdbdLKU5lllc7mX4Xqp76hKDsh5cCxmZM6zMgK3CLKkYrW0RUunFORkg8dAnmc1qIA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
- '@stylistic/eslint-plugin@2.6.0-beta.0':
- resolution: {integrity: sha512-1NJy1iIDSFC4gelDJ82VMTq9J32tNvQ9k1lnxOsipZ0YQB826U5zGLiH37QAM8dRfNY6yeYhjlrUVtZUxFR19w==}
+ '@stylistic/eslint-plugin@2.6.0':
+ resolution: {integrity: sha512-BYzdgwz/4WgDTGmkPMKXFLRBKnYNVnmgD4NDsDCGJulqLFLF6sW1gr6gAJSFnkxwsdhEg+GApF4m5e3OMDpd6g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.40.0'
@@ -1695,6 +1680,9 @@ packages:
'@types/eslint@8.56.10':
resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+ '@types/eslint@9.6.0':
+ resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
+
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
@@ -1740,8 +1728,8 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.14.12':
- resolution: {integrity: sha512-r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==}
+ '@types/node@22.0.2':
+ resolution: {integrity: sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1755,8 +1743,8 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@8.0.0-alpha.40':
- resolution: {integrity: sha512-yku4NjpP0UujYq8d1GWXYELpKYwuoESSgvXPd9uAiO24OszGxQhPsGWTe4fmZV05J47qILfaGANO9SCa9fEU0w==}
+ '@typescript-eslint/eslint-plugin@8.0.0':
+ resolution: {integrity: sha512-STIZdwEQRXAHvNUS6ILDf5z3u95Gc8jzywunxSNqX00OooIemaaNIA0vEgynJlycL5AjabYLLrIyHd4iazyvtg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -1766,8 +1754,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.0.0-alpha.40':
- resolution: {integrity: sha512-cjIgiaxmGtjlA6rRSs0Gsh0mWR08kPv1W+HsrZcuFwWxoGavBZPKtNctXND0NVf6MgSKyIcd4AHqBwE0htp5uw==}
+ '@typescript-eslint/parser@8.0.0':
+ resolution: {integrity: sha512-pS1hdZ+vnrpDIxuFXYQpLTILglTjSYJ9MbetZctrUawogUsPdz31DIIRZ9+rab0LhYNTsk88w4fIzVheiTbWOQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1780,12 +1768,16 @@ packages:
resolution: {integrity: sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/scope-manager@8.0.0-alpha.40':
- resolution: {integrity: sha512-KQL502sCGZW+dYvxIzF6rEozbgppN0mBkYV6kT8ciY5OtFIRlLDTP7NdVAMMDk7q35T7Ad8negaQ9AGpZ8+Y5w==}
+ '@typescript-eslint/scope-manager@7.18.0':
+ resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/scope-manager@8.0.0':
+ resolution: {integrity: sha512-V0aa9Csx/ZWWv2IPgTfY7T4agYwJyILESu/PVqFtTFz9RIS823mAze+NbnBI8xiwdX3iqeQbcTYlvB04G9wyQw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.0.0-alpha.40':
- resolution: {integrity: sha512-/Aynkgxy3x22i6Zxy73MR/r0y1OELOMC9Atn7MO97NsjBOrQQYJHi/UEklZ423aB8SCkYH34lO6EAzXX/lIN3g==}
+ '@typescript-eslint/type-utils@8.0.0':
+ resolution: {integrity: sha512-mJAFP2mZLTBwAn5WI4PMakpywfWFH5nQZezUQdSKV23Pqo6o9iShQg1hP2+0hJJXP2LnZkWPphdIq4juYYwCeg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1797,8 +1789,12 @@ packages:
resolution: {integrity: sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/types@8.0.0-alpha.40':
- resolution: {integrity: sha512-44mUq4VZVydxNlOM8Xtp/BXDkyfuvvjgPIBf7vRQDutrLDeNS0pJ9pcSloSbop5MwKLfJjBU+PbwnJPQM+DWNg==}
+ '@typescript-eslint/types@7.18.0':
+ resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/types@8.0.0':
+ resolution: {integrity: sha512-wgdSGs9BTMWQ7ooeHtu5quddKKs5Z5dS+fHLbrQI+ID0XWJLODGMHRfhwImiHoeO2S5Wir2yXuadJN6/l4JRxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@7.14.1':
@@ -1810,8 +1806,17 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.0.0-alpha.40':
- resolution: {integrity: sha512-bz1rX5GXvGdx686FghDxPqGwgntlseZCQSRrVGDDOZlLSoWJnbfkzxXGOWch9c3ttcGkdFy/DiCyKKga3hrq0g==}
+ '@typescript-eslint/typescript-estree@7.18.0':
+ resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/typescript-estree@8.0.0':
+ resolution: {integrity: sha512-5b97WpKMX+Y43YKi4zVcCVLtK5F98dFls3Oxui8LbnmRsseKenbbDinmvxrWegKDMmlkIq/XHuyy0UGLtpCDKg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -1825,8 +1830,14 @@ packages:
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/utils@8.0.0-alpha.40':
- resolution: {integrity: sha512-ijxO1Hs3YWveuWK+Vbt25D05Q41UeK08JwEJbWTzV38LmkdCBktQd7X1sTw4W9Qku692HWuHgesZf6OhC8t3aA==}
+ '@typescript-eslint/utils@7.18.0':
+ resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+
+ '@typescript-eslint/utils@8.0.0':
+ resolution: {integrity: sha512-k/oS/A/3QeGLRvOWCg6/9rATJL5rec7/5s1YmdS0ZU6LHveJyGFwBvLhSRBv6i9xaj7etmosp+l+ViN1I9Aj/Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -1835,8 +1846,12 @@ packages:
resolution: {integrity: sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/visitor-keys@8.0.0-alpha.40':
- resolution: {integrity: sha512-y1stojSPb5D3M8VlGGpaiBU5XxGLe+sPuW0YbLe09Lxvo4AwKGvhAr5lhqJZo4z6qHNz385+6+BS63+qIQdYLw==}
+ '@typescript-eslint/visitor-keys@7.18.0':
+ resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+
+ '@typescript-eslint/visitor-keys@8.0.0':
+ resolution: {integrity: sha512-oN0K4nkHuOyF3PVMyETbpP5zp6wfyOvm7tWhTMfoqxSSsPmJIh6JNASuZDlODE8eE+0EB9uar+6+vxr9DBTYOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript/vfs@1.5.0':
@@ -1845,89 +1860,89 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unocss/astro@0.61.5':
- resolution: {integrity: sha512-keyh6/EsPMBEiLguaOsh47UcMkWCGT0rW3KV5aYRUfYXlgccSzDd4SLmTNsdlGXIso2XCl/14BJQuwjP0UEU0Q==}
+ '@unocss/astro@0.61.9':
+ resolution: {integrity: sha512-adOXz4itYHxqhvQgJHlEU58EHDTtY2qrcEPVmQVk4qI1W+ezQV6nQMQvti8mS/HbFw3MOJhIY1MlJoZK36/cyw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
vite:
optional: true
- '@unocss/cli@0.61.5':
- resolution: {integrity: sha512-Y5mKSoQGEYRmjUi5Tia3EesQbLgQTTPGmeE7LFrbeyP1c7PDiW3wSR5fRNZ7PBrr6/C5oo2sId3MhWJQl3tFSA==}
+ '@unocss/cli@0.61.9':
+ resolution: {integrity: sha512-W5pN2cOKAOkeKKXMqsGD/J7dpEAmxODtOH2Afjk41qsjqUlzGlUbmgG9PjAz7TDHrAmvuf3nvmMeeT3fii2UFg==}
engines: {node: '>=14'}
hasBin: true
- '@unocss/config@0.61.5':
- resolution: {integrity: sha512-VIIln/1aD9cqU95+3IVZG9U1yO7Ys6RqyqtgD5pIJ77rg57v/2sey+S2ScFx3KB24Bal3FxAgHA5CdjFpQZldA==}
+ '@unocss/config@0.61.9':
+ resolution: {integrity: sha512-ATvZEFMQiW3/oUaaplVMBYuagEELtnLbHSYH4pUGbJ5MALAfV98mZRyk4FkKkYoMYqWLGdCylzpgMPFDOuFQlQ==}
engines: {node: '>=14'}
- '@unocss/core@0.61.5':
- resolution: {integrity: sha512-hB8zr2rnrCzz9x8ho2SAXQiYTEjwAPMiBzpaEe2C0+CFWeL1179h9508YVyZHHAzMyZILIG9YrVAWrrMdt2/Xg==}
+ '@unocss/core@0.61.9':
+ resolution: {integrity: sha512-2W1YZQIWXcueGdbXU/ZCqn/8yQhWk8e8kAHFkVlbc9rictkd2UmPB9nIZ8Ii1tMwt6F0TT6vfHbLJEGCV08o2g==}
- '@unocss/extractor-arbitrary-variants@0.61.5':
- resolution: {integrity: sha512-UB1EweAaJrUxv+h3n5FqoizKHrnUgUzkdmOdJTfV6xvow90ITqbUoza+L6iVMNfcrcXTx8QpDnWh6rhLRyKY+g==}
+ '@unocss/extractor-arbitrary-variants@0.61.9':
+ resolution: {integrity: sha512-ii42/hKbhgeBBOy86729t6/HeGmxUcHM8FprPeb/v/DfYsCkjDvMYVynX3FN/K5pR2WV+HHp6TQS7GbTmRIN0g==}
- '@unocss/inspector@0.61.5':
- resolution: {integrity: sha512-DIT+hgTphHXZTJEe4ZWUoYoQUNszmVJr06+gGhBkKwpdetQa6B2N+zGLkAxgAvo/BUmk29tOORIBu7AyoloRUA==}
+ '@unocss/inspector@0.61.9':
+ resolution: {integrity: sha512-kUcQ/h8/yAfkqL2eCGVFyB0IGSPdR0dx2HH4V+mdSMfd8yKFR/BQys3mBvqZwSZu5a0+iisFHHq9wr+/I5DtHQ==}
- '@unocss/postcss@0.61.5':
- resolution: {integrity: sha512-FbN9G3v5X6TEzBRytnFvqOr1oeeUv1ZzprBIyXnQFg17D8rx7uRS9kAfUMoSiqAqnFxkJObv43fH+W3E41+JYQ==}
+ '@unocss/postcss@0.61.9':
+ resolution: {integrity: sha512-HuFE/TUH6tt5f/AwiKNhQ/FO/lvFeW0JHPkx9SCURcKKoD3rpJUbhTqVv7c0zlCVQnRFX0hxpimoetp5Dh8qdA==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
- '@unocss/preset-attributify@0.61.5':
- resolution: {integrity: sha512-D2KDHPj8Qvp0hafA4JT5GXebO49gHsuKT6QvzwBpP9wzwAefAkd6PIY8cSKqSD6sjjVSfOpCfbZIzbwLEbXV5w==}
+ '@unocss/preset-attributify@0.61.9':
+ resolution: {integrity: sha512-AHlEF7PiIBz1jHZZ62+AZ1u5ITrPNL/mgN8XyKwocoAr9HH8aQ3xzUgIuEX6vfV4a8rTdawffY99BQ12msePWQ==}
- '@unocss/preset-icons@0.61.5':
- resolution: {integrity: sha512-Fx1WZz6A7wtUDU+mt6KdjWOu9fEGG2XgzE8t8YFfUu22KjXyyef7Lto90uUNs9z+vYLevXqeDfthOZQFwNSfIg==}
+ '@unocss/preset-icons@0.61.9':
+ resolution: {integrity: sha512-5XZO511ksu3EVwpV2nIZKa5NzyJAb+JARKaUpQIXssHUVdRKk5nJYr1XtrpBDLgB6VEf/1skViLEa1bpOUI5Wg==}
- '@unocss/preset-mini@0.61.5':
- resolution: {integrity: sha512-gVm7Z9X0krx8CK/+pKAqcVmpqzRk1+SH7bfgRxKtKhyFSxJlwpjNp1rKm3gCT0F1Tlp3d8aufYRksaXGZhs8Ow==}
+ '@unocss/preset-mini@0.61.9':
+ resolution: {integrity: sha512-qhagWfdM7ytRWf4wFfrAcdeCUCVD9wDVrM+9evAmuOnMXWEiVZCjfwhjjFu+8lM7g+38n+gi7VcrNuTiZ8fHBA==}
- '@unocss/preset-tagify@0.61.5':
- resolution: {integrity: sha512-kxO20pV7Bwg7U3hPpxShFSn6CXH+EMaTFC+WXsh2wTOEs43Tta7L6kCSUPzrZ9pX/Pq4oInRQY9gqiZqlGETmQ==}
+ '@unocss/preset-tagify@0.61.9':
+ resolution: {integrity: sha512-E+54+uSe+btOnQDlh8XjDUXhwxJd6/TL/8Rdl+7Pg6m+JNXudEt7xOd81L/KlDPD2tYYH9g/dQUaDN5aJyfRPQ==}
- '@unocss/preset-typography@0.61.5':
- resolution: {integrity: sha512-CQIleFkmfk/dAOlY7nPA1SOYHzXA6ia7+BCqGrTKxQVFOyBL7iHeNl0yV7lFtKFQn8zyFNEiBVW+fYi0QrouYw==}
+ '@unocss/preset-typography@0.61.9':
+ resolution: {integrity: sha512-ZDoRViHtzI1Ny0sZyjajeCGEdFQCBn5CeIYgxO/KCpN107KTGLnYfoabv0gHtj/qaeAh30obeOMxZaIuxYoW3Q==}
- '@unocss/preset-uno@0.61.5':
- resolution: {integrity: sha512-CflB0l9CeZx+b/Q8mA4Ow4d63Caf+vFJ+1EGA06jG9qYjPLy76Rkci//0m9cEtO+vPnYtgLc7HZAZv0X6wh4Tg==}
+ '@unocss/preset-uno@0.61.9':
+ resolution: {integrity: sha512-N4R/BCMphrHvAMZ+qgR/FPoh724uXDuZ/1DEGuirUQJMg7makqrI6czL+P99q1bP8nWzxWEXiRXnKKLiyD9pJw==}
- '@unocss/preset-web-fonts@0.61.5':
- resolution: {integrity: sha512-hVIMPGayxg7xvlvfQnJxB0N3KTvmrglbH3v5BCYNjbh37+5hv+x22K6iWewY3BkGtaWqOtLO3H1n5a1rxPMyaw==}
+ '@unocss/preset-web-fonts@0.61.9':
+ resolution: {integrity: sha512-fjQv74+FiAvGJM5vSLkD15Taku0cbi5F7qAr5T85EIQOpUB1fiH2kPoXIOT1WS2lKbQZh6pNGBxLrbBRgnVPew==}
- '@unocss/preset-wind@0.61.5':
- resolution: {integrity: sha512-n4uepxv3gVoVQb0tv7iV8M4W0CgwLw0QaMX+3ECYzFLMynjCkZmFDtdQAX720yTvLZxwCxEZfQCgydOSt0qjZA==}
+ '@unocss/preset-wind@0.61.9':
+ resolution: {integrity: sha512-AzbjJrNL9Rb2BzTiREyssd8v7KFVVLERQ/PNILGzo6yYelYMl4AhKXZ3jgxWEsIABArVa3UkGBigG4h/L+2JHA==}
- '@unocss/reset@0.61.5':
- resolution: {integrity: sha512-5FKNsHnke9J1Z0T4prOZn9hkWh86c6Px+Oh3xf8mDd6dDw8CjzYMRxZEKti0gt13NcsO29G1vLGM7UjG1sCamg==}
+ '@unocss/reset@0.61.9':
+ resolution: {integrity: sha512-A1KtJiFgLM0N3FqJ9r5M3mVULcwsn+14tq5WkvSPF9ik3zQeJh8/NhxKdJImWClwBOzn795NQFXXFB70Ja+2RA==}
- '@unocss/rule-utils@0.61.5':
- resolution: {integrity: sha512-sCHnpCQoj3/ZmCjYo+oW3+4r5Z8kFI2snEL+miU2Uk0SqCgY1k0cUIYivj5L9ghp29p8VjEusX9M01QEZOYK7g==}
+ '@unocss/rule-utils@0.61.9':
+ resolution: {integrity: sha512-54Hw0nF+3ga70ETo3kes4He62wdsB4dHMgEiD/DEmJzyVY3ZuG/sIVAgkxjMQDo5w4SSYU/Ys1QaY+IQmeJHFQ==}
engines: {node: '>=14'}
- '@unocss/scope@0.61.5':
- resolution: {integrity: sha512-GSmnSYWQ4oiSmJdyT5bmf0McXXhFJcVY7jgweAK2WltQgrxs1C3FWl9XIJtkWvaP3DIJjf4mKJf+zc6TjYxxEw==}
+ '@unocss/scope@0.61.9':
+ resolution: {integrity: sha512-a9/vdg7YTFZEnJSaJBh/GqkLokYh3ZjEd3gHUxl/TZDSkGOz3WnkR2h+lgaLZm9MJ7RlSvJxYP8ySezH7jU1Pw==}
- '@unocss/transformer-attributify-jsx-babel@0.61.5':
- resolution: {integrity: sha512-wBwjBCh6N95Bv3fJg8iokbDO9P5F+ee4n4gCecoePi6qSW22cBowj/UakP++L92GWX8FNZcphKOqMxx61q9gOg==}
+ '@unocss/transformer-attributify-jsx-babel@0.61.9':
+ resolution: {integrity: sha512-+fojHVJhA2MVd3VTCjlEKXf8Vnoy4N+lEl0CrYOD+im44sH5CWogm0RWs9rbeemy1uel6NI1wkP4xTfIA4vEgQ==}
- '@unocss/transformer-attributify-jsx@0.61.5':
- resolution: {integrity: sha512-w9vSBfgRdfofFnqzBvxrMi/FmP+ZtXz9W07wnoS6Yea7uhADilgx1h7wNfJECmK8kM8gWhjl5e6svZNAUQbI7A==}
+ '@unocss/transformer-attributify-jsx@0.61.9':
+ resolution: {integrity: sha512-tKZpZ64Lr6/CX96PhDtKEsqWDo1qjtswEulzIDLxpS90SMyann3azTs6mSuOwGbkbwc4gaJe6H38eCNos0ZqHg==}
- '@unocss/transformer-compile-class@0.61.5':
- resolution: {integrity: sha512-5WLi5MgRt8DJiANoWUK49noCgdyU/IKneGs3RJYDRNONEh2HdsL6ktACSRe9Y185ICGaD9MOk3cHBZALj07gew==}
+ '@unocss/transformer-compile-class@0.61.9':
+ resolution: {integrity: sha512-jezMpssFJGIaZNE/rw5U+9Rk1RoDrZqXZokRkqt4tamEn1SiXjRMPWoE/hLg5Kw4oybxwCXTuAk2OsD+kTb7iA==}
- '@unocss/transformer-directives@0.61.5':
- resolution: {integrity: sha512-vQvgLicgFJt/rUTh3nd8yZz5l0AMoE9qmtZqpgb9iDMOTHUZrlWpI3hsVsU6AB9kvL/NoyMI16hVkP8x6y7b9g==}
+ '@unocss/transformer-directives@0.61.9':
+ resolution: {integrity: sha512-e4uIbHYdAYJSVpvxOv6kAsyI18X3gHkBsmBYWcUlPLVv+8tYo4eZtc0rn6ZvpiLzkFywG9e9cmpqVQwOR6pBVg==}
- '@unocss/transformer-variant-group@0.61.5':
- resolution: {integrity: sha512-7Is7PChplNYTkLTiQm5fL5zFKf+LV6d9TpzNuwXNK2oa1pQARMXNmnHjFPpzaDgxpTjn9sqQON72gziuXcpOsg==}
+ '@unocss/transformer-variant-group@0.61.9':
+ resolution: {integrity: sha512-iewADYlY0LoeCb80E/4feHVSCKHl+QzGH4xUvW0zU85evMqNOa0/t0dCIoEG22wr/9piyEsg6OdHprZ2QliYqg==}
- '@unocss/vite@0.61.5':
- resolution: {integrity: sha512-+U5Ey5Z2csjLy7zcaDCtUqs08+ugRK87UWGm65W8yMAGW7me72f36QR8IHJUTqlVVEdhbJVIAy+yNFjGHYffjA==}
+ '@unocss/vite@0.61.9':
+ resolution: {integrity: sha512-hP/sL9rq1DvVCbSSx05m+bwYqen1nHm9tW6elKFkfV7X5jBUywu24WRq551NZI33KmgHA525ApX++DSWye+0uw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
@@ -1938,28 +1953,28 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/coverage-v8@2.0.4':
- resolution: {integrity: sha512-i4lx/Wpg5zF1h2op7j0wdwuEQxaL/YTwwQaKuKMHYj7MMh8c7I4W7PNfOptZBCSBZI0z1qwn64o0pM/pA8Tz1g==}
+ '@vitest/coverage-v8@2.0.5':
+ resolution: {integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==}
peerDependencies:
- vitest: 2.0.4
+ vitest: 2.0.5
- '@vitest/expect@2.0.4':
- resolution: {integrity: sha512-39jr5EguIoanChvBqe34I8m1hJFI4+jxvdOpD7gslZrVQBKhh8H9eD7J/LJX4zakrw23W+dITQTDqdt43xVcJw==}
+ '@vitest/expect@2.0.5':
+ resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
- '@vitest/pretty-format@2.0.4':
- resolution: {integrity: sha512-RYZl31STbNGqf4l2eQM1nvKPXE0NhC6Eq0suTTePc4mtMQ1Fn8qZmjV4emZdEdG2NOWGKSCrHZjmTqDCDoeFBw==}
+ '@vitest/pretty-format@2.0.5':
+ resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
- '@vitest/runner@2.0.4':
- resolution: {integrity: sha512-Gk+9Su/2H2zNfNdeJR124gZckd5st4YoSuhF1Rebi37qTXKnqYyFCd9KP4vl2cQHbtuVKjfEKrNJxHHCW8thbQ==}
+ '@vitest/runner@2.0.5':
+ resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
- '@vitest/snapshot@2.0.4':
- resolution: {integrity: sha512-or6Mzoz/pD7xTvuJMFYEtso1vJo1S5u6zBTinfl+7smGUhqybn6VjzCDMhmTyVOFWwkCMuNjmNNxnyXPgKDoPw==}
+ '@vitest/snapshot@2.0.5':
+ resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
- '@vitest/spy@2.0.4':
- resolution: {integrity: sha512-uTXU56TNoYrTohb+6CseP8IqNwlNdtPwEO0AWl+5j7NelS6x0xZZtP0bDWaLvOfUbaYwhhWp1guzXUxkC7mW7Q==}
+ '@vitest/spy@2.0.5':
+ resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
- '@vitest/utils@2.0.4':
- resolution: {integrity: sha512-Zc75QuuoJhOBnlo99ZVUkJIuq4Oj0zAkrQ2VzCqNCx6wAwViHEh5Fnp4fiJTE9rA+sAoXRf00Z9xGgfEzV6fzQ==}
+ '@vitest/utils@2.0.5':
+ resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
'@volar/language-core@2.4.0-alpha.18':
resolution: {integrity: sha512-JAYeJvYQQROmVRtSBIczaPjP3DX4QW1fOqW1Ebs0d3Y3EwSNRglz03dSv0Dm61dzd0Yx3WgTW3hndDnTQqgmyg==}
@@ -1973,14 +1988,20 @@ packages:
'@vue/compiler-core@3.4.34':
resolution: {integrity: sha512-Z0izUf32+wAnQewjHu+pQf1yw00EGOmevl1kE+ljjjMe7oEfpQ+BI3/JNK7yMB4IrUsqLDmPecUrpj3mCP+yJQ==}
+ '@vue/compiler-core@3.4.35':
+ resolution: {integrity: sha512-gKp0zGoLnMYtw4uS/SJRRO7rsVggLjvot3mcctlMXunYNsX+aRJDqqw/lV5/gHK91nvaAAlWFgdVl020AW1Prg==}
+
'@vue/compiler-dom@3.4.34':
resolution: {integrity: sha512-3PUOTS1h5cskdOJMExCu2TInXuM0j60DRPpSCJDqOCupCfUZCJoyQmKtRmA8EgDNZ5kcEE7vketamRZfrEuVDw==}
- '@vue/compiler-sfc@3.4.34':
- resolution: {integrity: sha512-x6lm0UrM03jjDXTPZgD9Ad8bIVD1ifWNit2EaWQIZB5CULr46+FbLQ5RpK7AXtDHGjx9rmvC7QRCTjsiGkAwRw==}
+ '@vue/compiler-dom@3.4.35':
+ resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==}
- '@vue/compiler-ssr@3.4.34':
- resolution: {integrity: sha512-8TDBcLaTrFm5rnF+Qm4BlliaopJgqJ28Nsrc80qazynm5aJO+Emu7y0RWw34L8dNnTRdcVBpWzJxhGYzsoVu4g==}
+ '@vue/compiler-sfc@3.4.35':
+ resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==}
+
+ '@vue/compiler-ssr@3.4.35':
+ resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -2005,23 +2026,26 @@ packages:
typescript:
optional: true
- '@vue/reactivity@3.4.34':
- resolution: {integrity: sha512-ua+Lo+wBRlBEX9TtgPOShE2JwIO7p6BTZ7t1KZVPoaBRfqbC7N3c8Mpzicx173fXxx5VXeU6ykiHo7WgLzJQDA==}
+ '@vue/reactivity@3.4.35':
+ resolution: {integrity: sha512-Ggtz7ZZHakriKioveJtPlStYardwQH6VCs9V13/4qjHSQb/teE30LVJNrbBVs4+aoYGtTQKJbTe4CWGxVZrvEw==}
- '@vue/runtime-core@3.4.34':
- resolution: {integrity: sha512-PXhkiRPwcPGJ1BnyBZFI96GfInCVskd0HPNIAZn7i3YOmLbtbTZpB7/kDTwC1W7IqdGPkTVC63IS7J2nZs4Ebg==}
+ '@vue/runtime-core@3.4.35':
+ resolution: {integrity: sha512-D+BAjFoWwT5wtITpSxwqfWZiBClhBbR+bm0VQlWYFOadUUXFo+5wbe9ErXhLvwguPiLZdEF13QAWi2vP3ZD5tA==}
- '@vue/runtime-dom@3.4.34':
- resolution: {integrity: sha512-dXqIe+RqFAK2Euak4UsvbIupalrhc67OuQKpD7HJ3W2fv8jlqvI7szfBCsAEcE8o/wyNpkloxB6J8viuF/E3gw==}
+ '@vue/runtime-dom@3.4.35':
+ resolution: {integrity: sha512-yGOlbos+MVhlS5NWBF2HDNgblG8e2MY3+GigHEyR/dREAluvI5tuUUgie3/9XeqhPE4LF0i2wjlduh5thnfOqw==}
- '@vue/server-renderer@3.4.34':
- resolution: {integrity: sha512-GeyEUfMVRZMD/mZcNONEqg7MiU10QQ1DB3O/Qr6+8uXpbwdlmVgQ5Qs1/ZUAFX1X2UUtqMoGrDRbxdWfOJFT7Q==}
+ '@vue/server-renderer@3.4.35':
+ resolution: {integrity: sha512-iZ0e/u9mRE4T8tNhlo0tbA+gzVkgv8r5BX6s1kRbOZqfpq14qoIvCZ5gIgraOmYkMYrSEZgkkojFPr+Nyq/Mnw==}
peerDependencies:
- vue: 3.4.34
+ vue: 3.4.35
'@vue/shared@3.4.34':
resolution: {integrity: sha512-x5LmiRLpRsd9KTjAB8MPKf0CDPMcuItjP0gbNqFCIgL1I8iYp4zglhj9w9FPCdIbHG2M91RVeIbArFfFTz9I3A==}
+ '@vue/shared@3.4.35':
+ resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==}
+
'@vueuse/core@10.11.0':
resolution: {integrity: sha512-x3sD4Mkm7PJ+pcq3HX8PLPBadXCAlSDR/waK87dz0gQE+qJnaaFhc/dZVfJz+IUYzTMVGum2QlR7ImiJQN4s6g==}
@@ -2086,6 +2110,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.12.1:
+ resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
agent-base@7.1.1:
resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
@@ -2627,6 +2656,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.6:
+ resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
@@ -2740,11 +2778,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.20.2:
- resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.21.5:
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
engines: {node: '>=12'}
@@ -2781,8 +2814,8 @@ packages:
eslint-config-flat-gitignore@0.1.8:
resolution: {integrity: sha512-OEUbS2wzzYtUfshjOqzFo4Bl4lHykXUdM08TCnYNl7ki+niW4Q1R0j0FDFDr0vjVsI5ZFOz5LvluxOP+Ew+dYw==}
- eslint-flat-config-utils@0.2.5:
- resolution: {integrity: sha512-iO+yLZtC/LKgACerkpvsZ6NoRVB2sxT04mOpnNcEM1aTwKy+6TsT46PUvrML4y2uVBS6I67hRCd2JiKAPaL/Uw==}
+ eslint-flat-config-utils@0.3.0:
+ resolution: {integrity: sha512-FaFQLUunAl6YK7aU/pT23DXYVWg/cEHbSfxwAxpCGT6Su8H9RfkmzKLh1G2bba46p6dTlQeA4VTiV5//0SeToQ==}
eslint-formatting-reporter@0.0.0:
resolution: {integrity: sha512-k9RdyTqxqN/wNYVaTk/ds5B5rA8lgoAmvceYN7bcZMBwU7TuXx5ntewJv81eF3pIL/CiJE+pJZm36llG8yhyyw==}
@@ -2827,14 +2860,14 @@ packages:
peerDependencies:
eslint: ^8.40.0 || ^9.0.0
- eslint-plugin-import-x@3.0.1:
- resolution: {integrity: sha512-jzQgJuE4ssxwNi0aMBkOL8whd4eHb0Z/uFWsk8uEoYB7xwTkAptSKojLzRswxgf/1bhH6QgcLjgabUBQqluBIg==}
+ eslint-plugin-import-x@3.1.0:
+ resolution: {integrity: sha512-/UbPA+bYY7nIxcjL3kpcDY3UNdoLHFhyBFzHox2M0ypcUoueTn6woZUUmzzi5et/dXChksasYYFeKE2wshOrhg==}
engines: {node: '>=16'}
peerDependencies:
eslint: ^8.56.0 || ^9.0.0-0
- eslint-plugin-jsdoc@48.8.3:
- resolution: {integrity: sha512-AtIvwwW9D17MRkM0Z0y3/xZYaa9mdAvJrkY6fU/HNUwGbmMtHVvK4qRM9CDixGVtfNrQitb8c6zQtdh6cTOvLg==}
+ eslint-plugin-jsdoc@48.10.2:
+ resolution: {integrity: sha512-xTkf/MmEeVrTbezc6kDqCJmK9RcseIKo8X4oyoDCMvV4LY8dqrQi8kmfRrv9n0gNBkCclevaOh2Lkmu6Fs8SLg==}
engines: {node: '>=18'}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -2851,8 +2884,8 @@ packages:
peerDependencies:
eslint: '>=8'
- eslint-plugin-n@17.9.0:
- resolution: {integrity: sha512-CPSaXDXdrT4nsrOrO4mT4VB6FMUkoySRkHWuuJJHVqsIEjIeZgMY1H7AzSwPbDScikBmLN82KeM1u7ixV7PzGg==}
+ eslint-plugin-n@17.10.1:
+ resolution: {integrity: sha512-hm/q37W6efDptJXdwirsm6A257iY6ZNtpoSG0wEzFzjJ3AhL7OhEIhdSR2e4OdYfHO5EDeqlCfFrjf9q208IPw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -2861,13 +2894,14 @@ packages:
resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==}
engines: {node: '>=5.0.0'}
- eslint-plugin-perfectionist@2.11.0:
- resolution: {integrity: sha512-XrtBtiu5rbQv88gl+1e2RQud9te9luYNvKIgM9emttQ2zutHPzY/AQUucwxscDKV4qlTkvLTxjOFvxqeDpPorw==}
+ eslint-plugin-perfectionist@3.0.0:
+ resolution: {integrity: sha512-B+leJTo1YjxiNIm8Yv0rCHp4eWh9RaJHO6T1ifxd26wg8NCbEiWSdqZVeYLWPCI+zS1dlf89WpOkUzG7cE4vtQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
astro-eslint-parser: ^1.0.2
eslint: '>=8.0.0'
svelte: '>=3.0.0'
- svelte-eslint-parser: ^0.37.0
+ svelte-eslint-parser: ^0.40.0
vue-eslint-parser: '>=9.0.0'
peerDependenciesMeta:
astro-eslint-parser:
@@ -2891,8 +2925,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-plugin-unicorn@54.0.0:
- resolution: {integrity: sha512-XxYLRiYtAWiAjPv6z4JREby1TAE2byBC7wlh0V4vWDCpccOSU1KovWV//jqPXF6bq3WKxqX9rdjoRQ1EhdmNdQ==}
+ eslint-plugin-unicorn@55.0.0:
+ resolution: {integrity: sha512-n3AKiVpY2/uDcGrS3+QsYDkjPfaOrNrsfQxU9nt5nitd9KuvVXrfAvgCO9DYPSfap+Gqjw9EOrXIsBp5tlHZjA==}
engines: {node: '>=18.18'}
peerDependencies:
eslint: '>=8.56.0'
@@ -2958,8 +2992,8 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.7.0:
- resolution: {integrity: sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==}
+ eslint@9.8.0:
+ resolution: {integrity: sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -3323,8 +3357,8 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- importx@0.3.10:
- resolution: {integrity: sha512-BGq0cY3Rd6aYGwTj6wxCh27KmYBne+TZpZ4BiiitfB8fBbKXt/pkhetS1/RFzbaY2aNNjgIlswoAvjrCJX2+tw==}
+ importx@0.4.3:
+ resolution: {integrity: sha512-x6E6OxmWq/SUaj7wDeDeSjyHP+rMUbEaqJ5fw0uEtC/FTX9ocxNMFJ+ONnpJIsRpFz3ya6qJAK4orwSKqw0BSQ==}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
@@ -3466,6 +3500,10 @@ packages:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
+ jiti@2.0.0-beta.2:
+ resolution: {integrity: sha512-c+PHQZakiQuMKbnhvrjZUvrK6E/AfmTOf4P+E3Y4FNVHcNMX9e/XrnbEvO+m4wS6ZjsvhHh/POQTlfy8uXFc0A==}
+ hasBin: true
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -3632,6 +3670,9 @@ packages:
magic-string@0.30.10:
resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+
magicast@0.3.4:
resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
@@ -3874,8 +3915,8 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- miniflare@3.20240718.1:
- resolution: {integrity: sha512-mn3MjGnpgYvarCRTfz4TQyVyY8yW0zz7f8LOAPVai78IGC/lcVcyskZcuIr7Zovb2i+IERmmsJAiEPeZHIIKbA==}
+ miniflare@3.20240725.0:
+ resolution: {integrity: sha512-n9NTLI8J9Xt0Cls6dRpqoIPkVFnxD9gMnU/qDkDX9diKfN16HyxpAdA5mto/hKuRpjW19TxnTMcxBo90vZXemw==}
engines: {node: '>=16.13'}
hasBin: true
@@ -4198,6 +4239,9 @@ packages:
pkg-types@1.1.1:
resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
+ pkg-types@1.1.3:
+ resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
+
pluralize@8.0.0:
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
engines: {node: '>=4'}
@@ -4386,6 +4430,10 @@ packages:
resolution: {integrity: sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.40:
+ resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
+ engines: {node: ^10 || ^12 || >=14}
+
preact@10.19.3:
resolution: {integrity: sha512-nHHTeFVBTHRGxJXKkKu5hT8C/YWBkPso4/Gad6xuj5dbptt9iF9NZr9pHbPhBrnT2klheu7mHTxTZ/LjwJiEiQ==}
@@ -4567,6 +4615,11 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.19.2:
+ resolution: {integrity: sha512-6/jgnN1svF9PjNYJ4ya3l+cqutg49vOZ4rVgsDKxdl+5gpGPnByFXWGyfH9YGx9i3nfBwSu1Iyu6vGwFFA0BdQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -4831,8 +4884,8 @@ packages:
resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==}
engines: {node: '>=10'}
- taze@0.16.1:
- resolution: {integrity: sha512-YolslEZ6KwFBpFbzdxe9JtKz3kypN2dHEPQv7Wpoq72koO9vaPUk4H6SP1kWHpLRmFI2badf24pJcgZWCgsBjA==}
+ taze@0.16.3:
+ resolution: {integrity: sha512-1hZ1zZiJWOzWa1QogaPiqaFsME5IkCgHEpNQhIHWH45SNuTvlEw8M2kEoQOTmNjbLtchbGDMKamJAGR8oiMP0g==}
hasBin: true
terser@5.27.0:
@@ -4862,11 +4915,11 @@ packages:
resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==}
engines: {node: '>=14.0.0'}
- tm-grammars@1.15.1:
- resolution: {integrity: sha512-i8KbDaPy1wa2LIqxhF6WAp7AF2ssWN4dTBlTQnIGrxUFSY79LcO0EVgaRXOOQkd+psLyUhjAIlTpSARLnYihdw==}
+ tm-grammars@1.16.2:
+ resolution: {integrity: sha512-XTxg7/sFP6pLrLaBap1tmzWQjozFUBpw2EC/uE3ElAEtxJtzVMUkPes+ixR5HC88wFdDyRxYilvIHRRCSDZ3nQ==}
- tm-themes@1.5.7:
- resolution: {integrity: sha512-po/2dZNyEDcPdlzHLWb8GZuCKierNUOyF5Nff6EUVqBknaoY6ksGc2xQ2/SnP4S22H/VuzN82ObABGu77RTa+w==}
+ tm-themes@1.6.0:
+ resolution: {integrity: sha512-nCyfLmnSsOC8lS+weBl/QR11LcZG6u4vmpe8VLP6+idr5e/NKdJS0gGJQQHmLnwt669kpyZsVcpveDuShsBqNw==}
to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
@@ -4918,6 +4971,11 @@ packages:
engines: {node: '>=18.0.0'}
hasBin: true
+ tsx@4.16.3:
+ resolution: {integrity: sha512-MP8AEUxVnboD2rCC6kDLxnpDBNWN9k3BSVU/0/nNxgm70bPBnfn+yCKcnOsIVPQwdkbKYoFOlKjjWZWJ2XCXUg==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
twoslash-protocol@0.2.9:
resolution: {integrity: sha512-uKQl8UboT6JU4VAtYaSI3DbNtgaNhFaTpCSMy/n3tRl5lMlMhrjiuNKdqx15xjcviconuGJ9oObkz1h9zJFrJg==}
@@ -4975,14 +5033,11 @@ packages:
typescript:
optional: true
- unconfig@0.3.13:
- resolution: {integrity: sha512-N9Ph5NC4+sqtcOjPfHrRcHekBCadCXWTBzp2VYYbySOHW0PfD9XLCeXshTXjkPYwLrBr9AtSeU0CZmkYECJhng==}
+ unconfig@0.5.4:
+ resolution: {integrity: sha512-7p6w1UxFKPFRMnLJdvXPouMxbY4jEh3L8Q3A5dCVOAtXmgYZ72KJjnPAUHfEa6YLxuPt4DZ7ma21grNrYeVgjA==}
- unconfig@0.4.5:
- resolution: {integrity: sha512-+b4pZmGFeT3FD9EHWGkNwuOwrNzfgUq4ZoTh63+EKDyxLvYKajbowjRcKLumGExmPKNi5jxIpzhheKsPtV8dig==}
-
- undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.11.1:
+ resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==}
undici@5.28.4:
resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
@@ -5031,11 +5086,11 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unocss@0.61.5:
- resolution: {integrity: sha512-BScwlqXW9KHQLKIKtXmwWmMb4Ihoryb7uIgmS+HSqmCN58eqNA73vAo3cZ97xtO+RFdauqgGKP5wD6ShQUvqnQ==}
+ unocss@0.61.9:
+ resolution: {integrity: sha512-D7nEObT1lhCUwXU5MoQ2Msh5S5g1EHVVSqDNM2ODs6dqWSboDCsRTPZQiyQmV9vCobrjYcvAFno9ZAgO7pvurw==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 0.61.5
+ '@unocss/webpack': 0.61.9
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -5101,8 +5156,8 @@ packages:
vfile@6.0.1:
resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
- vite-node@2.0.4:
- resolution: {integrity: sha512-ZpJVkxcakYtig5iakNeL7N3trufe3M6vGuzYAr4GsbCTwobDeyPJpE4cjDhhPluv8OvQCFzu2LWp6GkoKRITXA==}
+ vite-node@2.0.5:
+ resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -5160,15 +5215,15 @@ packages:
postcss:
optional: true
- vitest@2.0.4:
- resolution: {integrity: sha512-luNLDpfsnxw5QSW4bISPe6tkxVvv5wn2BBs/PuDRkhXZ319doZyLOBr1sjfB5yCEpTiU7xCAdViM8TNVGPwoog==}
+ vitest@2.0.5:
+ resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.0.4
- '@vitest/ui': 2.0.4
+ '@vitest/browser': 2.0.5
+ '@vitest/ui': 2.0.5
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -5222,8 +5277,8 @@ packages:
peerDependencies:
typescript: '>=5.0.0'
- vue@3.4.34:
- resolution: {integrity: sha512-VZze05HWlA3ItreQ/ka7Sx7PoD0/3St8FEiSlSTVgb6l4hL+RjtP2/8g5WQBzZgyf8WG2f+g1bXzC7zggLhAJA==}
+ vue@3.4.35:
+ resolution: {integrity: sha512-+fl/GLmI4GPileHftVlCdB7fUL4aziPcqTudpTGXCT8s+iZWuOCeNEB5haX6Uz2IpRrbEXOgIFbe+XciCuGbNQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -5253,17 +5308,17 @@ packages:
engines: {node: '>=8'}
hasBin: true
- workerd@1.20240718.0:
- resolution: {integrity: sha512-w7lOLRy0XecQTg/ujTLWBiJJuoQvzB3CdQ6/8Wgex3QxFhV9Pbnh3UbwIuUfMw3OCCPQc4o7y+1P+mISAgp6yg==}
+ workerd@1.20240725.0:
+ resolution: {integrity: sha512-VZwgejRcHsQ9FEPtc7v25ebINLAR+stL3q1hC1xByE+quskdoWpTXHkZwZ3IdSgvm9vPVbCbJw9p5mGnDByW2A==}
engines: {node: '>=16'}
hasBin: true
- wrangler@3.67.1:
- resolution: {integrity: sha512-lLVJxq/OZMfntvZ79WQJNC1OKfxOCs6PLfogqDBuPFEQ3L/Mwqvd9IZ0bB8ahrwUN/K3lSdDPXynk9HfcGZxVw==}
+ wrangler@3.68.0:
+ resolution: {integrity: sha512-gsIeglkh5nOn1mHJs0bf1pOq/DvIt+umjO/5a867IYYXaN4j/ar5cRR1+F5ue3S7uEjYCLIZZjs8ESiPTSEt+Q==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20240718.0
+ '@cloudflare/workers-types': ^4.20240725.0
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
@@ -5441,46 +5496,46 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config@2.23.2(@vue/compiler-sfc@3.4.34)(eslint-plugin-format@0.1.2(eslint@9.7.0))(eslint@9.7.0)(typescript@5.5.4)(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0))':
+ '@antfu/eslint-config@2.24.1(@vue/compiler-sfc@3.4.35)(eslint-plugin-format@0.1.2(eslint@9.8.0))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0))':
dependencies:
'@antfu/install-pkg': 0.3.3
'@clack/prompts': 0.7.0
- '@stylistic/eslint-plugin': 2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/eslint-plugin': 8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/parser': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@stylistic/eslint-plugin': 2.6.0(eslint@9.8.0)(typescript@5.5.4)
+ '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
eslint-config-flat-gitignore: 0.1.8
- eslint-flat-config-utils: 0.2.5
- eslint-merge-processors: 0.1.0(eslint@9.7.0)
- eslint-plugin-antfu: 2.3.4(eslint@9.7.0)
- eslint-plugin-command: 0.2.3(eslint@9.7.0)
- eslint-plugin-eslint-comments: 3.2.0(eslint@9.7.0)
- eslint-plugin-import-x: 3.0.1(eslint@9.7.0)(typescript@5.5.4)
- eslint-plugin-jsdoc: 48.8.3(eslint@9.7.0)
- eslint-plugin-jsonc: 2.16.0(eslint@9.7.0)
- eslint-plugin-markdown: 5.1.0(eslint@9.7.0)
- eslint-plugin-n: 17.9.0(eslint@9.7.0)
+ eslint-flat-config-utils: 0.3.0
+ eslint-merge-processors: 0.1.0(eslint@9.8.0)
+ eslint-plugin-antfu: 2.3.4(eslint@9.8.0)
+ eslint-plugin-command: 0.2.3(eslint@9.8.0)
+ eslint-plugin-eslint-comments: 3.2.0(eslint@9.8.0)
+ eslint-plugin-import-x: 3.1.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint-plugin-jsdoc: 48.10.2(eslint@9.8.0)
+ eslint-plugin-jsonc: 2.16.0(eslint@9.8.0)
+ eslint-plugin-markdown: 5.1.0(eslint@9.8.0)
+ eslint-plugin-n: 17.10.1(eslint@9.8.0)
eslint-plugin-no-only-tests: 3.1.0
- eslint-plugin-perfectionist: 2.11.0(eslint@9.7.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.7.0))
- eslint-plugin-regexp: 2.6.0(eslint@9.7.0)
- eslint-plugin-toml: 0.11.1(eslint@9.7.0)
- eslint-plugin-unicorn: 54.0.0(eslint@9.7.0)
- eslint-plugin-unused-imports: 4.0.1(@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)
- eslint-plugin-vitest: 0.5.4(@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0))
- eslint-plugin-vue: 9.27.0(eslint@9.7.0)
- eslint-plugin-yml: 1.14.0(eslint@9.7.0)
- eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.4.34)(eslint@9.7.0)
+ eslint-plugin-perfectionist: 3.0.0(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0))
+ eslint-plugin-regexp: 2.6.0(eslint@9.8.0)
+ eslint-plugin-toml: 0.11.1(eslint@9.8.0)
+ eslint-plugin-unicorn: 55.0.0(eslint@9.8.0)
+ eslint-plugin-unused-imports: 4.0.1(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)
+ eslint-plugin-vitest: 0.5.4(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0))
+ eslint-plugin-vue: 9.27.0(eslint@9.8.0)
+ eslint-plugin-yml: 1.14.0(eslint@9.8.0)
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.4.35)(eslint@9.8.0)
globals: 15.8.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.0
parse-gitignore: 2.0.0
picocolors: 1.0.1
toml-eslint-parser: 0.10.0
- vue-eslint-parser: 9.4.3(eslint@9.7.0)
+ vue-eslint-parser: 9.4.3(eslint@9.8.0)
yaml-eslint-parser: 1.2.3
yargs: 17.7.2
optionalDependencies:
- eslint-plugin-format: 0.1.2(eslint@9.7.0)
+ eslint-plugin-format: 0.1.2(eslint@9.8.0)
transitivePeerDependencies:
- '@vue/compiler-sfc'
- supports-color
@@ -5508,6 +5563,8 @@ snapshots:
'@babel/compat-data@7.24.9': {}
+ '@babel/compat-data@7.25.2': {}
+
'@babel/core@7.24.9':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -5528,6 +5585,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.25.2':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.0
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.3
+ '@babel/types': 7.25.2
+ convert-source-map: 2.0.0
+ debug: 4.3.5
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/generator@7.24.10':
dependencies:
'@babel/types': 7.24.9
@@ -5535,6 +5612,13 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
+ '@babel/generator@7.25.0':
+ dependencies:
+ '@babel/types': 7.25.2
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 2.5.2
+
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
'@babel/types': 7.24.9
@@ -5547,15 +5631,23 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/compat-data': 7.25.2
+ '@babel/helper-validator-option': 7.24.8
+ browserslist: 4.23.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.7
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-replace-supers': 7.24.7(@babel/core@7.25.2)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
semver: 6.3.1
@@ -5600,15 +5692,36 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-transforms@7.24.9(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-environment-visitor': 7.24.7
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-simple-access': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.3
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
'@babel/types': 7.24.9
'@babel/helper-plugin-utils@7.24.7': {}
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-replace-supers@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.7
'@babel/helper-optimise-call-expression': 7.24.7
@@ -5644,6 +5757,11 @@ snapshots:
'@babel/template': 7.24.7
'@babel/types': 7.24.9
+ '@babel/helpers@7.25.0':
+ dependencies:
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
+
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
@@ -5655,43 +5773,47 @@ snapshots:
dependencies:
'@babel/types': 7.24.9
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/parser@7.25.3':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/types': 7.25.2
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.7
+
+ '@babel/plugin-transform-modules-commonjs@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.24.9(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.7
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -5703,6 +5825,12 @@ snapshots:
'@babel/parser': 7.24.8
'@babel/types': 7.24.9
+ '@babel/template@7.25.0':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/parser': 7.25.3
+ '@babel/types': 7.25.2
+
'@babel/traverse@7.24.8':
dependencies:
'@babel/code-frame': 7.24.7
@@ -5718,12 +5846,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.25.3':
+ dependencies:
+ '@babel/code-frame': 7.24.7
+ '@babel/generator': 7.25.0
+ '@babel/parser': 7.25.3
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.2
+ debug: 4.3.5
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.24.9':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
+ '@babel/types@7.25.2':
+ dependencies:
+ '@babel/helper-string-parser': 7.24.8
+ '@babel/helper-validator-identifier': 7.24.7
+ to-fast-properties: 2.0.0
+
'@bcoe/v8-coverage@0.2.3': {}
'@braintree/sanitize-url@6.0.4': {}
@@ -5743,19 +5889,19 @@ snapshots:
dependencies:
mime: 3.0.0
- '@cloudflare/workerd-darwin-64@1.20240718.0':
+ '@cloudflare/workerd-darwin-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-darwin-arm64@1.20240718.0':
+ '@cloudflare/workerd-darwin-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-64@1.20240718.0':
+ '@cloudflare/workerd-linux-64@1.20240725.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20240718.0':
+ '@cloudflare/workerd-linux-arm64@1.20240725.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20240718.0':
+ '@cloudflare/workerd-windows-64@1.20240725.0':
optional: true
'@cspotcode/source-map-support@0.8.1':
@@ -5820,9 +5966,6 @@ snapshots:
'@esbuild/aix-ppc64@0.19.12':
optional: true
- '@esbuild/aix-ppc64@0.20.2':
- optional: true
-
'@esbuild/aix-ppc64@0.21.5':
optional: true
@@ -5832,9 +5975,6 @@ snapshots:
'@esbuild/android-arm64@0.19.12':
optional: true
- '@esbuild/android-arm64@0.20.2':
- optional: true
-
'@esbuild/android-arm64@0.21.5':
optional: true
@@ -5844,9 +5984,6 @@ snapshots:
'@esbuild/android-arm@0.19.12':
optional: true
- '@esbuild/android-arm@0.20.2':
- optional: true
-
'@esbuild/android-arm@0.21.5':
optional: true
@@ -5856,9 +5993,6 @@ snapshots:
'@esbuild/android-x64@0.19.12':
optional: true
- '@esbuild/android-x64@0.20.2':
- optional: true
-
'@esbuild/android-x64@0.21.5':
optional: true
@@ -5868,9 +6002,6 @@ snapshots:
'@esbuild/darwin-arm64@0.19.12':
optional: true
- '@esbuild/darwin-arm64@0.20.2':
- optional: true
-
'@esbuild/darwin-arm64@0.21.5':
optional: true
@@ -5880,9 +6011,6 @@ snapshots:
'@esbuild/darwin-x64@0.19.12':
optional: true
- '@esbuild/darwin-x64@0.20.2':
- optional: true
-
'@esbuild/darwin-x64@0.21.5':
optional: true
@@ -5892,9 +6020,6 @@ snapshots:
'@esbuild/freebsd-arm64@0.19.12':
optional: true
- '@esbuild/freebsd-arm64@0.20.2':
- optional: true
-
'@esbuild/freebsd-arm64@0.21.5':
optional: true
@@ -5904,9 +6029,6 @@ snapshots:
'@esbuild/freebsd-x64@0.19.12':
optional: true
- '@esbuild/freebsd-x64@0.20.2':
- optional: true
-
'@esbuild/freebsd-x64@0.21.5':
optional: true
@@ -5916,9 +6038,6 @@ snapshots:
'@esbuild/linux-arm64@0.19.12':
optional: true
- '@esbuild/linux-arm64@0.20.2':
- optional: true
-
'@esbuild/linux-arm64@0.21.5':
optional: true
@@ -5928,9 +6047,6 @@ snapshots:
'@esbuild/linux-arm@0.19.12':
optional: true
- '@esbuild/linux-arm@0.20.2':
- optional: true
-
'@esbuild/linux-arm@0.21.5':
optional: true
@@ -5940,9 +6056,6 @@ snapshots:
'@esbuild/linux-ia32@0.19.12':
optional: true
- '@esbuild/linux-ia32@0.20.2':
- optional: true
-
'@esbuild/linux-ia32@0.21.5':
optional: true
@@ -5952,9 +6065,6 @@ snapshots:
'@esbuild/linux-loong64@0.19.12':
optional: true
- '@esbuild/linux-loong64@0.20.2':
- optional: true
-
'@esbuild/linux-loong64@0.21.5':
optional: true
@@ -5964,9 +6074,6 @@ snapshots:
'@esbuild/linux-mips64el@0.19.12':
optional: true
- '@esbuild/linux-mips64el@0.20.2':
- optional: true
-
'@esbuild/linux-mips64el@0.21.5':
optional: true
@@ -5976,9 +6083,6 @@ snapshots:
'@esbuild/linux-ppc64@0.19.12':
optional: true
- '@esbuild/linux-ppc64@0.20.2':
- optional: true
-
'@esbuild/linux-ppc64@0.21.5':
optional: true
@@ -5988,9 +6092,6 @@ snapshots:
'@esbuild/linux-riscv64@0.19.12':
optional: true
- '@esbuild/linux-riscv64@0.20.2':
- optional: true
-
'@esbuild/linux-riscv64@0.21.5':
optional: true
@@ -6000,9 +6101,6 @@ snapshots:
'@esbuild/linux-s390x@0.19.12':
optional: true
- '@esbuild/linux-s390x@0.20.2':
- optional: true
-
'@esbuild/linux-s390x@0.21.5':
optional: true
@@ -6012,9 +6110,6 @@ snapshots:
'@esbuild/linux-x64@0.19.12':
optional: true
- '@esbuild/linux-x64@0.20.2':
- optional: true
-
'@esbuild/linux-x64@0.21.5':
optional: true
@@ -6024,9 +6119,6 @@ snapshots:
'@esbuild/netbsd-x64@0.19.12':
optional: true
- '@esbuild/netbsd-x64@0.20.2':
- optional: true
-
'@esbuild/netbsd-x64@0.21.5':
optional: true
@@ -6036,9 +6128,6 @@ snapshots:
'@esbuild/openbsd-x64@0.19.12':
optional: true
- '@esbuild/openbsd-x64@0.20.2':
- optional: true
-
'@esbuild/openbsd-x64@0.21.5':
optional: true
@@ -6048,9 +6137,6 @@ snapshots:
'@esbuild/sunos-x64@0.19.12':
optional: true
- '@esbuild/sunos-x64@0.20.2':
- optional: true
-
'@esbuild/sunos-x64@0.21.5':
optional: true
@@ -6060,9 +6146,6 @@ snapshots:
'@esbuild/win32-arm64@0.19.12':
optional: true
- '@esbuild/win32-arm64@0.20.2':
- optional: true
-
'@esbuild/win32-arm64@0.21.5':
optional: true
@@ -6072,9 +6155,6 @@ snapshots:
'@esbuild/win32-ia32@0.19.12':
optional: true
- '@esbuild/win32-ia32@0.20.2':
- optional: true
-
'@esbuild/win32-ia32@0.21.5':
optional: true
@@ -6084,20 +6164,17 @@ snapshots:
'@esbuild/win32-x64@0.19.12':
optional: true
- '@esbuild/win32-x64@0.20.2':
- optional: true
-
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.7.0)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.8.0)':
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.11.0': {}
- '@eslint/config-array@0.17.0':
+ '@eslint/config-array@0.17.1':
dependencies:
'@eslint/object-schema': 2.1.4
debug: 4.3.5
@@ -6119,7 +6196,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.7.0': {}
+ '@eslint/js@9.8.0': {}
'@eslint/object-schema@2.1.4': {}
@@ -6157,7 +6234,7 @@ snapshots:
'@iconify/types@2.0.0': {}
- '@iconify/utils@2.1.25':
+ '@iconify/utils@2.1.29':
dependencies:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.10
@@ -6197,6 +6274,8 @@ snapshots:
'@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
+
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.1
@@ -6266,11 +6345,11 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-alias@5.1.0(rollup@4.19.0)':
+ '@rollup/plugin-alias@5.1.0(rollup@4.19.2)':
dependencies:
slash: 4.0.0
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/plugin-commonjs@25.0.8(rollup@3.29.4)':
dependencies:
@@ -6283,16 +6362,16 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-commonjs@26.0.1(rollup@4.19.0)':
+ '@rollup/plugin-commonjs@26.0.1(rollup@4.19.2)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 10.4.1
is-reference: 1.2.1
magic-string: 0.30.10
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/plugin-json@6.1.0(rollup@3.29.4)':
dependencies:
@@ -6300,11 +6379,11 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-json@6.1.0(rollup@4.19.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.19.2)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4)':
dependencies:
@@ -6317,16 +6396,16 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-node-resolve@15.2.3(rollup@4.19.0)':
+ '@rollup/plugin-node-resolve@15.2.3(rollup@4.19.2)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/plugin-replace@5.0.7(rollup@3.29.4)':
dependencies:
@@ -6335,20 +6414,20 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-replace@5.0.7(rollup@4.19.0)':
+ '@rollup/plugin-replace@5.0.7(rollup@4.19.2)':
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
magic-string: 0.30.10
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
- '@rollup/plugin-terser@0.4.4(rollup@4.19.0)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.19.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.4.1
terser: 5.27.0
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/pluginutils@4.2.1':
dependencies:
@@ -6363,107 +6442,153 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/pluginutils@5.1.0(rollup@4.19.0)':
+ '@rollup/pluginutils@5.1.0(rollup@4.19.2)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.19.0
+ rollup: 4.19.2
'@rollup/rollup-android-arm-eabi@4.19.0':
optional: true
+ '@rollup/rollup-android-arm-eabi@4.19.2':
+ optional: true
+
'@rollup/rollup-android-arm64@4.19.0':
optional: true
+ '@rollup/rollup-android-arm64@4.19.2':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.19.0':
optional: true
+ '@rollup/rollup-darwin-arm64@4.19.2':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.19.0':
optional: true
+ '@rollup/rollup-darwin-x64@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.19.0':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.19.0':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.19.0':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.19.0':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-powerpc64le-gnu@4.19.0':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.19.0':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.19.0':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.19.0':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.19.2':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.19.0':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.19.2':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.19.0':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.19.2':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.19.0':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.19.2':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.19.0':
optional: true
- '@rtsao/scc@1.1.0': {}
+ '@rollup/rollup-win32-x64-msvc@4.19.2':
+ optional: true
- '@stylistic/eslint-plugin-js@2.6.0-beta.0(eslint@9.7.0)':
+ '@stylistic/eslint-plugin-js@2.6.0(eslint@9.8.0)':
dependencies:
- '@types/eslint': 8.56.10
- acorn: 8.12.0
- eslint: 9.7.0
+ '@types/eslint': 9.6.0
+ acorn: 8.12.1
+ eslint: 9.8.0
eslint-visitor-keys: 4.0.0
espree: 10.1.0
- '@stylistic/eslint-plugin-jsx@2.6.0-beta.0(eslint@9.7.0)':
+ '@stylistic/eslint-plugin-jsx@2.6.0(eslint@9.8.0)':
dependencies:
- '@stylistic/eslint-plugin-js': 2.6.0-beta.0(eslint@9.7.0)
- '@types/eslint': 8.56.10
- eslint: 9.7.0
+ '@stylistic/eslint-plugin-js': 2.6.0(eslint@9.8.0)
+ '@types/eslint': 9.6.0
+ eslint: 9.8.0
estraverse: 5.3.0
picomatch: 4.0.2
- '@stylistic/eslint-plugin-plus@2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@stylistic/eslint-plugin-plus@2.6.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@types/eslint': 8.56.10
- '@typescript-eslint/utils': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@types/eslint': 9.6.0
+ '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
transitivePeerDependencies:
- supports-color
- typescript
- '@stylistic/eslint-plugin-ts@2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@stylistic/eslint-plugin-ts@2.6.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@stylistic/eslint-plugin-js': 2.6.0-beta.0(eslint@9.7.0)
- '@types/eslint': 8.56.10
- '@typescript-eslint/utils': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@stylistic/eslint-plugin-js': 2.6.0(eslint@9.8.0)
+ '@types/eslint': 9.6.0
+ '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
transitivePeerDependencies:
- supports-color
- typescript
- '@stylistic/eslint-plugin@2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)':
+ '@stylistic/eslint-plugin@2.6.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@stylistic/eslint-plugin-js': 2.6.0-beta.0(eslint@9.7.0)
- '@stylistic/eslint-plugin-jsx': 2.6.0-beta.0(eslint@9.7.0)
- '@stylistic/eslint-plugin-plus': 2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)
- '@stylistic/eslint-plugin-ts': 2.6.0-beta.0(eslint@9.7.0)(typescript@5.5.4)
- '@types/eslint': 8.56.10
- eslint: 9.7.0
+ '@stylistic/eslint-plugin-js': 2.6.0(eslint@9.8.0)
+ '@stylistic/eslint-plugin-jsx': 2.6.0(eslint@9.8.0)
+ '@stylistic/eslint-plugin-plus': 2.6.0(eslint@9.8.0)(typescript@5.5.4)
+ '@stylistic/eslint-plugin-ts': 2.6.0(eslint@9.8.0)(typescript@5.5.4)
+ '@types/eslint': 9.6.0
+ eslint: 9.8.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -6487,21 +6612,26 @@ snapshots:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
+ '@types/eslint@9.6.0':
+ dependencies:
+ '@types/estree': 1.0.5
+ '@types/json-schema': 7.0.15
+
'@types/estree@1.0.5': {}
'@types/fs-extra@11.0.4':
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
'@types/fs-extra@8.1.5':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
'@types/hast@3.0.4':
dependencies:
@@ -6511,7 +6641,7 @@ snapshots:
'@types/jsonfile@6.1.4':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
'@types/linkify-it@5.0.0': {}
@@ -6534,11 +6664,11 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
- '@types/node@20.14.12':
+ '@types/node@22.0.2':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.11.1
'@types/normalize-package-data@2.4.4': {}
@@ -6548,15 +6678,15 @@ snapshots:
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/scope-manager': 8.0.0-alpha.40
- '@typescript-eslint/type-utils': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.0.0-alpha.40
- eslint: 9.7.0
+ '@typescript-eslint/parser': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ '@typescript-eslint/scope-manager': 8.0.0
+ '@typescript-eslint/type-utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.0.0
+ eslint: 9.8.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
@@ -6566,14 +6696,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/scope-manager': 8.0.0-alpha.40
- '@typescript-eslint/types': 8.0.0-alpha.40
- '@typescript-eslint/typescript-estree': 8.0.0-alpha.40(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.0.0-alpha.40
+ '@typescript-eslint/scope-manager': 8.0.0
+ '@typescript-eslint/types': 8.0.0
+ '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4)
+ '@typescript-eslint/visitor-keys': 8.0.0
debug: 4.3.5
- eslint: 9.7.0
+ eslint: 9.8.0
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
@@ -6584,15 +6714,20 @@ snapshots:
'@typescript-eslint/types': 7.14.1
'@typescript-eslint/visitor-keys': 7.14.1
- '@typescript-eslint/scope-manager@8.0.0-alpha.40':
+ '@typescript-eslint/scope-manager@7.18.0':
dependencies:
- '@typescript-eslint/types': 8.0.0-alpha.40
- '@typescript-eslint/visitor-keys': 8.0.0-alpha.40
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
- '@typescript-eslint/type-utils@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/scope-manager@8.0.0':
dependencies:
- '@typescript-eslint/typescript-estree': 8.0.0-alpha.40(typescript@5.5.4)
- '@typescript-eslint/utils': 8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)
+ '@typescript-eslint/types': 8.0.0
+ '@typescript-eslint/visitor-keys': 8.0.0
+
+ '@typescript-eslint/type-utils@8.0.0(eslint@9.8.0)(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.0.0(eslint@9.8.0)(typescript@5.5.4)
debug: 4.3.5
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
@@ -6603,7 +6738,9 @@ snapshots:
'@typescript-eslint/types@7.14.1': {}
- '@typescript-eslint/types@8.0.0-alpha.40': {}
+ '@typescript-eslint/types@7.18.0': {}
+
+ '@typescript-eslint/types@8.0.0': {}
'@typescript-eslint/typescript-estree@7.14.1(typescript@5.5.4)':
dependencies:
@@ -6620,10 +6757,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.0.0-alpha.40(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/visitor-keys': 7.18.0
+ debug: 4.3.5
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.3.0(typescript@5.5.4)
+ optionalDependencies:
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/typescript-estree@8.0.0(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/types': 8.0.0-alpha.40
- '@typescript-eslint/visitor-keys': 8.0.0-alpha.40
+ '@typescript-eslint/types': 8.0.0
+ '@typescript-eslint/visitor-keys': 8.0.0
debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
@@ -6635,24 +6787,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.14.1(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@7.14.1(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
'@typescript-eslint/scope-manager': 7.14.1
'@typescript-eslint/types': 7.14.1
'@typescript-eslint/typescript-estree': 7.14.1(typescript@5.5.4)
- eslint: 9.7.0
+ eslint: 9.8.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@7.18.0(eslint@9.8.0)(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@typescript-eslint/scope-manager': 8.0.0-alpha.40
- '@typescript-eslint/types': 8.0.0-alpha.40
- '@typescript-eslint/typescript-estree': 8.0.0-alpha.40(typescript@5.5.4)
- eslint: 9.7.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
+ '@typescript-eslint/scope-manager': 7.18.0
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
+ eslint: 9.8.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@8.0.0(eslint@9.8.0)(typescript@5.5.4)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
+ '@typescript-eslint/scope-manager': 8.0.0
+ '@typescript-eslint/types': 8.0.0
+ '@typescript-eslint/typescript-estree': 8.0.0(typescript@5.5.4)
+ eslint: 9.8.0
transitivePeerDependencies:
- supports-color
- typescript
@@ -6662,9 +6825,14 @@ snapshots:
'@typescript-eslint/types': 7.14.1
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.0.0-alpha.40':
+ '@typescript-eslint/visitor-keys@7.18.0':
dependencies:
- '@typescript-eslint/types': 8.0.0-alpha.40
+ '@typescript-eslint/types': 7.18.0
+ eslint-visitor-keys: 3.4.3
+
+ '@typescript-eslint/visitor-keys@8.0.0':
+ dependencies:
+ '@typescript-eslint/types': 8.0.0
eslint-visitor-keys: 3.4.3
'@typescript/vfs@1.5.0':
@@ -6675,165 +6843,172 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@unocss/astro@0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))':
+ '@unocss/astro@0.61.9(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/reset': 0.61.5
- '@unocss/vite': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))
+ '@unocss/core': 0.61.9
+ '@unocss/reset': 0.61.9
+ '@unocss/vite': 0.61.9(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- rollup
+ - supports-color
- '@unocss/cli@0.61.5(rollup@4.19.0)':
+ '@unocss/cli@0.61.9(rollup@4.19.2)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/preset-uno': 0.61.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/preset-uno': 0.61.9
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
- magic-string: 0.30.10
+ magic-string: 0.30.11
pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
+ - supports-color
- '@unocss/config@0.61.5':
+ '@unocss/config@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- unconfig: 0.3.13
+ '@unocss/core': 0.61.9
+ unconfig: 0.5.4
+ transitivePeerDependencies:
+ - supports-color
- '@unocss/core@0.61.5': {}
+ '@unocss/core@0.61.9': {}
- '@unocss/extractor-arbitrary-variants@0.61.5':
+ '@unocss/extractor-arbitrary-variants@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/inspector@0.61.5':
+ '@unocss/inspector@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
gzip-size: 6.0.0
sirv: 2.0.4
- '@unocss/postcss@0.61.5(postcss@8.4.39)':
+ '@unocss/postcss@0.61.9(postcss@8.4.40)':
dependencies:
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
css-tree: 2.3.1
fast-glob: 3.3.2
- magic-string: 0.30.10
- postcss: 8.4.39
+ magic-string: 0.30.11
+ postcss: 8.4.40
+ transitivePeerDependencies:
+ - supports-color
- '@unocss/preset-attributify@0.61.5':
+ '@unocss/preset-attributify@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/preset-icons@0.61.5':
+ '@unocss/preset-icons@0.61.9':
dependencies:
- '@iconify/utils': 2.1.25
- '@unocss/core': 0.61.5
+ '@iconify/utils': 2.1.29
+ '@unocss/core': 0.61.9
ofetch: 1.3.4
transitivePeerDependencies:
- supports-color
- '@unocss/preset-mini@0.61.5':
+ '@unocss/preset-mini@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/extractor-arbitrary-variants': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/extractor-arbitrary-variants': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/preset-tagify@0.61.5':
+ '@unocss/preset-tagify@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/preset-typography@0.61.5':
+ '@unocss/preset-typography@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
- '@unocss/preset-uno@0.61.5':
+ '@unocss/preset-uno@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/preset-wind': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/preset-wind': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/preset-web-fonts@0.61.5':
+ '@unocss/preset-web-fonts@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
ofetch: 1.3.4
- '@unocss/preset-wind@0.61.5':
+ '@unocss/preset-wind@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/rule-utils': 0.61.9
- '@unocss/reset@0.61.5': {}
+ '@unocss/reset@0.61.9': {}
- '@unocss/rule-utils@0.61.5':
+ '@unocss/rule-utils@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- magic-string: 0.30.10
+ '@unocss/core': 0.61.9
+ magic-string: 0.30.11
- '@unocss/scope@0.61.5': {}
+ '@unocss/scope@0.61.9': {}
- '@unocss/transformer-attributify-jsx-babel@0.61.5':
+ '@unocss/transformer-attributify-jsx-babel@0.61.9':
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.9)
- '@unocss/core': 0.61.5
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@unocss/core': 0.61.9
transitivePeerDependencies:
- supports-color
- '@unocss/transformer-attributify-jsx@0.61.5':
+ '@unocss/transformer-attributify-jsx@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/transformer-compile-class@0.61.5':
+ '@unocss/transformer-compile-class@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/transformer-directives@0.61.5':
+ '@unocss/transformer-directives@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
- '@unocss/rule-utils': 0.61.5
+ '@unocss/core': 0.61.9
+ '@unocss/rule-utils': 0.61.9
css-tree: 2.3.1
- '@unocss/transformer-variant-group@0.61.5':
+ '@unocss/transformer-variant-group@0.61.9':
dependencies:
- '@unocss/core': 0.61.5
+ '@unocss/core': 0.61.9
- '@unocss/vite@0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))':
+ '@unocss/vite@0.61.9(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
- '@unocss/config': 0.61.5
- '@unocss/core': 0.61.5
- '@unocss/inspector': 0.61.5
- '@unocss/scope': 0.61.5
- '@unocss/transformer-directives': 0.61.5
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
+ '@unocss/config': 0.61.9
+ '@unocss/core': 0.61.9
+ '@unocss/inspector': 0.61.9
+ '@unocss/scope': 0.61.9
+ '@unocss/transformer-directives': 0.61.9
chokidar: 3.6.0
fast-glob: 3.3.2
- magic-string: 0.30.10
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ magic-string: 0.30.11
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- rollup
+ - supports-color
- '@vitejs/plugin-vue@5.0.5(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))(vue@3.4.34(typescript@5.5.4))':
+ '@vitejs/plugin-vue@5.0.5(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))(vue@3.4.35(typescript@5.5.4))':
dependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
- vue: 3.4.34(typescript@5.5.4)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
+ vue: 3.4.35(typescript@5.5.4)
- '@vitest/coverage-v8@2.0.4(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0))':
+ '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -6847,39 +7022,39 @@ snapshots:
std-env: 3.7.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.0.4(@types/node@20.14.12)(terser@5.27.0)
+ vitest: 2.0.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.0.4':
+ '@vitest/expect@2.0.5':
dependencies:
- '@vitest/spy': 2.0.4
- '@vitest/utils': 2.0.4
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
chai: 5.1.1
tinyrainbow: 1.2.0
- '@vitest/pretty-format@2.0.4':
+ '@vitest/pretty-format@2.0.5':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.0.4':
+ '@vitest/runner@2.0.5':
dependencies:
- '@vitest/utils': 2.0.4
+ '@vitest/utils': 2.0.5
pathe: 1.1.2
- '@vitest/snapshot@2.0.4':
+ '@vitest/snapshot@2.0.5':
dependencies:
- '@vitest/pretty-format': 2.0.4
+ '@vitest/pretty-format': 2.0.5
magic-string: 0.30.10
pathe: 1.1.2
- '@vitest/spy@2.0.4':
+ '@vitest/spy@2.0.5':
dependencies:
tinyspy: 3.0.0
- '@vitest/utils@2.0.4':
+ '@vitest/utils@2.0.5':
dependencies:
- '@vitest/pretty-format': 2.0.4
+ '@vitest/pretty-format': 2.0.5
estree-walker: 3.0.3
loupe: 3.1.1
tinyrainbow: 1.2.0
@@ -6904,27 +7079,40 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.0
+ '@vue/compiler-core@3.4.35':
+ dependencies:
+ '@babel/parser': 7.24.8
+ '@vue/shared': 3.4.35
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.0
+
'@vue/compiler-dom@3.4.34':
dependencies:
'@vue/compiler-core': 3.4.34
'@vue/shared': 3.4.34
- '@vue/compiler-sfc@3.4.34':
+ '@vue/compiler-dom@3.4.35':
+ dependencies:
+ '@vue/compiler-core': 3.4.35
+ '@vue/shared': 3.4.35
+
+ '@vue/compiler-sfc@3.4.35':
dependencies:
'@babel/parser': 7.24.8
- '@vue/compiler-core': 3.4.34
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-core': 3.4.35
+ '@vue/compiler-dom': 3.4.35
+ '@vue/compiler-ssr': 3.4.35
+ '@vue/shared': 3.4.35
estree-walker: 2.0.2
magic-string: 0.30.10
- postcss: 8.4.39
+ postcss: 8.4.40
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.4.34':
+ '@vue/compiler-ssr@3.4.35':
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.4.35
+ '@vue/shared': 3.4.35
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -6964,45 +7152,47 @@ snapshots:
optionalDependencies:
typescript: 5.5.4
- '@vue/reactivity@3.4.34':
+ '@vue/reactivity@3.4.35':
dependencies:
- '@vue/shared': 3.4.34
+ '@vue/shared': 3.4.35
- '@vue/runtime-core@3.4.34':
+ '@vue/runtime-core@3.4.35':
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/reactivity': 3.4.35
+ '@vue/shared': 3.4.35
- '@vue/runtime-dom@3.4.34':
+ '@vue/runtime-dom@3.4.35':
dependencies:
- '@vue/reactivity': 3.4.34
- '@vue/runtime-core': 3.4.34
- '@vue/shared': 3.4.34
+ '@vue/reactivity': 3.4.35
+ '@vue/runtime-core': 3.4.35
+ '@vue/shared': 3.4.35
csstype: 3.1.3
- '@vue/server-renderer@3.4.34(vue@3.4.34(typescript@5.5.4))':
+ '@vue/server-renderer@3.4.35(vue@3.4.35(typescript@5.5.4))':
dependencies:
- '@vue/compiler-ssr': 3.4.34
- '@vue/shared': 3.4.34
- vue: 3.4.34(typescript@5.5.4)
+ '@vue/compiler-ssr': 3.4.35
+ '@vue/shared': 3.4.35
+ vue: 3.4.35(typescript@5.5.4)
'@vue/shared@3.4.34': {}
- '@vueuse/core@10.11.0(vue@3.4.34(typescript@5.5.4))':
+ '@vue/shared@3.4.35': {}
+
+ '@vueuse/core@10.11.0(vue@3.4.35(typescript@5.5.4))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.11.0
- '@vueuse/shared': 10.11.0(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.8(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4))
+ vue-demi: 0.14.8(vue@3.4.35(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.11.0(focus-trap@7.5.4)(fuse.js@7.0.0)(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/integrations@10.11.0(focus-trap@7.5.4)(fuse.js@7.0.0)(vue@3.4.35(typescript@5.5.4))':
dependencies:
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- '@vueuse/shared': 10.11.0(vue@3.4.34(typescript@5.5.4))
- vue-demi: 0.14.8(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4))
+ '@vueuse/shared': 10.11.0(vue@3.4.35(typescript@5.5.4))
+ vue-demi: 0.14.8(vue@3.4.35(typescript@5.5.4))
optionalDependencies:
focus-trap: 7.5.4
fuse.js: 7.0.0
@@ -7012,9 +7202,9 @@ snapshots:
'@vueuse/metadata@10.11.0': {}
- '@vueuse/shared@10.11.0(vue@3.4.34(typescript@5.5.4))':
+ '@vueuse/shared@10.11.0(vue@3.4.35(typescript@5.5.4))':
dependencies:
- vue-demi: 0.14.8(vue@3.4.34(typescript@5.5.4))
+ vue-demi: 0.14.8(vue@3.4.35(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -7027,6 +7217,8 @@ snapshots:
acorn@8.12.0: {}
+ acorn@8.12.1: {}
+
agent-base@7.1.1:
dependencies:
debug: 4.3.5
@@ -7156,9 +7348,9 @@ snapshots:
prompts: 2.4.2
semver: 7.6.3
- bundle-require@5.0.0(esbuild@0.20.2):
+ bundle-require@5.0.0(esbuild@0.21.5):
dependencies:
- esbuild: 0.20.2
+ esbuild: 0.21.5
load-tsconfig: 0.2.5
c12@1.10.0:
@@ -7633,6 +7825,10 @@ snapshots:
dependencies:
ms: 2.1.2
+ debug@4.3.6:
+ dependencies:
+ ms: 2.1.2
+
decode-named-character-reference@1.0.2:
dependencies:
character-entities: 2.0.2
@@ -7774,32 +7970,6 @@ snapshots:
'@esbuild/win32-ia32': 0.19.12
'@esbuild/win32-x64': 0.19.12
- esbuild@0.20.2:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.20.2
- '@esbuild/android-arm': 0.20.2
- '@esbuild/android-arm64': 0.20.2
- '@esbuild/android-x64': 0.20.2
- '@esbuild/darwin-arm64': 0.20.2
- '@esbuild/darwin-x64': 0.20.2
- '@esbuild/freebsd-arm64': 0.20.2
- '@esbuild/freebsd-x64': 0.20.2
- '@esbuild/linux-arm': 0.20.2
- '@esbuild/linux-arm64': 0.20.2
- '@esbuild/linux-ia32': 0.20.2
- '@esbuild/linux-loong64': 0.20.2
- '@esbuild/linux-mips64el': 0.20.2
- '@esbuild/linux-ppc64': 0.20.2
- '@esbuild/linux-riscv64': 0.20.2
- '@esbuild/linux-s390x': 0.20.2
- '@esbuild/linux-x64': 0.20.2
- '@esbuild/netbsd-x64': 0.20.2
- '@esbuild/openbsd-x64': 0.20.2
- '@esbuild/sunos-x64': 0.20.2
- '@esbuild/win32-arm64': 0.20.2
- '@esbuild/win32-ia32': 0.20.2
- '@esbuild/win32-x64': 0.20.2
-
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -7834,13 +8004,13 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.1.2(eslint@9.7.0):
+ eslint-compat-utils@0.1.2(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
- eslint-compat-utils@0.5.0(eslint@9.7.0):
+ eslint-compat-utils@0.5.0(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
semver: 7.6.3
eslint-config-flat-gitignore@0.1.8:
@@ -7848,14 +8018,14 @@ snapshots:
find-up-simple: 1.0.0
parse-gitignore: 2.0.0
- eslint-flat-config-utils@0.2.5:
+ eslint-flat-config-utils@0.3.0:
dependencies:
- '@types/eslint': 8.56.10
+ '@types/eslint': 9.6.0
pathe: 1.1.2
- eslint-formatting-reporter@0.0.0(eslint@9.7.0):
+ eslint-formatting-reporter@0.0.0(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
prettier-linter-helpers: 1.0.0
eslint-import-resolver-node@0.3.9:
@@ -7866,53 +8036,52 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-merge-processors@0.1.0(eslint@9.7.0):
+ eslint-merge-processors@0.1.0(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-parser-plain@0.1.0: {}
- eslint-plugin-antfu@2.3.4(eslint@9.7.0):
+ eslint-plugin-antfu@2.3.4(eslint@9.8.0):
dependencies:
'@antfu/utils': 0.7.10
- eslint: 9.7.0
+ eslint: 9.8.0
- eslint-plugin-command@0.2.3(eslint@9.7.0):
+ eslint-plugin-command@0.2.3(eslint@9.8.0):
dependencies:
'@es-joy/jsdoccomment': 0.43.1
- eslint: 9.7.0
+ eslint: 9.8.0
- eslint-plugin-es-x@7.5.0(eslint@9.7.0):
+ eslint-plugin-es-x@7.5.0(eslint@9.8.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
'@eslint-community/regexpp': 4.11.0
- eslint: 9.7.0
- eslint-compat-utils: 0.1.2(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-compat-utils: 0.1.2(eslint@9.8.0)
- eslint-plugin-eslint-comments@3.2.0(eslint@9.7.0):
+ eslint-plugin-eslint-comments@3.2.0(eslint@9.8.0):
dependencies:
escape-string-regexp: 1.0.5
- eslint: 9.7.0
+ eslint: 9.8.0
ignore: 5.3.1
- eslint-plugin-format@0.1.2(eslint@9.7.0):
+ eslint-plugin-format@0.1.2(eslint@9.8.0):
dependencies:
'@dprint/formatter': 0.3.0
'@dprint/markdown': 0.17.1
'@dprint/toml': 0.6.2
- eslint: 9.7.0
- eslint-formatting-reporter: 0.0.0(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-formatting-reporter: 0.0.0(eslint@9.8.0)
eslint-parser-plain: 0.1.0
prettier: 3.3.3
synckit: 0.9.1
- eslint-plugin-import-x@3.0.1(eslint@9.7.0)(typescript@5.5.4):
+ eslint-plugin-import-x@3.1.0(eslint@9.8.0)(typescript@5.5.4):
dependencies:
- '@rtsao/scc': 1.1.0
- '@typescript-eslint/utils': 7.14.1(eslint@9.7.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.14.1(eslint@9.8.0)(typescript@5.5.4)
debug: 4.3.5
doctrine: 3.0.0
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.7.5
is-glob: 4.0.3
@@ -7924,14 +8093,15 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsdoc@48.8.3(eslint@9.7.0):
+ eslint-plugin-jsdoc@48.10.2(eslint@9.8.0):
dependencies:
'@es-joy/jsdoccomment': 0.46.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.3.5
escape-string-regexp: 4.0.0
- eslint: 9.7.0
+ eslint: 9.8.0
+ espree: 10.1.0
esquery: 1.6.0
parse-imports: 2.1.1
semver: 7.6.3
@@ -7940,30 +8110,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-jsonc@2.16.0(eslint@9.7.0):
+ eslint-plugin-jsonc@2.16.0(eslint@9.8.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
+ eslint: 9.8.0
+ eslint-compat-utils: 0.5.0(eslint@9.8.0)
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
natural-compare: 1.4.0
synckit: 0.6.2
- eslint-plugin-markdown@5.1.0(eslint@9.7.0):
+ eslint-plugin-markdown@5.1.0(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
- eslint-plugin-n@17.9.0(eslint@9.7.0):
+ eslint-plugin-n@17.10.1(eslint@9.8.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
enhanced-resolve: 5.17.0
- eslint: 9.7.0
- eslint-plugin-es-x: 7.5.0(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-plugin-es-x: 7.5.0(eslint@9.8.0)
get-tsconfig: 4.7.5
globals: 15.8.0
ignore: 5.3.1
@@ -7972,49 +8142,50 @@ snapshots:
eslint-plugin-no-only-tests@3.1.0: {}
- eslint-plugin-perfectionist@2.11.0(eslint@9.7.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.7.0)):
+ eslint-plugin-perfectionist@3.0.0(eslint@9.8.0)(typescript@5.5.4)(vue-eslint-parser@9.4.3(eslint@9.8.0)):
dependencies:
- '@typescript-eslint/utils': 7.14.1(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
- minimatch: 9.0.5
+ '@typescript-eslint/types': 7.18.0
+ '@typescript-eslint/utils': 7.18.0(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
+ minimatch: 10.0.1
natural-compare-lite: 1.4.0
optionalDependencies:
- vue-eslint-parser: 9.4.3(eslint@9.7.0)
+ vue-eslint-parser: 9.4.3(eslint@9.8.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-regexp@2.6.0(eslint@9.7.0):
+ eslint-plugin-regexp@2.6.0(eslint@9.8.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
'@eslint-community/regexpp': 4.11.0
comment-parser: 1.4.1
- eslint: 9.7.0
+ eslint: 9.8.0
jsdoc-type-pratt-parser: 4.0.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-plugin-toml@0.11.1(eslint@9.7.0):
+ eslint-plugin-toml@0.11.1(eslint@9.8.0):
dependencies:
debug: 4.3.5
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-compat-utils: 0.5.0(eslint@9.8.0)
lodash: 4.17.21
toml-eslint-parser: 0.10.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-unicorn@54.0.0(eslint@9.7.0):
+ eslint-plugin-unicorn@55.0.0(eslint@9.8.0):
dependencies:
'@babel/helper-validator-identifier': 7.24.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- '@eslint/eslintrc': 3.1.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.37.1
- eslint: 9.7.0
+ eslint: 9.8.0
esquery: 1.6.0
+ globals: 15.8.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.0.2
@@ -8024,56 +8195,54 @@ snapshots:
regjsparser: 0.10.0
semver: 7.6.3
strip-indent: 3.0.0
- transitivePeerDependencies:
- - supports-color
- eslint-plugin-unused-imports@4.0.1(@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0):
+ eslint-plugin-unused-imports@4.0.1(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0):
dependencies:
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-rule-composer: 0.3.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
+ '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)
- eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)(vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0)):
+ eslint-plugin-vitest@0.5.4(@typescript-eslint/eslint-plugin@8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)(vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0)):
dependencies:
- '@typescript-eslint/utils': 7.14.1(eslint@9.7.0)(typescript@5.5.4)
- eslint: 9.7.0
+ '@typescript-eslint/utils': 7.14.1(eslint@9.8.0)(typescript@5.5.4)
+ eslint: 9.8.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.0.0-alpha.40(@typescript-eslint/parser@8.0.0-alpha.40(eslint@9.7.0)(typescript@5.5.4))(eslint@9.7.0)(typescript@5.5.4)
- vitest: 2.0.4(@types/node@20.14.12)(terser@5.27.0)
+ '@typescript-eslint/eslint-plugin': 8.0.0(@typescript-eslint/parser@8.0.0(eslint@9.8.0)(typescript@5.5.4))(eslint@9.8.0)(typescript@5.5.4)
+ vitest: 2.0.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-vue@9.27.0(eslint@9.7.0):
+ eslint-plugin-vue@9.27.0(eslint@9.8.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
- eslint: 9.7.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
+ eslint: 9.8.0
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.15
semver: 7.6.3
- vue-eslint-parser: 9.4.3(eslint@9.7.0)
+ vue-eslint-parser: 9.4.3(eslint@9.8.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
- eslint-plugin-yml@1.14.0(eslint@9.7.0):
+ eslint-plugin-yml@1.14.0(eslint@9.8.0):
dependencies:
debug: 4.3.5
- eslint: 9.7.0
- eslint-compat-utils: 0.5.0(eslint@9.7.0)
+ eslint: 9.8.0
+ eslint-compat-utils: 0.5.0(eslint@9.8.0)
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.3
transitivePeerDependencies:
- supports-color
- eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.4.34)(eslint@9.7.0):
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.4.35)(eslint@9.8.0):
dependencies:
- '@vue/compiler-sfc': 3.4.34
- eslint: 9.7.0
+ '@vue/compiler-sfc': 3.4.35
+ eslint: 9.8.0
eslint-rule-composer@0.3.0: {}
@@ -8091,13 +8260,13 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@9.7.0:
+ eslint@9.8.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.7.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0)
'@eslint-community/regexpp': 4.11.0
- '@eslint/config-array': 0.17.0
+ '@eslint/config-array': 0.17.1
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.7.0
+ '@eslint/js': 9.8.0
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.3.0
'@nodelib/fs.walk': 1.2.8
@@ -8251,11 +8420,11 @@ snapshots:
flatted@3.2.9: {}
- floating-vue@5.2.2(vue@3.4.34(typescript@5.5.4)):
+ floating-vue@5.2.2(vue@3.4.35(typescript@5.5.4)):
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.4.34(typescript@5.5.4)
- vue-resize: 2.0.0-alpha.1(vue@3.4.34(typescript@5.5.4))
+ vue: 3.4.35(typescript@5.5.4)
+ vue-resize: 2.0.0-alpha.1(vue@3.4.35(typescript@5.5.4))
focus-trap@7.5.4:
dependencies:
@@ -8563,15 +8732,16 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- importx@0.3.10:
+ importx@0.4.3:
dependencies:
- bundle-require: 5.0.0(esbuild@0.20.2)
- debug: 4.3.5
- esbuild: 0.20.2
- jiti: 1.21.6
+ bundle-require: 5.0.0(esbuild@0.21.5)
+ debug: 4.3.6
+ esbuild: 0.21.5
+ jiti: 2.0.0-beta.2
+ jiti-v1: jiti@1.21.6
pathe: 1.1.2
- pkg-types: 1.1.1
- tsx: 4.16.0
+ pkg-types: 1.1.3
+ tsx: 4.16.3
transitivePeerDependencies:
- supports-color
@@ -8693,6 +8863,8 @@ snapshots:
jiti@1.21.6: {}
+ jiti@2.0.0-beta.2: {}
+
js-tokens@4.0.0: {}
js-yaml@4.1.0:
@@ -8848,6 +9020,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
+ magic-string@0.30.11:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
magicast@0.3.4:
dependencies:
'@babel/parser': 7.24.8
@@ -9305,7 +9481,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.5
+ debug: 4.3.6
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -9359,7 +9535,7 @@ snapshots:
min-indent@1.0.1: {}
- miniflare@3.20240718.1:
+ miniflare@3.20240725.0:
dependencies:
'@cspotcode/source-map-support': 0.8.1
acorn: 8.12.0
@@ -9369,7 +9545,7 @@ snapshots:
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.4
- workerd: 1.20240718.0
+ workerd: 1.20240725.0
ws: 8.17.1
youch: 3.3.3
zod: 3.22.4
@@ -9668,11 +9844,11 @@ snapshots:
pidtree@0.6.0: {}
- pinia@2.2.0(typescript@5.5.4)(vue@3.4.34(typescript@5.5.4)):
+ pinia@2.2.0(typescript@5.5.4)(vue@3.4.35(typescript@5.5.4)):
dependencies:
'@vue/devtools-api': 6.6.3
- vue: 3.4.34(typescript@5.5.4)
- vue-demi: 0.14.8(vue@3.4.34(typescript@5.5.4))
+ vue: 3.4.35(typescript@5.5.4)
+ vue-demi: 0.14.8(vue@3.4.35(typescript@5.5.4))
optionalDependencies:
typescript: 5.5.4
@@ -9686,6 +9862,12 @@ snapshots:
mlly: 1.7.1
pathe: 1.1.2
+ pkg-types@1.1.3:
+ dependencies:
+ confbox: 0.1.7
+ mlly: 1.7.1
+ pathe: 1.1.2
+
pluralize@8.0.0: {}
pnpm@9.6.0: {}
@@ -9855,6 +10037,12 @@ snapshots:
picocolors: 1.0.1
source-map-js: 1.2.0
+ postcss@8.4.40:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
preact@10.19.3: {}
prelude-ls@1.2.1: {}
@@ -10008,22 +10196,22 @@ snapshots:
optionalDependencies:
'@babel/code-frame': 7.24.7
- rollup-plugin-dts@6.1.1(rollup@4.19.0)(typescript@5.5.4):
+ rollup-plugin-dts@6.1.1(rollup@4.19.2)(typescript@5.5.4):
dependencies:
magic-string: 0.30.10
- rollup: 4.19.0
+ rollup: 4.19.2
typescript: 5.5.4
optionalDependencies:
'@babel/code-frame': 7.24.7
- rollup-plugin-esbuild@6.1.1(esbuild@0.17.19)(rollup@4.19.0):
+ rollup-plugin-esbuild@6.1.1(esbuild@0.17.19)(rollup@4.19.2):
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
debug: 4.3.5
es-module-lexer: 1.5.4
esbuild: 0.17.19
get-tsconfig: 4.7.5
- rollup: 4.19.0
+ rollup: 4.19.2
transitivePeerDependencies:
- supports-color
@@ -10037,12 +10225,12 @@ snapshots:
dependencies:
rollup-plugin-inject: 3.0.2
- rollup-plugin-typescript2@0.36.0(rollup@4.19.0)(typescript@5.5.4):
+ rollup-plugin-typescript2@0.36.0(rollup@4.19.2)(typescript@5.5.4):
dependencies:
'@rollup/pluginutils': 4.2.1
find-cache-dir: 3.3.2
fs-extra: 10.1.0
- rollup: 4.19.0
+ rollup: 4.19.2
semver: 7.6.3
tslib: 2.6.2
typescript: 5.5.4
@@ -10077,6 +10265,28 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.19.0
fsevents: 2.3.3
+ rollup@4.19.2:
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.19.2
+ '@rollup/rollup-android-arm64': 4.19.2
+ '@rollup/rollup-darwin-arm64': 4.19.2
+ '@rollup/rollup-darwin-x64': 4.19.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.19.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.19.2
+ '@rollup/rollup-linux-arm64-gnu': 4.19.2
+ '@rollup/rollup-linux-arm64-musl': 4.19.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.19.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.19.2
+ '@rollup/rollup-linux-s390x-gnu': 4.19.2
+ '@rollup/rollup-linux-x64-gnu': 4.19.2
+ '@rollup/rollup-linux-x64-musl': 4.19.2
+ '@rollup/rollup-win32-arm64-msvc': 4.19.2
+ '@rollup/rollup-win32-ia32-msvc': 4.19.2
+ '@rollup/rollup-win32-x64-msvc': 4.19.2
+ fsevents: 2.3.3
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -10328,14 +10538,14 @@ snapshots:
mkdirp: 1.0.4
yallist: 4.0.0
- taze@0.16.1:
+ taze@0.16.3:
dependencies:
'@antfu/ni': 0.22.0
'@jsdevtools/ez-spawn': 3.0.4
js-yaml: 4.1.0
npm-registry-fetch: 17.1.0
ofetch: 1.3.4
- unconfig: 0.4.5
+ unconfig: 0.5.4
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
@@ -10363,9 +10573,9 @@ snapshots:
tinyspy@3.0.0: {}
- tm-grammars@1.15.1: {}
+ tm-grammars@1.16.2: {}
- tm-themes@1.5.7: {}
+ tm-themes@1.6.0: {}
to-fast-properties@2.0.0: {}
@@ -10402,6 +10612,13 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ tsx@4.16.3:
+ dependencies:
+ esbuild: 0.21.5
+ get-tsconfig: 4.7.5
+ optionalDependencies:
+ fsevents: 2.3.3
+
twoslash-protocol@0.2.9: {}
twoslash-vue@0.2.9(typescript@5.5.4):
@@ -10473,21 +10690,15 @@ snapshots:
- sass
- supports-color
- unconfig@0.3.13:
+ unconfig@0.5.4:
dependencies:
'@antfu/utils': 0.7.10
defu: 6.1.4
- jiti: 1.21.6
-
- unconfig@0.4.5:
- dependencies:
- '@antfu/utils': 0.7.10
- defu: 6.1.4
- importx: 0.3.10
+ importx: 0.4.3
transitivePeerDependencies:
- supports-color
- undici-types@5.26.5: {}
+ undici-types@6.11.1: {}
undici@5.28.4:
dependencies:
@@ -10555,39 +10766,39 @@ snapshots:
universalify@2.0.1: {}
- unocss@0.61.5(postcss@8.4.39)(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0)):
- dependencies:
- '@unocss/astro': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))
- '@unocss/cli': 0.61.5(rollup@4.19.0)
- '@unocss/core': 0.61.5
- '@unocss/extractor-arbitrary-variants': 0.61.5
- '@unocss/postcss': 0.61.5(postcss@8.4.39)
- '@unocss/preset-attributify': 0.61.5
- '@unocss/preset-icons': 0.61.5
- '@unocss/preset-mini': 0.61.5
- '@unocss/preset-tagify': 0.61.5
- '@unocss/preset-typography': 0.61.5
- '@unocss/preset-uno': 0.61.5
- '@unocss/preset-web-fonts': 0.61.5
- '@unocss/preset-wind': 0.61.5
- '@unocss/reset': 0.61.5
- '@unocss/transformer-attributify-jsx': 0.61.5
- '@unocss/transformer-attributify-jsx-babel': 0.61.5
- '@unocss/transformer-compile-class': 0.61.5
- '@unocss/transformer-directives': 0.61.5
- '@unocss/transformer-variant-group': 0.61.5
- '@unocss/vite': 0.61.5(rollup@4.19.0)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))
+ unocss@0.61.9(postcss@8.4.40)(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0)):
+ dependencies:
+ '@unocss/astro': 0.61.9(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))
+ '@unocss/cli': 0.61.9(rollup@4.19.2)
+ '@unocss/core': 0.61.9
+ '@unocss/extractor-arbitrary-variants': 0.61.9
+ '@unocss/postcss': 0.61.9(postcss@8.4.40)
+ '@unocss/preset-attributify': 0.61.9
+ '@unocss/preset-icons': 0.61.9
+ '@unocss/preset-mini': 0.61.9
+ '@unocss/preset-tagify': 0.61.9
+ '@unocss/preset-typography': 0.61.9
+ '@unocss/preset-uno': 0.61.9
+ '@unocss/preset-web-fonts': 0.61.9
+ '@unocss/preset-wind': 0.61.9
+ '@unocss/reset': 0.61.9
+ '@unocss/transformer-attributify-jsx': 0.61.9
+ '@unocss/transformer-attributify-jsx-babel': 0.61.9
+ '@unocss/transformer-compile-class': 0.61.9
+ '@unocss/transformer-directives': 0.61.9
+ '@unocss/transformer-variant-group': 0.61.9
+ '@unocss/vite': 0.61.9(rollup@4.19.2)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
- unplugin-vue-components@0.27.3(@babel/parser@7.24.8)(rollup@4.19.0)(vue@3.4.34(typescript@5.5.4)):
+ unplugin-vue-components@0.27.3(@babel/parser@7.25.3)(rollup@4.19.2)(vue@3.4.35(typescript@5.5.4)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
+ '@rollup/pluginutils': 5.1.0(rollup@4.19.2)
chokidar: 3.6.0
debug: 4.3.5
fast-glob: 3.3.2
@@ -10596,9 +10807,9 @@ snapshots:
minimatch: 9.0.5
mlly: 1.7.1
unplugin: 1.11.0
- vue: 3.4.34(typescript@5.5.4)
+ vue: 3.4.35(typescript@5.5.4)
optionalDependencies:
- '@babel/parser': 7.24.8
+ '@babel/parser': 7.25.3
transitivePeerDependencies:
- rollup
- supports-color
@@ -10666,13 +10877,13 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-node@2.0.4(@types/node@20.14.12)(terser@5.27.0):
+ vite-node@2.0.5(@types/node@22.0.2)(terser@5.27.0):
dependencies:
cac: 6.7.14
debug: 4.3.5
pathe: 1.1.2
tinyrainbow: 1.2.0
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -10683,52 +10894,99 @@ snapshots:
- supports-color
- terser
- vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0)):
+ vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0)):
dependencies:
debug: 4.3.5
globrex: 0.1.2
tsconfck: 3.0.3(typescript@5.5.4)
optionalDependencies:
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.3.5(@types/node@20.14.12)(terser@5.27.0):
+ vite@5.3.5(@types/node@22.0.2)(terser@5.27.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.39
rollup: 4.19.0
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
fsevents: 2.3.3
terser: 5.27.0
- vitepress-plugin-mermaid@2.0.16(mermaid@10.7.0)(vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@20.14.12)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)):
+ vitepress-plugin-mermaid@2.0.16(mermaid@10.7.0)(vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)):
dependencies:
mermaid: 10.7.0
- vitepress: 1.3.1(@algolia/client-search@4.22.1)(@types/node@20.14.12)(fuse.js@7.0.0)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)
+ vitepress: 1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4)
optionalDependencies:
'@mermaid-js/mermaid-mindmap': 9.3.0
- vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@20.14.12)(fuse.js@7.0.0)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4):
+ vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(fuse.js@7.0.0)(postcss@8.4.40)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4):
dependencies:
'@docsearch/css': 3.6.0
'@docsearch/js': 3.6.0(@algolia/client-search@4.22.1)(search-insights@2.13.0)
'@shikijs/core': link:packages/core
'@shikijs/transformers': link:packages/transformers
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.0.5(vite@5.3.5(@types/node@20.14.12)(terser@5.27.0))(vue@3.4.34(typescript@5.5.4))
+ '@vitejs/plugin-vue': 5.0.5(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))(vue@3.4.35(typescript@5.5.4))
'@vue/devtools-api': 7.3.5
'@vue/shared': 3.4.34
- '@vueuse/core': 10.11.0(vue@3.4.34(typescript@5.5.4))
- '@vueuse/integrations': 10.11.0(focus-trap@7.5.4)(fuse.js@7.0.0)(vue@3.4.34(typescript@5.5.4))
+ '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4))
+ '@vueuse/integrations': 10.11.0(focus-trap@7.5.4)(fuse.js@7.0.0)(vue@3.4.35(typescript@5.5.4))
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 7.0.1
shiki: link:packages/shiki
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
- vue: 3.4.34(typescript@5.5.4)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
+ vue: 3.4.35(typescript@5.5.4)
+ optionalDependencies:
+ postcss: 8.4.40
+ transitivePeerDependencies:
+ - '@algolia/client-search'
+ - '@types/node'
+ - '@types/react'
+ - '@vue/composition-api'
+ - async-validator
+ - axios
+ - change-case
+ - drauu
+ - fuse.js
+ - idb-keyval
+ - jwt-decode
+ - less
+ - lightningcss
+ - nprogress
+ - qrcode
+ - react
+ - react-dom
+ - sass
+ - search-insights
+ - sortablejs
+ - stylus
+ - sugarss
+ - terser
+ - typescript
+ - universal-cookie
+
+ vitepress@1.3.1(@algolia/client-search@4.22.1)(@types/node@22.0.2)(postcss@8.4.39)(search-insights@2.13.0)(terser@5.27.0)(typescript@5.5.4):
+ dependencies:
+ '@docsearch/css': 3.6.0
+ '@docsearch/js': 3.6.0(@algolia/client-search@4.22.1)(search-insights@2.13.0)
+ '@shikijs/core': link:packages/core
+ '@shikijs/transformers': link:packages/transformers
+ '@types/markdown-it': 14.1.2
+ '@vitejs/plugin-vue': 5.0.5(vite@5.3.5(@types/node@22.0.2)(terser@5.27.0))(vue@3.4.35(typescript@5.5.4))
+ '@vue/devtools-api': 7.3.5
+ '@vue/shared': 3.4.34
+ '@vueuse/core': 10.11.0(vue@3.4.35(typescript@5.5.4))
+ '@vueuse/integrations': 10.11.0(focus-trap@7.5.4)(fuse.js@7.0.0)(vue@3.4.35(typescript@5.5.4))
+ focus-trap: 7.5.4
+ mark.js: 8.11.1
+ minisearch: 7.0.1
+ shiki: link:packages/shiki
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
+ vue: 3.4.35(typescript@5.5.4)
optionalDependencies:
postcss: 8.4.39
transitivePeerDependencies:
@@ -10758,15 +11016,15 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.0.4(@types/node@20.14.12)(terser@5.27.0):
+ vitest@2.0.5(@types/node@22.0.2)(terser@5.27.0):
dependencies:
'@ampproject/remapping': 2.3.0
- '@vitest/expect': 2.0.4
- '@vitest/pretty-format': 2.0.4
- '@vitest/runner': 2.0.4
- '@vitest/snapshot': 2.0.4
- '@vitest/spy': 2.0.4
- '@vitest/utils': 2.0.4
+ '@vitest/expect': 2.0.5
+ '@vitest/pretty-format': 2.0.5
+ '@vitest/runner': 2.0.5
+ '@vitest/snapshot': 2.0.5
+ '@vitest/spy': 2.0.5
+ '@vitest/utils': 2.0.5
chai: 5.1.1
debug: 4.3.5
execa: 8.0.1
@@ -10776,11 +11034,11 @@ snapshots:
tinybench: 2.8.0
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.3.5(@types/node@20.14.12)(terser@5.27.0)
- vite-node: 2.0.4(@types/node@20.14.12)(terser@5.27.0)
+ vite: 5.3.5(@types/node@22.0.2)(terser@5.27.0)
+ vite-node: 2.0.5(@types/node@22.0.2)(terser@5.27.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.14.12
+ '@types/node': 22.0.2
transitivePeerDependencies:
- less
- lightningcss
@@ -10796,14 +11054,14 @@ snapshots:
vscode-uri@3.0.8: {}
- vue-demi@0.14.8(vue@3.4.34(typescript@5.5.4)):
+ vue-demi@0.14.8(vue@3.4.35(typescript@5.5.4)):
dependencies:
- vue: 3.4.34(typescript@5.5.4)
+ vue: 3.4.35(typescript@5.5.4)
- vue-eslint-parser@9.4.3(eslint@9.7.0):
+ vue-eslint-parser@9.4.3(eslint@9.8.0):
dependencies:
debug: 4.3.5
- eslint: 9.7.0
+ eslint: 9.8.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -10813,9 +11071,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-resize@2.0.0-alpha.1(vue@3.4.34(typescript@5.5.4)):
+ vue-resize@2.0.0-alpha.1(vue@3.4.35(typescript@5.5.4)):
dependencies:
- vue: 3.4.34(typescript@5.5.4)
+ vue: 3.4.35(typescript@5.5.4)
vue-tsc@2.0.29(typescript@5.5.4):
dependencies:
@@ -10824,13 +11082,13 @@ snapshots:
semver: 7.6.3
typescript: 5.5.4
- vue@3.4.34(typescript@5.5.4):
+ vue@3.4.35(typescript@5.5.4):
dependencies:
- '@vue/compiler-dom': 3.4.34
- '@vue/compiler-sfc': 3.4.34
- '@vue/runtime-dom': 3.4.34
- '@vue/server-renderer': 3.4.34(vue@3.4.34(typescript@5.5.4))
- '@vue/shared': 3.4.34
+ '@vue/compiler-dom': 3.4.35
+ '@vue/compiler-sfc': 3.4.35
+ '@vue/runtime-dom': 3.4.35
+ '@vue/server-renderer': 3.4.35(vue@3.4.35(typescript@5.5.4))
+ '@vue/shared': 3.4.35
optionalDependencies:
typescript: 5.5.4
@@ -10851,15 +11109,15 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
- workerd@1.20240718.0:
+ workerd@1.20240725.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240718.0
- '@cloudflare/workerd-darwin-arm64': 1.20240718.0
- '@cloudflare/workerd-linux-64': 1.20240718.0
- '@cloudflare/workerd-linux-arm64': 1.20240718.0
- '@cloudflare/workerd-windows-64': 1.20240718.0
+ '@cloudflare/workerd-darwin-64': 1.20240725.0
+ '@cloudflare/workerd-darwin-arm64': 1.20240725.0
+ '@cloudflare/workerd-linux-64': 1.20240725.0
+ '@cloudflare/workerd-linux-arm64': 1.20240725.0
+ '@cloudflare/workerd-windows-64': 1.20240725.0
- wrangler@3.67.1:
+ wrangler@3.68.0:
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
@@ -10868,7 +11126,7 @@ snapshots:
chokidar: 3.6.0
date-fns: 3.6.0
esbuild: 0.17.19
- miniflare: 3.20240718.1
+ miniflare: 3.20240725.0
nanoid: 3.3.7
path-to-regexp: 6.2.1
resolve: 1.22.8
@@ -10876,7 +11134,7 @@ snapshots:
selfsigned: 2.4.1
source-map: 0.6.1
unenv: unenv-nightly@1.10.0-1717606461.a117952
- workerd: 1.20240718.0
+ workerd: 1.20240725.0
xxhash-wasm: 1.0.2
optionalDependencies:
fsevents: 2.3.3