diff --git a/apps/sveltekit-old/.gitignore b/apps/sveltekit-old/.gitignore
new file mode 100644
index 0000000..79518f7
--- /dev/null
+++ b/apps/sveltekit-old/.gitignore
@@ -0,0 +1,21 @@
+node_modules
+
+# Output
+.output
+.vercel
+/.svelte-kit
+/build
+
+# OS
+.DS_Store
+Thumbs.db
+
+# Env
+.env
+.env.*
+!.env.example
+!.env.test
+
+# Vite
+vite.config.js.timestamp-*
+vite.config.ts.timestamp-*
diff --git a/apps/sveltekit-old/.npmrc b/apps/sveltekit-old/.npmrc
new file mode 100644
index 0000000..b6f27f1
--- /dev/null
+++ b/apps/sveltekit-old/.npmrc
@@ -0,0 +1 @@
+engine-strict=true
diff --git a/apps/sveltekit-old/README.md b/apps/sveltekit-old/README.md
new file mode 100644
index 0000000..e0a09de
--- /dev/null
+++ b/apps/sveltekit-old/README.md
@@ -0,0 +1,17 @@
+# SvelteKit 2 Demo application for Vercel Web Analytics
+
+## Setup
+
+This application was created with the following commands:
+
+- `cd apps`
+- `pnpx sv create sveltekit` (answers: SvelteKit minimal, no Typescript, no additional install, pnpm)
+- `cd sveltekit`
+- add `src/+layout.js` to include `import { injectAnalytics } from '@vercel/analytics/sveltekit'; injectAnalytics();`
+- edit package.json to add `"@vercel/analytics": "workspace:*"` dependency and change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
+- edit `svelte.config.js` to change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
+- `pnpm i`
+
+## Usage
+
+Start it with `pnpm -F sveltekit-old dev` and browse to [http://localhost:5173](http://localhost:5173)
diff --git a/apps/sveltekit-old/jsconfig.json b/apps/sveltekit-old/jsconfig.json
new file mode 100644
index 0000000..4043666
--- /dev/null
+++ b/apps/sveltekit-old/jsconfig.json
@@ -0,0 +1,18 @@
+{
+ "extends": "./.svelte-kit/tsconfig.json",
+ "compilerOptions": {
+ "allowJs": true,
+ "checkJs": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "sourceMap": true,
+ "strict": true,
+ "moduleResolution": "bundler"
+ }
+ // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
+ //
+ // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
+ // from the referenced tsconfig.json - TypeScript does not merge them in
+}
diff --git a/apps/sveltekit-old/package.json b/apps/sveltekit-old/package.json
new file mode 100644
index 0000000..347e885
--- /dev/null
+++ b/apps/sveltekit-old/package.json
@@ -0,0 +1,24 @@
+{
+ "name": "sveltekit-old",
+ "version": "0.0.1",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "build": "vite build",
+ "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
+ "dev": "vite dev",
+ "prepare": "svelte-kit sync",
+ "preview": "vite preview"
+ },
+ "devDependencies": {
+ "@sveltejs/adapter-vercel": "^6.2",
+ "@sveltejs/kit": "^2.49",
+ "@sveltejs/vite-plugin-svelte": "^4.0.0",
+ "@types/node": "^22.9.0",
+ "@vercel/analytics": "workspace:*",
+ "svelte": "^5",
+ "svelte-check": "^4",
+ "typescript": "^5.5.0",
+ "vite": "^5.4.4"
+ }
+}
diff --git a/apps/sveltekit-old/src/app.html b/apps/sveltekit-old/src/app.html
new file mode 100644
index 0000000..41147b9
--- /dev/null
+++ b/apps/sveltekit-old/src/app.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+ %sveltekit.head%
+
+
+ %sveltekit.body%
+
+
diff --git a/apps/sveltekit-old/src/routes/+layout.ts b/apps/sveltekit-old/src/routes/+layout.ts
new file mode 100644
index 0000000..0275424
--- /dev/null
+++ b/apps/sveltekit-old/src/routes/+layout.ts
@@ -0,0 +1,13 @@
+import {
+ type BeforeSendEvent,
+ injectAnalytics,
+} from '@vercel/analytics/sveltekit';
+import { dev } from '$app/environment';
+
+injectAnalytics({
+ mode: dev ? 'development' : 'production',
+ beforeSend(event: BeforeSendEvent) {
+ console.log('beforeSend', event);
+ return event;
+ },
+});
diff --git a/apps/sveltekit-old/src/routes/+page.svelte b/apps/sveltekit-old/src/routes/+page.svelte
new file mode 100644
index 0000000..3977c63
--- /dev/null
+++ b/apps/sveltekit-old/src/routes/+page.svelte
@@ -0,0 +1,2 @@
+Welcome to SvelteKit
+Visit this page to know more...
diff --git a/apps/sveltekit-old/src/routes/[slug]/+page.svelte b/apps/sveltekit-old/src/routes/[slug]/+page.svelte
new file mode 100644
index 0000000..682d5de
--- /dev/null
+++ b/apps/sveltekit-old/src/routes/[slug]/+page.svelte
@@ -0,0 +1,10 @@
+
+
+We don't talk about {$page.params.slug}
+
+ track('go-back', { slug: $page.params.slug })}
+ >Go back
diff --git a/apps/sveltekit-old/static/favicon.png b/apps/sveltekit-old/static/favicon.png
new file mode 100644
index 0000000..825b9e6
Binary files /dev/null and b/apps/sveltekit-old/static/favicon.png differ
diff --git a/apps/sveltekit/svelte.config.js b/apps/sveltekit-old/svelte.config.js
similarity index 100%
rename from apps/sveltekit/svelte.config.js
rename to apps/sveltekit-old/svelte.config.js
diff --git a/apps/sveltekit-old/vite.config.js b/apps/sveltekit-old/vite.config.js
new file mode 100644
index 0000000..2e920e4
--- /dev/null
+++ b/apps/sveltekit-old/vite.config.js
@@ -0,0 +1,6 @@
+import { sveltekit } from '@sveltejs/kit/vite';
+import { defineConfig } from 'vite';
+
+export default defineConfig({
+ plugins: [sveltekit()],
+});
diff --git a/apps/sveltekit/README.md b/apps/sveltekit/README.md
index 2fc0b88..0fcebc4 100644
--- a/apps/sveltekit/README.md
+++ b/apps/sveltekit/README.md
@@ -1,4 +1,4 @@
-# Sveltekit Demo application for Vercel Web Analytics
+# SvelteKit 3 Demo application for Vercel Web Analytics
## Setup
@@ -7,9 +7,8 @@ This application was created with the following commands:
- `cd apps`
- `pnpx sv create sveltekit` (answers: SvelteKit minimal, no Typescript, no additional install, pnpm)
- `cd sveltekit`
-- add `src/+layout.js` to include `import { injectAnalytics } from '@vercel/analytics/sveltekit'; injectAnalytics();`
+- add `src/+layout.js` to include `import { injectAnalytics } from '@vercel/analytics/sveltekit-next'; injectAnalytics();`
- edit package.json to add `"@vercel/analytics": "workspace:*"` dependency and change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
-- eddi `svelte.config.js` to change `@sveltejs/adapter-auto` into `@sveltejs/adapter-vercel`
- `pnpm i`
## Usage
diff --git a/apps/sveltekit/package.json b/apps/sveltekit/package.json
index e42d542..3f38b50 100644
--- a/apps/sveltekit/package.json
+++ b/apps/sveltekit/package.json
@@ -11,13 +11,13 @@
"preview": "vite preview"
},
"devDependencies": {
- "@sveltejs/adapter-vercel": "latest",
- "@sveltejs/kit": "latest",
- "@sveltejs/vite-plugin-svelte": "latest",
+ "@sveltejs/adapter-vercel": "^7.0.0-next.0",
+ "@sveltejs/kit": "^3.0.0-next.5",
+ "@sveltejs/vite-plugin-svelte": "^7.0.0",
"@vercel/analytics": "workspace:*",
- "svelte": "latest",
- "svelte-check": "latest",
- "typescript": "latest",
- "vite": "latest"
+ "svelte": "^5.56.3",
+ "svelte-check": "^4",
+ "typescript": "^6",
+ "vite": "^8.0.12"
}
}
diff --git a/apps/sveltekit/src/routes/+layout.ts b/apps/sveltekit/src/routes/+layout.ts
index 0275424..5082e9c 100644
--- a/apps/sveltekit/src/routes/+layout.ts
+++ b/apps/sveltekit/src/routes/+layout.ts
@@ -1,8 +1,8 @@
import {
type BeforeSendEvent,
injectAnalytics,
-} from '@vercel/analytics/sveltekit';
-import { dev } from '$app/environment';
+} from '@vercel/analytics/sveltekit-next';
+import { dev } from '$app/env';
injectAnalytics({
mode: dev ? 'development' : 'production',
diff --git a/apps/sveltekit/src/routes/[slug]/+page.svelte b/apps/sveltekit/src/routes/[slug]/+page.svelte
index 682d5de..f7fca6b 100644
--- a/apps/sveltekit/src/routes/[slug]/+page.svelte
+++ b/apps/sveltekit/src/routes/[slug]/+page.svelte
@@ -1,10 +1,10 @@
-We don't talk about {$page.params.slug}
+We don't talk about {page.params.slug}
- track('go-back', { slug: $page.params.slug })}
+ track('go-back', { slug: page.params.slug })}
>Go back
diff --git a/apps/sveltekit/vite.config.js b/apps/sveltekit/vite.config.js
index 2e920e4..eda1614 100644
--- a/apps/sveltekit/vite.config.js
+++ b/apps/sveltekit/vite.config.js
@@ -1,6 +1,11 @@
+import adapter from '@sveltejs/adapter-vercel';
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
- plugins: [sveltekit()],
+ plugins: [
+ sveltekit({
+ adapter: adapter(),
+ }),
+ ],
});
diff --git a/packages/web/README.md b/packages/web/README.md
index 043e285..0e89796 100644
--- a/packages/web/README.md
+++ b/packages/web/README.md
@@ -26,6 +26,8 @@ This package does **not** track data in development mode.
3. Inject the Analytics script to your app
- If you are using **Next.js** or **React**, you can use the `` component to inject the script into your app.
+ - If you are using **SvelteKit 2**, you can use the `injectAnalytics()` function from `@vercel/analytics/sveltekit` in your top-level `+layout.js/ts` file.
+ - If you are using **SvelteKit 3**, import `injectAnalytics()` from `@vercel/analytics/sveltekit-next` instead.
- To add the tracking script for other frameworks, use the `inject` function.
- If you want to use Vercel Web Analytics on a static site without npm, follow the instructions in the [documentation](https://vercel.com/docs/analytics/quickstart).
diff --git a/packages/web/package.json b/packages/web/package.json
index 7f5063b..9467c70 100644
--- a/packages/web/package.json
+++ b/packages/web/package.json
@@ -1,6 +1,6 @@
{
"name": "@vercel/analytics",
- "version": "2.1.0-canary",
+ "version": "2.2.0-canary",
"description": "Gain real-time traffic insights with Vercel Web Analytics",
"keywords": [
"analytics",
@@ -59,6 +59,10 @@
"svelte": "./dist/sveltekit/index.mjs",
"types": "./dist/sveltekit/index.d.ts"
},
+ "./sveltekit-next": {
+ "types": "./dist/sveltekit-next/index.svelte.d.mts",
+ "svelte": "./dist/sveltekit-next/index.svelte.js"
+ },
"./vue": {
"browser": "./dist/vue/index.mjs",
"import": "./dist/vue/index.mjs",
@@ -93,20 +97,25 @@
"sveltekit": [
"dist/sveltekit/index.d.ts"
],
+ "sveltekit-next": [
+ "dist/sveltekit-next/index.svelte.d.mts"
+ ],
"vue": [
"dist/vue/index.d.ts"
]
}
},
"scripts": {
- "build": "tsup && pnpm copy-astro",
+ "build": "tsup && pnpm copy-astro && pnpm copy-sveltekit-next-package",
"copy-astro": "cp -R src/astro dist/",
- "dev": "pnpm copy-astro && tsup --watch",
+ "copy-sveltekit-next-package": "mkdir -p dist/sveltekit-next && cp src/sveltekit-next/package.json dist/sveltekit-next/package.json",
+ "dev": "pnpm copy-astro && pnpm copy-sveltekit-next-package && tsup --watch",
"test": "vitest"
},
"devDependencies": {
"@nuxt/kit": "^4.2.0",
"@nuxt/schema": "^4.2.0",
+ "@sveltejs/kit": "^3.0.0-next.0",
"@swc/core": "^1.9.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
@@ -123,7 +132,7 @@
},
"peerDependencies": {
"@remix-run/react": "^2",
- "@sveltejs/kit": "^1 || ^2",
+ "@sveltejs/kit": "^1 || ^2 || ^3 || ^3.0.0-next.0",
"next": ">= 13",
"nuxt": ">= 3",
"react": "^18 || ^19 || ^19.0.0-rc",
diff --git a/packages/web/src/sveltekit-next/index.svelte.ts b/packages/web/src/sveltekit-next/index.svelte.ts
new file mode 100644
index 0000000..7b10527
--- /dev/null
+++ b/packages/web/src/sveltekit-next/index.svelte.ts
@@ -0,0 +1,40 @@
+import type {} from '@sveltejs/kit';
+import { page } from '$app/state';
+import { inject, pageview, track } from '../generic';
+import type { AnalyticsProps, BeforeSend, BeforeSendEvent } from '../types';
+import { getBasePath, getConfigString } from './utils';
+
+/**
+ * Injects Vercel Web Analytics in SvelteKit 3 apps.
+ */
+function injectAnalytics(props: Omit = {}): void {
+ let analyticsInjected = false;
+
+ $effect.root(() => {
+ $effect.pre(() => {
+ const route = page.route?.id;
+
+ if (!route) {
+ return;
+ }
+
+ if (!analyticsInjected) {
+ inject(
+ {
+ ...props,
+ basePath: getBasePath(),
+ disableAutoTrack: true,
+ framework: 'sveltekit',
+ },
+ getConfigString(),
+ );
+ analyticsInjected = true;
+ }
+
+ pageview({ route, path: page.url.pathname });
+ });
+ });
+}
+
+export type { AnalyticsProps, BeforeSend, BeforeSendEvent };
+export { injectAnalytics, track };
diff --git a/packages/web/src/sveltekit-next/package.json b/packages/web/src/sveltekit-next/package.json
new file mode 100644
index 0000000..3dbc1ca
--- /dev/null
+++ b/packages/web/src/sveltekit-next/package.json
@@ -0,0 +1,3 @@
+{
+ "type": "module"
+}
diff --git a/packages/web/src/sveltekit-next/utils.test.ts b/packages/web/src/sveltekit-next/utils.test.ts
new file mode 100644
index 0000000..7651a6e
--- /dev/null
+++ b/packages/web/src/sveltekit-next/utils.test.ts
@@ -0,0 +1,29 @@
+import { afterEach, describe, expect, it } from 'vitest';
+import { getBasePath, getConfigString } from './utils';
+
+afterEach(() => {
+ delete import.meta.env.VITE_VERCEL_OBSERVABILITY_BASEPATH;
+ delete import.meta.env.VITE_VERCEL_OBSERVABILITY_CLIENT_CONFIG;
+});
+
+describe('getBasePath()', () => {
+ it('returns basepath set for SvelteKit', () => {
+ const basepath = `/_vercel-${Math.random()}/insights`;
+ import.meta.env.VITE_VERCEL_OBSERVABILITY_BASEPATH = basepath;
+ expect(getBasePath()).toBe(basepath);
+ });
+});
+
+describe('getConfigString()', () => {
+ it('returns configuration string for SvelteKit', () => {
+ const config = JSON.stringify({
+ analytics: {
+ viewEndpoint: `/_vercel-${Math.random()}`,
+ eventEndpoint: `/hfi/${Math.random()}`,
+ sessionEndpoint: `/_sessions-${Math.random()}`,
+ },
+ });
+ import.meta.env.VITE_VERCEL_OBSERVABILITY_CLIENT_CONFIG = config;
+ expect(getConfigString()).toBe(config);
+ });
+});
diff --git a/packages/web/src/sveltekit-next/utils.ts b/packages/web/src/sveltekit-next/utils.ts
new file mode 100644
index 0000000..a40c3e3
--- /dev/null
+++ b/packages/web/src/sveltekit-next/utils.ts
@@ -0,0 +1,23 @@
+// !! important !!
+// do not access env variables using import.meta.env[varname]
+// some bundlers won't replace the value at build time.
+
+export function getBasePath(): string | undefined {
+ try {
+ return import.meta.env.VITE_VERCEL_OBSERVABILITY_BASEPATH as
+ | string
+ | undefined;
+ } catch {
+ // do nothing
+ }
+}
+
+export function getConfigString(): string | undefined {
+ try {
+ return import.meta.env.VITE_VERCEL_OBSERVABILITY_CLIENT_CONFIG as
+ | string
+ | undefined;
+ } catch {
+ // do nothing
+ }
+}
diff --git a/packages/web/src/sveltekit/index.ts b/packages/web/src/sveltekit/index.ts
index 6ff3193..3f35d08 100644
--- a/packages/web/src/sveltekit/index.ts
+++ b/packages/web/src/sveltekit/index.ts
@@ -1,10 +1,14 @@
import type {} from '@sveltejs/kit';
+// @ts-expect-error $app/environment has been removed in kit 3
import { browser } from '$app/environment';
import { page } from '$app/stores';
import { inject, pageview, track } from '../generic';
import type { AnalyticsProps, BeforeSend, BeforeSendEvent } from '../types';
import { getBasePath, getConfigString } from './utils';
+/**
+ * Injects Vercel Web Analytics in SvelteKit 2 apps.
+ */
function injectAnalytics(props: Omit = {}): void {
if (browser) {
inject(
@@ -25,5 +29,5 @@ function injectAnalytics(props: Omit = {}): void {
}
}
-export { injectAnalytics, track };
export type { AnalyticsProps, BeforeSend, BeforeSendEvent };
+export { injectAnalytics, track };
diff --git a/packages/web/tsup.config.js b/packages/web/tsup.config.js
index 9e9e122..a2f9f33 100644
--- a/packages/web/tsup.config.js
+++ b/packages/web/tsup.config.js
@@ -79,6 +79,16 @@ export default defineConfig([
external: ['svelte', '@sveltejs/kit', '$app'],
outDir: 'dist/sveltekit',
},
+ {
+ ...cfg,
+ entry: {
+ 'index.svelte': 'src/sveltekit-next/index.svelte.ts',
+ },
+ external: ['svelte', '@sveltejs/kit', '$app'],
+ format: ['esm'],
+ outDir: 'dist/sveltekit-next',
+ outExtension: () => ({ js: '.js' }),
+ },
{
...cfg,
entry: {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b488b14..88264e0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -112,13 +112,13 @@ importers:
version: link:../../packages/web
nuxt:
specifier: ^4.2.0
- version: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ version: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
vue:
specifier: latest
- version: 3.5.38(typescript@6.0.3)
+ version: 3.5.39(typescript@6.0.3)
vue-router:
specifier: latest
- version: 5.1.0(@vue/compiler-sfc@3.5.38)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
+ version: 5.1.0(@vue/compiler-sfc@3.5.39)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.39(typescript@6.0.3))
apps/remix:
dependencies:
@@ -175,30 +175,60 @@ importers:
apps/sveltekit:
devDependencies:
'@sveltejs/adapter-vercel':
- specifier: latest
- version: 6.3.3(@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(rollup@4.60.4)
+ specifier: ^7.0.0-next.0
+ version: 7.0.0-next.0(@sveltejs/kit@3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(rollup@4.60.4)
'@sveltejs/kit':
- specifier: latest
- version: 2.65.2(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ specifier: ^3.0.0-next.5
+ version: 3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@sveltejs/vite-plugin-svelte':
- specifier: latest
+ specifier: ^7.0.0
version: 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@vercel/analytics':
specifier: workspace:*
version: link:../../packages/web
svelte:
- specifier: latest
+ specifier: ^5.56.3
version: 5.56.3(@typescript-eslint/types@8.59.4)
svelte-check:
- specifier: latest
+ specifier: ^4
version: 4.6.0(picomatch@4.0.4)(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)
typescript:
- specifier: latest
+ specifier: ^6
version: 6.0.3
vite:
- specifier: latest
+ specifier: ^8.0.12
version: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ apps/sveltekit-old:
+ devDependencies:
+ '@sveltejs/adapter-vercel':
+ specifier: ^6.2
+ version: 6.3.3(@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(rollup@4.60.4)
+ '@sveltejs/kit':
+ specifier: ^2.49
+ version: 2.65.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
+ '@sveltejs/vite-plugin-svelte':
+ specifier: ^4.0.0
+ version: 4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
+ '@types/node':
+ specifier: ^22.9.0
+ version: 22.19.19
+ '@vercel/analytics':
+ specifier: workspace:*
+ version: link:../../packages/web
+ svelte:
+ specifier: ^5
+ version: 5.56.3(@typescript-eslint/types@8.59.4)
+ svelte-check:
+ specifier: ^4
+ version: 4.6.0(picomatch@4.0.4)(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)
+ typescript:
+ specifier: ^5.5.0
+ version: 5.9.3
+ vite:
+ specifier: ^5.4.4
+ version: 5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)
+
apps/vue:
dependencies:
'@vercel/analytics':
@@ -206,29 +236,26 @@ importers:
version: link:../../packages/web
vue:
specifier: latest
- version: 3.5.38(typescript@6.0.3)
+ version: 3.5.39(typescript@6.0.3)
devDependencies:
'@vitejs/plugin-vue':
specifier: latest
- version: 6.0.7(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
+ version: 6.0.7(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.39(typescript@6.0.3))
vite:
specifier: latest
- version: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ version: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
packages/web:
dependencies:
'@remix-run/react':
specifier: ^2
version: 2.17.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.9.3)
- '@sveltejs/kit':
- specifier: ^1 || ^2
- version: 2.60.1(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.55.8(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
next:
specifier: '>= 13'
version: 16.0.7(@babel/core@7.29.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nuxt:
specifier: '>= 3'
- version: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ version: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
devDependencies:
'@nuxt/kit':
specifier: ^4.2.0
@@ -236,6 +263,9 @@ importers:
'@nuxt/schema':
specifier: ^4.2.0
version: 4.4.6
+ '@sveltejs/kit':
+ specifier: ^3.0.0-next.0
+ version: 3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.55.8(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@swc/core':
specifier: ^1.9.2
version: 1.15.33(@swc/helpers@0.5.21)
@@ -265,16 +295,16 @@ importers:
version: 5.55.8(@typescript-eslint/types@8.59.4)
tsup:
specifier: 8.3.5
- version: 8.3.5(@swc/core@1.15.33(@swc/helpers@0.5.21))(jiti@2.7.0)(postcss@8.5.15)(typescript@5.9.3)(yaml@2.9.0)
+ version: 8.3.5(@swc/core@1.15.33(@swc/helpers@0.5.21))(jiti@2.7.0)(postcss@8.5.14)(typescript@5.9.3)(yaml@2.9.0)
vitest:
specifier: ^4.0.16
- version: 4.1.6(@types/node@22.19.19)(jsdom@20.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ version: 4.1.6(@types/node@22.19.19)(jsdom@20.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
vue:
specifier: ^3.5.12
version: 3.5.34(typescript@5.9.3)
vue-router:
specifier: ^5.0.2
- version: 5.0.7(@vue/compiler-sfc@3.5.38)(vue@3.5.34(typescript@5.9.3))
+ version: 5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.34(typescript@5.9.3))
packages:
@@ -396,10 +426,6 @@ packages:
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.27.1':
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.29.7':
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
engines: {node: '>=6.9.0'}
@@ -715,12 +741,21 @@ packages:
'@emnapi/core@1.10.0':
resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
+ '@emnapi/core@1.11.1':
+ resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==}
+
'@emnapi/runtime@1.10.0':
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
'@emnapi/wasi-threads@1.2.1':
resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
+ '@emnapi/wasi-threads@1.2.2':
+ resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==}
+
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
@@ -1969,6 +2004,12 @@ packages:
'@emnapi/core': ^1.7.1
'@emnapi/runtime': ^1.7.1
+ '@napi-rs/wasm-runtime@1.1.6':
+ resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
'@next/env@14.2.35':
resolution: {integrity: sha512-DuhvCtj4t9Gwrx80dmz2F4t/zKQ4ktN8WrMwOuVzkJfBilwAwGr6v16M5eI8yCuZ63H9TTuEU09Iu2HqkzFPVQ==}
@@ -2466,6 +2507,9 @@ packages:
'@oxc-project/types@0.133.0':
resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==}
+ '@oxc-project/types@0.137.0':
+ resolution: {integrity: sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==}
+
'@oxc-transform/binding-android-arm-eabi@0.131.0':
resolution: {integrity: sha512-rcNvLlbNnxTfYVlZVF+Rev2AyCpJDpwVPphG4HOJxauaT1+w5VxL+kRdxCReof4A8ZsszbvIYlvkqvaJKO4Mog==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2823,30 +2867,60 @@ packages:
cpu: [arm64]
os: [android]
+ '@rolldown/binding-android-arm64@1.1.3':
+ resolution: {integrity: sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
'@rolldown/binding-darwin-arm64@1.0.3':
resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ resolution: {integrity: sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
'@rolldown/binding-darwin-x64@1.0.3':
resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
+ '@rolldown/binding-darwin-x64@1.1.3':
+ resolution: {integrity: sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
'@rolldown/binding-freebsd-x64@1.0.3':
resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ resolution: {integrity: sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.3':
resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ resolution: {integrity: sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
'@rolldown/binding-linux-arm64-gnu@1.0.3':
resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2854,6 +2928,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ resolution: {integrity: sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-arm64-musl@1.0.3':
resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2861,6 +2942,13 @@ packages:
os: [linux]
libc: [musl]
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ resolution: {integrity: sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
'@rolldown/binding-linux-ppc64-gnu@1.0.3':
resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2868,6 +2956,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ resolution: {integrity: sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-s390x-gnu@1.0.3':
resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2875,6 +2970,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ resolution: {integrity: sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-x64-gnu@1.0.3':
resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2882,6 +2984,13 @@ packages:
os: [linux]
libc: [glibc]
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ resolution: {integrity: sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
'@rolldown/binding-linux-x64-musl@1.0.3':
resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -2889,29 +2998,59 @@ packages:
os: [linux]
libc: [musl]
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ resolution: {integrity: sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
'@rolldown/binding-openharmony-arm64@1.0.3':
resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ resolution: {integrity: sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
'@rolldown/binding-wasm32-wasi@1.0.3':
resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [wasm32]
+ '@rolldown/binding-wasm32-wasi@1.1.3':
+ resolution: {integrity: sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [wasm32]
+
'@rolldown/binding-win32-arm64-msvc@1.0.3':
resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ resolution: {integrity: sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
'@rolldown/binding-win32-x64-msvc@1.0.3':
resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ resolution: {integrity: sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
'@rolldown/pluginutils@1.0.1':
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
@@ -3200,8 +3339,13 @@ packages:
peerDependencies:
'@sveltejs/kit': ^2.4.0
- '@sveltejs/kit@2.60.1':
- resolution: {integrity: sha512-mQjlkNo+rJvpln7V2IGY2j99BqhcFbS4UN0AQNKNYfhBAFZTuCDAdW3a1sgf330mvtNvsBXn3HpAhcmvdJTcIQ==}
+ '@sveltejs/adapter-vercel@7.0.0-next.0':
+ resolution: {integrity: sha512-8Wj4id8cabXe5ghmJAIhDghA+dLLFYzDtdFsxBej5N4Zm7lIYMk3pyIKhmfhLIMh1R7FUTzUiZDF1cI9l1LXWw==}
+ peerDependencies:
+ '@sveltejs/kit': ^3.0.0
+
+ '@sveltejs/kit@2.65.2':
+ resolution: {integrity: sha512-ZIkyEmxT1gcq50Opn1ZIIx6vc/yt2zNN0rF5hS6op95gqHtNw8QMKDhjJI+RyjMcbvECRw+FzEeAoBe/MOz9AA==}
engines: {node: '>=18.13'}
hasBin: true
peerDependencies:
@@ -3216,16 +3360,16 @@ packages:
typescript:
optional: true
- '@sveltejs/kit@2.65.2':
- resolution: {integrity: sha512-ZIkyEmxT1gcq50Opn1ZIIx6vc/yt2zNN0rF5hS6op95gqHtNw8QMKDhjJI+RyjMcbvECRw+FzEeAoBe/MOz9AA==}
- engines: {node: '>=18.13'}
+ '@sveltejs/kit@3.0.0-next.6':
+ resolution: {integrity: sha512-hGuQHT7HYu6a4ea12LkihtJpYersl5eihgiaToVGjO2KojDg/6iEkEKt33fCjEnqziZNmomzuaMjzdPBAz8n3Q==}
+ engines: {node: '>=22'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.0.0
- '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 || ^7.0.0
- svelte: ^4.0.0 || ^5.0.0-next.0
- typescript: ^5.3.3 || ^6.0.0
- vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 || ^8.0.0
+ '@sveltejs/vite-plugin-svelte': ^7.0.0
+ svelte: ^5.48.0
+ typescript: ^6.0.0
+ vite: ^8.0.12
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
@@ -3236,6 +3380,21 @@ packages:
resolution: {integrity: sha512-BXXm+VOH/9X4N7Dd1iZ2MqA1h7M+9i2noI8QYuLDY8QcN2WHYn7D/VK/+IJNfcAmRw7ACNJ538UT9GXIhnBTiA==}
engines: {node: '>= 18.0.0'}
+ '@sveltejs/vite-plugin-svelte-inspector@3.0.1':
+ resolution: {integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22}
+ peerDependencies:
+ '@sveltejs/vite-plugin-svelte': ^4.0.0-next.0||^4.0.0
+ svelte: ^5.0.0-next.96 || ^5.0.0
+ vite: ^5.0.0
+
+ '@sveltejs/vite-plugin-svelte@4.0.4':
+ resolution: {integrity: sha512-0ba1RQ/PHen5FGpdSrW7Y3fAMQjrXantECALeOiOdBdzR5+5vPP6HVZRLmZaQL+W8m++o+haIAKq5qT+MiZ7VA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22}
+ peerDependencies:
+ svelte: ^5.0.0-next.96 || ^5.0.0
+ vite: ^5.0.0
+
'@sveltejs/vite-plugin-svelte@7.1.2':
resolution: {integrity: sha512-DrUBA2UXRfDmUX/ZTiEopd3X40yavsJF1FX2RygcuIScHL7o5YX1fMvoYnDhjeJQC4weCOklirpNWlcb2NiSeA==}
engines: {node: ^20.19 || ^22.12 || >=24}
@@ -3404,6 +3563,9 @@ packages:
'@tybys/wasm-util@0.10.2':
resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
+ '@tybys/wasm-util@0.10.3':
+ resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==}
+
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -3830,24 +3992,36 @@ packages:
'@vue/compiler-core@3.5.38':
resolution: {integrity: sha512-s99aGxWYig9ErHbct27KXEGhrBYlRI6c4MwAgXErOAbX9xiW37/uMa+XUDO69zLz83dng8UUZ70CTOJrLrYrEQ==}
+ '@vue/compiler-core@3.5.39':
+ resolution: {integrity: sha512-16KBTEXAJCpDr0mwlw+AZyhu8iyC7R3S2vBwsI7QnWJU6X3WKc9VKeNEZpiMdZ569qWhz9574L3vV55qRL0Vtw==}
+
'@vue/compiler-dom@3.5.34':
resolution: {integrity: sha512-EbF/T++k0e2MMZlJsBhzK8Sgwt0HcIPOhzn1CTB/lv6sQcyk+OWf8YeiLxZp3ro7MbbLcAfAJ6sEvjFWuNgUCw==}
'@vue/compiler-dom@3.5.38':
resolution: {integrity: sha512-JTqp25l8aFfJYF7/KmsXZjAxJz7T+SjmTJLoXVjHtc2BrSgSiW2n9Aem/cWq1OPe68A8JL06B3eVdhlP0H4TVw==}
+ '@vue/compiler-dom@3.5.39':
+ resolution: {integrity: sha512-oQPigALqYbNxTNPvNgSOe+czwVExfbVF02lz8jP0S3AXJiu3jxYDygNUiqSep4ezzW8XgnubqH63My2A7JR/vg==}
+
'@vue/compiler-sfc@3.5.34':
resolution: {integrity: sha512-D/ihr6uZeIt6r+pVZf46RWT1fAsLFMbUP7k8G1VkiiWexriED9GrX3echHd4Abbt17zjlfiFJ8z7a3BxZOPNjg==}
'@vue/compiler-sfc@3.5.38':
resolution: {integrity: sha512-DuA2GiZawSEW442iw/9+Fkol8hTgb4Ke5KkhmSry65QA7YuyMbIdy8p0XZRMvNwJdgRz307W8g1CSzdvS4nuNg==}
+ '@vue/compiler-sfc@3.5.39':
+ resolution: {integrity: sha512-d0ki86iOyN8LoZPBmk5SJWNwHP19CnDDCfuo//+2WJa2g5Ke0Jay983PIBIcSSzldC68I8DrD5GrHV3OSDfodg==}
+
'@vue/compiler-ssr@3.5.34':
resolution: {integrity: sha512-cDtTHKibkThKGHH1SP+WdccquNRYQDFH6rRjQCqT9G2ltFAfoR5pUftpab/z+aM5mW9HLLVQW7hfKKQe/1GBeQ==}
'@vue/compiler-ssr@3.5.38':
resolution: {integrity: sha512-7s+W5Gc42FGxZMcuwl8H5B29T8BJPMdBT7KHFE+BbAuZ/iTEdTtv7z2XiMjiaUUw4w3ZcCEdHs36RuYJ2VA7bA==}
+ '@vue/compiler-ssr@3.5.39':
+ resolution: {integrity: sha512-Ce7/wvwMHai74bdszfXExdazFigYnlF9zgCmEQUcM1j0fOymlouZ7XilTYNo8oUjhlnjYOZbGrcYKuqjz89Ucw==}
+
'@vue/devtools-api@8.1.2':
resolution: {integrity: sha512-vA0O112YqyDuNA1s7Yb2gCgToQ/OxOWiFDO5ThLCcDy0ldHnSd1dUTaSYhOldbqoNgumE4dxtGAoAaSUKUD1Zg==}
@@ -3868,18 +4042,27 @@ packages:
'@vue/reactivity@3.5.38':
resolution: {integrity: sha512-pG6LV/NDNRbKizcUjFFLAfjaL8mcv4DmR9avNcUw2gDHBzZneuS2TWCmp633ynzxz9YYKNeEPK2I8Wraqy2HUQ==}
+ '@vue/reactivity@3.5.39':
+ resolution: {integrity: sha512-TpsuBJ9gGlZa5d23XcM2y8EXanz9dZeVDQBXRwzy46ItgvM+rWpzs+UVM0wcRLxGvcav0HE5jz2gNL53xlRAog==}
+
'@vue/runtime-core@3.5.34':
resolution: {integrity: sha512-mKeBYvu8tcMSLhypAHBmriUFfWXKTCF/23Z4jiCoYK3UtWepkliViNLuR90V9XOyD62mUxs9p1jsrpK3CCGIzw==}
'@vue/runtime-core@3.5.38':
resolution: {integrity: sha512-iyW8WVfF1CpCXxncZY5Ei6rSd6oZr5DgEom//fUjRBRl56AXPD+s9ATvukRt77ZFTuYlnVA1bxY+dJB94tWVYw==}
+ '@vue/runtime-core@3.5.39':
+ resolution: {integrity: sha512-9GLtNyRvPAUMbX+7ono0RC2j0guo2LXVi8LvcmAooImACUKm0oFf0jjwbX8/H0AE/t1nxhAkn8RSl9PMCzzxZw==}
+
'@vue/runtime-dom@3.5.34':
resolution: {integrity: sha512-e8kZzERmCwUnBRVsgSQlAfrfU2rGoy0FFKPBXSlfEjc/O3KfA7QP0t1/2ZylrbchjmIKB4dPTd07A6WPr0eOrg==}
'@vue/runtime-dom@3.5.38':
resolution: {integrity: sha512-apX2wt9sdfDshS+a2xueFZLVpt0GkRJZSoPmrW/SA4yzXTznhfcMVW59gr7h4YQeY0vJhdJkk2rsIDwgfFgC5A==}
+ '@vue/runtime-dom@3.5.39':
+ resolution: {integrity: sha512-7Y6aAGboKcXAZ3ECuUy7RrS5yy2r47dhTp2SKaJmYxjopImaVFaNa5Ne66NwGovsrxVAl5S5rwc7m22UG7Lmww==}
+
'@vue/server-renderer@3.5.34':
resolution: {integrity: sha512-nHxmJoTrKsmrkbILRhkC9gY1G3moZbJTqCzDd7DOOzG5KH9oeJ0Unqrff5f9v0pW//jES05ZkJcNtfE8JjOIew==}
peerDependencies:
@@ -3890,12 +4073,20 @@ packages:
peerDependencies:
vue: 3.5.38
+ '@vue/server-renderer@3.5.39':
+ resolution: {integrity: sha512-yZSakiAGw85rZfG7UM8akMnIF+FmeiNk47uvHf2nVBBSe+dIKUhZuZq9+XgJhbV3nS5Z4ALH23/MpXofW+mbcw==}
+ peerDependencies:
+ vue: 3.5.39
+
'@vue/shared@3.5.34':
resolution: {integrity: sha512-24uqU4OIiX29ryC3MeWid/Xf2fa2EFRUVLb77nRhk+UrTVrh/XiGtFAFmJBAtBRbjwNdsPRP+jj/OL27Eg1NDA==}
'@vue/shared@3.5.38':
resolution: {integrity: sha512-FTW0AFZNaK5/mOqvGBwVfUlNLU38TiQn4+DQgIFUnrBBJQ1crMJ82yeGQLV5jyKFsO8yRukpbuP7x+nRbH6aug==}
+ '@vue/shared@3.5.39':
+ resolution: {integrity: sha512-l1rrBtBfTnmxvtsvdQDXltUUy8S1Y+ZaqdfUzmAnJkTd8Z8rv5v/ytW+TKiqEOWyHPoqtPlNFSs0lhRmYVSHVA==}
+
'@web3-storage/multipart-parser@1.0.0':
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
@@ -3940,6 +4131,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.17.0:
+ resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -4595,6 +4791,10 @@ packages:
resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
engines: {node: '>=18'}
+ cookie@2.0.1:
+ resolution: {integrity: sha512-yuToqVvRrj6pfDXREyQAAv8SkAEk/8GS3jQRTiUMm66TVtBYmqQeoEjL2Lmq8Rpo6271vH76InTChTitEAm65w==}
+ engines: {node: '>=22'}
+
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -7740,6 +7940,10 @@ packages:
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.16:
+ resolution: {integrity: sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==}
+ engines: {node: ^10 || ^12 || >=14}
+
powershell-utils@0.1.0:
resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==}
engines: {node: '>=20'}
@@ -8111,6 +8315,11 @@ packages:
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
+ rolldown@1.1.3:
+ resolution: {integrity: sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
rollup-plugin-visualizer@7.0.1:
resolution: {integrity: sha512-UJUT4+1Ho4OcWmPYU3sYXgUqI8B8Ayfe06MX7y0qCJ1K8aGoKtR/NDd/2nZqM7ADkrzny+I99Ul7GgyoiVNAgg==}
engines: {node: '>=22'}
@@ -8721,6 +8930,7 @@ packages:
tsconfck@3.1.6:
resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==}
engines: {node: ^18 || >=20}
+ deprecated: unmaintained
hasBin: true
peerDependencies:
typescript: ^5.0.0
@@ -9362,6 +9572,49 @@ packages:
yaml:
optional: true
+ vite@8.1.2:
+ resolution: {integrity: sha512-6YYPbRXTxx6bRXmOn7XdnQAy5DQNHhDgtjhDHI13oe4pY93kkcdGJWxpGwOm++/Wh0QpQhDrpIoVMrmrsI5AGQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ '@vitejs/devtools': ^0.3.0
+ esbuild: ^0.27.0 || ^0.28.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ '@vitejs/devtools':
+ optional: true
+ esbuild:
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vitefu@1.1.3:
resolution: {integrity: sha512-ub4okH7Z5KLjb6hDyjqrGXqWtWvoYdU3IGm/NorpgHncKoLTCfRIbvlhBm7r0YstIaQRYlp4yEbFqDcKSzXSSg==}
peerDependencies:
@@ -9558,6 +9811,14 @@ packages:
typescript:
optional: true
+ vue@3.5.39:
+ resolution: {integrity: sha512-xmZCYabFGcirU8r0fTuvl/LICc1OU620rnqepaJDL/a141ZigkG7AyaxQLdqJ02ZRYzWe6YPaDHeQx7MfknQfA==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
w3c-xmlserializer@4.0.0:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
engines: {node: '>=14'}
@@ -9935,10 +10196,10 @@ snapshots:
'@babel/helper-compilation-targets': 7.28.6
'@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
'@babel/helpers': 7.29.2
- '@babel/parser': 7.29.3
+ '@babel/parser': 7.29.7
'@babel/template': 7.28.6
'@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3
@@ -9950,8 +10211,8 @@ snapshots:
'@babel/generator@7.29.1':
dependencies:
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.0.2
@@ -9967,7 +10228,7 @@ snapshots:
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@babel/helper-compilation-targets@7.28.6':
dependencies:
@@ -9995,14 +10256,14 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
'@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.28.6':
dependencies:
'@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
@@ -10010,14 +10271,14 @@ snapshots:
dependencies:
'@babel/core': 7.29.0
'@babel/helper-module-imports': 7.28.6
- '@babel/helper-validator-identifier': 7.28.5
+ '@babel/helper-validator-identifier': 7.29.7
'@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@babel/helper-plugin-utils@7.28.6': {}
@@ -10033,12 +10294,10 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
'@babel/traverse': 7.29.0
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.27.1': {}
-
'@babel/helper-string-parser@7.29.7': {}
'@babel/helper-string-parser@8.0.0-rc.5': {}
@@ -10054,11 +10313,11 @@ snapshots:
'@babel/helpers@7.29.2':
dependencies:
'@babel/template': 7.28.6
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@babel/parser@7.29.3':
dependencies:
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@babel/parser@7.29.7':
dependencies:
@@ -10193,25 +10452,25 @@ snapshots:
'@babel/template@7.28.6':
dependencies:
'@babel/code-frame': 7.29.0
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@babel/traverse@7.29.0':
dependencies:
'@babel/code-frame': 7.29.0
'@babel/generator': 7.29.1
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.29.3
+ '@babel/parser': 7.29.7
'@babel/template': 7.28.6
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
debug: 4.4.3
transitivePeerDependencies:
- supports-color
'@babel/types@7.29.0':
dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
'@babel/types@7.29.7':
dependencies:
@@ -10344,16 +10603,32 @@ snapshots:
tslib: 2.8.1
optional: true
+ '@emnapi/core@1.11.1':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.2
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/runtime@1.10.0':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/wasi-threads@1.2.1':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/wasi-threads@1.2.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emotion/hash@0.9.2': {}
'@esbuild/aix-ppc64@0.21.5':
@@ -11250,6 +11525,13 @@ snapshots:
'@tybys/wasm-util': 0.10.2
optional: true
+ '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@tybys/wasm-util': 0.10.3
+ optional: true
+
'@next/env@14.2.35': {}
'@next/env@16.0.7': {}
@@ -11396,19 +11678,19 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
execa: 8.0.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
transitivePeerDependencies:
- magicast
- '@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@nuxt/devtools-kit@3.2.4(magicast@0.5.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
execa: 8.0.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
transitivePeerDependencies:
- magicast
@@ -11423,12 +11705,12 @@ snapshots:
pkg-types: 2.3.1
semver: 7.8.0
- '@nuxt/devtools@3.2.4(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))':
+ '@nuxt/devtools@3.2.4(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
dependencies:
- '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@nuxt/devtools-wizard': 3.2.4
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@vue/devtools-core': 8.1.2(vue@3.5.34(typescript@5.9.3))
+ '@vue/devtools-core': 8.1.2(vue@3.5.38(typescript@5.9.3))
'@vue/devtools-kit': 8.1.2
birpc: 4.0.0
consola: 3.4.2
@@ -11453,9 +11735,9 @@ snapshots:
sirv: 3.0.2
structured-clone-es: 2.0.0
tinyglobby: 0.2.16
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-plugin-inspect: 11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
- vite-plugin-vue-tracer: 1.4.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-plugin-inspect: 11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite-plugin-vue-tracer: 1.4.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
which: 6.0.1
ws: 8.20.1
transitivePeerDependencies:
@@ -11464,12 +11746,12 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/devtools@3.2.4(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))':
+ '@nuxt/devtools@3.2.4(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))':
dependencies:
- '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@nuxt/devtools-wizard': 3.2.4
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@vue/devtools-core': 8.1.2(vue@3.5.34(typescript@6.0.3))
+ '@vue/devtools-core': 8.1.2(vue@3.5.38(typescript@6.0.3))
'@vue/devtools-kit': 8.1.2
birpc: 4.0.0
consola: 3.4.2
@@ -11494,9 +11776,9 @@ snapshots:
sirv: 3.0.2
structured-clone-es: 2.0.0
tinyglobby: 0.2.16
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-plugin-inspect: 11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
- vite-plugin-vue-tracer: 1.4.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-plugin-inspect: 11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite-plugin-vue-tracer: 1.4.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
which: 6.0.1
ws: 8.20.1
transitivePeerDependencies:
@@ -11530,12 +11812,12 @@ snapshots:
transitivePeerDependencies:
- magicast
- '@nuxt/nitro-server@4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.3)(srvx@0.11.15)(typescript@6.0.3)':
+ '@nuxt/nitro-server@4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.1.3)(srvx@0.11.15)(typescript@5.9.3)':
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@unhead/vue': 2.1.15(vue@3.5.34(typescript@6.0.3))
- '@vue/shared': 3.5.34
+ '@unhead/vue': 2.1.15(vue@3.5.38(typescript@5.9.3))
+ '@vue/shared': 3.5.38
consola: 3.4.2
defu: 6.1.7
destr: 2.0.5
@@ -11547,8 +11829,8 @@ snapshots:
impound: 1.1.5
klona: 2.0.6
mocked-exports: 0.1.1
- nitropack: 2.13.4(oxc-parser@0.131.0)(rolldown@1.0.3)(srvx@0.11.15)
- nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ nitropack: 2.13.4(oxc-parser@0.131.0)(rolldown@1.1.3)(srvx@0.11.15)
+ nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
nypm: 0.6.6
ohash: 2.0.11
pathe: 2.0.3
@@ -11557,7 +11839,7 @@ snapshots:
ufo: 1.6.4
unctx: 2.5.0
unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1)
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
vue-devtools-stub: 0.1.0
optionalDependencies:
@@ -11600,12 +11882,12 @@ snapshots:
- uploadthing
- xml2js
- '@nuxt/nitro-server@4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.3)(typescript@5.9.3)':
+ '@nuxt/nitro-server@4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.1.3)(typescript@6.0.3)':
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@unhead/vue': 2.1.15(vue@3.5.34(typescript@5.9.3))
- '@vue/shared': 3.5.34
+ '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3))
+ '@vue/shared': 3.5.38
consola: 3.4.2
defu: 6.1.7
destr: 2.0.5
@@ -11617,8 +11899,8 @@ snapshots:
impound: 1.1.5
klona: 2.0.6
mocked-exports: 0.1.1
- nitropack: 2.13.4(oxc-parser@0.131.0)(rolldown@1.0.3)(srvx@0.11.15)
- nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ nitropack: 2.13.4(oxc-parser@0.131.0)(rolldown@1.1.3)(srvx@0.11.15)
+ nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
nypm: 0.6.6
ohash: 2.0.11
pathe: 2.0.3
@@ -11627,7 +11909,7 @@ snapshots:
ufo: 1.6.4
unctx: 2.5.0
unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1)
- vue: 3.5.34(typescript@5.9.3)
+ vue: 3.5.38(typescript@6.0.3)
vue-bundle-renderer: 2.2.0
vue-devtools-stub: 0.1.0
optionalDependencies:
@@ -11687,12 +11969,12 @@ snapshots:
rc9: 3.0.1
std-env: 4.1.0
- '@nuxt/vite-builder@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vue@3.5.34(typescript@6.0.3))(yaml@2.9.0)':
+ '@nuxt/vite-builder@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)':
dependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
'@rollup/plugin-replace': 6.0.3(rollup@4.60.4)
- '@vitejs/plugin-vue': 6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
- '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
+ '@vitejs/plugin-vue': 6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
+ '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
autoprefixer: 10.5.0(postcss@8.5.14)
consola: 3.4.2
cssnano: 8.0.1(postcss@8.5.14)
@@ -11705,7 +11987,7 @@ snapshots:
magic-string: 0.30.21
mlly: 1.8.2
mocked-exports: 0.1.1
- nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
nypm: 0.6.6
pathe: 2.0.3
pkg-types: 2.3.1
@@ -11716,13 +11998,13 @@ snapshots:
unenv: 2.0.0-rc.24
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
vite-node: 5.3.0(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vite-plugin-checker: 0.13.0(@biomejs/biome@2.4.15)(eslint@9.39.4(jiti@2.7.0))(optionator@0.9.4)(typescript@6.0.3)(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))
- vue: 3.5.34(typescript@6.0.3)
+ vite-plugin-checker: 0.13.0(@biomejs/biome@2.4.15)(eslint@9.39.4(jiti@2.7.0))(optionator@0.9.4)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))
+ vue: 3.5.38(typescript@5.9.3)
vue-bundle-renderer: 2.2.0
optionalDependencies:
'@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
- rolldown: 1.0.3
- rollup-plugin-visualizer: 7.0.1(rolldown@1.0.3)(rollup@4.60.4)
+ rolldown: 1.1.3
+ rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)(rollup@4.60.4)
transitivePeerDependencies:
- '@biomejs/biome'
- '@types/node'
@@ -11748,12 +12030,12 @@ snapshots:
- vue-tsc
- yaml
- '@nuxt/vite-builder@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))(yaml@2.9.0)':
+ '@nuxt/vite-builder@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3))(yaml@2.9.0)':
dependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
'@rollup/plugin-replace': 6.0.3(rollup@4.60.4)
- '@vitejs/plugin-vue': 6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))
- '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))
+ '@vitejs/plugin-vue': 6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
+ '@vitejs/plugin-vue-jsx': 5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
autoprefixer: 10.5.0(postcss@8.5.14)
consola: 3.4.2
cssnano: 8.0.1(postcss@8.5.14)
@@ -11766,7 +12048,7 @@ snapshots:
magic-string: 0.30.21
mlly: 1.8.2
mocked-exports: 0.1.1
- nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
+ nuxt: 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0)
nypm: 0.6.6
pathe: 2.0.3
pkg-types: 2.3.1
@@ -11777,13 +12059,13 @@ snapshots:
unenv: 2.0.0-rc.24
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
vite-node: 5.3.0(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vite-plugin-checker: 0.13.0(@biomejs/biome@2.4.15)(eslint@9.39.4(jiti@2.7.0))(optionator@0.9.4)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))
- vue: 3.5.34(typescript@5.9.3)
+ vite-plugin-checker: 0.13.0(@biomejs/biome@2.4.15)(eslint@9.39.4(jiti@2.7.0))(optionator@0.9.4)(typescript@6.0.3)(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))
+ vue: 3.5.38(typescript@6.0.3)
vue-bundle-renderer: 2.2.0
optionalDependencies:
'@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
- rolldown: 1.0.3
- rollup-plugin-visualizer: 7.0.1(rolldown@1.0.3)(rollup@4.60.4)
+ rolldown: 1.1.3
+ rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)(rollup@4.60.4)
transitivePeerDependencies:
- '@biomejs/biome'
- '@types/node'
@@ -11943,6 +12225,8 @@ snapshots:
'@oxc-project/types@0.133.0': {}
+ '@oxc-project/types@0.137.0': {}
+
'@oxc-transform/binding-android-arm-eabi@0.131.0':
optional: true
@@ -12291,39 +12575,75 @@ snapshots:
'@rolldown/binding-android-arm64@1.0.3':
optional: true
+ '@rolldown/binding-android-arm64@1.1.3':
+ optional: true
+
'@rolldown/binding-darwin-arm64@1.0.3':
optional: true
+ '@rolldown/binding-darwin-arm64@1.1.3':
+ optional: true
+
'@rolldown/binding-darwin-x64@1.0.3':
optional: true
+ '@rolldown/binding-darwin-x64@1.1.3':
+ optional: true
+
'@rolldown/binding-freebsd-x64@1.0.3':
optional: true
+ '@rolldown/binding-freebsd-x64@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-arm-gnueabihf@1.0.3':
optional: true
+ '@rolldown/binding-linux-arm-gnueabihf@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-arm64-gnu@1.0.3':
optional: true
+ '@rolldown/binding-linux-arm64-gnu@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-arm64-musl@1.0.3':
optional: true
+ '@rolldown/binding-linux-arm64-musl@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-ppc64-gnu@1.0.3':
optional: true
+ '@rolldown/binding-linux-ppc64-gnu@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-s390x-gnu@1.0.3':
optional: true
+ '@rolldown/binding-linux-s390x-gnu@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-x64-gnu@1.0.3':
optional: true
+ '@rolldown/binding-linux-x64-gnu@1.1.3':
+ optional: true
+
'@rolldown/binding-linux-x64-musl@1.0.3':
optional: true
+ '@rolldown/binding-linux-x64-musl@1.1.3':
+ optional: true
+
'@rolldown/binding-openharmony-arm64@1.0.3':
optional: true
+ '@rolldown/binding-openharmony-arm64@1.1.3':
+ optional: true
+
'@rolldown/binding-wasm32-wasi@1.0.3':
dependencies:
'@emnapi/core': 1.10.0
@@ -12331,12 +12651,25 @@ snapshots:
'@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
optional: true
+ '@rolldown/binding-wasm32-wasi@1.1.3':
+ dependencies:
+ '@emnapi/core': 1.11.1
+ '@emnapi/runtime': 1.11.1
+ '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)
+ optional: true
+
'@rolldown/binding-win32-arm64-msvc@1.0.3':
optional: true
+ '@rolldown/binding-win32-arm64-msvc@1.1.3':
+ optional: true
+
'@rolldown/binding-win32-x64-msvc@1.0.3':
optional: true
+ '@rolldown/binding-win32-x64-msvc@1.1.3':
+ optional: true
+
'@rolldown/pluginutils@1.0.1': {}
'@rollup/plugin-alias@6.0.0(rollup@4.60.4)':
@@ -12544,13 +12877,17 @@ snapshots:
dependencies:
acorn: 8.16.0
+ '@sveltejs/acorn-typescript@1.0.10(acorn@8.17.0)':
+ dependencies:
+ acorn: 8.17.0
+
'@sveltejs/acorn-typescript@1.0.9(acorn@8.16.0)':
dependencies:
acorn: 8.16.0
- '@sveltejs/adapter-vercel@6.3.3(@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(rollup@4.60.4)':
+ '@sveltejs/adapter-vercel@6.3.3(@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(rollup@4.60.4)':
dependencies:
- '@sveltejs/kit': 2.65.2(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@sveltejs/kit': 2.65.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
'@vercel/nft': 1.5.0(rollup@4.60.4)
esbuild: 0.25.12
transitivePeerDependencies:
@@ -12558,11 +12895,21 @@ snapshots:
- rollup
- supports-color
- '@sveltejs/kit@2.60.1(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.55.8(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@sveltejs/adapter-vercel@7.0.0-next.0(@sveltejs/kit@3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(rollup@4.60.4)':
+ dependencies:
+ '@sveltejs/kit': 3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@vercel/nft': 1.5.0(rollup@4.60.4)
+ rolldown: 1.0.3
+ transitivePeerDependencies:
+ - encoding
+ - rollup
+ - supports-color
+
+ '@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))':
dependencies:
'@standard-schema/spec': 1.1.0
- '@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0)
- '@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@sveltejs/acorn-typescript': 1.0.10(acorn@8.16.0)
+ '@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
'@types/cookie': 0.6.0
acorn: 8.16.0
cookie: 0.6.0
@@ -12573,25 +12920,39 @@ snapshots:
mrmime: 2.0.1
set-cookie-parser: 3.1.0
sirv: 3.0.2
+ svelte: 5.56.3(@typescript-eslint/types@8.59.4)
+ vite: 5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)
+ optionalDependencies:
+ typescript: 5.9.3
+
+ '@sveltejs/kit@3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.55.8(@typescript-eslint/types@8.59.4))(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ dependencies:
+ '@standard-schema/spec': 1.1.0
+ '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0)
+ '@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ acorn: 8.17.0
+ cookie: 2.0.1
+ devalue: 5.8.1
+ esm-env: 1.2.2
+ magic-string: 0.30.21
+ mrmime: 2.0.1
+ sirv: 3.0.2
svelte: 5.55.8(@typescript-eslint/types@8.59.4)
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
optionalDependencies:
typescript: 5.9.3
- '@sveltejs/kit@2.65.2(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@sveltejs/kit@3.0.0-next.6(@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
'@standard-schema/spec': 1.1.0
- '@sveltejs/acorn-typescript': 1.0.9(acorn@8.16.0)
+ '@sveltejs/acorn-typescript': 1.0.10(acorn@8.17.0)
'@sveltejs/vite-plugin-svelte': 7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
- '@types/cookie': 0.6.0
- acorn: 8.16.0
- cookie: 0.6.0
+ acorn: 8.17.0
+ cookie: 2.0.1
devalue: 5.8.1
esm-env: 1.2.2
- kleur: 4.1.5
magic-string: 0.30.21
mrmime: 2.0.1
- set-cookie-parser: 3.1.0
sirv: 3.0.2
svelte: 5.56.3(@typescript-eslint/types@8.59.4)
vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
@@ -12600,14 +12961,36 @@ snapshots:
'@sveltejs/load-config@0.1.1': {}
- '@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))':
+ dependencies:
+ '@sveltejs/vite-plugin-svelte': 4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
+ debug: 4.4.3
+ svelte: 5.56.3(@typescript-eslint/types@8.59.4)
+ vite: 5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))':
+ dependencies:
+ '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.4(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)))(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
+ debug: 4.4.3
+ deepmerge: 4.3.1
+ kleur: 4.1.5
+ magic-string: 0.30.21
+ svelte: 5.56.3(@typescript-eslint/types@8.59.4)
+ vite: 5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)
+ vitefu: 1.1.3(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1))
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.55.8(@typescript-eslint/types@8.59.4))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
deepmerge: 4.3.1
magic-string: 0.30.21
obug: 2.1.1
svelte: 5.55.8(@typescript-eslint/types@8.59.4)
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vitefu: 1.1.3(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vitefu: 1.1.3(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@sveltejs/vite-plugin-svelte@7.1.2(svelte@5.56.3(@typescript-eslint/types@8.59.4))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
@@ -12766,6 +13149,11 @@ snapshots:
tslib: 2.8.1
optional: true
+ '@tybys/wasm-util@0.10.3':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/acorn@4.0.6':
dependencies:
'@types/estree': 1.0.9
@@ -12774,24 +13162,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.29.3
- '@babel/types': 7.29.0
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@types/chai@5.2.3':
dependencies:
@@ -12983,7 +13371,7 @@ snapshots:
debug: 4.4.3
minimatch: 10.2.5
semver: 7.8.0
- tinyglobby: 0.2.16
+ tinyglobby: 0.2.17
ts-api-utils: 2.5.0(typescript@5.9.3)
typescript: 5.9.3
transitivePeerDependencies:
@@ -13007,17 +13395,17 @@ snapshots:
'@ungap/structured-clone@1.3.1': {}
- '@unhead/vue@2.1.15(vue@3.5.34(typescript@5.9.3))':
+ '@unhead/vue@2.1.15(vue@3.5.38(typescript@5.9.3))':
dependencies:
hookable: 6.1.1
unhead: 2.1.15
- vue: 3.5.34(typescript@5.9.3)
+ vue: 3.5.38(typescript@5.9.3)
- '@unhead/vue@2.1.15(vue@3.5.34(typescript@6.0.3))':
+ '@unhead/vue@2.1.15(vue@3.5.38(typescript@6.0.3))':
dependencies:
hookable: 6.1.1
unhead: 2.1.15
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@6.0.3)
'@unrs/resolver-binding-android-arm-eabi@1.12.1':
optional: true
@@ -13153,7 +13541,7 @@ snapshots:
- rollup
- supports-color
- '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))':
+ '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
@@ -13161,11 +13549,11 @@ snapshots:
'@rolldown/pluginutils': 1.0.1
'@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@5.9.3)
+ vue: 3.5.38(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))':
+ '@vitejs/plugin-vue-jsx@5.1.5(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))':
dependencies:
'@babel/core': 7.29.0
'@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
@@ -13173,27 +13561,27 @@ snapshots:
'@rolldown/pluginutils': 1.0.1
'@vue/babel-plugin-jsx': 2.0.1(@babel/core@7.29.0)
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@6.0.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))':
+ '@vitejs/plugin-vue@6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
dependencies:
'@rolldown/pluginutils': 1.0.1
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@5.9.3)
+ vue: 3.5.38(typescript@5.9.3)
- '@vitejs/plugin-vue@6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))':
+ '@vitejs/plugin-vue@6.0.7(vite@7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))':
dependencies:
'@rolldown/pluginutils': 1.0.1
vite: 7.3.3(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@6.0.3)
- '@vitejs/plugin-vue@6.0.7(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))':
+ '@vitejs/plugin-vue@6.0.7(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.39(typescript@6.0.3))':
dependencies:
'@rolldown/pluginutils': 1.0.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.38(typescript@6.0.3)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vue: 3.5.39(typescript@6.0.3)
'@vitest/expect@4.1.6':
dependencies:
@@ -13204,13 +13592,13 @@ snapshots:
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.6(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
+ '@vitest/mocker@4.1.6(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))':
dependencies:
'@vitest/spy': 4.1.6
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
'@vitest/pretty-format@4.1.6':
dependencies:
@@ -13288,7 +13676,7 @@ snapshots:
'@vue-macros/common@3.1.2(vue@3.5.34(typescript@5.9.3))':
dependencies:
- '@vue/compiler-sfc': 3.5.34
+ '@vue/compiler-sfc': 3.5.38
ast-kit: 2.2.0
local-pkg: 1.1.2
magic-string-ast: 1.0.3
@@ -13296,19 +13684,19 @@ snapshots:
optionalDependencies:
vue: 3.5.34(typescript@5.9.3)
- '@vue-macros/common@3.1.2(vue@3.5.34(typescript@6.0.3))':
+ '@vue-macros/common@3.1.2(vue@3.5.38(typescript@5.9.3))':
dependencies:
- '@vue/compiler-sfc': 3.5.34
+ '@vue/compiler-sfc': 3.5.38
ast-kit: 2.2.0
local-pkg: 1.1.2
magic-string-ast: 1.0.3
unplugin-utils: 0.3.1
optionalDependencies:
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@5.9.3)
'@vue-macros/common@3.1.2(vue@3.5.38(typescript@6.0.3))':
dependencies:
- '@vue/compiler-sfc': 3.5.34
+ '@vue/compiler-sfc': 3.5.38
ast-kit: 2.2.0
local-pkg: 1.1.2
magic-string-ast: 1.0.3
@@ -13316,6 +13704,16 @@ snapshots:
optionalDependencies:
vue: 3.5.38(typescript@6.0.3)
+ '@vue-macros/common@3.1.2(vue@3.5.39(typescript@6.0.3))':
+ dependencies:
+ '@vue/compiler-sfc': 3.5.38
+ ast-kit: 2.2.0
+ local-pkg: 1.1.2
+ magic-string-ast: 1.0.3
+ unplugin-utils: 0.3.1
+ optionalDependencies:
+ vue: 3.5.39(typescript@6.0.3)
+
'@vue/babel-helper-vue-transform-on@2.0.1': {}
'@vue/babel-plugin-jsx@2.0.1(@babel/core@7.29.0)':
@@ -13328,7 +13726,7 @@ snapshots:
'@babel/types': 7.29.0
'@vue/babel-helper-vue-transform-on': 2.0.1
'@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0)
- '@vue/shared': 3.5.34
+ '@vue/shared': 3.5.38
optionalDependencies:
'@babel/core': 7.29.0
transitivePeerDependencies:
@@ -13340,14 +13738,14 @@ snapshots:
'@babel/core': 7.29.0
'@babel/helper-module-imports': 7.28.6
'@babel/helper-plugin-utils': 7.28.6
- '@babel/parser': 7.29.3
- '@vue/compiler-sfc': 3.5.34
+ '@babel/parser': 7.29.7
+ '@vue/compiler-sfc': 3.5.38
transitivePeerDependencies:
- supports-color
'@vue/compiler-core@3.5.34':
dependencies:
- '@babel/parser': 7.29.3
+ '@babel/parser': 7.29.7
'@vue/shared': 3.5.34
entities: 7.0.1
estree-walker: 2.0.2
@@ -13361,6 +13759,14 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.1
+ '@vue/compiler-core@3.5.39':
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@vue/shared': 3.5.39
+ entities: 7.0.1
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
'@vue/compiler-dom@3.5.34':
dependencies:
'@vue/compiler-core': 3.5.34
@@ -13371,6 +13777,11 @@ snapshots:
'@vue/compiler-core': 3.5.38
'@vue/shared': 3.5.38
+ '@vue/compiler-dom@3.5.39':
+ dependencies:
+ '@vue/compiler-core': 3.5.39
+ '@vue/shared': 3.5.39
+
'@vue/compiler-sfc@3.5.34':
dependencies:
'@babel/parser': 7.29.3
@@ -13395,6 +13806,18 @@ snapshots:
postcss: 8.5.15
source-map-js: 1.2.1
+ '@vue/compiler-sfc@3.5.39':
+ dependencies:
+ '@babel/parser': 7.29.7
+ '@vue/compiler-core': 3.5.39
+ '@vue/compiler-dom': 3.5.39
+ '@vue/compiler-ssr': 3.5.39
+ '@vue/shared': 3.5.39
+ estree-walker: 2.0.2
+ magic-string: 0.30.21
+ postcss: 8.5.15
+ source-map-js: 1.2.1
+
'@vue/compiler-ssr@3.5.34':
dependencies:
'@vue/compiler-dom': 3.5.34
@@ -13405,21 +13828,26 @@ snapshots:
'@vue/compiler-dom': 3.5.38
'@vue/shared': 3.5.38
+ '@vue/compiler-ssr@3.5.39':
+ dependencies:
+ '@vue/compiler-dom': 3.5.39
+ '@vue/shared': 3.5.39
+
'@vue/devtools-api@8.1.2':
dependencies:
'@vue/devtools-kit': 8.1.2
- '@vue/devtools-core@8.1.2(vue@3.5.34(typescript@5.9.3))':
+ '@vue/devtools-core@8.1.2(vue@3.5.38(typescript@5.9.3))':
dependencies:
'@vue/devtools-kit': 8.1.2
'@vue/devtools-shared': 8.1.2
- vue: 3.5.34(typescript@5.9.3)
+ vue: 3.5.38(typescript@5.9.3)
- '@vue/devtools-core@8.1.2(vue@3.5.34(typescript@6.0.3))':
+ '@vue/devtools-core@8.1.2(vue@3.5.38(typescript@6.0.3))':
dependencies:
'@vue/devtools-kit': 8.1.2
'@vue/devtools-shared': 8.1.2
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@6.0.3)
'@vue/devtools-kit@8.1.2':
dependencies:
@@ -13438,6 +13866,10 @@ snapshots:
dependencies:
'@vue/shared': 3.5.38
+ '@vue/reactivity@3.5.39':
+ dependencies:
+ '@vue/shared': 3.5.39
+
'@vue/runtime-core@3.5.34':
dependencies:
'@vue/reactivity': 3.5.34
@@ -13448,6 +13880,11 @@ snapshots:
'@vue/reactivity': 3.5.38
'@vue/shared': 3.5.38
+ '@vue/runtime-core@3.5.39':
+ dependencies:
+ '@vue/reactivity': 3.5.39
+ '@vue/shared': 3.5.39
+
'@vue/runtime-dom@3.5.34':
dependencies:
'@vue/reactivity': 3.5.34
@@ -13462,17 +13899,24 @@ snapshots:
'@vue/shared': 3.5.38
csstype: 3.2.3
+ '@vue/runtime-dom@3.5.39':
+ dependencies:
+ '@vue/reactivity': 3.5.39
+ '@vue/runtime-core': 3.5.39
+ '@vue/shared': 3.5.39
+ csstype: 3.2.3
+
'@vue/server-renderer@3.5.34(vue@3.5.34(typescript@5.9.3))':
dependencies:
'@vue/compiler-ssr': 3.5.34
'@vue/shared': 3.5.34
vue: 3.5.34(typescript@5.9.3)
- '@vue/server-renderer@3.5.34(vue@3.5.34(typescript@6.0.3))':
+ '@vue/server-renderer@3.5.38(vue@3.5.38(typescript@5.9.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.34
- '@vue/shared': 3.5.34
- vue: 3.5.34(typescript@6.0.3)
+ '@vue/compiler-ssr': 3.5.38
+ '@vue/shared': 3.5.38
+ vue: 3.5.38(typescript@5.9.3)
'@vue/server-renderer@3.5.38(vue@3.5.38(typescript@6.0.3))':
dependencies:
@@ -13480,10 +13924,18 @@ snapshots:
'@vue/shared': 3.5.38
vue: 3.5.38(typescript@6.0.3)
+ '@vue/server-renderer@3.5.39(vue@3.5.39(typescript@6.0.3))':
+ dependencies:
+ '@vue/compiler-ssr': 3.5.39
+ '@vue/shared': 3.5.39
+ vue: 3.5.39(typescript@6.0.3)
+
'@vue/shared@3.5.34': {}
'@vue/shared@3.5.38': {}
+ '@vue/shared@3.5.39': {}
+
'@web3-storage/multipart-parser@1.0.0': {}
'@zxing/text-encoding@0.9.0':
@@ -13515,12 +13967,18 @@ snapshots:
dependencies:
acorn: 8.16.0
+ acorn-jsx@5.3.2(acorn@8.17.0):
+ dependencies:
+ acorn: 8.17.0
+
acorn-walk@8.3.5:
dependencies:
acorn: 8.16.0
acorn@8.16.0: {}
+ acorn@8.17.0: {}
+
agent-base@6.0.2:
dependencies:
debug: 4.4.3
@@ -13871,7 +14329,7 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
'@babel/template': 7.28.6
- '@babel/types': 7.29.0
+ '@babel/types': 7.29.7
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.28.0
@@ -14310,6 +14768,8 @@ snapshots:
cookie@1.1.1: {}
+ cookie@2.0.1: {}
+
core-util-is@1.0.3: {}
crc-32@1.2.2: {}
@@ -15017,7 +15477,7 @@ snapshots:
get-tsconfig: 4.14.0
is-bun-module: 2.0.0
stable-hash: 0.0.5
- tinyglobby: 0.2.16
+ tinyglobby: 0.2.17
unrs-resolver: 1.12.1
optionalDependencies:
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.4(eslint@9.39.4(jiti@2.7.0))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@2.7.0))
@@ -15165,8 +15625,8 @@ snapshots:
espree@10.4.0:
dependencies:
- acorn: 8.16.0
- acorn-jsx: 5.3.2(acorn@8.16.0)
+ acorn: 8.17.0
+ acorn-jsx: 5.3.2(acorn@8.17.0)
eslint-visitor-keys: 4.2.1
esprima@4.0.1: {}
@@ -16114,7 +16574,7 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
'@babel/core': 7.29.0
- '@babel/parser': 7.29.3
+ '@babel/parser': 7.29.7
'@istanbuljs/schema': 0.1.6
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -16124,7 +16584,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.29.0
- '@babel/parser': 7.29.3
+ '@babel/parser': 7.29.7
'@istanbuljs/schema': 0.1.6
istanbul-lib-coverage: 3.2.2
semver: 7.8.0
@@ -17687,7 +18147,7 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- nitropack@2.13.4(oxc-parser@0.131.0)(rolldown@1.0.3)(srvx@0.11.15):
+ nitropack@2.13.4(oxc-parser@0.131.0)(rolldown@1.1.3)(srvx@0.11.15):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.2
'@rollup/plugin-alias': 6.0.0(rollup@4.60.4)
@@ -17740,7 +18200,7 @@ snapshots:
pretty-bytes: 7.1.0
radix3: 1.1.2
rollup: 4.60.4
- rollup-plugin-visualizer: 7.0.1(rolldown@1.0.3)(rollup@4.60.4)
+ rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)(rollup@4.60.4)
scule: 1.3.0
semver: 7.8.0
serve-placeholder: 2.0.2
@@ -17752,7 +18212,7 @@ snapshots:
uncrypto: 0.1.3
unctx: 2.5.0
unenv: 2.0.0-rc.24
- unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.0.3)
+ unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.1.3)
unplugin-utils: 0.3.1
unstorage: 1.17.5(db0@0.3.4)(ioredis@5.10.1)
untyped: 2.0.0
@@ -17871,17 +18331,17 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0):
+ nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0):
dependencies:
- '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@6.0.3)
+ '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@5.9.3)
'@nuxt/cli': 3.35.2(@nuxt/schema@4.4.6)(cac@6.7.14)(magicast@0.5.3)
- '@nuxt/devtools': 3.2.4(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3))
+ '@nuxt/devtools': 3.2.4(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@nuxt/nitro-server': 4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.3)(srvx@0.11.15)(typescript@6.0.3)
+ '@nuxt/nitro-server': 4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.1.3)(srvx@0.11.15)(typescript@5.9.3)
'@nuxt/schema': 4.4.6
'@nuxt/telemetry': 2.8.0(@nuxt/kit@4.4.6(magicast@0.5.3))
- '@nuxt/vite-builder': 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@6.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vue@3.5.34(typescript@6.0.3))(yaml@2.9.0)
- '@unhead/vue': 2.1.15(vue@3.5.34(typescript@6.0.3))
+ '@nuxt/vite-builder': 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(srvx@0.11.15)(terser@5.47.1)(typescript@5.9.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)
+ '@unhead/vue': 2.1.15(vue@3.5.38(typescript@5.9.3))
'@vue/shared': 3.5.34
chokidar: 5.0.0
compatx: 0.2.0
@@ -17908,7 +18368,7 @@ snapshots:
oxc-minify: 0.131.0
oxc-parser: 0.131.0
oxc-transform: 0.131.0
- oxc-walker: 1.0.0(oxc-parser@0.131.0)(rolldown@1.0.3)
+ oxc-walker: 1.0.0(oxc-parser@0.131.0)(rolldown@1.1.3)
pathe: 2.0.3
perfect-debounce: 2.1.0
picomatch: 4.0.4
@@ -17922,12 +18382,12 @@ snapshots:
ultrahtml: 1.6.0
uncrypto: 0.1.3
unctx: 2.5.0
- unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.0.3)
+ unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.1.3)
unplugin: 3.0.0
unrouting: 0.1.7
untyped: 2.0.0
- vue: 3.5.34(typescript@6.0.3)
- vue-router: 5.0.7(@vue/compiler-sfc@3.5.38)(vue@3.5.34(typescript@6.0.3))
+ vue: 3.5.38(typescript@5.9.3)
+ vue-router: 5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.38(typescript@5.9.3))
optionalDependencies:
'@parcel/watcher': 2.5.6
'@types/node': 22.19.19
@@ -18001,17 +18461,17 @@ snapshots:
- xml2js
- yaml
- nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0):
+ nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0):
dependencies:
- '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@5.9.3)
+ '@dxup/nuxt': 0.4.1(magicast@0.5.3)(typescript@6.0.3)
'@nuxt/cli': 3.35.2(@nuxt/schema@4.4.6)(cac@6.7.14)(magicast@0.5.3)
- '@nuxt/devtools': 3.2.4(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3))
+ '@nuxt/devtools': 3.2.4(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3))
'@nuxt/kit': 4.4.6(magicast@0.5.3)
- '@nuxt/nitro-server': 4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.0.3)(typescript@5.9.3)
+ '@nuxt/nitro-server': 4.4.6(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(db0@0.3.4)(ioredis@5.10.1)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(oxc-parser@0.131.0)(rolldown@1.1.3)(typescript@6.0.3)
'@nuxt/schema': 4.4.6
'@nuxt/telemetry': 2.8.0(@nuxt/kit@4.4.6(magicast@0.5.3))
- '@nuxt/vite-builder': 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.38)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.0.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))(yaml@2.9.0)
- '@unhead/vue': 2.1.15(vue@3.5.34(typescript@5.9.3))
+ '@nuxt/vite-builder': 4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@types/node@22.19.19)(eslint@9.39.4(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(nuxt@4.4.6(@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0))(@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0))(@biomejs/biome@2.4.15)(@parcel/watcher@2.5.6)(@types/node@22.19.19)(@vue/compiler-sfc@3.5.39)(cac@6.7.14)(db0@0.3.4)(eslint@9.39.4(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(yaml@2.9.0))(optionator@0.9.4)(rolldown@1.1.3)(rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4))(rollup@4.60.4)(terser@5.47.1)(typescript@6.0.3)(vue@3.5.38(typescript@6.0.3))(yaml@2.9.0)
+ '@unhead/vue': 2.1.15(vue@3.5.38(typescript@6.0.3))
'@vue/shared': 3.5.34
chokidar: 5.0.0
compatx: 0.2.0
@@ -18038,7 +18498,7 @@ snapshots:
oxc-minify: 0.131.0
oxc-parser: 0.131.0
oxc-transform: 0.131.0
- oxc-walker: 1.0.0(oxc-parser@0.131.0)(rolldown@1.0.3)
+ oxc-walker: 1.0.0(oxc-parser@0.131.0)(rolldown@1.1.3)
pathe: 2.0.3
perfect-debounce: 2.1.0
picomatch: 4.0.4
@@ -18052,12 +18512,12 @@ snapshots:
ultrahtml: 1.6.0
uncrypto: 0.1.3
unctx: 2.5.0
- unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.0.3)
+ unimport: 6.3.0(oxc-parser@0.131.0)(rolldown@1.1.3)
unplugin: 3.0.0
unrouting: 0.1.7
untyped: 2.0.0
- vue: 3.5.34(typescript@5.9.3)
- vue-router: 5.0.7(@vue/compiler-sfc@3.5.38)(vue@3.5.34(typescript@5.9.3))
+ vue: 3.5.38(typescript@6.0.3)
+ vue-router: 5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.38(typescript@6.0.3))
optionalDependencies:
'@parcel/watcher': 2.5.6
'@types/node': 22.19.19
@@ -18348,12 +18808,12 @@ snapshots:
'@oxc-transform/binding-win32-ia32-msvc': 0.131.0
'@oxc-transform/binding-win32-x64-msvc': 0.131.0
- oxc-walker@1.0.0(oxc-parser@0.131.0)(rolldown@1.0.3):
+ oxc-walker@1.0.0(oxc-parser@0.131.0)(rolldown@1.1.3):
dependencies:
magic-regexp: 0.11.0
optionalDependencies:
oxc-parser: 0.131.0
- rolldown: 1.0.3
+ rolldown: 1.1.3
p-limit@2.3.0:
dependencies:
@@ -18577,12 +19037,12 @@ snapshots:
postcss: 8.5.14
yaml: 2.9.0
- postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.15)(yaml@2.9.0):
+ postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.14)(yaml@2.9.0):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.7.0
- postcss: 8.5.15
+ postcss: 8.5.14
yaml: 2.9.0
postcss-merge-longhand@8.0.0(postcss@8.5.14):
@@ -18767,6 +19227,12 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.16:
+ dependencies:
+ nanoid: 3.3.12
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
powershell-utils@0.1.0: {}
prelude-ls@1.2.1: {}
@@ -19215,14 +19681,35 @@ snapshots:
'@rolldown/binding-win32-arm64-msvc': 1.0.3
'@rolldown/binding-win32-x64-msvc': 1.0.3
- rollup-plugin-visualizer@7.0.1(rolldown@1.0.3)(rollup@4.60.4):
+ rolldown@1.1.3:
+ dependencies:
+ '@oxc-project/types': 0.137.0
+ '@rolldown/pluginutils': 1.0.1
+ optionalDependencies:
+ '@rolldown/binding-android-arm64': 1.1.3
+ '@rolldown/binding-darwin-arm64': 1.1.3
+ '@rolldown/binding-darwin-x64': 1.1.3
+ '@rolldown/binding-freebsd-x64': 1.1.3
+ '@rolldown/binding-linux-arm-gnueabihf': 1.1.3
+ '@rolldown/binding-linux-arm64-gnu': 1.1.3
+ '@rolldown/binding-linux-arm64-musl': 1.1.3
+ '@rolldown/binding-linux-ppc64-gnu': 1.1.3
+ '@rolldown/binding-linux-s390x-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-gnu': 1.1.3
+ '@rolldown/binding-linux-x64-musl': 1.1.3
+ '@rolldown/binding-openharmony-arm64': 1.1.3
+ '@rolldown/binding-wasm32-wasi': 1.1.3
+ '@rolldown/binding-win32-arm64-msvc': 1.1.3
+ '@rolldown/binding-win32-x64-msvc': 1.1.3
+
+ rollup-plugin-visualizer@7.0.1(rolldown@1.1.3)(rollup@4.60.4):
dependencies:
open: 11.0.0
picomatch: 4.0.4
source-map: 0.7.6
yargs: 18.0.0
optionalDependencies:
- rolldown: 1.0.3
+ rolldown: 1.1.3
rollup: 4.60.4
rollup@4.60.4:
@@ -19757,6 +20244,19 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
+ svelte-check@4.6.0(picomatch@4.0.4)(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@5.9.3):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.31
+ '@sveltejs/load-config': 0.1.1
+ chokidar: 4.0.3
+ fdir: 6.5.0(picomatch@4.0.4)
+ picocolors: 1.1.1
+ sade: 1.8.1
+ svelte: 5.56.3(@typescript-eslint/types@8.59.4)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - picomatch
+
svelte-check@4.6.0(picomatch@4.0.4)(svelte@5.56.3(@typescript-eslint/types@8.59.4))(typescript@6.0.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
@@ -20040,7 +20540,7 @@ snapshots:
tslib@2.8.1: {}
- tsup@8.3.5(@swc/core@1.15.33(@swc/helpers@0.5.21))(jiti@2.7.0)(postcss@8.5.15)(typescript@5.9.3)(yaml@2.9.0):
+ tsup@8.3.5(@swc/core@1.15.33(@swc/helpers@0.5.21))(jiti@2.7.0)(postcss@8.5.14)(typescript@5.9.3)(yaml@2.9.0):
dependencies:
bundle-require: 5.1.0(esbuild@0.24.2)
cac: 6.7.14
@@ -20050,7 +20550,7 @@ snapshots:
esbuild: 0.24.2
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.15)(yaml@2.9.0)
+ postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.14)(yaml@2.9.0)
resolve-from: 5.0.0
rollup: 4.60.4
source-map: 0.8.0-beta.0
@@ -20060,7 +20560,7 @@ snapshots:
tree-kill: 1.2.2
optionalDependencies:
'@swc/core': 1.15.33(@swc/helpers@0.5.21)
- postcss: 8.5.15
+ postcss: 8.5.14
typescript: 5.9.3
transitivePeerDependencies:
- jiti
@@ -20214,7 +20714,7 @@ snapshots:
ofetch: 1.5.1
ohash: 2.0.11
- unimport@6.3.0(oxc-parser@0.131.0)(rolldown@1.0.3):
+ unimport@6.3.0(oxc-parser@0.131.0)(rolldown@1.1.3):
dependencies:
acorn: 8.16.0
escape-string-regexp: 5.0.0
@@ -20232,7 +20732,7 @@ snapshots:
unplugin-utils: 0.3.1
optionalDependencies:
oxc-parser: 0.131.0
- rolldown: 1.0.3
+ rolldown: 1.1.3
unique-filename@3.0.0:
dependencies:
@@ -20493,25 +20993,25 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vite-dev-rpc@1.1.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-dev-rpc@1.1.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
birpc: 2.9.0
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-hot-client: 2.2.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-hot-client: 2.2.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
- vite-dev-rpc@1.1.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-dev-rpc@1.1.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
birpc: 2.9.0
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-hot-client: 2.2.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-hot-client: 2.2.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
- vite-hot-client@2.2.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-hot-client@2.2.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-hot-client@2.2.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-hot-client@2.2.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
vite-node@1.6.1(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1):
dependencies:
@@ -20605,7 +21105,7 @@ snapshots:
optionator: 0.9.4
typescript: 6.0.3
- vite-plugin-inspect@11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-plugin-inspect@11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
ansis: 4.3.0
debug: 4.4.3
@@ -20615,14 +21115,14 @@ snapshots:
perfect-debounce: 2.1.0
sirv: 3.0.2
unplugin-utils: 0.3.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-dev-rpc: 1.1.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-dev-rpc: 1.1.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
optionalDependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
transitivePeerDependencies:
- supports-color
- vite-plugin-inspect@11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vite-plugin-inspect@11.3.3(@nuxt/kit@4.4.6(magicast@0.5.3))(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
ansis: 4.3.0
debug: 4.4.3
@@ -20632,32 +21132,32 @@ snapshots:
perfect-debounce: 2.1.0
sirv: 3.0.2
unplugin-utils: 0.3.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vite-dev-rpc: 1.1.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite-dev-rpc: 1.1.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
optionalDependencies:
'@nuxt/kit': 4.4.6(magicast@0.5.3)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-tracer@1.4.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@5.9.3)):
+ vite-plugin-vue-tracer@1.4.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.8
magic-string: 0.30.21
pathe: 2.0.3
source-map-js: 1.2.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@5.9.3)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vue: 3.5.38(typescript@5.9.3)
- vite-plugin-vue-tracer@1.4.0(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.34(typescript@6.0.3)):
+ vite-plugin-vue-tracer@1.4.0(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)):
dependencies:
estree-walker: 3.0.3
exsolve: 1.0.8
magic-string: 0.30.21
pathe: 2.0.3
source-map-js: 1.2.1
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vue: 3.5.34(typescript@6.0.3)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vue: 3.5.38(typescript@6.0.3)
vite-tsconfig-paths@4.3.2(typescript@5.9.3)(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)):
dependencies:
@@ -20702,7 +21202,7 @@ snapshots:
esbuild: 0.27.7
fdir: 6.5.0(picomatch@4.0.4)
picomatch: 4.0.4
- postcss: 8.5.14
+ postcss: 8.5.15
rollup: 4.60.4
tinyglobby: 0.2.16
optionalDependencies:
@@ -20713,13 +21213,28 @@ snapshots:
terser: 5.47.1
yaml: 2.9.0
- vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0):
+ vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0):
dependencies:
lightningcss: 1.32.0
picomatch: 4.0.4
postcss: 8.5.15
rolldown: 1.0.3
tinyglobby: 0.2.17
+ optionalDependencies:
+ '@types/node': 22.19.19
+ esbuild: 0.28.0
+ fsevents: 2.3.3
+ jiti: 2.7.0
+ terser: 5.47.1
+ yaml: 2.9.0
+
+ vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0):
+ dependencies:
+ lightningcss: 1.32.0
+ picomatch: 4.0.4
+ postcss: 8.5.16
+ rolldown: 1.1.3
+ tinyglobby: 0.2.17
optionalDependencies:
'@types/node': 22.19.19
esbuild: 0.24.2
@@ -20728,12 +21243,12 @@ snapshots:
terser: 5.47.1
yaml: 2.9.0
- vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0):
+ vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0):
dependencies:
lightningcss: 1.32.0
picomatch: 4.0.4
- postcss: 8.5.15
- rolldown: 1.0.3
+ postcss: 8.5.16
+ rolldown: 1.1.3
tinyglobby: 0.2.17
optionalDependencies:
'@types/node': 22.19.19
@@ -20743,22 +21258,26 @@ snapshots:
terser: 5.47.1
yaml: 2.9.0
- vitefu@1.1.3(vite@6.4.2(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)):
+ vitefu@1.1.3(vite@5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)):
optionalDependencies:
- vite: 6.4.2(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 5.4.21(@types/node@22.19.19)(lightningcss@1.32.0)(terser@5.47.1)
- vitefu@1.1.3(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vitefu@1.1.3(vite@6.4.2(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)):
optionalDependencies:
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 6.4.2(@types/node@22.19.19)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.47.1)(yaml@2.9.0)
vitefu@1.1.3(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
optionalDependencies:
vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
- vitest@4.1.6(@types/node@22.19.19)(jsdom@20.0.3)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ vitefu@1.1.3(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
+ optionalDependencies:
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+
+ vitest@4.1.6(@types/node@22.19.19)(jsdom@20.0.3)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)):
dependencies:
'@vitest/expect': 4.1.6
- '@vitest/mocker': 4.1.6(vite@8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
+ '@vitest/mocker': 4.1.6(vite@8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))
'@vitest/pretty-format': 4.1.6
'@vitest/runner': 4.1.6
'@vitest/snapshot': 4.1.6
@@ -20775,7 +21294,7 @@ snapshots:
tinyexec: 1.1.2
tinyglobby: 0.2.16
tinyrainbow: 3.1.0
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.24.2)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.19.19
@@ -20886,7 +21405,7 @@ snapshots:
vue-devtools-stub@0.1.0: {}
- vue-router@5.0.7(@vue/compiler-sfc@3.5.38)(vue@3.5.34(typescript@5.9.3)):
+ vue-router@5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.34(typescript@5.9.3)):
dependencies:
'@babel/generator': 8.0.0-rc.5
'@vue-macros/common': 3.1.2(vue@3.5.34(typescript@5.9.3))
@@ -20907,12 +21426,12 @@ snapshots:
vue: 3.5.34(typescript@5.9.3)
yaml: 2.9.0
optionalDependencies:
- '@vue/compiler-sfc': 3.5.38
+ '@vue/compiler-sfc': 3.5.39
- vue-router@5.0.7(@vue/compiler-sfc@3.5.38)(vue@3.5.34(typescript@6.0.3)):
+ vue-router@5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.38(typescript@5.9.3)):
dependencies:
'@babel/generator': 8.0.0-rc.5
- '@vue-macros/common': 3.1.2(vue@3.5.34(typescript@6.0.3))
+ '@vue-macros/common': 3.1.2(vue@3.5.38(typescript@5.9.3))
'@vue/devtools-api': 8.1.2
ast-walker-scope: 0.8.3
chokidar: 5.0.0
@@ -20927,17 +21446,17 @@ snapshots:
tinyglobby: 0.2.16
unplugin: 3.0.0
unplugin-utils: 0.3.1
- vue: 3.5.34(typescript@6.0.3)
+ vue: 3.5.38(typescript@5.9.3)
yaml: 2.9.0
optionalDependencies:
- '@vue/compiler-sfc': 3.5.38
+ '@vue/compiler-sfc': 3.5.39
- vue-router@5.1.0(@vue/compiler-sfc@3.5.38)(vite@8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.38(typescript@6.0.3)):
+ vue-router@5.0.7(@vue/compiler-sfc@3.5.39)(vue@3.5.38(typescript@6.0.3)):
dependencies:
'@babel/generator': 8.0.0-rc.5
'@vue-macros/common': 3.1.2(vue@3.5.38(typescript@6.0.3))
'@vue/devtools-api': 8.1.2
- ast-walker-scope: 0.9.0
+ ast-walker-scope: 0.8.3
chokidar: 5.0.0
json5: 2.2.3
local-pkg: 1.1.2
@@ -20953,8 +21472,31 @@ snapshots:
vue: 3.5.38(typescript@6.0.3)
yaml: 2.9.0
optionalDependencies:
- '@vue/compiler-sfc': 3.5.38
- vite: 8.0.16(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
+ '@vue/compiler-sfc': 3.5.39
+
+ vue-router@5.1.0(@vue/compiler-sfc@3.5.39)(vite@8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0))(vue@3.5.39(typescript@6.0.3)):
+ dependencies:
+ '@babel/generator': 8.0.0-rc.5
+ '@vue-macros/common': 3.1.2(vue@3.5.39(typescript@6.0.3))
+ '@vue/devtools-api': 8.1.2
+ ast-walker-scope: 0.9.0
+ chokidar: 5.0.0
+ json5: 2.2.3
+ local-pkg: 1.1.2
+ magic-string: 0.30.21
+ mlly: 1.8.2
+ muggle-string: 0.4.1
+ pathe: 2.0.3
+ picomatch: 4.0.4
+ scule: 1.3.0
+ tinyglobby: 0.2.16
+ unplugin: 3.0.0
+ unplugin-utils: 0.3.1
+ vue: 3.5.39(typescript@6.0.3)
+ yaml: 2.9.0
+ optionalDependencies:
+ '@vue/compiler-sfc': 3.5.39
+ vite: 8.1.2(@types/node@22.19.19)(esbuild@0.28.0)(jiti@2.7.0)(terser@5.47.1)(yaml@2.9.0)
vue@3.5.34(typescript@5.9.3):
dependencies:
@@ -20966,15 +21508,15 @@ snapshots:
optionalDependencies:
typescript: 5.9.3
- vue@3.5.34(typescript@6.0.3):
+ vue@3.5.38(typescript@5.9.3):
dependencies:
- '@vue/compiler-dom': 3.5.34
- '@vue/compiler-sfc': 3.5.34
- '@vue/runtime-dom': 3.5.34
- '@vue/server-renderer': 3.5.34(vue@3.5.34(typescript@6.0.3))
- '@vue/shared': 3.5.34
+ '@vue/compiler-dom': 3.5.38
+ '@vue/compiler-sfc': 3.5.38
+ '@vue/runtime-dom': 3.5.38
+ '@vue/server-renderer': 3.5.38(vue@3.5.38(typescript@5.9.3))
+ '@vue/shared': 3.5.38
optionalDependencies:
- typescript: 6.0.3
+ typescript: 5.9.3
vue@3.5.38(typescript@6.0.3):
dependencies:
@@ -20986,6 +21528,16 @@ snapshots:
optionalDependencies:
typescript: 6.0.3
+ vue@3.5.39(typescript@6.0.3):
+ dependencies:
+ '@vue/compiler-dom': 3.5.39
+ '@vue/compiler-sfc': 3.5.39
+ '@vue/runtime-dom': 3.5.39
+ '@vue/server-renderer': 3.5.39(vue@3.5.39(typescript@6.0.3))
+ '@vue/shared': 3.5.39
+ optionalDependencies:
+ typescript: 6.0.3
+
w3c-xmlserializer@4.0.0:
dependencies:
xml-name-validator: 4.0.0
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 67eade1..78fb4a9 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -14,4 +14,5 @@ allowBuilds:
minimumReleaseAge: 2880
minimumReleaseAgeExclude:
+ - '@sveltejs/kit'
- '@vercel/*'