diff --git a/examples/sveltekit-ts-assets-generator/README.md b/examples/sveltekit-ts-assets-generator/README.md
index 5c91169..b5b2950 100644
--- a/examples/sveltekit-ts-assets-generator/README.md
+++ b/examples/sveltekit-ts-assets-generator/README.md
@@ -1,6 +1,6 @@
-# create-svelte
+# sv
-Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
+Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
## Creating a project
@@ -8,10 +8,10 @@ If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
-npm create svelte@latest
+npx sv create
# create a new project in my-app
-npm create svelte@latest my-app
+npx sv create my-app
```
## Developing
@@ -35,4 +35,4 @@ npm run build
You can preview the production build with `npm run preview`.
-> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
+> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
diff --git a/examples/sveltekit-ts-assets-generator/package.json b/examples/sveltekit-ts-assets-generator/package.json
index be87edd..07a8e67 100644
--- a/examples/sveltekit-ts-assets-generator/package.json
+++ b/examples/sveltekit-ts-assets-generator/package.json
@@ -27,18 +27,18 @@
"@playwright/test": "^1.37.1",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/adapter-node": "^2.0.0",
- "@sveltejs/kit": "^2.0.1",
+ "@sveltejs/kit": "^2.7.4",
"@types/cookie": "^0.6.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vite-pwa/sveltekit": "workspace:*",
"eslint": "^8.55.0",
- "eslint-plugin-svelte": "^2.35.1",
- "svelte": "^4.2.8",
- "svelte-check": "^3.6.2",
- "tslib": "^2.6.2",
- "typescript": "^5.4.5",
- "vitest": "^2.0.5"
+ "eslint-plugin-svelte": "^2.45.1",
+ "svelte": "^5.1.9",
+ "svelte-check": "^4.0.5",
+ "tslib": "^2.8.1",
+ "typescript": "^5.6.3",
+ "vitest": "^2.1.4"
},
"type": "module",
"dependencies": {
diff --git a/examples/sveltekit-ts-assets-generator/src/lib/Counter.svelte b/examples/sveltekit-ts-assets-generator/src/lib/Counter.svelte
index bb71271..f969f17 100644
--- a/examples/sveltekit-ts-assets-generator/src/lib/Counter.svelte
+++ b/examples/sveltekit-ts-assets-generator/src/lib/Counter.svelte
@@ -1,11 +1,15 @@
-
(count -= 1)} aria-label="Decrease the counter by one">
+ (count -= 1)} aria-label="Decrease the counter by one">
@@ -22,12 +26,12 @@
- {Math.floor($displayed_count + 1)}
- {Math.floor($displayed_count)}
+ {Math.floor($displayedCount + 1)}
+ {Math.floor($displayedCount)}
- (count += 1)} aria-label="Increase the counter by one">
+ (count += 1)} aria-label="Increase the counter by one">
@@ -51,12 +55,11 @@
border: 0;
background-color: transparent;
touch-action: manipulation;
- color: var(--text-color);
font-size: 2rem;
}
.counter button:hover {
- background-color: var(--secondary-color);
+ background-color: var(--color-bg-1);
}
svg {
@@ -67,7 +70,7 @@
path {
vector-effect: non-scaling-stroke;
stroke-width: 2px;
- stroke: var(--text-color);
+ stroke: #444;
}
.counter-viewport {
@@ -84,7 +87,7 @@
width: 100%;
height: 100%;
font-weight: 400;
- color: var(--accent-color);
+ color: var(--color-theme-1);
font-size: 4rem;
align-items: center;
justify-content: center;
diff --git a/examples/sveltekit-ts-assets-generator/src/lib/ReloadPrompt.svelte b/examples/sveltekit-ts-assets-generator/src/lib/ReloadPrompt.svelte
index 6a812cb..ab2d4c4 100644
--- a/examples/sveltekit-ts-assets-generator/src/lib/ReloadPrompt.svelte
+++ b/examples/sveltekit-ts-assets-generator/src/lib/ReloadPrompt.svelte
@@ -9,15 +9,25 @@
needRefresh,
updateServiceWorker
} = useRegisterSW({
- onRegistered(r) {
- if (__RELOAD_SW__) {
- r && setInterval(() => {
- console.log('Checking for sw update')
- r.update()
- }, 20000 /* 20s for testing purposes */)
- } else {
- console.log(`SW Registered: ${r}`)
- }
+ onRegisteredSW(swUrl, r) {
+ r && setInterval(async () => {
+ if (r.installing || !navigator)
+ return
+
+ if (('connection' in navigator) && !navigator.onLine)
+ return
+
+ const resp = await fetch(swUrl, {
+ cache: 'no-store',
+ headers: {
+ 'cache': 'no-store',
+ 'cache-control': 'no-cache',
+ },
+ })
+
+ if (resp?.status === 200)
+ await r.update()
+ }, 20000 /* 20s for testing purposes */)
},
onRegisterError(error) {
console.log('SW registration error', error)
@@ -28,7 +38,7 @@
needRefresh.set(false)
}
- $: toast = $offlineReady || $needRefresh
+ let toast = $derived($offlineReady || $needRefresh)
{#if toast}
@@ -45,11 +55,11 @@
{/if}
{#if $needRefresh}
- updateServiceWorker(true)}>
+ updateServiceWorker(true)}>
Reload
{/if}
-
+
Close
diff --git a/examples/sveltekit-ts-assets-generator/src/routes/+layout.svelte b/examples/sveltekit-ts-assets-generator/src/routes/+layout.svelte
index f33d8b1..ccb5e40 100644
--- a/examples/sveltekit-ts-assets-generator/src/routes/+layout.svelte
+++ b/examples/sveltekit-ts-assets-generator/src/routes/+layout.svelte
@@ -3,8 +3,13 @@
import '../app.css';
import { pwaInfo } from 'virtual:pwa-info';
import { pwaAssetsHead } from 'virtual:pwa-assets/head';
+ interface Props {
+ children?: import('svelte').Snippet;
+ }
+
+ let { children }: Props = $props();
- $: webManifest = pwaInfo ? pwaInfo.webManifest.linkTag : ''
+ let webManifest = $derived(pwaInfo ? pwaInfo.webManifest.linkTag : '')
@@ -22,7 +27,7 @@
-
+ {@render children?.()}
diff --git a/examples/sveltekit-ts/README.md b/examples/sveltekit-ts/README.md
index 5c91169..b5b2950 100644
--- a/examples/sveltekit-ts/README.md
+++ b/examples/sveltekit-ts/README.md
@@ -1,6 +1,6 @@
-# create-svelte
+# sv
-Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
+Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
## Creating a project
@@ -8,10 +8,10 @@ If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
-npm create svelte@latest
+npx sv create
# create a new project in my-app
-npm create svelte@latest my-app
+npx sv create my-app
```
## Developing
@@ -35,4 +35,4 @@ npm run build
You can preview the production build with `npm run preview`.
-> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
+> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
diff --git a/examples/sveltekit-ts/package.json b/examples/sveltekit-ts/package.json
index 04673ea..4f0f42c 100644
--- a/examples/sveltekit-ts/package.json
+++ b/examples/sveltekit-ts/package.json
@@ -27,18 +27,18 @@
"@playwright/test": "^1.37.1",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/adapter-node": "^2.0.0",
- "@sveltejs/kit": "^2.0.1",
+ "@sveltejs/kit": "^2.7.4",
"@types/cookie": "^0.6.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vite-pwa/sveltekit": "workspace:*",
"eslint": "^8.55.0",
- "eslint-plugin-svelte": "^2.35.1",
- "svelte": "^4.2.8",
- "svelte-check": "^3.6.2",
- "tslib": "^2.6.2",
- "typescript": "^5.4.5",
- "vitest": "^2.0.5"
+ "eslint-plugin-svelte": "^2.46.0",
+ "svelte": "^5.1.9",
+ "svelte-check": "^4.0.5",
+ "tslib": "^2.8.1",
+ "typescript": "^5.6.3",
+ "vitest": "^2.1.4"
},
"type": "module",
"dependencies": {
diff --git a/examples/sveltekit-ts/src/lib/Counter.svelte b/examples/sveltekit-ts/src/lib/Counter.svelte
index bb71271..f969f17 100644
--- a/examples/sveltekit-ts/src/lib/Counter.svelte
+++ b/examples/sveltekit-ts/src/lib/Counter.svelte
@@ -1,11 +1,15 @@
-
(count -= 1)} aria-label="Decrease the counter by one">
+ (count -= 1)} aria-label="Decrease the counter by one">
@@ -22,12 +26,12 @@
- {Math.floor($displayed_count + 1)}
- {Math.floor($displayed_count)}
+ {Math.floor($displayedCount + 1)}
+ {Math.floor($displayedCount)}
- (count += 1)} aria-label="Increase the counter by one">
+ (count += 1)} aria-label="Increase the counter by one">
@@ -51,12 +55,11 @@
border: 0;
background-color: transparent;
touch-action: manipulation;
- color: var(--text-color);
font-size: 2rem;
}
.counter button:hover {
- background-color: var(--secondary-color);
+ background-color: var(--color-bg-1);
}
svg {
@@ -67,7 +70,7 @@
path {
vector-effect: non-scaling-stroke;
stroke-width: 2px;
- stroke: var(--text-color);
+ stroke: #444;
}
.counter-viewport {
@@ -84,7 +87,7 @@
width: 100%;
height: 100%;
font-weight: 400;
- color: var(--accent-color);
+ color: var(--color-theme-1);
font-size: 4rem;
align-items: center;
justify-content: center;
diff --git a/examples/sveltekit-ts/src/lib/ReloadPrompt.svelte b/examples/sveltekit-ts/src/lib/ReloadPrompt.svelte
index 6a812cb..ab2d4c4 100644
--- a/examples/sveltekit-ts/src/lib/ReloadPrompt.svelte
+++ b/examples/sveltekit-ts/src/lib/ReloadPrompt.svelte
@@ -9,15 +9,25 @@
needRefresh,
updateServiceWorker
} = useRegisterSW({
- onRegistered(r) {
- if (__RELOAD_SW__) {
- r && setInterval(() => {
- console.log('Checking for sw update')
- r.update()
- }, 20000 /* 20s for testing purposes */)
- } else {
- console.log(`SW Registered: ${r}`)
- }
+ onRegisteredSW(swUrl, r) {
+ r && setInterval(async () => {
+ if (r.installing || !navigator)
+ return
+
+ if (('connection' in navigator) && !navigator.onLine)
+ return
+
+ const resp = await fetch(swUrl, {
+ cache: 'no-store',
+ headers: {
+ 'cache': 'no-store',
+ 'cache-control': 'no-cache',
+ },
+ })
+
+ if (resp?.status === 200)
+ await r.update()
+ }, 20000 /* 20s for testing purposes */)
},
onRegisterError(error) {
console.log('SW registration error', error)
@@ -28,7 +38,7 @@
needRefresh.set(false)
}
- $: toast = $offlineReady || $needRefresh
+ let toast = $derived($offlineReady || $needRefresh)
{#if toast}
@@ -45,11 +55,11 @@
{/if}
{#if $needRefresh}
- updateServiceWorker(true)}>
+ updateServiceWorker(true)}>
Reload
{/if}
-
+
Close
diff --git a/examples/sveltekit-ts/src/routes/+layout.svelte b/examples/sveltekit-ts/src/routes/+layout.svelte
index 46792e9..d26960e 100644
--- a/examples/sveltekit-ts/src/routes/+layout.svelte
+++ b/examples/sveltekit-ts/src/routes/+layout.svelte
@@ -2,8 +2,13 @@
import Header from '$lib/header/Header.svelte';
import '../app.css';
import { pwaInfo } from 'virtual:pwa-info';
+ interface Props {
+ children?: import('svelte').Snippet;
+ }
+
+ let { children }: Props = $props();
- $: webManifest = pwaInfo ? pwaInfo.webManifest.linkTag : ''
+ let webManifest = $derived(pwaInfo ? pwaInfo.webManifest.linkTag : '')
@@ -15,7 +20,7 @@
-
+ {@render children?.()}
diff --git a/package.json b/package.json
index 9a2cb22..1fd591c 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "@vite-pwa/sveltekit",
"type": "module",
"version": "0.6.6",
- "packageManager": "pnpm@9.12.2",
+ "packageManager": "pnpm@9.12.3",
"description": "Zero-config PWA for SvelteKit",
"author": "antfu ",
"license": "MIT",
@@ -72,7 +72,7 @@
"@typescript-eslint/eslint-plugin": "^6.13.2",
"bumpp": "^9.2.0",
"eslint": "^8.55.0",
- "typescript": "^5.4.5",
+ "typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vite-plugin-pwa": ">=0.20.5 <1"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 556d3fd..be8ec67 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,7 +10,7 @@ importers:
dependencies:
'@sveltejs/kit':
specifier: ^1.3.1 || ^2.0.1
- version: 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ version: 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
'@vite-pwa/assets-generator':
specifier: ^0.2.6
version: 0.2.6
@@ -23,7 +23,7 @@ importers:
devDependencies:
'@antfu/eslint-config':
specifier: ^0.43.1
- version: 0.43.1(eslint@8.57.0)(typescript@5.4.5)
+ version: 0.43.1(eslint@8.57.0)(typescript@5.6.3)
'@antfu/ni':
specifier: ^0.21.12
version: 0.21.12
@@ -35,7 +35,7 @@ importers:
version: 18.19.31
'@typescript-eslint/eslint-plugin':
specifier: ^6.13.2
- version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
bumpp:
specifier: ^9.2.0
version: 9.4.1
@@ -43,11 +43,11 @@ importers:
specifier: ^8.55.0
version: 8.57.0
typescript:
- specifier: ^5.4.5
- version: 5.4.5
+ specifier: ^5.6.3
+ version: 5.6.3
unbuild:
specifier: ^2.0.0
- version: 2.0.0(typescript@5.4.5)
+ version: 2.0.0(typescript@5.6.3)
vite:
specifier: ^5.0.10
version: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
@@ -66,22 +66,22 @@ importers:
version: 1.43.1
'@sveltejs/adapter-node':
specifier: ^2.0.0
- version: 2.1.2(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
+ version: 2.1.2(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
'@sveltejs/adapter-static':
specifier: ^3.0.0
- version: 3.0.1(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
+ version: 3.0.1(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
'@sveltejs/kit':
- specifier: ^2.0.1
- version: 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ specifier: ^2.7.4
+ version: 2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
'@types/cookie':
specifier: ^0.6.0
version: 0.6.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.14.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
'@typescript-eslint/parser':
specifier: ^6.14.0
- version: 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ version: 6.21.0(eslint@8.57.0)(typescript@5.6.3)
'@vite-pwa/sveltekit':
specifier: workspace:*
version: link:../..
@@ -89,23 +89,23 @@ importers:
specifier: ^8.55.0
version: 8.57.0
eslint-plugin-svelte:
- specifier: ^2.35.1
- version: 2.38.0(eslint@8.57.0)(svelte@4.2.15)
+ specifier: ^2.46.0
+ version: 2.46.0(eslint@8.57.0)(svelte@5.1.9)
svelte:
- specifier: ^4.2.8
- version: 4.2.15
+ specifier: ^5.1.9
+ version: 5.1.9
svelte-check:
- specifier: ^3.6.2
- version: 3.7.0(@babel/core@7.24.5)(postcss-load-config@3.1.4(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.15)
+ specifier: ^4.0.5
+ version: 4.0.5(picomatch@4.0.2)(svelte@5.1.9)(typescript@5.6.3)
tslib:
- specifier: ^2.6.2
- version: 2.6.2
+ specifier: ^2.8.1
+ version: 2.8.1
typescript:
- specifier: ^5.4.5
- version: 5.4.5
+ specifier: ^5.6.3
+ version: 5.6.3
vitest:
- specifier: ^2.0.5
- version: 2.0.5(@types/node@18.19.31)(terser@5.31.0)
+ specifier: ^2.1.4
+ version: 2.1.4(@types/node@18.19.31)(terser@5.31.0)
examples/sveltekit-ts-assets-generator:
dependencies:
@@ -118,22 +118,22 @@ importers:
version: 1.43.1
'@sveltejs/adapter-node':
specifier: ^2.0.0
- version: 2.1.2(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
+ version: 2.1.2(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
'@sveltejs/adapter-static':
specifier: ^3.0.0
- version: 3.0.1(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
+ version: 3.0.1(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))
'@sveltejs/kit':
- specifier: ^2.0.1
- version: 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ specifier: ^2.7.4
+ version: 2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
'@types/cookie':
specifier: ^0.6.0
version: 0.6.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.14.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
'@typescript-eslint/parser':
specifier: ^6.14.0
- version: 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ version: 6.21.0(eslint@8.57.0)(typescript@5.6.3)
'@vite-pwa/sveltekit':
specifier: workspace:*
version: link:../..
@@ -141,23 +141,23 @@ importers:
specifier: ^8.55.0
version: 8.57.0
eslint-plugin-svelte:
- specifier: ^2.35.1
- version: 2.38.0(eslint@8.57.0)(svelte@4.2.15)
+ specifier: ^2.45.1
+ version: 2.46.0(eslint@8.57.0)(svelte@5.1.9)
svelte:
- specifier: ^4.2.8
- version: 4.2.15
+ specifier: ^5.1.9
+ version: 5.1.9
svelte-check:
- specifier: ^3.6.2
- version: 3.7.0(@babel/core@7.24.5)(postcss-load-config@3.1.4(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.15)
+ specifier: ^4.0.5
+ version: 4.0.5(picomatch@4.0.2)(svelte@5.1.9)(typescript@5.6.3)
tslib:
- specifier: ^2.6.2
- version: 2.6.2
+ specifier: ^2.8.1
+ version: 2.8.1
typescript:
- specifier: ^5.4.5
- version: 5.4.5
+ specifier: ^5.6.3
+ version: 5.6.3
vitest:
- specifier: ^2.0.5
- version: 2.0.5(@types/node@18.19.31)(terser@5.31.0)
+ specifier: ^2.1.4
+ version: 2.1.4(@types/node@18.19.31)(terser@5.31.0)
packages:
@@ -1114,6 +1114,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==}
@@ -1341,6 +1344,15 @@ packages:
svelte: ^4.0.0 || ^5.0.0-next.0
vite: ^5.0.3
+ '@sveltejs/kit@2.7.4':
+ resolution: {integrity: sha512-3DOPQYck3CpAmPgGq/HuhJMCCz8GF0ukbompPJQ2zShoSzrEKW9iG/l0nZmaxMvuOO3NNLmZj8F3W9uzqmkNdw==}
+ engines: {node: '>=18.13'}
+ hasBin: true
+ peerDependencies:
+ '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ vite: ^5.0.3
+
'@sveltejs/vite-plugin-svelte-inspector@2.1.0':
resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==}
engines: {node: ^18.0.0 || >=20}
@@ -1387,9 +1399,6 @@ packages:
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
- '@types/pug@2.0.10':
- resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==}
-
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -1495,34 +1504,55 @@ packages:
engines: {node: '>=16.14.0'}
hasBin: true
- '@vitest/expect@2.0.5':
- resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+ '@vitest/expect@2.1.4':
+ resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==}
+
+ '@vitest/mocker@2.1.4':
+ resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
- '@vitest/pretty-format@2.0.5':
- resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
+ '@vitest/pretty-format@2.1.4':
+ resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==}
- '@vitest/runner@2.0.5':
- resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
+ '@vitest/runner@2.1.4':
+ resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==}
- '@vitest/snapshot@2.0.5':
- resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
+ '@vitest/snapshot@2.1.4':
+ resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==}
- '@vitest/spy@2.0.5':
- resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+ '@vitest/spy@2.1.4':
+ resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==}
- '@vitest/utils@2.0.5':
- resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
+ '@vitest/utils@2.1.4':
+ resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==}
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-typescript@1.4.13:
+ resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
+ peerDependencies:
+ acorn: '>=8.9.0'
+
acorn@8.11.3:
resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -1552,8 +1582,9 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@5.3.0:
- resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
array-buffer-byte-length@1.0.1:
resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
@@ -1589,8 +1620,9 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axobject-query@4.0.0:
- resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==}
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
b4a@1.6.6:
resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
@@ -1656,9 +1688,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
-
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -1701,8 +1730,8 @@ packages:
caniuse-lite@1.0.30001614:
resolution: {integrity: sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -1734,6 +1763,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -1752,9 +1785,6 @@ packages:
resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
engines: {node: '>=4'}
- code-red@1.0.4:
- resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
-
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -1904,6 +1934,15 @@ packages:
supports-color:
optional: true
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decode-bmp@0.2.1:
resolution: {integrity: sha512-NiOaGe+GN0KJqi2STf24hfMkFitDUaIoUU3eKvP/wAbLe8o6FuW5n/x7MHPR0HKvBokp6MQY/j7w8lewEeVCIA==}
engines: {node: '>=8.6.0'}
@@ -1942,17 +1981,9 @@ packages:
defu@6.1.4:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
- dequal@2.0.3:
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
- engines: {node: '>=6'}
-
destr@2.0.3:
resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==}
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
-
detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
@@ -1960,6 +1991,9 @@ packages:
devalue@5.0.0:
resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
+ devalue@5.1.1:
+ resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
+
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -2031,9 +2065,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es6-promise@3.3.1:
- resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
-
esbuild@0.19.12:
resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
engines: {node: '>=12'}
@@ -2062,6 +2093,12 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
+ eslint-compat-utils@0.5.1:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
+
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
@@ -2157,12 +2194,12 @@ packages:
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
- eslint-plugin-svelte@2.38.0:
- resolution: {integrity: sha512-IwwxhHzitx3dr0/xo0z4jjDlb2AAHBPKt+juMyKKGTLlKi1rZfA4qixMwnveU20/JTHyipM6keX4Vr7LZFYc9g==}
+ eslint-plugin-svelte@2.46.0:
+ resolution: {integrity: sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0
- svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.112
+ svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
svelte:
optional: true
@@ -2228,6 +2265,9 @@ packages:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
+ esrap@1.2.2:
+ resolution: {integrity: sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==}
+
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -2261,6 +2301,10 @@ packages:
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
engines: {node: '>=6'}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
@@ -2740,8 +2784,8 @@ packages:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
- known-css-properties@0.30.0:
- resolution: {integrity: sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==}
+ known-css-properties@0.35.0:
+ resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==}
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
@@ -2801,6 +2845,9 @@ packages:
loupe@3.1.1:
resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -2814,6 +2861,9 @@ packages:
magic-string@0.30.10:
resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
+
mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
@@ -2881,10 +2931,6 @@ packages:
mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- mkdirp@0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
-
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
@@ -3062,12 +3108,12 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -3281,6 +3327,10 @@ packages:
resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
engines: {node: '>=4'}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ engines: {node: '>=4'}
+
postcss-svgo@7.0.0:
resolution: {integrity: sha512-Xj5DRdvA97yRy3wjbCH2NKXtDUwEnph6EHr5ZXszsBVKCNrKXYBjzAXqav7/Afz5WwJ/1peZoTguCEJIg7ytmA==}
engines: {node: ^18.12.0 || ^20.9.0 || >= 18}
@@ -3300,6 +3350,10 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.47:
+ resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
prebuild-install@7.1.2:
resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
engines: {node: '>=10'}
@@ -3360,6 +3414,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
regenerate-unicode-properties@10.1.1:
resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
@@ -3412,11 +3470,6 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rimraf@2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -3462,9 +3515,6 @@ packages:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
- sander@0.5.1:
- resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
-
scule@1.3.0:
resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==}
@@ -3481,6 +3531,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
+ hasBin: true
+
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
@@ -3534,6 +3589,10 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
+ sirv@3.0.0:
+ resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ engines: {node: '>=18'}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -3552,14 +3611,14 @@ packages:
smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
- sorcery@0.11.0:
- resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==}
- hasBin: true
-
source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
+
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
@@ -3667,17 +3726,19 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte-check@3.7.0:
- resolution: {integrity: sha512-Va6sGL4Vy4znn0K+vaatk98zoBvG2aDee4y3r5X4S80z8DXfbACHvdLlyXa4C4c5tQzK9H0Uq2pbd20wH3ucjQ==}
+ svelte-check@4.0.5:
+ resolution: {integrity: sha512-icBTBZ3ibBaywbXUat3cK6hB5Du+Kq9Z8CRuyLmm64XIe2/r+lQcbuBx/IQgsbrC+kT2jQ0weVpZSSRIPwB6jQ==}
+ engines: {node: '>= 18.0.0'}
hasBin: true
peerDependencies:
- svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ typescript: '>=5.0.0'
- svelte-eslint-parser@0.35.0:
- resolution: {integrity: sha512-CtbPseajW0gjwEvHiuzYJkPDjAcHz2FaHt540j6RVYrZgnE6xWkzUBodQ4I3nV+G5AS0Svt8K6aIA/CIU9xT2Q==}
+ svelte-eslint-parser@0.43.0:
+ resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
- svelte: ^3.37.0 || ^4.0.0 || ^5.0.0-next.112
+ svelte: ^3.37.0 || ^4.0.0 || ^5.0.0
peerDependenciesMeta:
svelte:
optional: true
@@ -3688,46 +3749,9 @@ packages:
peerDependencies:
svelte: ^3.19.0 || ^4.0.0
- svelte-preprocess@5.1.4:
- resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
- engines: {node: '>= 16.0.0'}
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
-
- svelte@4.2.15:
- resolution: {integrity: sha512-j9KJSccHgLeRERPlhMKrCXpk2TqL2m5Z+k+OBTQhZOhIdCCd3WfqV+ylPWeipEwq17P/ekiSFWwrVQv93i3bsg==}
- engines: {node: '>=16'}
+ svelte@5.1.9:
+ resolution: {integrity: sha512-nzq+PPKGS2PoEWDjAcXSrKSbXmmmOAxd6dAz1IhRusUpVkFS6DMELWPyBPGwu6TpO/gsgtFXwX0M4+pAR5gzKw==}
+ engines: {node: '>=18'}
svgo@3.2.0:
resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==}
@@ -3774,8 +3798,11 @@ packages:
tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
- tinybench@2.8.0:
- resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
tinyglobby@0.2.9:
resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
@@ -3789,8 +3816,8 @@ packages:
resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.0:
- resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
to-data-view@1.1.0:
@@ -3820,8 +3847,8 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -3872,8 +3899,8 @@ packages:
resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
- typescript@5.4.5:
- resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -3952,8 +3979,8 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- vite-node@2.0.5:
- resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
+ vite-node@2.1.4:
+ resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -4005,15 +4032,15 @@ packages:
vite:
optional: true
- vitest@2.0.5:
- resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
+ vitest@2.1.4:
+ resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.0.5
- '@vitest/ui': 2.0.5
+ '@vitest/browser': 2.1.4
+ '@vitest/ui': 2.1.4
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -4142,6 +4169,9 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
+ zimmerframe@1.1.2:
+ resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
+
snapshots:
'@ampproject/remapping@2.3.0':
@@ -4149,14 +4179,14 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@antfu/eslint-config-basic@0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
+ '@antfu/eslint-config-basic@0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@stylistic/eslint-plugin-js': 0.0.4
eslint: 8.57.0
- eslint-plugin-antfu: 0.43.1(eslint@8.57.0)(typescript@5.4.5)
+ eslint-plugin-antfu: 0.43.1(eslint@8.57.0)(typescript@5.6.3)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
+ eslint-plugin-import: eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)
eslint-plugin-jsdoc: 46.10.1(eslint@8.57.0)
eslint-plugin-jsonc: 2.15.1(eslint@8.57.0)
eslint-plugin-markdown: 3.0.1(eslint@8.57.0)
@@ -4164,7 +4194,7 @@ snapshots:
eslint-plugin-no-only-tests: 3.1.0
eslint-plugin-promise: 6.1.1(eslint@8.57.0)
eslint-plugin-unicorn: 48.0.1(eslint@8.57.0)
- eslint-plugin-unused-imports: 3.1.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
+ eslint-plugin-unused-imports: 3.1.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)
eslint-plugin-yml: 1.14.0(eslint@8.57.0)
jsonc-eslint-parser: 2.4.0
yaml-eslint-parser: 1.2.2
@@ -4176,25 +4206,25 @@ snapshots:
- supports-color
- typescript
- '@antfu/eslint-config-ts@0.43.1(eslint@8.57.0)(typescript@5.4.5)':
+ '@antfu/eslint-config-ts@0.43.1(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
- '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@stylistic/eslint-plugin-ts': 0.0.4(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@stylistic/eslint-plugin-ts': 0.0.4(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
- eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- typescript: 5.4.5
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
- supports-color
- '@antfu/eslint-config-vue@0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
+ '@antfu/eslint-config-vue@0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
- '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@antfu/eslint-config-ts': 0.43.1(eslint@8.57.0)(typescript@5.4.5)
+ '@antfu/eslint-config-basic': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@antfu/eslint-config-ts': 0.43.1(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
eslint-plugin-vue: 9.25.0(eslint@8.57.0)
local-pkg: 0.4.3
@@ -4207,15 +4237,15 @@ snapshots:
- supports-color
- typescript
- '@antfu/eslint-config@0.43.1(eslint@8.57.0)(typescript@5.4.5)':
+ '@antfu/eslint-config@0.43.1(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
- '@antfu/eslint-config-vue': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@antfu/eslint-config-vue': 0.43.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0)
eslint-plugin-html: 7.1.0
- eslint-plugin-import: eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
+ eslint-plugin-import: eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)
eslint-plugin-jsonc: 2.15.1(eslint@8.57.0)
eslint-plugin-n: 16.6.2(eslint@8.57.0)
eslint-plugin-promise: 6.1.1(eslint@8.57.0)
@@ -5153,6 +5183,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.2
@@ -5374,15 +5406,15 @@ snapshots:
esutils: 2.0.3
graphemer: 1.4.0
- '@stylistic/eslint-plugin-ts@0.0.4(eslint@8.57.0)(typescript@5.4.5)':
+ '@stylistic/eslint-plugin-ts@0.0.4(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@stylistic/eslint-plugin-js': 0.0.4
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
graphemer: 1.4.0
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -5393,21 +5425,21 @@ snapshots:
magic-string: 0.25.9
string.prototype.matchall: 4.0.11
- '@sveltejs/adapter-node@2.1.2(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))':
+ '@sveltejs/adapter-node@2.1.2(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))':
dependencies:
'@rollup/plugin-commonjs': 25.0.7(rollup@4.17.2)
'@rollup/plugin-json': 6.1.0(rollup@4.17.2)
'@rollup/plugin-node-resolve': 15.2.3(rollup@4.17.2)
- '@sveltejs/kit': 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@sveltejs/kit': 2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
rollup: 4.17.2
- '@sveltejs/adapter-static@3.0.1(@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))':
+ '@sveltejs/adapter-static@3.0.1(@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))':
dependencies:
- '@sveltejs/kit': 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@sveltejs/kit': 2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
- '@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
+ '@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
'@types/cookie': 0.6.0
cookie: 0.6.0
devalue: 5.0.0
@@ -5419,28 +5451,46 @@ snapshots:
sade: 1.8.1
set-cookie-parser: 2.6.0
sirv: 2.0.4
- svelte: 4.2.15
+ svelte: 5.1.9
tiny-glob: 0.2.9
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
+ '@sveltejs/kit@2.7.4(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@types/cookie': 0.6.0
+ cookie: 0.6.0
+ devalue: 5.1.1
+ esm-env: 1.0.0
+ import-meta-resolve: 4.1.0
+ kleur: 4.1.5
+ magic-string: 0.30.10
+ mrmime: 2.0.0
+ sade: 1.8.1
+ set-cookie-parser: 2.6.0
+ sirv: 3.0.0
+ svelte: 5.1.9
+ tiny-glob: 0.2.9
+ vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
+
+ '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
debug: 4.3.6
- svelte: 4.2.15
+ svelte: 5.1.9
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
+ '@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@4.2.15)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0)))(svelte@5.1.9)(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
debug: 4.3.6
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.10
- svelte: 4.2.15
- svelte-hmr: 0.16.0(svelte@4.2.15)
+ svelte: 5.1.9
+ svelte-hmr: 0.16.0(svelte@5.1.9)
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
vitefu: 0.2.5(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
transitivePeerDependencies:
@@ -5472,8 +5522,6 @@ snapshots:
'@types/normalize-package-data@2.4.4': {}
- '@types/pug@2.0.10': {}
-
'@types/resolve@1.20.2': {}
'@types/semver@7.5.8': {}
@@ -5482,13 +5530,13 @@ snapshots:
'@types/unist@2.0.10': {}
- '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.6
eslint: 8.57.0
@@ -5496,22 +5544,22 @@ snapshots:
ignore: 5.3.1
natural-compare: 1.4.0
semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.4.5)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 6.21.0
debug: 4.3.6
eslint: 8.57.0
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -5525,15 +5573,15 @@ snapshots:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
- '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
debug: 4.3.6
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.5)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -5541,7 +5589,7 @@ snapshots:
'@typescript-eslint/types@6.21.0': {}
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
@@ -5549,13 +5597,13 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.5)
+ tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
@@ -5564,20 +5612,20 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.4.5)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
eslint: 8.57.0
eslint-scope: 5.1.1
semver: 7.6.0
@@ -5585,14 +5633,14 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5)':
+ '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3)
eslint: 8.57.0
semver: 7.6.0
transitivePeerDependencies:
@@ -5620,45 +5668,58 @@ snapshots:
sharp-ico: 0.1.5
unconfig: 0.3.13
- '@vitest/expect@2.0.5':
+ '@vitest/expect@2.1.4':
dependencies:
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
+ chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/pretty-format@2.0.5':
+ '@vitest/mocker@2.1.4(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))':
+ dependencies:
+ '@vitest/spy': 2.1.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.12
+ optionalDependencies:
+ vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
+
+ '@vitest/pretty-format@2.1.4':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.0.5':
+ '@vitest/runner@2.1.4':
dependencies:
- '@vitest/utils': 2.0.5
+ '@vitest/utils': 2.1.4
pathe: 1.1.2
- '@vitest/snapshot@2.0.5':
+ '@vitest/snapshot@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.0.5
- magic-string: 0.30.10
+ '@vitest/pretty-format': 2.1.4
+ magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.0.5':
+ '@vitest/spy@2.1.4':
dependencies:
- tinyspy: 3.0.0
+ tinyspy: 3.0.2
- '@vitest/utils@2.0.5':
+ '@vitest/utils@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.0.5
- estree-walker: 3.0.3
- loupe: 3.1.1
+ '@vitest/pretty-format': 2.1.4
+ loupe: 3.1.2
tinyrainbow: 1.2.0
acorn-jsx@5.3.2(acorn@8.11.3):
dependencies:
acorn: 8.11.3
+ acorn-typescript@1.4.13(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
acorn@8.11.3: {}
+ acorn@8.14.0: {}
+
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -5692,9 +5753,7 @@ snapshots:
argparse@2.0.1: {}
- aria-query@5.3.0:
- dependencies:
- dequal: 2.0.3
+ aria-query@5.3.2: {}
array-buffer-byte-length@1.0.1:
dependencies:
@@ -5734,9 +5793,7 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
- axobject-query@4.0.0:
- dependencies:
- dequal: 2.0.3
+ axobject-query@4.1.0: {}
b4a@1.6.6: {}
@@ -5821,8 +5878,6 @@ snapshots:
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.23.0)
- buffer-crc32@0.2.13: {}
-
buffer-from@1.1.2: {}
buffer@5.7.1:
@@ -5885,7 +5940,7 @@ snapshots:
caniuse-lite@1.0.30001614: {}
- chai@5.1.1:
+ chai@5.1.2:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
@@ -5926,6 +5981,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
+
chownr@1.1.4: {}
chownr@2.0.0: {}
@@ -5940,14 +5999,6 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- code-red@1.0.4:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- '@types/estree': 1.0.5
- acorn: 8.11.3
- estree-walker: 3.0.3
- periscopic: 3.1.0
-
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -6106,6 +6157,10 @@ snapshots:
dependencies:
ms: 2.1.2
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
+
decode-bmp@0.2.1:
dependencies:
'@canvas/image-data': 1.0.0
@@ -6143,16 +6198,14 @@ snapshots:
defu@6.1.4: {}
- dequal@2.0.3: {}
-
destr@2.0.3: {}
- detect-indent@6.1.0: {}
-
detect-libc@2.0.3: {}
devalue@5.0.0: {}
+ devalue@5.1.1: {}
+
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
@@ -6272,8 +6325,6 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es6-promise@3.3.1: {}
-
esbuild@0.19.12:
optionalDependencies:
'@esbuild/aix-ppc64': 0.19.12
@@ -6337,6 +6388,11 @@ snapshots:
eslint: 8.57.0
semver: 7.6.0
+ eslint-compat-utils@0.5.1(eslint@8.57.0):
+ dependencies:
+ eslint: 8.57.0
+ semver: 7.6.3
+
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
@@ -6345,19 +6401,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-antfu@0.43.1(eslint@8.57.0)(typescript@5.4.5):
+ eslint-plugin-antfu@0.43.1(eslint@8.57.0)(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3)
transitivePeerDependencies:
- eslint
- supports-color
@@ -6380,13 +6436,13 @@ snapshots:
dependencies:
htmlparser2: 8.0.2
- eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0):
+ eslint-plugin-i@2.28.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0):
dependencies:
debug: 3.2.7
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
get-tsconfig: 4.7.3
is-glob: 4.0.3
minimatch: 3.1.2
@@ -6398,12 +6454,12 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5):
+ eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.6.3)
eslint: 8.57.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- typescript
@@ -6462,25 +6518,23 @@ snapshots:
dependencies:
eslint: 8.57.0
- eslint-plugin-svelte@2.38.0(eslint@8.57.0)(svelte@4.2.15):
+ eslint-plugin-svelte@2.46.0(eslint@8.57.0)(svelte@5.1.9):
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@jridgewell/sourcemap-codec': 1.4.15
- debug: 4.3.6
eslint: 8.57.0
- eslint-compat-utils: 0.5.0(eslint@8.57.0)
+ eslint-compat-utils: 0.5.1(eslint@8.57.0)
esutils: 2.0.3
- known-css-properties: 0.30.0
+ known-css-properties: 0.35.0
postcss: 8.4.38
postcss-load-config: 3.1.4(postcss@8.4.38)
postcss-safe-parser: 6.0.0(postcss@8.4.38)
- postcss-selector-parser: 6.0.16
- semver: 7.6.0
- svelte-eslint-parser: 0.35.0(svelte@4.2.15)
+ postcss-selector-parser: 6.1.2
+ semver: 7.6.3
+ svelte-eslint-parser: 0.43.0(svelte@5.1.9)
optionalDependencies:
- svelte: 4.2.15
+ svelte: 5.1.9
transitivePeerDependencies:
- - supports-color
- ts-node
eslint-plugin-unicorn@48.0.1(eslint@8.57.0):
@@ -6502,12 +6556,12 @@ snapshots:
semver: 7.6.0
strip-indent: 3.0.0
- eslint-plugin-unused-imports@3.1.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0):
+ eslint-plugin-unused-imports@3.1.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0):
dependencies:
eslint: 8.57.0
eslint-rule-composer: 0.3.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
eslint-plugin-vue@9.25.0(eslint@8.57.0):
dependencies:
@@ -6603,6 +6657,11 @@ snapshots:
dependencies:
estraverse: 5.3.0
+ esrap@1.2.2:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@types/estree': 1.0.5
+
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -6635,6 +6694,8 @@ snapshots:
expand-template@2.0.3: {}
+ expect-type@1.1.0: {}
+
fast-deep-equal@3.1.3: {}
fast-fifo@1.3.2: {}
@@ -7089,7 +7150,7 @@ snapshots:
kleur@4.1.5: {}
- known-css-properties@0.30.0: {}
+ known-css-properties@0.35.0: {}
kolorist@1.8.0: {}
@@ -7134,6 +7195,8 @@ snapshots:
dependencies:
get-func-name: 2.0.2
+ loupe@3.1.2: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -7150,6 +7213,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
+ magic-string@0.30.12:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
mdast-util-from-markdown@0.8.5:
dependencies:
'@types/mdast': 3.0.15
@@ -7215,13 +7282,9 @@ snapshots:
mkdirp-classic@0.5.3: {}
- mkdirp@0.5.6:
- dependencies:
- minimist: 1.2.8
-
mkdirp@1.0.4: {}
- mkdist@1.5.1(typescript@5.4.5):
+ mkdist@1.5.1(typescript@5.6.3):
dependencies:
autoprefixer: 10.4.19(postcss@8.4.38)
citty: 0.1.6
@@ -7239,7 +7302,7 @@ snapshots:
postcss-nested: 6.0.1(postcss@8.4.38)
semver: 7.6.0
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
mlly@1.6.1:
dependencies:
@@ -7387,14 +7450,10 @@ snapshots:
perfect-debounce@1.0.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
picocolors@1.0.0: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
picomatch@4.0.2: {}
@@ -7569,15 +7628,20 @@ snapshots:
dependencies:
postcss: 8.4.38
- postcss-scss@4.0.9(postcss@8.4.38):
+ postcss-scss@4.0.9(postcss@8.4.47):
dependencies:
- postcss: 8.4.38
+ postcss: 8.4.47
postcss-selector-parser@6.0.16:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
+ postcss-selector-parser@6.1.2:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
postcss-svgo@7.0.0(postcss@8.4.38):
dependencies:
postcss: 8.4.38
@@ -7597,6 +7661,12 @@ snapshots:
picocolors: 1.0.0
source-map-js: 1.2.0
+ postcss@8.4.47:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
prebuild-install@7.1.2:
dependencies:
detect-libc: 2.0.3
@@ -7673,6 +7743,8 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
regenerate-unicode-properties@10.1.1:
dependencies:
regenerate: 1.4.2
@@ -7725,19 +7797,15 @@ snapshots:
reusify@1.0.4: {}
- rimraf@2.7.1:
- dependencies:
- glob: 7.2.3
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rollup-plugin-dts@6.1.0(rollup@3.29.4)(typescript@5.4.5):
+ rollup-plugin-dts@6.1.0(rollup@3.29.4)(typescript@5.6.3):
dependencies:
magic-string: 0.30.10
rollup: 3.29.4
- typescript: 5.4.5
+ typescript: 5.6.3
optionalDependencies:
'@babel/code-frame': 7.24.2
@@ -7794,13 +7862,6 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.1.4
- sander@0.5.1:
- dependencies:
- es6-promise: 3.3.1
- graceful-fs: 4.2.11
- mkdirp: 0.5.6
- rimraf: 2.7.1
-
scule@1.3.0: {}
semver@5.7.2: {}
@@ -7811,6 +7872,8 @@ snapshots:
dependencies:
lru-cache: 6.0.0
+ semver@7.6.3: {}
+
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -7885,6 +7948,12 @@ snapshots:
mrmime: 2.0.0
totalist: 3.0.1
+ sirv@3.0.0:
+ dependencies:
+ '@polka/url': 1.0.0-next.25
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
sisteransi@1.0.5: {}
slash@3.0.0: {}
@@ -7895,15 +7964,10 @@ snapshots:
smob@1.5.0: {}
- sorcery@0.11.0:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- buffer-crc32: 0.2.13
- minimist: 1.2.8
- sander: 0.5.1
-
source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
+
source-map-support@0.5.21:
dependencies:
buffer-from: 1.1.2
@@ -8025,72 +8089,47 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte-check@3.7.0(@babel/core@7.24.5)(postcss-load-config@3.1.4(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.15):
+ svelte-check@4.0.5(picomatch@4.0.2)(svelte@5.1.9)(typescript@5.6.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- chokidar: 3.6.0
- fast-glob: 3.3.2
- import-fresh: 3.3.0
+ chokidar: 4.0.1
+ fdir: 6.4.2(picomatch@4.0.2)
picocolors: 1.0.0
sade: 1.8.1
- svelte: 4.2.15
- svelte-preprocess: 5.1.4(@babel/core@7.24.5)(postcss-load-config@3.1.4(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.15)(typescript@5.4.5)
- typescript: 5.4.5
+ svelte: 5.1.9
+ typescript: 5.6.3
transitivePeerDependencies:
- - '@babel/core'
- - coffeescript
- - less
- - postcss
- - postcss-load-config
- - pug
- - sass
- - stylus
- - sugarss
+ - picomatch
- svelte-eslint-parser@0.35.0(svelte@4.2.15):
+ svelte-eslint-parser@0.43.0(svelte@5.1.9):
dependencies:
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- postcss: 8.4.38
- postcss-scss: 4.0.9(postcss@8.4.38)
+ postcss: 8.4.47
+ postcss-scss: 4.0.9(postcss@8.4.47)
optionalDependencies:
- svelte: 4.2.15
+ svelte: 5.1.9
- svelte-hmr@0.16.0(svelte@4.2.15):
+ svelte-hmr@0.16.0(svelte@5.1.9):
dependencies:
- svelte: 4.2.15
-
- svelte-preprocess@5.1.4(@babel/core@7.24.5)(postcss-load-config@3.1.4(postcss@8.4.38))(postcss@8.4.38)(svelte@4.2.15)(typescript@5.4.5):
- dependencies:
- '@types/pug': 2.0.10
- detect-indent: 6.1.0
- magic-string: 0.30.10
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 4.2.15
- optionalDependencies:
- '@babel/core': 7.24.5
- postcss: 8.4.38
- postcss-load-config: 3.1.4(postcss@8.4.38)
- typescript: 5.4.5
+ svelte: 5.1.9
- svelte@4.2.15:
+ svelte@5.1.9:
dependencies:
'@ampproject/remapping': 2.3.0
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/sourcemap-codec': 1.5.0
'@types/estree': 1.0.5
- acorn: 8.11.3
- aria-query: 5.3.0
- axobject-query: 4.0.0
- code-red: 1.0.4
- css-tree: 2.3.1
- estree-walker: 3.0.3
+ acorn: 8.14.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ esm-env: 1.0.0
+ esrap: 1.2.2
is-reference: 3.0.2
locate-character: 3.0.0
- magic-string: 0.30.10
- periscopic: 3.1.0
+ magic-string: 0.30.12
+ zimmerframe: 1.1.2
svgo@3.2.0:
dependencies:
@@ -8104,7 +8143,7 @@ snapshots:
synckit@0.6.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
tar-fs@2.1.1:
dependencies:
@@ -8167,7 +8206,9 @@ snapshots:
globalyzer: 0.1.0
globrex: 0.1.2
- tinybench@2.8.0: {}
+ tinybench@2.9.0: {}
+
+ tinyexec@0.3.1: {}
tinyglobby@0.2.9:
dependencies:
@@ -8178,7 +8219,7 @@ snapshots:
tinyrainbow@1.2.0: {}
- tinyspy@3.0.0: {}
+ tinyspy@3.0.2: {}
to-data-view@1.1.0: {}
@@ -8194,18 +8235,18 @@ snapshots:
dependencies:
punycode: 2.3.1
- ts-api-utils@1.3.0(typescript@5.4.5):
+ ts-api-utils@1.3.0(typescript@5.6.3):
dependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
tslib@1.14.1: {}
- tslib@2.6.2: {}
+ tslib@2.8.1: {}
- tsutils@3.21.0(typescript@5.4.5):
+ tsutils@3.21.0(typescript@5.6.3):
dependencies:
tslib: 1.14.1
- typescript: 5.4.5
+ typescript: 5.6.3
tunnel-agent@0.6.0:
dependencies:
@@ -8257,7 +8298,7 @@ snapshots:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- typescript@5.4.5: {}
+ typescript@5.6.3: {}
ufo@1.5.3: {}
@@ -8268,7 +8309,7 @@ snapshots:
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- unbuild@2.0.0(typescript@5.4.5):
+ unbuild@2.0.0(typescript@5.6.3):
dependencies:
'@rollup/plugin-alias': 5.1.0(rollup@3.29.4)
'@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4)
@@ -8285,17 +8326,17 @@ snapshots:
hookable: 5.5.3
jiti: 1.21.0
magic-string: 0.30.10
- mkdist: 1.5.1(typescript@5.4.5)
+ mkdist: 1.5.1(typescript@5.6.3)
mlly: 1.6.1
pathe: 1.1.2
pkg-types: 1.1.0
pretty-bytes: 6.1.1
rollup: 3.29.4
- rollup-plugin-dts: 6.1.0(rollup@3.29.4)(typescript@5.4.5)
+ rollup-plugin-dts: 6.1.0(rollup@3.29.4)(typescript@5.6.3)
scule: 1.3.0
untyped: 1.4.2
optionalDependencies:
- typescript: 5.4.5
+ typescript: 5.6.3
transitivePeerDependencies:
- sass
- supports-color
@@ -8363,12 +8404,11 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vite-node@2.0.5(@types/node@18.19.31)(terser@5.31.0):
+ vite-node@2.1.4(@types/node@18.19.31)(terser@5.31.0):
dependencies:
cac: 6.7.14
- debug: 4.3.6
+ debug: 4.3.7
pathe: 1.1.2
- tinyrainbow: 1.2.0
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
transitivePeerDependencies:
- '@types/node'
@@ -8407,32 +8447,34 @@ snapshots:
optionalDependencies:
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
- vitest@2.0.5(@types/node@18.19.31)(terser@5.31.0):
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@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.6
- execa: 8.0.1
- magic-string: 0.30.10
+ vitest@2.1.4(@types/node@18.19.31)(terser@5.31.0):
+ dependencies:
+ '@vitest/expect': 2.1.4
+ '@vitest/mocker': 2.1.4(vite@5.2.10(@types/node@18.19.31)(terser@5.31.0))
+ '@vitest/pretty-format': 2.1.4
+ '@vitest/runner': 2.1.4
+ '@vitest/snapshot': 2.1.4
+ '@vitest/spy': 2.1.4
+ '@vitest/utils': 2.1.4
+ chai: 5.1.2
+ debug: 4.3.7
+ expect-type: 1.1.0
+ magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.7.0
- tinybench: 2.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
vite: 5.2.10(@types/node@18.19.31)(terser@5.31.0)
- vite-node: 2.0.5(@types/node@18.19.31)(terser@5.31.0)
+ vite-node: 2.1.4(@types/node@18.19.31)(terser@5.31.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 18.19.31
transitivePeerDependencies:
- less
- lightningcss
+ - msw
- sass
- stylus
- sugarss
@@ -8619,3 +8661,5 @@ snapshots:
yaml@2.4.2: {}
yocto-queue@0.1.0: {}
+
+ zimmerframe@1.1.2: {}