diff --git a/.changeset/neat-beans-yell.md b/.changeset/neat-beans-yell.md
new file mode 100644
index 00000000..17dccf24
--- /dev/null
+++ b/.changeset/neat-beans-yell.md
@@ -0,0 +1,15 @@
+---
+"@codecov/nextjs-webpack-plugin": minor
+"@codecov/bundler-plugin-core": minor
+"@codecov/remix-vite-plugin": minor
+"@codecov/solidstart-plugin": minor
+"@codecov/sveltekit-plugin": minor
+"@codecov/bundle-analyzer": minor
+"@codecov/webpack-plugin": minor
+"@codecov/rollup-plugin": minor
+"@codecov/astro-plugin": minor
+"@codecov/nuxt-plugin": minor
+"@codecov/vite-plugin": minor
+---
+
+Add in support for Vite V6, Astro V5, and update related dependencies
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1aa3a771..cd034fcc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -285,6 +285,7 @@ jobs:
example:
[
"astro",
+ "astro-5",
"bundle-analyzer-cli",
"bundle-analyzer-lib-cjs",
"bundle-analyzer-lib-esm",
@@ -349,6 +350,8 @@ jobs:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
ASTRO_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
ASTRO_API_URL: ${{ secrets.CODECOV_API_URL }}
+ ASTRO_5_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
+ ASTRO_5_API_URL: ${{ secrets.CODECOV_API_URL }}
BUNDLE_ANALYZER_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
BUNDLE_ANALYZER_API_URL: ${{ secrets.CODECOV_API_URL }}
NEXT_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}
@@ -382,6 +385,7 @@ jobs:
example:
[
"astro",
+ "astro-5",
"bundle-analyzer-cli",
"bundle-analyzer-lib-cjs",
"bundle-analyzer-lib-esm",
@@ -446,6 +450,8 @@ jobs:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
ASTRO_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN_STAGING }}
ASTRO_API_URL: ${{ secrets.CODECOV_STAGING_API_URL }}
+ ASTRO_5_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN_STAGING }}
+ ASTRO_5_API_URL: ${{ secrets.CODECOV_STAGING_API_URL }}
BUNDLE_ANALYZER_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN_STAGING }}
BUNDLE_ANALYZER_API_URL: ${{ secrets.CODECOV_STAGING_API_URL }}
NEXT_UPLOAD_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN_STAGING }}
diff --git a/integration-tests/test-apps/astro/.gitignore b/examples/astro-5/.gitignore
similarity index 100%
rename from integration-tests/test-apps/astro/.gitignore
rename to examples/astro-5/.gitignore
diff --git a/integration-tests/test-apps/astro/.vscode/extensions.json b/examples/astro-5/.vscode/extensions.json
similarity index 100%
rename from integration-tests/test-apps/astro/.vscode/extensions.json
rename to examples/astro-5/.vscode/extensions.json
diff --git a/integration-tests/test-apps/astro/.vscode/launch.json b/examples/astro-5/.vscode/launch.json
similarity index 100%
rename from integration-tests/test-apps/astro/.vscode/launch.json
rename to examples/astro-5/.vscode/launch.json
diff --git a/examples/astro-5/README.md b/examples/astro-5/README.md
new file mode 100644
index 00000000..ff19a3e7
--- /dev/null
+++ b/examples/astro-5/README.md
@@ -0,0 +1,48 @@
+# Astro Starter Kit: Basics
+
+```sh
+npm create astro@latest -- --template basics
+```
+
+[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
+[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
+[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
+
+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
+
+
+
+## 🚀 Project Structure
+
+Inside of your Astro project, you'll see the following folders and files:
+
+```text
+/
+├── public/
+│ └── favicon.svg
+├── src/
+│ ├── layouts/
+│ │ └── Layout.astro
+│ └── pages/
+│ └── index.astro
+└── package.json
+```
+
+To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
+
+## 🧞 Commands
+
+All commands are run from the root of the project, from a terminal:
+
+| Command | Action |
+| :------------------------ | :----------------------------------------------- |
+| `npm install` | Installs dependencies |
+| `npm run dev` | Starts local dev server at `localhost:4321` |
+| `npm run build` | Build your production site to `./dist/` |
+| `npm run preview` | Preview your build locally, before deploying |
+| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
+| `npm run astro -- --help` | Get help using the Astro CLI |
+
+## 👀 Want to learn more?
+
+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
diff --git a/examples/astro-5/astro.config.mjs b/examples/astro-5/astro.config.mjs
new file mode 100644
index 00000000..81fc44f2
--- /dev/null
+++ b/examples/astro-5/astro.config.mjs
@@ -0,0 +1,26 @@
+// @ts-check
+import { defineConfig } from "astro/config";
+
+import react from "@astrojs/react";
+
+import node from "@astrojs/node";
+
+import codecovAstroPlugin from "@codecov/astro-plugin";
+// https://astro.build/config
+export default defineConfig({
+ output: "server",
+ adapter: node({
+ mode: "standalone",
+ }),
+ integrations: [
+ react(),
+ codecovAstroPlugin({
+ enableBundleAnalysis: true,
+ bundleName: "@codecov/example-astro-5-app",
+ uploadToken: process.env.ASTRO_5_UPLOAD_TOKEN,
+ apiUrl: process.env.ASTRO_5_API_URL,
+ gitService: "github",
+ debug: true,
+ }),
+ ],
+});
diff --git a/examples/astro-5/package.json b/examples/astro-5/package.json
new file mode 100644
index 00000000..baedda1d
--- /dev/null
+++ b/examples/astro-5/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "astro-5",
+ "type": "module",
+ "version": "0.0.1",
+ "scripts": {
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro"
+ },
+ "dependencies": {
+ "@astrojs/node": "^9.0.0",
+ "@astrojs/react": "^4.1.1",
+ "@codecov/astro-plugin": "workspace:*",
+ "@types/react": "^19.0.1",
+ "@types/react-dom": "^19.0.2",
+ "astro": "^5.0.9",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0"
+ }
+}
diff --git a/integration-tests/test-apps/astro/public/favicon.svg b/examples/astro-5/public/favicon.svg
similarity index 100%
rename from integration-tests/test-apps/astro/public/favicon.svg
rename to examples/astro-5/public/favicon.svg
diff --git a/examples/astro-5/src/assets/astro.svg b/examples/astro-5/src/assets/astro.svg
new file mode 100644
index 00000000..8cf8fb0c
--- /dev/null
+++ b/examples/astro-5/src/assets/astro.svg
@@ -0,0 +1 @@
+
diff --git a/examples/astro-5/src/assets/background.svg b/examples/astro-5/src/assets/background.svg
new file mode 100644
index 00000000..4b2be0ac
--- /dev/null
+++ b/examples/astro-5/src/assets/background.svg
@@ -0,0 +1 @@
+
diff --git a/examples/astro-5/src/components/Welcome.astro b/examples/astro-5/src/components/Welcome.astro
new file mode 100644
index 00000000..6b7b9c70
--- /dev/null
+++ b/examples/astro-5/src/components/Welcome.astro
@@ -0,0 +1,209 @@
+---
+import astroLogo from '../assets/astro.svg';
+import background from '../assets/background.svg';
+---
+
+
+
+
diff --git a/examples/astro-5/src/layouts/Layout.astro b/examples/astro-5/src/layouts/Layout.astro
new file mode 100644
index 00000000..e455c610
--- /dev/null
+++ b/examples/astro-5/src/layouts/Layout.astro
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ Astro Basics
+
+
+
+
+
+
+
diff --git a/examples/astro-5/src/pages/index.astro b/examples/astro-5/src/pages/index.astro
new file mode 100644
index 00000000..c04f3602
--- /dev/null
+++ b/examples/astro-5/src/pages/index.astro
@@ -0,0 +1,11 @@
+---
+import Welcome from '../components/Welcome.astro';
+import Layout from '../layouts/Layout.astro';
+
+// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
+// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
+---
+
+
+
+
diff --git a/examples/astro-5/tsconfig.json b/examples/astro-5/tsconfig.json
new file mode 100644
index 00000000..86822491
--- /dev/null
+++ b/examples/astro-5/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "astro/tsconfigs/strict",
+ "include": [".astro/types.d.ts", "**/*"],
+ "exclude": ["dist"],
+ "compilerOptions": {
+ "jsx": "react-jsx",
+ "jsxImportSource": "react",
+ },
+}
diff --git a/examples/astro/package.json b/examples/astro/package.json
index 1c84594d..712d98d5 100644
--- a/examples/astro/package.json
+++ b/examples/astro/package.json
@@ -13,14 +13,12 @@
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^8.3.4",
"@astrojs/react": "^3.6.3",
+ "@codecov/astro-plugin": "workspace:*",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2"
- },
- "devDependencies": {
- "@codecov/astro-plugin": "workspace:*"
}
}
diff --git a/examples/next-js-15/package.json b/examples/next-js-15/package.json
index 4b9ebf4e..dff9a035 100644
--- a/examples/next-js-15/package.json
+++ b/examples/next-js-15/package.json
@@ -9,15 +9,15 @@
"lint": "next lint"
},
"dependencies": {
- "next": "15.0.0-rc.0",
- "react": "19.0.0-rc-b57d2823-20240822",
- "react-dom": "19.0.0-rc-b57d2823-20240822"
+ "next": "15.1.0",
+ "react": "19.0.0",
+ "react-dom": "19.0.0"
},
"devDependencies": {
"@codecov/nextjs-webpack-plugin": "workspace:^",
"@types/node": "^20",
- "@types/react": "^18",
- "@types/react-dom": "^18",
+ "@types/react": "^19",
+ "@types/react-dom": "^19",
"typescript": "^5"
}
}
diff --git a/examples/nuxt/package.json b/examples/nuxt/package.json
index c1e17bb5..8234528a 100644
--- a/examples/nuxt/package.json
+++ b/examples/nuxt/package.json
@@ -9,9 +9,9 @@
"preview": "nuxt preview"
},
"dependencies": {
- "nuxt": "^3.12.4",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "nuxt": "^3.14.1592",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
},
"devDependencies": {
"@codecov/nuxt-plugin": "workspace:^"
diff --git a/examples/oidc/package.json b/examples/oidc/package.json
index b07a0254..3e9dac5c 100644
--- a/examples/oidc/package.json
+++ b/examples/oidc/package.json
@@ -19,13 +19,13 @@
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
- "@vitejs/plugin-react": "^4.2.1",
+ "@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
- "vite": "^5.2.14"
+ "vite": "^6.0.3"
},
"volta": {
"extends": "../../package.json"
diff --git a/examples/solidstart/package.json b/examples/solidstart/package.json
index b626266a..91af7b8a 100644
--- a/examples/solidstart/package.json
+++ b/examples/solidstart/package.json
@@ -11,10 +11,10 @@
"@codecov/solidstart-plugin": "workspace:^",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.1",
- "@solidjs/start": "^1.0.6",
+ "@solidjs/start": "^1.0.10",
"solid-js": "^1.8.18",
- "vinxi": "^0.4.1",
- "vite-plugin-solid": "^2.10.2"
+ "vinxi": "^0.4.3",
+ "vite-plugin-solid": "^2.11.0"
},
"engines": {
"node": ">=18"
diff --git a/examples/sveltekit/package.json b/examples/sveltekit/package.json
index be23e435..04fe9f6e 100644
--- a/examples/sveltekit/package.json
+++ b/examples/sveltekit/package.json
@@ -12,14 +12,14 @@
"@codecov/sveltekit-plugin": "workspace:^",
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
- "@sveltejs/adapter-auto": "^3.0.0",
- "@sveltejs/kit": "^2.5.25",
- "@sveltejs/vite-plugin-svelte": "^3.0.0",
- "svelte": "^4.2.7",
- "svelte-check": "^3.6.0",
+ "@sveltejs/adapter-auto": "^3.3.1",
+ "@sveltejs/kit": "^2.12.1",
+ "@sveltejs/vite-plugin-svelte": "^5.0.2",
+ "svelte": "^5.14.1",
+ "svelte-check": "^4.1.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
- "vite": "^5.1.8"
+ "vite": "^6.0.3"
},
"type": "module"
}
diff --git a/examples/tokenless/package.json b/examples/tokenless/package.json
index e8a5c191..b698ed43 100644
--- a/examples/tokenless/package.json
+++ b/examples/tokenless/package.json
@@ -19,13 +19,13 @@
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
- "@vitejs/plugin-react": "^4.2.1",
+ "@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
- "vite": "^5.2.14"
+ "vite": "^6.0.3"
},
"volta": {
"extends": "../../package.json"
diff --git a/examples/vite/package.json b/examples/vite/package.json
index 649fef74..bf17bd0e 100644
--- a/examples/vite/package.json
+++ b/examples/vite/package.json
@@ -19,13 +19,13 @@
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
- "@vitejs/plugin-react": "^4.2.1",
+ "@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"rollup": "^4.22.4",
"typescript": "^5.3.3",
- "vite": "^5.2.14"
+ "vite": "^6.0.3"
},
"volta": {
"extends": "../../package.json"
diff --git a/integration-tests/fixtures/generate-bundle-stats/astro/__snapshots__/astro-integration.test.ts.snap b/integration-tests/fixtures/generate-bundle-stats/astro/__snapshots__/astro-integration.test.ts.snap
index 2537bc41..b88a2a4a 100644
--- a/integration-tests/fixtures/generate-bundle-stats/astro/__snapshots__/astro-integration.test.ts.snap
+++ b/integration-tests/fixtures/generate-bundle-stats/astro/__snapshots__/astro-integration.test.ts.snap
@@ -125,3 +125,129 @@ exports[`Generating astro stats 4 {"format":"module","expected":"esm"} matches t
"version": "3",
}
`;
+
+exports[`Generating astro stats 5 {"format":"es","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-client-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating astro stats 5 {"format":"es","expected":"esm"} matches the snapshot 2`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-server-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating astro stats 5 {"format":"esm","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-client-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating astro stats 5 {"format":"esm","expected":"esm"} matches the snapshot 2`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-server-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating astro stats 5 {"format":"module","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-client-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating astro stats 5 {"format":"module","expected":"esm"} matches the snapshot 2`] = `
+{
+ "assets": ExpectArrayContaining {},
+ "builtAt": Any,
+ "bundleName": StringContaining "test-astro-v5-server-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": ExpectArrayContaining {},
+ "duration": Any,
+ "modules": ExpectArrayContaining {},
+ "outputPath": StringContaining "dist",
+ "plugin": {
+ "name": StringMatching "@codecov/astro-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
diff --git a/integration-tests/fixtures/generate-bundle-stats/astro/astro-base.config.mjs b/integration-tests/fixtures/generate-bundle-stats/astro/astro-base.config.mjs
index 40c4580b..e53a9549 100644
--- a/integration-tests/fixtures/generate-bundle-stats/astro/astro-base.config.mjs
+++ b/integration-tests/fixtures/generate-bundle-stats/astro/astro-base.config.mjs
@@ -8,7 +8,7 @@ import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
- output: "hybrid",
+ output: "server",
adapter: node({
mode: "standalone",
}),
diff --git a/integration-tests/fixtures/generate-bundle-stats/astro/astro-integration.test.ts b/integration-tests/fixtures/generate-bundle-stats/astro/astro-integration.test.ts
index 53f22c3d..be6f0bc3 100644
--- a/integration-tests/fixtures/generate-bundle-stats/astro/astro-integration.test.ts
+++ b/integration-tests/fixtures/generate-bundle-stats/astro/astro-integration.test.ts
@@ -3,9 +3,9 @@ import { $ } from "bun";
import { describe, it, expect, afterEach, beforeEach } from "bun:test";
import { GenerateConfig } from "../../../scripts/gen-config";
-const astroApp = "test-apps/astro";
+const astroApp = (version: number) => `test-apps/astro-${version}`;
-const VERSIONS = [4];
+const VERSIONS = [4, 5];
const FORMATS = [
{ format: "es", expected: "esm" },
@@ -22,11 +22,11 @@ describe("Generating astro stats", () => {
configFileName: "astro",
format,
detectFormat: "esm",
- version: `v4`,
- detectVersion: "v4",
+ version: `v${version}`,
+ detectVersion: `v4`,
file_format: "mjs",
enableSourceMaps: false,
- overrideOutputPath: `${astroApp}/astro.config.mjs`,
+ overrideOutputPath: `${astroApp(version)}/astro.config.mjs`,
});
await config.createConfig();
@@ -34,8 +34,8 @@ describe("Generating astro stats", () => {
});
afterEach(async () => {
- await $`rm -rf ${astroApp}/astro.config.mjs`;
- await $`rm -rf ${astroApp}/dist`;
+ await $`rm -rf ${astroApp(version)}/astro.config.mjs`;
+ await $`rm -rf ${astroApp(version)}/dist`;
await $`rm -rf ./fixtures/generate-bundle-stats/astro/dist`;
});
@@ -46,7 +46,7 @@ describe("Generating astro stats", () => {
const API_URL = `http://localhost:8000/test-url/${id}/200/false`;
// prepare and build the app
- await $`cd test-apps/astro && API_URL=${API_URL} pnpm run build`;
+ await $`cd test-apps/astro-${version} && API_URL=${API_URL} pnpm run build`;
const serverBundleName = `test-astro-v${version}-server-esm`;
const clientBundleName = `test-astro-v${version}-client-${expected}`;
@@ -150,11 +150,11 @@ describe("Generating astro stats", () => {
configFileName: "astro",
format: "esm",
detectFormat: "esm",
- version: `v4`,
+ version: `v${version}`,
detectVersion: "v4",
file_format: "mjs",
enableSourceMaps: false,
- overrideOutputPath: `${astroApp}/astro.config.mjs`,
+ overrideOutputPath: `${astroApp(version)}/astro.config.mjs`,
});
await config.createConfig();
@@ -163,8 +163,8 @@ describe("Generating astro stats", () => {
});
afterEach(async () => {
- await $`rm -rf ${astroApp}/astro.config.mjs`;
- await $`rm -rf ${astroApp}/dist`;
+ await $`rm -rf ${astroApp(version)}/astro.config.mjs`;
+ await $`rm -rf ${astroApp(version)}/dist`;
await $`rm -rf ./fixtures/generate-bundle-stats/astro/dist`;
});
@@ -176,7 +176,7 @@ describe("Generating astro stats", () => {
// prepare and build the app
const { exitCode, stdout } =
- await $`cd test-apps/astro && API_URL=${API_URL} pnpm run build`.nothrow();
+ await $`cd test-apps/astro-${version} && API_URL=${API_URL} pnpm run build`.nothrow();
expect(exitCode).toBe(1);
expect(stdout.toString()).toContain(
diff --git a/integration-tests/fixtures/generate-bundle-stats/sveltekit/__snapshots__/sveltekit-plugin.test.ts.snap b/integration-tests/fixtures/generate-bundle-stats/sveltekit/__snapshots__/sveltekit-plugin.test.ts.snap
index cd66fef9..72d87e35 100644
--- a/integration-tests/fixtures/generate-bundle-stats/sveltekit/__snapshots__/sveltekit-plugin.test.ts.snap
+++ b/integration-tests/fixtures/generate-bundle-stats/sveltekit/__snapshots__/sveltekit-plugin.test.ts.snap
@@ -7,7 +7,7 @@ exports[`Generating sveltekit stats 2 {"format":"es","expected":"esm"} matches t
"bundleName": StringContaining "test-sveltekit-v2-client-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
@@ -28,7 +28,7 @@ exports[`Generating sveltekit stats 2 {"format":"es","expected":"esm"} matches t
"bundleName": StringContaining "test-sveltekit-v2-server-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
@@ -49,7 +49,7 @@ exports[`Generating sveltekit stats 2 {"format":"esm","expected":"esm"} matches
"bundleName": StringContaining "test-sveltekit-v2-client-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
@@ -70,7 +70,7 @@ exports[`Generating sveltekit stats 2 {"format":"esm","expected":"esm"} matches
"bundleName": StringContaining "test-sveltekit-v2-server-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
@@ -91,7 +91,7 @@ exports[`Generating sveltekit stats 2 {"format":"module","expected":"esm"} match
"bundleName": StringContaining "test-sveltekit-v2-client-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
@@ -112,7 +112,7 @@ exports[`Generating sveltekit stats 2 {"format":"module","expected":"esm"} match
"bundleName": StringContaining "test-sveltekit-v2-server-esm",
"bundler": {
"name": "rollup",
- "version": "4.22.4",
+ "version": "4.27.3",
},
"chunks": ExpectArrayContaining {},
"duration": Any,
diff --git a/integration-tests/fixtures/generate-bundle-stats/vite/__snapshots__/vite-plugin.test.ts.snap b/integration-tests/fixtures/generate-bundle-stats/vite/__snapshots__/vite-plugin.test.ts.snap
index 4f8a65b6..fb3ee30d 100644
--- a/integration-tests/fixtures/generate-bundle-stats/vite/__snapshots__/vite-plugin.test.ts.snap
+++ b/integration-tests/fixtures/generate-bundle-stats/vite/__snapshots__/vite-plugin.test.ts.snap
@@ -1839,3 +1839,993 @@ exports[`Generating vite stats v5 source maps are enabled does not include any s
"version": "3",
}
`;
+
+exports[`Generating vite stats v6 {"format":"amd","expected":"amd"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26824,
+ "name": "assets/index-IMKwJGBN.js",
+ "normalized": "assets/index-*.js",
+ "size": 72407,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-amd",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-IMKwJGBN.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"cjs","expected":"cjs"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26835,
+ "name": "assets/index-DSGb5ppu.js",
+ "normalized": "assets/index-*.js",
+ "size": 72387,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-cjs",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-DSGb5ppu.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"es","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 27184,
+ "name": "assets/index-ChCLBVUZ.js",
+ "normalized": "assets/index-*.js",
+ "size": 73116,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-ChCLBVUZ.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"esm","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 27184,
+ "name": "assets/index-ChCLBVUZ.js",
+ "normalized": "assets/index-*.js",
+ "size": 73116,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-ChCLBVUZ.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"module","expected":"esm"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 27184,
+ "name": "assets/index-ChCLBVUZ.js",
+ "normalized": "assets/index-*.js",
+ "size": 73116,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-esm",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-ChCLBVUZ.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"iife","expected":"iife"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26824,
+ "name": "assets/index-BdQugyJL.js",
+ "normalized": "assets/index-*.js",
+ "size": 72403,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-iife",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-BdQugyJL.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"umd","expected":"umd"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26854,
+ "name": "assets/index-DvWklLau.js",
+ "normalized": "assets/index-*.js",
+ "size": 72470,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-umd",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-DvWklLau.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"system","expected":"system"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26861,
+ "name": "assets/index-0MbBF1LE.js",
+ "normalized": "assets/index-*.js",
+ "size": 72452,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-system",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-0MbBF1LE.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 {"format":"systemjs","expected":"system"} matches the snapshot 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 26861,
+ "name": "assets/index-0MbBF1LE.js",
+ "normalized": "assets/index-*.js",
+ "size": 72452,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringContaining "test-vite-v6-system",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-0MbBF1LE.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
+
+exports[`Generating vite stats v6 source maps are enabled does not include any source maps 1`] = `
+{
+ "assets": [
+ {
+ "gzipSize": 27211,
+ "name": "assets/index-ChCLBVUZ.js",
+ "normalized": "assets/index-*.js",
+ "size": 73159,
+ },
+ ],
+ "builtAt": Any,
+ "bundleName": StringNotContaining ".map",
+ "bundler": {
+ "name": "rollup",
+ "version": "4.27.3",
+ },
+ "chunks": [
+ {
+ "dynamicImports": [],
+ "entry": true,
+ "files": [
+ "assets/index-ChCLBVUZ.js",
+ ],
+ "id": "index",
+ "initial": false,
+ "names": [
+ "index",
+ ],
+ "uniqueId": "0-index",
+ },
+ ],
+ "duration": Any,
+ "modules": [
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./vite/modulepreload-polyfill.js",
+ "size": 1280,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./commonjsHelpers.js",
+ "size": 334,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-module",
+ "size": 29,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js",
+ "size": 576440,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js?commonjs-es-import",
+ "size": 99,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/getRandomNumber.js",
+ "size": 98,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/src/main.js",
+ "size": 163,
+ },
+ {
+ "chunkUniqueIds": [
+ "0-index",
+ ],
+ "name": "./test-apps/vite/index.html",
+ "size": 0,
+ },
+ ],
+ "outputPath": StringContaining "/distV6",
+ "plugin": {
+ "name": StringMatching "@codecov/vite-plugin",
+ "version": "1.6.0",
+ },
+ "version": "3",
+}
+`;
diff --git a/integration-tests/fixtures/generate-bundle-stats/vite/vite-plugin.test.ts b/integration-tests/fixtures/generate-bundle-stats/vite/vite-plugin.test.ts
index bfba7ac1..467af41f 100644
--- a/integration-tests/fixtures/generate-bundle-stats/vite/vite-plugin.test.ts
+++ b/integration-tests/fixtures/generate-bundle-stats/vite/vite-plugin.test.ts
@@ -9,7 +9,7 @@ const viteConfig = (version: number, format: string) =>
`fixtures/generate-bundle-stats/vite/vite-v${version}-${format}.config.*`;
const viteApp = "test-apps/vite";
-const VERSIONS = [4, 5];
+const VERSIONS = [4, 5, 6];
// Default Rollup formats: https://rollupjs.org/configuration-options/#output-format
const FORMATS = [
{ format: "amd", expected: "amd" },
diff --git a/integration-tests/fixtures/generate-bundle-stats/webpack/__snapshots__/webpack-plugin.test.ts.snap b/integration-tests/fixtures/generate-bundle-stats/webpack/__snapshots__/webpack-plugin.test.ts.snap
index ca50b6a1..8d0e5395 100644
--- a/integration-tests/fixtures/generate-bundle-stats/webpack/__snapshots__/webpack-plugin.test.ts.snap
+++ b/integration-tests/fixtures/generate-bundle-stats/webpack/__snapshots__/webpack-plugin.test.ts.snap
@@ -152,7 +152,7 @@ exports[`Generating webpack stats 5 {"format":"commonjs","expected":"cjs"} match
}
`;
-exports[`Generating webpack stats 5 source maps are enabled does not include any source maps 1`] = `
+exports[`Generating webpack stats 5 {"format":"module","expected":"esm"} matches the snapshot 1`] = `
{
"assets": [
{
@@ -163,7 +163,7 @@ exports[`Generating webpack stats 5 source maps are enabled does not include any
},
],
"builtAt": Any,
- "bundleName": StringNotContaining ".map",
+ "bundleName": StringContaining "test-webpack-v5-esm",
"bundler": {
"name": "webpack",
"version": "5.96.1",
@@ -228,7 +228,7 @@ exports[`Generating webpack stats 5 source maps are enabled does not include any
}
`;
-exports[`Generating webpack stats 5 {"format":"module","expected":"esm"} matches the snapshot 1`] = `
+exports[`Generating webpack stats 5 source maps are enabled does not include any source maps 1`] = `
{
"assets": [
{
@@ -239,7 +239,7 @@ exports[`Generating webpack stats 5 {"format":"module","expected":"esm"} matches
},
],
"builtAt": Any,
- "bundleName": StringContaining "test-webpack-v5-esm",
+ "bundleName": StringNotContaining ".map",
"bundler": {
"name": "webpack",
"version": "5.96.1",
diff --git a/integration-tests/package.json b/integration-tests/package.json
index 769640ad..a3b6cd59 100644
--- a/integration-tests/package.json
+++ b/integration-tests/package.json
@@ -28,7 +28,7 @@
"dependencies": {
"lodash": "^4.17.21",
"solid-start": "^0.3.11",
- "vite-plugin-solid": "^2.10.2"
+ "vite-plugin-solid": "^2.11.0"
},
"devDependencies": {
"@codecov/astro-plugin": "workspace:*",
@@ -44,13 +44,13 @@
"@remix-run/dev": "^2.9.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
- "@solidjs/start": "^1.0.6",
- "@sveltejs/kit": "^2.5.25",
+ "@solidjs/start": "^1.0.10",
+ "@sveltejs/kit": "^2.12.1",
"@types/bun": "^1.0.6",
"@types/node": "^20.11.15",
"bun": "^1.1.4",
"isbot": "^4.1.0",
- "nuxt": "3.12.4",
+ "nuxt": "3.14.1592",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollupV3": "npm:rollup@3.29.5",
@@ -58,6 +58,7 @@
"ts-node": "^10.9.2",
"viteV4": "npm:vite@4.5.5",
"viteV5": "npm:vite@5.2.14",
+ "viteV6": "npm:vite@6.0.3",
"vue-routerV4": "npm:vue-router@4.3.0",
"vueV3": "npm:vue@3.4.21",
"webpackV5": "npm:webpack@5.90.0"
diff --git a/integration-tests/test-apps/astro-4/.gitignore b/integration-tests/test-apps/astro-4/.gitignore
new file mode 100644
index 00000000..016b59ea
--- /dev/null
+++ b/integration-tests/test-apps/astro-4/.gitignore
@@ -0,0 +1,24 @@
+# build output
+dist/
+
+# generated types
+.astro/
+
+# dependencies
+node_modules/
+
+# logs
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+# environment variables
+.env
+.env.production
+
+# macOS-specific files
+.DS_Store
+
+# jetbrains setting folder
+.idea/
diff --git a/integration-tests/test-apps/astro-4/.vscode/extensions.json b/integration-tests/test-apps/astro-4/.vscode/extensions.json
new file mode 100644
index 00000000..22a15055
--- /dev/null
+++ b/integration-tests/test-apps/astro-4/.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ "recommendations": ["astro-build.astro-vscode"],
+ "unwantedRecommendations": []
+}
diff --git a/integration-tests/test-apps/astro-4/.vscode/launch.json b/integration-tests/test-apps/astro-4/.vscode/launch.json
new file mode 100644
index 00000000..d6422097
--- /dev/null
+++ b/integration-tests/test-apps/astro-4/.vscode/launch.json
@@ -0,0 +1,11 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "command": "./node_modules/.bin/astro dev",
+ "name": "Development server",
+ "request": "launch",
+ "type": "node-terminal"
+ }
+ ]
+}
diff --git a/integration-tests/test-apps/astro/README.md b/integration-tests/test-apps/astro-4/README.md
similarity index 100%
rename from integration-tests/test-apps/astro/README.md
rename to integration-tests/test-apps/astro-4/README.md
diff --git a/integration-tests/test-apps/astro/package.json b/integration-tests/test-apps/astro-4/package.json
similarity index 100%
rename from integration-tests/test-apps/astro/package.json
rename to integration-tests/test-apps/astro-4/package.json
diff --git a/integration-tests/test-apps/astro-4/public/favicon.svg b/integration-tests/test-apps/astro-4/public/favicon.svg
new file mode 100644
index 00000000..f157bd1c
--- /dev/null
+++ b/integration-tests/test-apps/astro-4/public/favicon.svg
@@ -0,0 +1,9 @@
+
diff --git a/integration-tests/test-apps/astro/src/components/Card.astro b/integration-tests/test-apps/astro-4/src/components/Card.astro
similarity index 100%
rename from integration-tests/test-apps/astro/src/components/Card.astro
rename to integration-tests/test-apps/astro-4/src/components/Card.astro
diff --git a/integration-tests/test-apps/astro/src/components/Counter.module.css b/integration-tests/test-apps/astro-4/src/components/Counter.module.css
similarity index 100%
rename from integration-tests/test-apps/astro/src/components/Counter.module.css
rename to integration-tests/test-apps/astro-4/src/components/Counter.module.css
diff --git a/integration-tests/test-apps/astro/src/components/Counter.tsx b/integration-tests/test-apps/astro-4/src/components/Counter.tsx
similarity index 100%
rename from integration-tests/test-apps/astro/src/components/Counter.tsx
rename to integration-tests/test-apps/astro-4/src/components/Counter.tsx
diff --git a/integration-tests/test-apps/astro/src/env.d.ts b/integration-tests/test-apps/astro-4/src/env.d.ts
similarity index 100%
rename from integration-tests/test-apps/astro/src/env.d.ts
rename to integration-tests/test-apps/astro-4/src/env.d.ts
diff --git a/integration-tests/test-apps/astro/src/layouts/Layout.astro b/integration-tests/test-apps/astro-4/src/layouts/Layout.astro
similarity index 100%
rename from integration-tests/test-apps/astro/src/layouts/Layout.astro
rename to integration-tests/test-apps/astro-4/src/layouts/Layout.astro
diff --git a/integration-tests/test-apps/astro/src/pages/index.astro b/integration-tests/test-apps/astro-4/src/pages/index.astro
similarity index 100%
rename from integration-tests/test-apps/astro/src/pages/index.astro
rename to integration-tests/test-apps/astro-4/src/pages/index.astro
diff --git a/integration-tests/test-apps/astro/src/pages/not-pre-rendered.astro b/integration-tests/test-apps/astro-4/src/pages/not-pre-rendered.astro
similarity index 100%
rename from integration-tests/test-apps/astro/src/pages/not-pre-rendered.astro
rename to integration-tests/test-apps/astro-4/src/pages/not-pre-rendered.astro
diff --git a/integration-tests/test-apps/astro/tsconfig.json b/integration-tests/test-apps/astro-4/tsconfig.json
similarity index 100%
rename from integration-tests/test-apps/astro/tsconfig.json
rename to integration-tests/test-apps/astro-4/tsconfig.json
diff --git a/integration-tests/test-apps/astro-5/.gitignore b/integration-tests/test-apps/astro-5/.gitignore
new file mode 100644
index 00000000..016b59ea
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/.gitignore
@@ -0,0 +1,24 @@
+# build output
+dist/
+
+# generated types
+.astro/
+
+# dependencies
+node_modules/
+
+# logs
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+
+# environment variables
+.env
+.env.production
+
+# macOS-specific files
+.DS_Store
+
+# jetbrains setting folder
+.idea/
diff --git a/integration-tests/test-apps/astro-5/.vscode/extensions.json b/integration-tests/test-apps/astro-5/.vscode/extensions.json
new file mode 100644
index 00000000..22a15055
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/.vscode/extensions.json
@@ -0,0 +1,4 @@
+{
+ "recommendations": ["astro-build.astro-vscode"],
+ "unwantedRecommendations": []
+}
diff --git a/integration-tests/test-apps/astro-5/.vscode/launch.json b/integration-tests/test-apps/astro-5/.vscode/launch.json
new file mode 100644
index 00000000..d6422097
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/.vscode/launch.json
@@ -0,0 +1,11 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "command": "./node_modules/.bin/astro dev",
+ "name": "Development server",
+ "request": "launch",
+ "type": "node-terminal"
+ }
+ ]
+}
diff --git a/integration-tests/test-apps/astro-5/README.md b/integration-tests/test-apps/astro-5/README.md
new file mode 100644
index 00000000..1db3fb39
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/README.md
@@ -0,0 +1,54 @@
+# Astro Starter Kit: Basics
+
+```sh
+npm create astro@latest -- --template basics
+```
+
+[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
+[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
+[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
+
+> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
+
+
+
+## 🚀 Project Structure
+
+Inside of your Astro project, you'll see the following folders and files:
+
+```text
+/
+├── public/
+│ └── favicon.svg
+├── src/
+│ ├── components/
+│ │ └── Card.astro
+│ ├── layouts/
+│ │ └── Layout.astro
+│ └── pages/
+│ └── index.astro
+└── package.json
+```
+
+Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
+
+There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
+
+Any static assets, like images, can be placed in the `public/` directory.
+
+## 🧞 Commands
+
+All commands are run from the root of the project, from a terminal:
+
+| Command | Action |
+| :------------------------ | :----------------------------------------------- |
+| `npm install` | Installs dependencies |
+| `npm run dev` | Starts local dev server at `localhost:4321` |
+| `npm run build` | Build your production site to `./dist/` |
+| `npm run preview` | Preview your build locally, before deploying |
+| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
+| `npm run astro -- --help` | Get help using the Astro CLI |
+
+## 👀 Want to learn more?
+
+Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
diff --git a/integration-tests/test-apps/astro-5/package.json b/integration-tests/test-apps/astro-5/package.json
new file mode 100644
index 00000000..baedda1d
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/package.json
@@ -0,0 +1,21 @@
+{
+ "name": "astro-5",
+ "type": "module",
+ "version": "0.0.1",
+ "scripts": {
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro"
+ },
+ "dependencies": {
+ "@astrojs/node": "^9.0.0",
+ "@astrojs/react": "^4.1.1",
+ "@codecov/astro-plugin": "workspace:*",
+ "@types/react": "^19.0.1",
+ "@types/react-dom": "^19.0.2",
+ "astro": "^5.0.9",
+ "react": "^19.0.0",
+ "react-dom": "^19.0.0"
+ }
+}
diff --git a/integration-tests/test-apps/astro-5/public/favicon.svg b/integration-tests/test-apps/astro-5/public/favicon.svg
new file mode 100644
index 00000000..f157bd1c
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/public/favicon.svg
@@ -0,0 +1,9 @@
+
diff --git a/integration-tests/test-apps/astro-5/src/components/Card.astro b/integration-tests/test-apps/astro-5/src/components/Card.astro
new file mode 100644
index 00000000..bd6d5971
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/components/Card.astro
@@ -0,0 +1,61 @@
+---
+interface Props {
+ title: string;
+ body: string;
+ href: string;
+}
+
+const { href, title, body } = Astro.props;
+---
+
+
+
+
+ {title}
+ →
+
+
+ {body}
+
+
+
+
diff --git a/integration-tests/test-apps/astro-5/src/components/Counter.module.css b/integration-tests/test-apps/astro-5/src/components/Counter.module.css
new file mode 100644
index 00000000..cd4c296f
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/components/Counter.module.css
@@ -0,0 +1,29 @@
+.linkCard {
+ list-style: none;
+ display: flex;
+ padding: 1px;
+ background-color: #23262d;
+ background-image: none;
+ background-size: 400%;
+ border-radius: 7px;
+ background-position: 100%;
+ transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
+}
+.linkCard > button {
+ width: 100%;
+ text-decoration: none;
+ line-height: 1.4;
+ padding: calc(1.5rem - 1px);
+ border-radius: 8px;
+ color: white;
+ background-color: #23262d;
+ opacity: 0.8;
+}
+.linkCard:is(:hover, :focus-within) {
+ background-position: 0;
+ background-image: var(--accent-gradient);
+}
+.linkCard:is(:hover, :focus-within) h2 {
+ color: rgb(var(--accent-light));
+}
diff --git a/integration-tests/test-apps/astro-5/src/components/Counter.tsx b/integration-tests/test-apps/astro-5/src/components/Counter.tsx
new file mode 100644
index 00000000..4f9f83b2
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/components/Counter.tsx
@@ -0,0 +1,15 @@
+import React from "react";
+
+import styles from "./Counter.module.css";
+
+export const Counter = () => {
+ const [count, setCount] = React.useState(0);
+
+ return (
+
+
+
+ );
+};
diff --git a/integration-tests/test-apps/astro-5/src/env.d.ts b/integration-tests/test-apps/astro-5/src/env.d.ts
new file mode 100644
index 00000000..e16c13c6
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/integration-tests/test-apps/astro-5/src/layouts/Layout.astro b/integration-tests/test-apps/astro-5/src/layouts/Layout.astro
new file mode 100644
index 00000000..18109712
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/layouts/Layout.astro
@@ -0,0 +1,50 @@
+---
+interface Props {
+ title: string;
+}
+
+const { title } = Astro.props;
+---
+
+
+
+
+
+
+
+
+
+ {title}
+
+
+
+
+
+
diff --git a/integration-tests/test-apps/astro-5/src/pages/index.astro b/integration-tests/test-apps/astro-5/src/pages/index.astro
new file mode 100644
index 00000000..adee912e
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/pages/index.astro
@@ -0,0 +1,132 @@
+---
+import Layout from "../layouts/Layout.astro";
+import Card from "../components/Card.astro";
+import { Counter } from "../components/Counter";
+
+export const prerender = "true";
+---
+
+
+
+
+ Welcome to Astro
+
+ To get started, open the directory src/pages in your project.
+ Code Challenge: Tweak the "Welcome to Astro" message above.
+
+
+
+
+
+
diff --git a/integration-tests/test-apps/astro-5/src/pages/not-pre-rendered.astro b/integration-tests/test-apps/astro-5/src/pages/not-pre-rendered.astro
new file mode 100644
index 00000000..3dcb785c
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/src/pages/not-pre-rendered.astro
@@ -0,0 +1,132 @@
+---
+import Layout from "../layouts/Layout.astro";
+import Card from "../components/Card.astro";
+import { Counter } from "../components/Counter";
+
+export const prerender = "false";
+---
+
+
+
+
+ Welcome to Astro
+
+ To get started, open the directory src/pages in your project.
+ Code Challenge: Tweak the "Welcome to Astro" message above.
+
+
+
+
+
+
diff --git a/integration-tests/test-apps/astro-5/tsconfig.json b/integration-tests/test-apps/astro-5/tsconfig.json
new file mode 100644
index 00000000..53017376
--- /dev/null
+++ b/integration-tests/test-apps/astro-5/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "astro/tsconfigs/strict",
+ "compilerOptions": {
+ "jsx": "react-jsx",
+ "jsxImportSource": "react",
+ },
+}
diff --git a/integration-tests/test-apps/bundle-analyzer/dotenv-vercel/package.json b/integration-tests/test-apps/bundle-analyzer/dotenv-vercel/package.json
index 16497a87..20b20063 100644
--- a/integration-tests/test-apps/bundle-analyzer/dotenv-vercel/package.json
+++ b/integration-tests/test-apps/bundle-analyzer/dotenv-vercel/package.json
@@ -13,6 +13,6 @@
"@codecov/bundle-analyzer": "workspace:^",
"dotenv": "^16.4.5",
"typescript": "^5.0.2",
- "vite": "^5.2.14"
+ "vite": "^6.0.3"
}
}
diff --git a/integration-tests/test-apps/nuxt/package.json b/integration-tests/test-apps/nuxt/package.json
index 95ac1101..0325182b 100644
--- a/integration-tests/test-apps/nuxt/package.json
+++ b/integration-tests/test-apps/nuxt/package.json
@@ -9,9 +9,9 @@
"preview": "nuxt preview"
},
"dependencies": {
- "nuxt": "^3.12.4",
- "vue": "^3.4.21",
- "vue-router": "^4.3.0"
+ "nuxt": "^3.14.1592",
+ "vue": "^3.5.13",
+ "vue-router": "^4.5.0"
},
"devDependencies": {
"@codecov/nuxt-plugin": "workspace:^"
diff --git a/integration-tests/test-apps/remix/package.json b/integration-tests/test-apps/remix/package.json
index 2c4b9b82..cd83e133 100644
--- a/integration-tests/test-apps/remix/package.json
+++ b/integration-tests/test-apps/remix/package.json
@@ -11,16 +11,16 @@
"typecheck": "tsc"
},
"dependencies": {
- "@remix-run/node": "^2.9.2",
- "@remix-run/react": "^2.9.2",
- "@remix-run/serve": "^2.9.2",
+ "@remix-run/node": "^2.15.1",
+ "@remix-run/react": "^2.15.1",
+ "@remix-run/serve": "^2.15.1",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@codecov/remix-vite-plugin": "workspace:^",
- "@remix-run/dev": "^2.9.2",
+ "@remix-run/dev": "^2.15.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
diff --git a/integration-tests/test-apps/solidstart/package.json b/integration-tests/test-apps/solidstart/package.json
index 47dcd95f..1a6d6160 100644
--- a/integration-tests/test-apps/solidstart/package.json
+++ b/integration-tests/test-apps/solidstart/package.json
@@ -10,10 +10,10 @@
"dependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.14.1",
- "@solidjs/start": "^1.0.6",
+ "@solidjs/start": "^1.0.10",
"solid-js": "^1.8.18",
- "vinxi": "^0.4.1",
- "vite-plugin-solid": "^2.10.2"
+ "vinxi": "^0.4.3",
+ "vite-plugin-solid": "^2.11.0"
},
"engines": {
"node": ">=18"
diff --git a/integration-tests/test-apps/sveltekit/package.json b/integration-tests/test-apps/sveltekit/package.json
index 7f714fe5..87bf6511 100644
--- a/integration-tests/test-apps/sveltekit/package.json
+++ b/integration-tests/test-apps/sveltekit/package.json
@@ -10,11 +10,11 @@
"@codecov/sveltekit-plugin": "workspace:^",
"@fontsource/fira-mono": "^4.5.10",
"@neoconfetti/svelte": "^1.0.0",
- "@sveltejs/adapter-auto": "^3.0.0",
- "@sveltejs/kit": "^2.5.25",
- "@sveltejs/vite-plugin-svelte": "^3.0.0",
- "svelte": "^4.2.7",
- "vite": "^5.1.8"
+ "@sveltejs/adapter-auto": "^3.3.1",
+ "@sveltejs/kit": "^2.12.1",
+ "@sveltejs/vite-plugin-svelte": "^5.0.2",
+ "svelte": "^5.14.1",
+ "vite": "^6.0.3"
},
"type": "module"
}
diff --git a/package.json b/package.json
index feb9150b..9715e7d8 100644
--- a/package.json
+++ b/package.json
@@ -43,10 +43,10 @@
"husky": "^8.0.3",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
- "vite": "^5.4.11",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,json}": [
diff --git a/packages/astro-plugin/package.json b/packages/astro-plugin/package.json
index 991e5a75..5e680aed 100644
--- a/packages/astro-plugin/package.json
+++ b/packages/astro-plugin/package.json
@@ -58,19 +58,19 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
- "astro": "^4.16.14",
+ "@vitest/coverage-v8": "^2.1.8",
+ "astro": "^5.0.9",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
- "astro": "4.x"
+ "astro": "4.x || 5.x"
},
"volta": {
"extends": "../../package.json"
diff --git a/packages/astro-plugin/src/index.ts b/packages/astro-plugin/src/index.ts
index 945bb37f..ee6191a2 100644
--- a/packages/astro-plugin/src/index.ts
+++ b/packages/astro-plugin/src/index.ts
@@ -85,7 +85,7 @@ const codecovAstroPlugin = (options: Options): AstroIntegration => ({
const astroPlugin = astroPluginFactory({
...options,
target,
- }) as PluginOption[];
+ }) as PluginOption;
vite.plugins.push(astroPlugin);
}
},
diff --git a/packages/astro-plugin/vitest.config.ts b/packages/astro-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/astro-plugin/vitest.config.ts
+++ b/packages/astro-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/bundle-analyzer/package.json b/packages/bundle-analyzer/package.json
index 16e7b55f..8063d93c 100644
--- a/packages/bundle-analyzer/package.json
+++ b/packages/bundle-analyzer/package.json
@@ -63,14 +63,14 @@
"@types/micromatch": "^4.0.9",
"@types/node": "^20.11.15",
"@types/yargs": "^17.0.33",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"volta": {
"extends": "../../package.json"
diff --git a/packages/bundle-analyzer/vitest.config.ts b/packages/bundle-analyzer/vitest.config.ts
index 84c0c96e..26242e52 100644
--- a/packages/bundle-analyzer/vitest.config.ts
+++ b/packages/bundle-analyzer/vitest.config.ts
@@ -1,5 +1,5 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
import "ts-node/register";
@@ -10,16 +10,12 @@ const packageJson = await import("./package.json", {
assert: { type: "json" },
});
-const setupTsNode = {
+export default defineConfig({
+ ...config,
files: ["./setup.ts"],
transformMode: {
web: [/\.tsx?$/],
},
-};
-
-export default defineProject({
- ...config,
- ...setupTsNode,
plugins: [
// @ts-expect-error - using rollup plugin
{
diff --git a/packages/bundler-plugin-core/package.json b/packages/bundler-plugin-core/package.json
index 84a71580..3d933154 100644
--- a/packages/bundler-plugin-core/package.json
+++ b/packages/bundler-plugin-core/package.json
@@ -50,16 +50,16 @@
"@octokit/webhooks-definitions": "^3.67.3",
"@types/node": "^20.11.15",
"@types/semver": "^7.5.6",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"testdouble": "^3.20.1",
- "testdouble-vitest": "^0.1.3",
+ "testdouble-vitest": "^0.2.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vitest": "^1.5.0"
+ "vitest": "^2.1.8"
},
"volta": {
"extends": "../../package.json"
diff --git a/packages/bundler-plugin-core/src/utils/__tests__/findGitService.test.ts b/packages/bundler-plugin-core/src/utils/__tests__/findGitService.test.ts
index a26626aa..063a6f77 100644
--- a/packages/bundler-plugin-core/src/utils/__tests__/findGitService.test.ts
+++ b/packages/bundler-plugin-core/src/utils/__tests__/findGitService.test.ts
@@ -1,11 +1,11 @@
-import { describe, it, expect, afterAll, beforeEach } from "vitest";
+import { describe, it, expect, afterAll, beforeAll } from "vitest";
import childProcess from "child_process";
import * as td from "testdouble";
import { SPAWN_PROCESS_BUFFER_SIZE } from "../constants.ts";
import { findGitService, parseGitService, splitPath } from "../findGitService";
-describe.concurrent("findGitService", () => {
+describe("findGitService", () => {
const spawnSync = td.replace(childProcess, "spawnSync");
afterAll(() => {
@@ -13,7 +13,7 @@ describe.concurrent("findGitService", () => {
});
describe('git remote "origin" exists', () => {
- beforeEach(() => {
+ beforeAll(() => {
td.when(
spawnSync("git", ["remote"], {
maxBuffer: SPAWN_PROCESS_BUFFER_SIZE,
@@ -37,7 +37,7 @@ describe.concurrent("findGitService", () => {
});
describe('git remote "origin" does not exist', () => {
- beforeEach(() => {
+ beforeAll(() => {
td.when(
spawnSync("git", ["remote"], {
maxBuffer: SPAWN_PROCESS_BUFFER_SIZE,
@@ -63,7 +63,7 @@ describe.concurrent("findGitService", () => {
});
describe("there are no remotes", () => {
- beforeEach(() => {
+ beforeAll(() => {
td.when(
spawnSync("git", ["remote"], {
maxBuffer: SPAWN_PROCESS_BUFFER_SIZE,
diff --git a/packages/bundler-plugin-core/vitest.config.ts b/packages/bundler-plugin-core/vitest.config.ts
index 68560a1f..4669c6d2 100644
--- a/packages/bundler-plugin-core/vitest.config.ts
+++ b/packages/bundler-plugin-core/vitest.config.ts
@@ -1,6 +1,6 @@
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
-export default defineProject({
+export default defineConfig({
...config,
});
diff --git a/packages/nextjs-webpack-plugin/package.json b/packages/nextjs-webpack-plugin/package.json
index 279df0cc..705c52d7 100644
--- a/packages/nextjs-webpack-plugin/package.json
+++ b/packages/nextjs-webpack-plugin/package.json
@@ -54,14 +54,14 @@
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.10.0",
"@types/webpack": "^5.28.5",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vitest": "^1.5.0",
+ "vitest": "^2.1.8",
"webpack": "^5.96.1"
},
"peerDependencies": {
diff --git a/packages/nextjs-webpack-plugin/vitest.config.ts b/packages/nextjs-webpack-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/nextjs-webpack-plugin/vitest.config.ts
+++ b/packages/nextjs-webpack-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/nuxt-plugin/package.json b/packages/nuxt-plugin/package.json
index 17bb2c59..44e8a292 100644
--- a/packages/nuxt-plugin/package.json
+++ b/packages/nuxt-plugin/package.json
@@ -53,16 +53,16 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
- "nuxt": "3.14.159",
+ "nuxt": "3.14.1592",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
"nuxt": "3.x"
diff --git a/packages/nuxt-plugin/src/index.ts b/packages/nuxt-plugin/src/index.ts
index d2194400..83794fc5 100644
--- a/packages/nuxt-plugin/src/index.ts
+++ b/packages/nuxt-plugin/src/index.ts
@@ -74,7 +74,7 @@ const codecovNuxtPluginFactory = createVitePlugin(
*
* @see {@link @codecov/bundler-plugin-core!Options | Options} for list of options.
*/
-const codecovNuxtPlugin: NuxtModule = defineNuxtModule({
+const codecovNuxtPlugin = defineNuxtModule({
meta: {
name: PLUGIN_NAME,
configKey: "codecovNuxtPlugin",
@@ -82,6 +82,6 @@ const codecovNuxtPlugin: NuxtModule = defineNuxtModule({
setup(options) {
addVitePlugin(() => codecovNuxtPluginFactory(options));
},
-});
+}) as NuxtModule;
export default codecovNuxtPlugin;
diff --git a/packages/nuxt-plugin/vitest.config.ts b/packages/nuxt-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/nuxt-plugin/vitest.config.ts
+++ b/packages/nuxt-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/remix-vite-plugin/package.json b/packages/remix-vite-plugin/package.json
index 76c3855b..d3033941 100644
--- a/packages/remix-vite-plugin/package.json
+++ b/packages/remix-vite-plugin/package.json
@@ -52,15 +52,15 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
"remix": "2.x"
diff --git a/packages/remix-vite-plugin/vitest.config.ts b/packages/remix-vite-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/remix-vite-plugin/vitest.config.ts
+++ b/packages/remix-vite-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/rollup-plugin/package.json b/packages/rollup-plugin/package.json
index 03d058ad..8eb0539f 100644
--- a/packages/rollup-plugin/package.json
+++ b/packages/rollup-plugin/package.json
@@ -51,15 +51,15 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"rollup": "4.22.4",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vitest": "^1.5.0"
+ "vitest": "^2.1.8"
},
"peerDependencies": {
"rollup": "3.x || 4.x"
diff --git a/packages/rollup-plugin/vitest.config.ts b/packages/rollup-plugin/vitest.config.ts
index c1e62071..31d79bd2 100644
--- a/packages/rollup-plugin/vitest.config.ts
+++ b/packages/rollup-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
{
diff --git a/packages/solidstart-plugin/package.json b/packages/solidstart-plugin/package.json
index 01ffe2a0..9c3ee28f 100644
--- a/packages/solidstart-plugin/package.json
+++ b/packages/solidstart-plugin/package.json
@@ -52,15 +52,15 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
"@solidjs/start": "1.x"
diff --git a/packages/solidstart-plugin/vitest.config.ts b/packages/solidstart-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/solidstart-plugin/vitest.config.ts
+++ b/packages/solidstart-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/sveltekit-plugin/package.json b/packages/sveltekit-plugin/package.json
index fe84bee5..845ae9dc 100644
--- a/packages/sveltekit-plugin/package.json
+++ b/packages/sveltekit-plugin/package.json
@@ -52,19 +52,19 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
"@sveltejs/kit": "2.x",
- "svelte": "4.x"
+ "svelte": "4.x || 5.x"
},
"volta": {
"extends": "../../package.json"
diff --git a/packages/sveltekit-plugin/vitest.config.ts b/packages/sveltekit-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/sveltekit-plugin/vitest.config.ts
+++ b/packages/sveltekit-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json
index ff92878a..e73b8a20 100644
--- a/packages/vite-plugin/package.json
+++ b/packages/vite-plugin/package.json
@@ -51,18 +51,18 @@
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.11.15",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vite": "^5.2.14",
- "vitest": "^1.5.0"
+ "vite": "^6.0.3",
+ "vitest": "^2.1.8"
},
"peerDependencies": {
- "vite": "4.x || 5.x"
+ "vite": "4.x || 5.x || 6.x"
},
"volta": {
"extends": "../../package.json"
diff --git a/packages/vite-plugin/vitest.config.ts b/packages/vite-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/vite-plugin/vitest.config.ts
+++ b/packages/vite-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json
index ad8e6a51..2896e423 100644
--- a/packages/webpack-plugin/package.json
+++ b/packages/webpack-plugin/package.json
@@ -52,15 +52,15 @@
"@rollup/plugin-replace": "^5.0.5",
"@types/node": "^20.10.0",
"@types/webpack": "^5.28.5",
- "@vitest/coverage-v8": "^1.5.0",
+ "@vitest/coverage-v8": "^2.1.8",
"chalk": "4.1.2",
"codecovProdRollupPlugin": "npm:@codecov/rollup-plugin@1.5.0",
- "msw": "^2.1.5",
+ "msw": "^2.7.0",
"ts-node": "^10.9.2",
- "typedoc": "^0.25.12",
+ "typedoc": "^0.27.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
- "vitest": "^1.5.0",
+ "vitest": "^2.1.8",
"webpack": "^5.96.1"
},
"peerDependencies": {
diff --git a/packages/webpack-plugin/vitest.config.ts b/packages/webpack-plugin/vitest.config.ts
index 5ec1a42c..5167f2b7 100644
--- a/packages/webpack-plugin/vitest.config.ts
+++ b/packages/webpack-plugin/vitest.config.ts
@@ -1,10 +1,10 @@
import replace from "@rollup/plugin-replace";
-import { defineProject } from "vitest/config";
+import { defineConfig } from "vitest/config";
import { config } from "../../vitest.shared";
const packageJson = await import("./package.json");
-export default defineProject({
+export default defineConfig({
...config,
plugins: [
//@ts-expect-error handle conflicting version types
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index a547311c..e17331f0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -51,17 +51,17 @@ importers:
specifier: ^3.2.4
version: 3.2.4
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
vite:
- specifier: ^5.4.11
- version: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
examples/astro:
dependencies:
@@ -74,6 +74,9 @@ importers:
'@astrojs/react':
specifier: ^3.6.3
version: 3.6.3(@types/node@20.12.12)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.27.0)
+ '@codecov/astro-plugin':
+ specifier: workspace:*
+ version: link:../../packages/astro-plugin
'@types/react':
specifier: ^18.3.12
version: 18.3.12
@@ -92,10 +95,33 @@ importers:
typescript:
specifier: ^5.7.2
version: 5.7.2
- devDependencies:
+
+ examples/astro-5:
+ dependencies:
+ '@astrojs/node':
+ specifier: ^9.0.0
+ version: 9.0.0(astro@5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
+ '@astrojs/react':
+ specifier: ^4.1.1
+ version: 4.1.1(@types/node@20.12.12)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(jiti@2.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.27.0)(yaml@2.6.1)
'@codecov/astro-plugin':
specifier: workspace:*
version: link:../../packages/astro-plugin
+ '@types/react':
+ specifier: ^19.0.1
+ version: 19.0.1
+ '@types/react-dom':
+ specifier: ^19.0.2
+ version: 19.0.2(@types/react@19.0.1)
+ astro:
+ specifier: ^5.0.9
+ version: 5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
+ react:
+ specifier: ^19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: ^19.0.0
+ version: 19.0.0(react@19.0.0)
examples/bundle-analyzer-cli:
devDependencies:
@@ -179,14 +205,14 @@ importers:
examples/next-js-15:
dependencies:
next:
- specifier: 15.0.0-rc.0
- version: 15.0.0-rc.0(react-dom@19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822))(react@19.0.0-rc-b57d2823-20240822)
+ specifier: 15.1.0
+ version: 15.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react:
- specifier: 19.0.0-rc-b57d2823-20240822
- version: 19.0.0-rc-b57d2823-20240822
+ specifier: 19.0.0
+ version: 19.0.0
react-dom:
- specifier: 19.0.0-rc-b57d2823-20240822
- version: 19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822)
+ specifier: 19.0.0
+ version: 19.0.0(react@19.0.0)
devDependencies:
'@codecov/nextjs-webpack-plugin':
specifier: workspace:^
@@ -195,11 +221,11 @@ importers:
specifier: ^20
version: 20.12.12
'@types/react':
- specifier: ^18
- version: 18.3.3
+ specifier: ^19
+ version: 19.0.1
'@types/react-dom':
- specifier: ^18
- version: 18.3.0
+ specifier: ^19
+ version: 19.0.2(@types/react@19.0.1)
typescript:
specifier: ^5
version: 5.4.5
@@ -207,14 +233,14 @@ importers:
examples/nuxt:
dependencies:
nuxt:
- specifier: ^3.12.4
- version: 3.12.4(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.22.4)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^3.14.1592
+ version: 3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
vue:
- specifier: ^3.4.21
- version: 3.4.24(typescript@5.7.2)
+ specifier: ^3.5.13
+ version: 3.5.13(typescript@5.7.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.2(vue@3.4.24(typescript@5.7.2))
+ specifier: ^4.5.0
+ version: 4.5.0(vue@3.5.13(typescript@5.7.2))
devDependencies:
'@codecov/nuxt-plugin':
specifier: workspace:^
@@ -245,8 +271,8 @@ importers:
specifier: ^6.20.0
version: 6.20.0(eslint@8.56.0)(typescript@5.4.5)
'@vitejs/plugin-react':
- specifier: ^4.2.1
- version: 4.2.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^4.3.4
+ version: 4.3.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
eslint:
specifier: ^8.56.0
version: 8.56.0
@@ -263,8 +289,8 @@ importers:
specifier: ^5.3.3
version: 5.4.5
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
examples/remix:
dependencies:
@@ -379,17 +405,17 @@ importers:
specifier: ^0.14.1
version: 0.14.1(solid-js@1.8.19)
'@solidjs/start':
- specifier: ^1.0.6
- version: 1.0.6(rollup@4.22.4)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^1.0.10
+ version: 1.0.10(solid-js@1.8.19)(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
solid-js:
specifier: ^1.8.18
version: 1.8.19
vinxi:
- specifier: ^0.4.1
- version: 0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ specifier: ^0.4.3
+ version: 0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2)
vite-plugin-solid:
- specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.11.0
+ version: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
examples/sveltekit:
devDependencies:
@@ -403,20 +429,20 @@ importers:
specifier: ^1.0.0
version: 1.0.0
'@sveltejs/adapter-auto':
- specifier: ^3.0.0
- version: 3.2.0(@sveltejs/kit@2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))
+ specifier: ^3.3.1
+ version: 3.3.1(@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))
'@sveltejs/kit':
- specifier: ^2.5.25
- version: 2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.12.1
+ version: 2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@sveltejs/vite-plugin-svelte':
- specifier: ^3.0.0
- version: 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^5.0.2
+ version: 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
svelte:
- specifier: ^4.2.7
- version: 4.2.15
+ specifier: ^5.14.1
+ version: 5.14.1
svelte-check:
- specifier: ^3.6.0
- version: 3.7.0(@babel/core@7.26.0)(postcss-load-config@4.0.2(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.15)
+ specifier: ^4.1.1
+ version: 4.1.1(picomatch@4.0.2)(svelte@5.14.1)(typescript@5.3.3)
tslib:
specifier: ^2.4.1
version: 2.6.2
@@ -424,8 +450,8 @@ importers:
specifier: ^5.0.0
version: 5.3.3
vite:
- specifier: ^5.1.8
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
examples/tokenless:
dependencies:
@@ -452,8 +478,8 @@ importers:
specifier: ^6.20.0
version: 6.20.0(eslint@8.56.0)(typescript@5.4.5)
'@vitejs/plugin-react':
- specifier: ^4.2.1
- version: 4.2.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^4.3.4
+ version: 4.3.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
eslint:
specifier: ^8.56.0
version: 8.56.0
@@ -470,8 +496,8 @@ importers:
specifier: ^5.3.3
version: 5.4.5
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
examples/vite:
dependencies:
@@ -498,8 +524,8 @@ importers:
specifier: ^6.20.0
version: 6.20.0(eslint@8.56.0)(typescript@5.3.3)
'@vitejs/plugin-react':
- specifier: ^4.2.1
- version: 4.2.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^4.3.4
+ version: 4.3.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
eslint:
specifier: ^8.56.0
version: 8.56.0
@@ -516,8 +542,8 @@ importers:
specifier: ^5.3.3
version: 5.3.3
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
examples/webpack:
dependencies:
@@ -542,10 +568,10 @@ importers:
version: 4.17.21
solid-start:
specifier: ^0.3.11
- version: 0.3.11(@solidjs/meta@0.29.4(solid-js@1.8.19))(@solidjs/router@0.14.1(solid-js@1.8.19))(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ version: 0.3.11(@solidjs/meta@0.29.4(solid-js@1.8.19))(@solidjs/router@0.14.1(solid-js@1.8.19))(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
vite-plugin-solid:
- specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.11.0
+ version: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
devDependencies:
'@codecov/astro-plugin':
specifier: workspace:*
@@ -579,7 +605,7 @@ importers:
version: link:../packages/webpack-plugin
'@remix-run/dev':
specifier: ^2.9.2
- version: 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/serve@2.9.2(typescript@5.7.2))(@types/node@20.11.15)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ version: 2.9.2(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/serve@2.15.1(typescript@5.7.2))(@types/node@20.11.15)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@rollup/plugin-commonjs':
specifier: ^25.0.7
version: 25.0.7(rollup@3.29.4)
@@ -587,11 +613,11 @@ importers:
specifier: ^15.2.3
version: 15.2.3(rollup@3.29.4)
'@solidjs/start':
- specifier: ^1.0.6
- version: 1.0.6(rollup@3.29.4)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^1.0.10
+ version: 1.0.10(solid-js@1.8.19)(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@sveltejs/kit':
- specifier: ^2.5.25
- version: 2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.12.1
+ version: 2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@types/bun':
specifier: ^1.0.6
version: 1.0.6
@@ -605,8 +631,8 @@ importers:
specifier: ^4.1.0
version: 4.4.0
nuxt:
- specifier: 3.12.4
- version: 3.12.4(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: 3.14.1592
+ version: 3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
react:
specifier: ^18.2.0
version: 18.3.1
@@ -628,6 +654,9 @@ importers:
viteV5:
specifier: npm:vite@5.2.14
version: vite@5.2.14(@types/node@20.11.15)(terser@5.27.0)
+ viteV6:
+ specifier: npm:vite@6.0.3
+ version: vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vue-routerV4:
specifier: npm:vue-router@4.3.0
version: vue-router@4.3.0(vue@3.5.13(typescript@5.7.2))
@@ -638,7 +667,7 @@ importers:
specifier: npm:webpack@5.90.0
version: webpack@5.90.0(esbuild@0.17.19)
- integration-tests/test-apps/astro:
+ integration-tests/test-apps/astro-4:
dependencies:
'@astrojs/check':
specifier: ^0.9.4
@@ -672,6 +701,33 @@ importers:
specifier: workspace:*
version: link:../../../packages/astro-plugin
+ integration-tests/test-apps/astro-5:
+ dependencies:
+ '@astrojs/node':
+ specifier: ^9.0.0
+ version: 9.0.0(astro@5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
+ '@astrojs/react':
+ specifier: ^4.1.1
+ version: 4.1.1(@types/node@20.12.12)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(jiti@2.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.27.0)(yaml@2.6.1)
+ '@codecov/astro-plugin':
+ specifier: workspace:*
+ version: link:../../../packages/astro-plugin
+ '@types/react':
+ specifier: ^19.0.1
+ version: 19.0.1
+ '@types/react-dom':
+ specifier: ^19.0.2
+ version: 19.0.2(@types/react@19.0.1)
+ astro:
+ specifier: ^5.0.9
+ version: 5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
+ react:
+ specifier: ^19.0.0
+ version: 19.0.0
+ react-dom:
+ specifier: ^19.0.0
+ version: 19.0.0(react@19.0.0)
+
integration-tests/test-apps/bundle-analyzer/dotenv-vercel:
devDependencies:
'@codecov/bundle-analyzer':
@@ -684,8 +740,8 @@ importers:
specifier: ^5.0.2
version: 5.4.5
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
integration-tests/test-apps/nextjs:
dependencies:
@@ -718,14 +774,14 @@ importers:
integration-tests/test-apps/nuxt:
dependencies:
nuxt:
- specifier: ^3.12.4
- version: 3.12.4(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^3.14.1592
+ version: 3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
vue:
- specifier: ^3.4.21
- version: 3.4.24(typescript@5.7.2)
+ specifier: ^3.5.13
+ version: 3.5.13(typescript@5.7.2)
vue-router:
- specifier: ^4.3.0
- version: 4.3.2(vue@3.4.24(typescript@5.7.2))
+ specifier: ^4.5.0
+ version: 4.5.0(vue@3.5.13(typescript@5.7.2))
devDependencies:
'@codecov/nuxt-plugin':
specifier: workspace:^
@@ -734,14 +790,14 @@ importers:
integration-tests/test-apps/remix:
dependencies:
'@remix-run/node':
- specifier: ^2.9.2
- version: 2.9.2(typescript@5.4.5)
+ specifier: ^2.15.1
+ version: 2.15.1(typescript@5.4.5)
'@remix-run/react':
- specifier: ^2.9.2
- version: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
+ specifier: ^2.15.1
+ version: 2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
'@remix-run/serve':
- specifier: ^2.9.2
- version: 2.9.2(typescript@5.4.5)
+ specifier: ^2.15.1
+ version: 2.15.1(typescript@5.4.5)
isbot:
specifier: ^4.1.0
version: 4.4.0
@@ -756,8 +812,8 @@ importers:
specifier: workspace:^
version: link:../../../packages/remix-vite-plugin
'@remix-run/dev':
- specifier: ^2.9.2
- version: 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/serve@2.9.2(typescript@5.4.5))(@types/node@20.12.12)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))(typescript@5.4.5)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.15.1
+ version: 2.15.1(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/serve@2.15.1(typescript@5.4.5))(@types/node@20.12.12)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))(typescript@5.4.5)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
'@types/react':
specifier: ^18.2.20
version: 18.3.3
@@ -816,17 +872,17 @@ importers:
specifier: ^0.14.1
version: 0.14.1(solid-js@1.8.19)
'@solidjs/start':
- specifier: ^1.0.6
- version: 1.0.6(rollup@4.27.3)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^1.0.10
+ version: 1.0.10(solid-js@1.8.19)(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
solid-js:
specifier: ^1.8.18
version: 1.8.19
vinxi:
- specifier: ^0.4.1
- version: 0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ specifier: ^0.4.3
+ version: 0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2)
vite-plugin-solid:
- specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.11.0
+ version: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
integration-tests/test-apps/sveltekit:
devDependencies:
@@ -840,20 +896,20 @@ importers:
specifier: ^1.0.0
version: 1.0.0
'@sveltejs/adapter-auto':
- specifier: ^3.0.0
- version: 3.2.0(@sveltejs/kit@2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))
+ specifier: ^3.3.1
+ version: 3.3.1(@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))
'@sveltejs/kit':
- specifier: ^2.5.25
- version: 2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.12.1
+ version: 2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@sveltejs/vite-plugin-svelte':
- specifier: ^3.0.0
- version: 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^5.0.2
+ version: 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
svelte:
- specifier: ^4.2.7
- version: 4.2.15
+ specifier: ^5.14.1
+ version: 5.14.1
vite:
- specifier: ^5.1.8
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
packages/astro-plugin:
dependencies:
@@ -869,28 +925,28 @@ importers:
devDependencies:
'@rollup/plugin-replace':
specifier: ^5.0.5
- version: 5.0.7(rollup@3.29.4)
+ version: 5.0.7(rollup@4.27.3)
'@types/node':
specifier: ^20.11.15
version: 20.12.12
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0))
astro:
- specifier: ^4.16.14
- version: 4.16.14(@types/node@20.12.12)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)
+ specifier: ^5.0.9
+ version: 5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
- version: '@codecov/rollup-plugin@1.5.0(rollup@3.29.4)'
+ version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.7.2)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.12.12)(typescript@5.7.2)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.12.12)(typescript@5.7.2)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.7.2)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.7.2)
typescript:
specifier: ^5.3.3
version: 5.7.2
@@ -898,11 +954,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.7.2)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0)
packages/bundle-analyzer:
dependencies:
@@ -929,29 +985,29 @@ importers:
specifier: ^17.0.33
version: 17.0.33
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.7.2)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.12.12)(typescript@5.7.2)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.12.12)(typescript@5.7.2)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.7.2)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.7.2)
unbuild:
specifier: ^2.0.0
version: 2.0.0(typescript@5.7.2)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0)
packages/bundler-plugin-core:
dependencies:
@@ -984,26 +1040,26 @@ importers:
specifier: ^7.5.6
version: 7.5.6
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
- version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
+ version: '@codecov/rollup-plugin@1.5.0(rollup@3.29.4)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
testdouble:
specifier: ^3.20.1
version: 3.20.1
testdouble-vitest:
- specifier: ^0.1.3
- version: 0.1.3(testdouble@3.20.1)(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^0.2.0
+ version: 0.2.0(testdouble@3.20.1)(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.11.15)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1011,8 +1067,8 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
packages/nextjs-webpack-plugin:
dependencies:
@@ -1024,7 +1080,7 @@ importers:
version: link:../webpack-plugin
next:
specifier: 14.x || 15.x
- version: 14.2.10(react-dom@19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822))(react@19.0.0-rc-b57d2823-20240822)
+ version: 14.2.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
unplugin:
specifier: ^1.10.1
version: 1.10.1
@@ -1039,20 +1095,20 @@ importers:
specifier: ^5.28.5
version: 5.28.5
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.4.5)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.12.12)(typescript@5.4.5)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.4.5)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.4.5)
typescript:
specifier: ^5.3.3
version: 5.4.5
@@ -1060,8 +1116,8 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.4.5)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0)
webpack:
specifier: ^5.96.1
version: 5.96.1
@@ -1088,23 +1144,23 @@ importers:
specifier: ^20.11.15
version: 20.11.15
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
nuxt:
- specifier: 3.14.159
- version: 3.14.159(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ specifier: 3.14.1592
+ version: 3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.11.15)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1112,11 +1168,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
packages/remix-vite-plugin:
dependencies:
@@ -1140,20 +1196,20 @@ importers:
specifier: ^20.11.15
version: 20.12.12
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.4.5)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.12.12)(typescript@5.4.5)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.4.5)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.4.5)
typescript:
specifier: ^5.3.3
version: 5.4.5
@@ -1161,11 +1217,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.4.5)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0)
packages/rollup-plugin:
dependencies:
@@ -1183,14 +1239,14 @@ importers:
specifier: ^20.11.15
version: 20.11.15
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.22.4)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
rollup:
specifier: 4.22.4
version: 4.22.4
@@ -1198,8 +1254,8 @@ importers:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.11.15)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1207,8 +1263,8 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
packages/solidstart-plugin:
dependencies:
@@ -1220,7 +1276,7 @@ importers:
version: link:../vite-plugin
'@solidjs/start':
specifier: 1.x
- version: 1.0.6(rollup@4.27.3)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ version: 1.0.10(solid-js@1.8.19)(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
unplugin:
specifier: ^1.10.1
version: 1.10.1
@@ -1232,20 +1288,20 @@ importers:
specifier: ^20.11.15
version: 20.12.12
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.4.5)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.12.12)(typescript@5.4.5)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.4.5)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.4.5)
typescript:
specifier: ^5.3.3
version: 5.4.5
@@ -1253,11 +1309,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.4.5)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0)
packages/sveltekit-plugin:
dependencies:
@@ -1269,9 +1325,9 @@ importers:
version: link:../vite-plugin
'@sveltejs/kit':
specifier: 2.x
- version: 2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ version: 2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
svelte:
- specifier: 4.x
+ specifier: 4.x || 5.x
version: 4.2.15
unplugin:
specifier: ^1.10.1
@@ -1284,20 +1340,20 @@ importers:
specifier: ^20.11.15
version: 20.11.15
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.11.15)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1305,11 +1361,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
packages/vite-plugin:
dependencies:
@@ -1327,20 +1383,20 @@ importers:
specifier: ^20.11.15
version: 20.11.15
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))
codecovProdRollupPlugin:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.11.15)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1348,11 +1404,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vite:
- specifier: ^5.2.14
- version: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^6.0.3
+ version: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
packages/webpack-plugin:
dependencies:
@@ -1373,8 +1429,8 @@ importers:
specifier: ^5.28.5
version: 5.28.5
'@vitest/coverage-v8':
- specifier: ^1.5.0
- version: 1.5.0(vitest@1.5.0(@types/node@20.10.0)(terser@5.27.0))
+ specifier: ^2.1.8
+ version: 2.1.8(vitest@2.1.8(@types/node@20.10.0)(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(terser@5.27.0))
chalk:
specifier: 4.1.2
version: 4.1.2
@@ -1382,14 +1438,14 @@ importers:
specifier: npm:@codecov/rollup-plugin@1.5.0
version: '@codecov/rollup-plugin@1.5.0(rollup@4.27.3)'
msw:
- specifier: ^2.1.5
- version: 2.1.5(typescript@5.3.3)
+ specifier: ^2.7.0
+ version: 2.7.0(@types/node@20.10.0)(typescript@5.3.3)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@20.10.0)(typescript@5.3.3)
typedoc:
- specifier: ^0.25.12
- version: 0.25.12(typescript@5.3.3)
+ specifier: ^0.27.5
+ version: 0.27.5(typescript@5.3.3)
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1397,8 +1453,8 @@ importers:
specifier: ^2.0.0
version: 2.0.0(typescript@5.3.3)
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@20.10.0)(terser@5.27.0)
+ specifier: ^2.1.8
+ version: 2.1.8(@types/node@20.10.0)(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(terser@5.27.0)
webpack:
specifier: ^5.96.1
version: 5.96.1
@@ -1444,6 +1500,9 @@ packages:
'@astrojs/internal-helpers@0.4.1':
resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==}
+ '@astrojs/internal-helpers@0.4.2':
+ resolution: {integrity: sha512-EdDWkC3JJVcpGpqJAU/5hSk2LKXyG3mNGkzGoAuyK+xoPHbaVdSuIWoN1QTnmK3N/gGfaaAfM8gO2KDCAW7S3w==}
+
'@astrojs/language-server@2.15.4':
resolution: {integrity: sha512-JivzASqTPR2bao9BWsSc/woPHH7OGSGc9aMxXL4U6egVTqBycB3ZHdBJPuOCVtcGLrzdWTosAqVPz1BVoxE0+A==}
hasBin: true
@@ -1459,15 +1518,27 @@ packages:
'@astrojs/markdown-remark@5.3.0':
resolution: {integrity: sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==}
+ '@astrojs/markdown-remark@6.0.1':
+ resolution: {integrity: sha512-CTSYijj25NfxgZi15TU3CwPwgyD1/7yA3FcdcNmB9p94nydupiUbrIiq3IqeTp2m5kCVzxbPZeC7fTwEOaNyGw==}
+
'@astrojs/node@8.3.4':
resolution: {integrity: sha512-xzQs39goN7xh9np9rypGmbgZj3AmmjNxEMj9ZWz5aBERlqqFF3n8A/w/uaJeZ/bkHS60l1BXVS0tgsQt9MFqBA==}
peerDependencies:
astro: ^4.2.0
+ '@astrojs/node@9.0.0':
+ resolution: {integrity: sha512-3h/5kFZvpuo+chYAjj75YhtRUxfquxEJrpZRRC7TdiMGp2WhLp2us4VXm2mjezJp/zHKotW2L3qgp0P2ujQ0xw==}
+ peerDependencies:
+ astro: ^5.0.0
+
'@astrojs/prism@3.1.0':
resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
+ '@astrojs/prism@3.2.0':
+ resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==}
+ engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
+
'@astrojs/react@3.6.3':
resolution: {integrity: sha512-5ihLQDH5Runddug5AZYlnp/Q5T81QxhwnWJXA9rchBAdh11c6UhBbv9Kdk7b2PkXoEU70CGWBP9hSh0VCR58eA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
@@ -1477,10 +1548,23 @@ packages:
react: ^17.0.2 || ^18.0.0 || ^19.0.0-beta
react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0-beta
+ '@astrojs/react@4.1.1':
+ resolution: {integrity: sha512-hT66DWYGquAgXm0miy+mjxEp9zOiqhKUWzLaJbXv+PDlObggmj8uiAkc+JWOs6lQdC4tldY3vIAr50ex0W9NKA==}
+ engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
+ peerDependencies:
+ '@types/react': ^17.0.50 || ^18.0.21 || ^19.0.0
+ '@types/react-dom': ^17.0.17 || ^18.0.6 || ^19.0.0
+ react: ^17.0.2 || ^18.0.0 || ^19.0.0
+ react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0
+
'@astrojs/telemetry@3.1.0':
resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
+ '@astrojs/telemetry@3.2.0':
+ resolution: {integrity: sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==}
+ engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
+
'@astrojs/yaml2ts@0.2.2':
resolution: {integrity: sha512-GOfvSr5Nqy2z5XiwqTouBBpy5FyI6DEe+/g/Mk5am9SjILN1S5fOEvYK0GuWHg98yS/dobP4m8qyqw/URW35fQ==}
@@ -1512,10 +1596,6 @@ packages:
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.23.9':
- resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.24.4':
resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
engines: {node: '>=6.9.0'}
@@ -1594,6 +1674,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-create-regexp-features-plugin@7.24.7':
resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
engines: {node: '>=6.9.0'}
@@ -1637,6 +1723,10 @@ packages:
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
@@ -1685,8 +1775,8 @@ packages:
resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.22.5':
- resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.0':
@@ -1725,6 +1815,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-simple-access@7.22.5':
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
@@ -1741,6 +1837,10 @@ packages:
resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
@@ -1789,10 +1889,6 @@ packages:
resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.23.9':
- resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.24.4':
resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
engines: {node: '>=6.9.0'}
@@ -1989,6 +2085,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-unicode-sets-regex@7.18.6':
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -2223,24 +2325,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.23.3':
- resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.23.3':
- resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
@@ -2307,6 +2397,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-typescript@7.26.3':
+ resolution: {integrity: sha512-6+5hpdr6mETwSKjmJUdYw0EIkATiQhnELWlE3kJFBwSg/BGIVwVaVbX+gOXBCdc7Ln1RXZxyWGecIXhUfnl7oA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-escapes@7.24.7':
resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
engines: {node: '>=6.9.0'}
@@ -2379,10 +2475,6 @@ packages:
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.23.9':
- resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.24.1':
resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
engines: {node: '>=6.9.0'}
@@ -2418,12 +2510,15 @@ packages:
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- '@bundled-es-modules/cookie@2.0.0':
- resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==}
+ '@bundled-es-modules/cookie@2.0.1':
+ resolution: {integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==}
'@bundled-es-modules/statuses@1.0.1':
resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==}
+ '@bundled-es-modules/tough-cookie@0.1.6':
+ resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
+
'@changesets/apply-release-plan@7.0.0':
resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
@@ -2476,9 +2571,6 @@ packages:
'@changesets/write@0.3.0':
resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
- '@cloudflare/kv-asset-handler@0.3.1':
- resolution: {integrity: sha512-lKN2XCfKCmpKb86a1tl4GIwsJYDy9TGuwjhDELLmpKygQhw8X2xR4dusgpC5Tg7q1pB96Eb0rBo81kxSILQMwA==}
-
'@cloudflare/kv-asset-handler@0.3.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
@@ -2546,12 +2638,6 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.23.1':
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.24.0':
resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==}
engines: {node: '>=18'}
@@ -2594,12 +2680,6 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.23.1':
- resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.24.0':
resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==}
engines: {node: '>=18'}
@@ -2642,12 +2722,6 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.23.1':
- resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.24.0':
resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==}
engines: {node: '>=18'}
@@ -2690,12 +2764,6 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.23.1':
- resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.24.0':
resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==}
engines: {node: '>=18'}
@@ -2738,12 +2806,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.23.1':
- resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.24.0':
resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==}
engines: {node: '>=18'}
@@ -2786,12 +2848,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.1':
- resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.24.0':
resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==}
engines: {node: '>=18'}
@@ -2834,12 +2890,6 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.23.1':
- resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.24.0':
resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==}
engines: {node: '>=18'}
@@ -2882,12 +2932,6 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.1':
- resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.24.0':
resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==}
engines: {node: '>=18'}
@@ -2930,12 +2974,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.23.1':
- resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.24.0':
resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==}
engines: {node: '>=18'}
@@ -2978,12 +3016,6 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.23.1':
- resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.24.0':
resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==}
engines: {node: '>=18'}
@@ -3026,12 +3058,6 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.23.1':
- resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.24.0':
resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==}
engines: {node: '>=18'}
@@ -3074,12 +3100,6 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.23.1':
- resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.24.0':
resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==}
engines: {node: '>=18'}
@@ -3122,12 +3142,6 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.23.1':
- resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.24.0':
resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==}
engines: {node: '>=18'}
@@ -3170,12 +3184,6 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.23.1':
- resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.24.0':
resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==}
engines: {node: '>=18'}
@@ -3218,12 +3226,6 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.1':
- resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.24.0':
resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==}
engines: {node: '>=18'}
@@ -3266,12 +3268,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.23.1':
- resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.24.0':
resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==}
engines: {node: '>=18'}
@@ -3314,12 +3310,6 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.23.1':
- resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.24.0':
resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==}
engines: {node: '>=18'}
@@ -3362,24 +3352,12 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.1':
- resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.24.0':
resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.1':
- resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
'@esbuild/openbsd-arm64@0.24.0':
resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==}
engines: {node: '>=18'}
@@ -3422,12 +3400,6 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.1':
- resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.24.0':
resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==}
engines: {node: '>=18'}
@@ -3470,12 +3442,6 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.23.1':
- resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.24.0':
resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==}
engines: {node: '>=18'}
@@ -3518,12 +3484,6 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.23.1':
- resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.24.0':
resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==}
engines: {node: '>=18'}
@@ -3566,12 +3526,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.23.1':
- resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.24.0':
resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==}
engines: {node: '>=18'}
@@ -3614,12 +3568,6 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.23.1':
- resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.24.0':
resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==}
engines: {node: '>=18'}
@@ -3651,6 +3599,9 @@ packages:
'@fontsource/fira-mono@4.5.10':
resolution: {integrity: sha512-bxUnRP8xptGRo8YXeY073DSpfK74XpSb0ZyRNpHV9WvLnJ7TwPOjZll8hTMin7zLC6iOp59pDZ8EQDj1gzgAQQ==}
+ '@gerrit0/mini-shiki@1.24.4':
+ resolution: {integrity: sha512-YEHW1QeAg6UmxEmswiQbOVEg1CW22b1XUD/lNTliOsu0LD0wqoyleFMnmbTp697QE0pcadQiR5cVtbbAPncvpw==}
+
'@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -3775,6 +3726,26 @@ packages:
cpu: [x64]
os: [win32]
+ '@inquirer/confirm@5.1.0':
+ resolution: {integrity: sha512-osaBbIMEqVFjTX5exoqPXs6PilWQdjaLhGtMDXMXg/yxkHXNq43GlxGyTA35lK2HpzUgDN+Cjh/2AmqCN0QJpw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+
+ '@inquirer/core@10.1.1':
+ resolution: {integrity: sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==}
+ engines: {node: '>=18'}
+
+ '@inquirer/figures@1.0.8':
+ resolution: {integrity: sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==}
+ engines: {node: '>=18'}
+
+ '@inquirer/type@3.0.1':
+ resolution: {integrity: sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+
'@ioredis/commands@1.2.0':
resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==}
@@ -3786,10 +3757,6 @@ packages:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- '@jest/schemas@29.6.3':
- resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -3839,25 +3806,13 @@ packages:
'@mdx-js/mdx@2.3.0':
resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
- '@mswjs/cookies@1.1.0':
- resolution: {integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==}
- engines: {node: '>=18'}
-
- '@mswjs/interceptors@0.25.15':
- resolution: {integrity: sha512-s4jdyxmq1eeftfDXJ7MUiK/jlvYaU8Sr75+42hHCVBrYez0k51RHbMitKIKdmsF92Q6gwhp8Sm1MmvdA9llpcg==}
+ '@mswjs/interceptors@0.37.3':
+ resolution: {integrity: sha512-USvgCL/uOGFtVa6SVyRrC8kIAedzRohxIXN5LISlg5C5vLZCn7dgMFVSNhSF9cuBEFrm/O2spDWEZeMnw4ZXYg==}
engines: {node: '>=18'}
'@neoconfetti/svelte@1.0.0':
resolution: {integrity: sha512-SmksyaJAdSlMa9cTidVSIqYo1qti+WTsviNDwgjNVm+KQ3DRP2Df9umDIzC4vCcpEYY+chQe0i2IKnLw03AT8Q==}
- '@netlify/functions@2.6.0':
- resolution: {integrity: sha512-vU20tij0fb4nRGACqb+5SQvKd50JYyTyEhQetCMHdakcJFzjLDivvRR16u1G2Oy4A7xNAtGJF1uz8reeOtTVcQ==}
- engines: {node: '>=14.0.0'}
-
- '@netlify/functions@2.8.1':
- resolution: {integrity: sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==}
- engines: {node: '>=14.0.0'}
-
'@netlify/functions@2.8.2':
resolution: {integrity: sha512-DeoAQh8LuNPvBE4qsKlezjKj0PyXDryOFJfJKo3Z1qZLKzQ21sT314KQKPVjfvw6knqijj+IO+0kHXy/TJiqNA==}
engines: {node: '>=14.0.0'}
@@ -3866,14 +3821,6 @@ packages:
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
- '@netlify/serverless-functions-api@1.14.0':
- resolution: {integrity: sha512-HUNETLNvNiC2J+SB/YuRwJA9+agPrc0azSoWVk8H85GC+YE114hcS5JW+dstpKwVerp2xILE3vNWN7IMXP5Q5Q==}
- engines: {node: ^14.18.0 || >=16.0.0}
-
- '@netlify/serverless-functions-api@1.19.1':
- resolution: {integrity: sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==}
- engines: {node: '>=18.0.0'}
-
'@netlify/serverless-functions-api@1.26.1':
resolution: {integrity: sha512-q3L9i3HoNfz0SGpTIS4zTcKBbRkxzCRpd169eyiTuk3IwcPC3/85mzLHranlKo2b+HYT0gu37YxGB45aD8A3Tw==}
engines: {node: '>=18.0.0'}
@@ -3881,8 +3828,8 @@ packages:
'@next/env@14.2.10':
resolution: {integrity: sha512-dZIu93Bf5LUtluBXIv4woQw2cZVZ2DJTjax5/5DOs3lzEOeKLy7GxRSr4caK9/SCPdaW6bCgpye6+n4Dh9oJPw==}
- '@next/env@15.0.0-rc.0':
- resolution: {integrity: sha512-6W0ndQvHR9sXcqcKeR/inD2UTRCs9+VkSK3lfaGmEuZs7EjwwXMO2BPYjz9oBrtfPL3xuTjtXsHKSsalYQ5l1Q==}
+ '@next/env@15.1.0':
+ resolution: {integrity: sha512-UcCO481cROsqJuszPPXJnb7GGuLq617ve4xuAyyNG4VSSocJNtMU5Fsx+Lp6mlN8c7W58aZLc5y6D/2xNmaK+w==}
'@next/eslint-plugin-next@14.2.10':
resolution: {integrity: sha512-LqJcPP5QkmKewpwO3zX8SoVfWwKn5NKwfcs/j52oJa5EsEDyUsqjsmj5IRzmAJA0FSuB4umhjG55AGayY306fw==}
@@ -3893,8 +3840,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@15.0.0-rc.0':
- resolution: {integrity: sha512-4OpTXvAWcSabXA5d688zdUwa3sfT9QrLnHMdpv4q2UDnnuqmOI0xLb6lrOxwpi+vHJNkneuNLqyc5HGBhkqL6A==}
+ '@next/swc-darwin-arm64@15.1.0':
+ resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -3905,8 +3852,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@15.0.0-rc.0':
- resolution: {integrity: sha512-/TD8M9DT244uhtFA8P/0DUbM7ftg2zio6yOo6ajV16vNjkcug9Kt9//Wa4SrJjWcsGZpViLctOlwn3/6JFAuAA==}
+ '@next/swc-darwin-x64@15.1.0':
+ resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -3917,8 +3864,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@15.0.0-rc.0':
- resolution: {integrity: sha512-3VTO32938AcqOlOI/U61/MIpeYrblP22VU1GrgmMQJozsAXEJgLCgf3wxZtn61/FG4Yc0tp7rPZE2t1fIGe0+w==}
+ '@next/swc-linux-arm64-gnu@15.1.0':
+ resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -3929,8 +3876,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@15.0.0-rc.0':
- resolution: {integrity: sha512-0kDnxM3AfrrHFJ/wTkjkv7cVHIaGwv+CzDg9lL2BoLEM4kMQhH20DTsBOMqpTpo1K2KCg67LuTGd3QOITT5uFQ==}
+ '@next/swc-linux-arm64-musl@15.1.0':
+ resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -3941,8 +3888,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.0.0-rc.0':
- resolution: {integrity: sha512-fPMNahzqYFjm5h0ncJ5+F3NrShmWhpusM+zrQl01MMU0Ed5xsL4pJJDSuXV4wPkNUSjCP3XstTjxR5kBdO4juQ==}
+ '@next/swc-linux-x64-gnu@15.1.0':
+ resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -3953,8 +3900,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@15.0.0-rc.0':
- resolution: {integrity: sha512-7/FLgOqrrQAxOVQrxfr3bGgZ83pSCmc2S3TXBILnHw0S8qLxmFjhSjH5ogaDmjrES/PSYMaX1FsP5Af88hp7Gw==}
+ '@next/swc-linux-x64-musl@15.1.0':
+ resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -3965,8 +3912,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@15.0.0-rc.0':
- resolution: {integrity: sha512-5wcqoYHh7hbdghjH6Xs3i5/f0ov+i1Xw2E3O+BzZNESYVLgCM1q7KJu5gdGFoXA2gz5XaKF/VBcYHikLzyjgmA==}
+ '@next/swc-win32-arm64-msvc@15.1.0':
+ resolution: {integrity: sha512-WEAoHyG14t5sTavZa1c6BnOIEukll9iqFRTavqRVPfYmfegOAd5MaZfXgOGG6kGo1RduyGdTHD4+YZQSdsNZXg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -3977,20 +3924,14 @@ packages:
cpu: [ia32]
os: [win32]
- '@next/swc-win32-ia32-msvc@15.0.0-rc.0':
- resolution: {integrity: sha512-/hqOmYRTvtBPToE4Dbl9n+sLYU7DPd52R+TtjIrrEzTMgFo2/d7un3sD7GKmb2OwOj/ExyGv6Bd/JzytBVxXlw==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
'@next/swc-win32-x64-msvc@14.2.10':
resolution: {integrity: sha512-UjeVoRGKNL2zfbcQ6fscmgjBAS/inHBh63mjIlfPg/NG8Yn2ztqylXt5qilYb6hoHIwaU2ogHknHWWmahJjgZQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.0.0-rc.0':
- resolution: {integrity: sha512-2Jly5nShvCUzzngP3RzdQ3JcuEcHcnIEvkvZDCXqFAK+bWks4+qOkEUO1QIAERQ99J5J9/1AN/8zFBme3Mm57A==}
+ '@next/swc-win32-x64-msvc@15.1.0':
+ resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -4026,72 +3967,43 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
- '@nuxt/devtools-kit@1.4.1':
- resolution: {integrity: sha512-6h7T9B0tSZVap13/hf7prEAgIzraj/kyux6/Iif455Trew96jHIFCCboBApUMastYEuCo3l17tgZKe0HW+jrtA==}
- peerDependencies:
- vite: '*'
-
'@nuxt/devtools-kit@1.6.0':
resolution: {integrity: sha512-kJ8mVKwTSN3tdEVNy7mxKCiQk9wsG5t3oOrRMWk6IEbTSov+5sOULqQSM/+OWxWsEDmDfA7QlS5sM3Ti9uMRqQ==}
peerDependencies:
vite: '*'
- '@nuxt/devtools-wizard@1.4.1':
- resolution: {integrity: sha512-X9uTh5rgt0pw3UjXcHyl8ZFYmCgw8ITRe9Nr2VLCtNROfKz9yol/ESEhYMwTFiFlqSyfJP6/qtogJBjUt6dzTw==}
- hasBin: true
-
'@nuxt/devtools-wizard@1.6.0':
resolution: {integrity: sha512-n+mzz5NwnKZim0tq1oBi+x1nNXb21fp7QeBl7bYKyDT1eJ0XCxFkVTr/kB/ddkkLYZ+o8TykpeNPa74cN+xAyQ==}
hasBin: true
- '@nuxt/devtools@1.4.1':
- resolution: {integrity: sha512-BtmGRAr/pjSE3dBrM7iceNT6OZAQ/MHxq1brkHJDs2VdyZPnqqGS4n3/98saASoRdj0dddsuIElsqC/zIABhgg==}
- hasBin: true
- peerDependencies:
- vite: '*'
-
'@nuxt/devtools@1.6.0':
resolution: {integrity: sha512-xNorMapzpM8HaW7NnAsEEO38OrmrYBzGvkkqfBU5nNh5XEymmIfCbQc7IA/GIOH9pXOV4gRutCjHCWXHYbOl3A==}
hasBin: true
peerDependencies:
vite: '*'
- '@nuxt/kit@3.12.4':
- resolution: {integrity: sha512-aNRD1ylzijY0oYolldNcZJXVyxdGzNTl+Xd0UYyFQCu9f4wqUZqQ9l+b7arCEzchr96pMK0xdpvLcS3xo1wDcw==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
'@nuxt/kit@3.14.159':
resolution: {integrity: sha512-ZqxsCI1NKV/gjfEUUZjMcr82sg0MKYZOuyB6bu9QY5Zr7NGpfIZY/z5Z822AKTmFxKGChnuz9M0UaS4ze6p42g==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/schema@3.12.4':
- resolution: {integrity: sha512-H7FwBV4ChssMaeiLyPdVLOLUa0326ebp3pNbJfGgFt7rSoKh1MmgjorecA8JMxOQZziy3w6EELf4+5cgLh/F1w==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
- '@nuxt/schema@3.13.0':
- resolution: {integrity: sha512-JBGSjF9Hd8guvTV2312eM1RulCMJc50yR3CeMZPLDsI02A8TXQnABS8EbgvGRvxD43q/ITjj21B2ffG1wEVrnQ==}
+ '@nuxt/kit@3.14.1592':
+ resolution: {integrity: sha512-r9r8bISBBisvfcNgNL3dSIQHSBe0v5YkX5zwNblIC2T0CIEgxEVoM5rq9O5wqgb5OEydsHTtT2hL57vdv6VT2w==}
engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/schema@3.14.159':
resolution: {integrity: sha512-ggXA3F2f9udQoEy5WwrY6bTMvpDaErUYRLSEzdMqqCqjOQ5manfFgfuScGj3ooZiXLIX2TGLVTzcll4nnpDlnQ==}
engines: {node: ^14.18.0 || >=16.10.0}
- '@nuxt/telemetry@2.5.4':
- resolution: {integrity: sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==}
- hasBin: true
+ '@nuxt/schema@3.14.1592':
+ resolution: {integrity: sha512-A1d/08ueX8stTXNkvGqnr1eEXZgvKn+vj6s7jXhZNWApUSqMgItU4VK28vrrdpKbjIPwq2SwhnGOHUYvN9HwCQ==}
+ engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.0':
resolution: {integrity: sha512-h4YJ1d32cU7tDKjjhjtIIEck4WF/w3DTQBT348E9Pz85YLttnLqktLM0Ez9Xc2LzCeUgBDQv1el7Ob/zT3KUqg==}
hasBin: true
- '@nuxt/vite-builder@3.12.4':
- resolution: {integrity: sha512-5v3y6SkshJurZYJWHtc7+NGeCgptsreCSguBCZVzJxYdsPFdMicLoxjTt8IGAHWjkGVONrX+K8NBSFFgnx40jQ==}
- engines: {node: ^14.18.0 || >=16.10.0}
- peerDependencies:
- vue: ^3.3.4
-
- '@nuxt/vite-builder@3.14.159':
- resolution: {integrity: sha512-V3FJnDNR3tCAYeYmxxPsAWuMq6z5mZi8KPWO+lrO/Z8LqfD3+uYpluzUtzj0S1IIhCERmHe4rUNzr67RqSTL2Q==}
+ '@nuxt/vite-builder@3.14.1592':
+ resolution: {integrity: sha512-GVS7vkBJAGv13ghmjgGrS2QVyzoqxQ5+cAUrMeMjKbY7GnRY7/uOkoLmznYx8E/U9HBUyHQa+wSN2ZfcSiEytQ==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
@@ -4309,13 +4221,13 @@ packages:
resolution: {integrity: sha512-bH+a8izQz4fnKROKoX3bEU8sQ9rjvEIZOqU6qTmxlhOJ0NsKa5e+LmU18SV0oFeg5YhWQhhEDihXkvKJ1wMMNQ==}
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
- '@remix-run/dev@2.9.2':
- resolution: {integrity: sha512-70dr9HH/mCHP5+uPoQXyS9+r73IL//IDPaFruIhK8kmmLPGAg5bGyFRz/xX6LTa98gPdAwZXxBy7frudeh2Z0Q==}
+ '@remix-run/dev@2.15.1':
+ resolution: {integrity: sha512-vuAVNCW0TsjdoLrpXRFTDJzWut+cfOYw6HVrwdin3J/isfZ2ZyRUNo4kdK4TkmEXoRtTWLk1MG6LbeTAJlg11g==}
engines: {node: '>=18.0.0'}
hasBin: true
peerDependencies:
- '@remix-run/react': ^2.9.2
- '@remix-run/serve': ^2.9.2
+ '@remix-run/react': ^2.15.1
+ '@remix-run/serve': ^2.15.1
typescript: ^5.1.0
vite: ^5.1.0
wrangler: ^3.28.2
@@ -4329,6 +4241,36 @@ packages:
wrangler:
optional: true
+ '@remix-run/dev@2.9.2':
+ resolution: {integrity: sha512-70dr9HH/mCHP5+uPoQXyS9+r73IL//IDPaFruIhK8kmmLPGAg5bGyFRz/xX6LTa98gPdAwZXxBy7frudeh2Z0Q==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+ peerDependencies:
+ '@remix-run/react': ^2.9.2
+ '@remix-run/serve': ^2.9.2
+ typescript: ^5.1.0
+ vite: ^5.1.0
+ wrangler: ^3.28.2
+ peerDependenciesMeta:
+ '@remix-run/serve':
+ optional: true
+ typescript:
+ optional: true
+ vite:
+ optional: true
+ wrangler:
+ optional: true
+
+ '@remix-run/express@2.15.1':
+ resolution: {integrity: sha512-aw7aEj6K9HGjJqHB9JKHLp6WE/bisYmnt52pRzkK/nzCWgK3hwBdi7tj5KYFTw9WfgZhEQICUmA/pmuafo7wyg==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ express: ^4.20.0
+ typescript: ^5.1.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@remix-run/express@2.9.2':
resolution: {integrity: sha512-KhGPwX01gopvOzOCc0V2x+TC2UhfbwnDPjBk/KLFjn3z9srYD2X0xVdqGiNp6tXSiUuLDx8NlfHjrfLVwfJYnQ==}
engines: {node: '>=18.0.0'}
@@ -4339,6 +4281,15 @@ packages:
typescript:
optional: true
+ '@remix-run/node@2.15.1':
+ resolution: {integrity: sha512-23xWN3/yOohNUr27KS7hEcDMbtufMkniXfXkcLx8Dz2wUVNfJYGpICjeV48Ue/INtpiUCCzOYwkL9VRjIMEJbA==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ typescript: ^5.1.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@remix-run/node@2.9.2':
resolution: {integrity: sha512-2Mt2107pfelz4T+ziDBef3P4A7kgPqCDshnEYCVGxInivJ3HHwAKUcb7MhGa8uMMMA6LMWxbAPYNHPzC3iKv2A==}
engines: {node: '>=18.0.0'}
@@ -4348,6 +4299,17 @@ packages:
typescript:
optional: true
+ '@remix-run/react@2.15.1':
+ resolution: {integrity: sha512-h0BVUeg87vt3FKbYfoF7Ln56MM3O8rvGLDKYOuPY0OgNlJVaQKQzWVX+mnlmzysX4hF7WnOPMw1q38Ow7N9wKg==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ typescript: ^5.1.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@remix-run/react@2.9.2':
resolution: {integrity: sha512-DcZDzm68MBxGn8hjf/VsuUpjxDYZ8VOOH79P1zWu4hb3hBr90WV1Sa/gIAFUEGpOCcSQ0EG/ci8MaFxcAaPz2Q==}
engines: {node: '>=18.0.0'}
@@ -4363,11 +4325,29 @@ packages:
resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==}
engines: {node: '>=14.0.0'}
+ '@remix-run/router@1.21.0':
+ resolution: {integrity: sha512-xfSkCAchbdG5PnbrKqFWwia4Bi61nH+wm8wLEqfHDyp7Y3dZzgqS2itV8i4gAq9pC2HsTpwyBC6Ds8VHZ96JlA==}
+ engines: {node: '>=14.0.0'}
+
+ '@remix-run/serve@2.15.1':
+ resolution: {integrity: sha512-NRpAEpqy670jMY3SX5fzu/jKD8Kb4vlLS3k1xksjnjZSjSyaH2fGCsxvlbDpSOCucukMeTEKU424iiScWsDBtg==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
'@remix-run/serve@2.9.2':
resolution: {integrity: sha512-wA3mjQcIkkzmr2798mMDDCkVmVraVwFgLiZ0ManlU5mOWZhI0W+b55fxHltJ4gkAMGYaxrk7vq/s8s/r+L3cTQ==}
engines: {node: '>=18.0.0'}
hasBin: true
+ '@remix-run/server-runtime@2.15.1':
+ resolution: {integrity: sha512-TDM3rzax//N2F5uNMV5pNTWAop8cYul6hteDu+Xmfwys/eRGlbzEf7YJzyRj6Kcsg2TFVHI7+xEPItGAVm1hHA==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ typescript: ^5.1.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@remix-run/server-runtime@2.9.2':
resolution: {integrity: sha512-dX37FEeMVVg7KUbpRhX4hD0nUY0Sscz/qAjU4lYCdd6IzwJGariTmz+bQTXKCjploZuXj09OQZHSOS/ydkUVDA==}
engines: {node: '>=18.0.0'}
@@ -4723,12 +4703,21 @@ packages:
'@shikijs/engine-oniguruma@1.23.1':
resolution: {integrity: sha512-KQ+lgeJJ5m2ISbUZudLR1qHeH3MnSs2mjFg7bnencgs5jDVPeJ2NVDJ3N5ZHbcTsOIh0qIueyAJnwg7lg7kwXQ==}
+ '@shikijs/engine-oniguruma@1.24.2':
+ resolution: {integrity: sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==}
+
'@shikijs/types@1.23.1':
resolution: {integrity: sha512-98A5hGyEhzzAgQh2dAeHKrWW4HfCMeoFER2z16p5eJ+vmPeF6lZ/elEne6/UCU551F/WqkopqRsr1l2Yu6+A0g==}
+ '@shikijs/types@1.24.2':
+ resolution: {integrity: sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==}
+
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
+ '@shikijs/vscode-textmate@9.3.1':
+ resolution: {integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==}
+
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -4738,9 +4727,6 @@ packages:
'@sideway/pinpoint@2.0.0':
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- '@sinclair/typebox@0.27.8':
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
-
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -4755,52 +4741,43 @@ packages:
peerDependencies:
solid-js: ^1.8.6
- '@solidjs/start@1.0.6':
- resolution: {integrity: sha512-O5knaeqDBx+nKLJRm5ZJurnXZtIYBOwOreQ10APaVtVjKIKKRC5HxJ1Kwqg7atOQNNDgsF0pzhW218KseaZ1UA==}
+ '@solidjs/start@1.0.10':
+ resolution: {integrity: sha512-3yg4KraSxc4rXs9dy/3kkqjDhU0JCPsZFLmDl5n6hHRPwtLLac6WUhs2k5VxGzitHaaJM/ZQCfT7i544Mf+4tw==}
- '@sveltejs/adapter-auto@3.2.0':
- resolution: {integrity: sha512-She5nKT47kwHE18v9NMe6pbJcvULr82u0V3yZ0ej3n1laWKGgkgdEABE9/ak5iDPs93LqsBkuIo51kkwCLBjJA==}
+ '@sveltejs/adapter-auto@3.3.1':
+ resolution: {integrity: sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==}
peerDependencies:
'@sveltejs/kit': ^2.0.0
- '@sveltejs/kit@2.5.25':
- resolution: {integrity: sha512-5hBSEN8XEjDZ5+2bHkFh8Z0QyOk0C187cyb12aANe1c8aeKbfu5ZD5XaC2vEH4h0alJFDXPdUkXQBmeeXeMr1A==}
- engines: {node: '>=18.13'}
- hasBin: true
- peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1
- svelte: ^4.0.0 || ^5.0.0-next.0
- vite: ^5.0.3
-
- '@sveltejs/kit@2.5.7':
- resolution: {integrity: sha512-6uedTzrb7nQrw6HALxnPrPaXdIN2jJJTzTIl96Z3P5NiG+OAfpdPbrWrvkJ3GN4CfWqrmU4dJqwMMRMTD/C7ow==}
+ '@sveltejs/kit@2.12.1':
+ resolution: {integrity: sha512-M3rPijGImeOkI0DBJSwjqz+YFX2DyOf6NzWgHVk3mqpT06dlYCpcv5xh1q4rYEqB58yQlk4QA1Y35PUqnUiFKw==}
engines: {node: '>=18.13'}
hasBin: true
peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^3.0.0
+ '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0
svelte: ^4.0.0 || ^5.0.0-next.0
- vite: ^5.0.3
+ vite: ^5.0.3 || ^6.0.0
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0':
- resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==}
- engines: {node: ^18.0.0 || >=20}
+ '@sveltejs/vite-plugin-svelte-inspector@4.0.1':
+ resolution: {integrity: sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
- '@sveltejs/vite-plugin-svelte': ^3.0.0
- svelte: ^4.0.0 || ^5.0.0-next.0
- vite: ^5.0.0
+ '@sveltejs/vite-plugin-svelte': ^5.0.0
+ svelte: ^5.0.0
+ vite: ^6.0.0
- '@sveltejs/vite-plugin-svelte@3.1.0':
- resolution: {integrity: sha512-sY6ncCvg+O3njnzbZexcVtUqOBE3iYmQPJ9y+yXSkOwG576QI/xJrBnQSRXFLGwJNBa0T78JEKg5cIR0WOAuUw==}
- engines: {node: ^18.0.0 || >=20}
+ '@sveltejs/vite-plugin-svelte@5.0.2':
+ resolution: {integrity: sha512-GElAxQMlznx1pRdodtkmiyBZcjlaJntJ8APa2hBhnbUAJqKAFGdmwjRPJhh+2DMxwARRLBzQIs/iZ5EbR4X/og==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22}
peerDependencies:
- svelte: ^4.0.0 || ^5.0.0-next.0
- vite: ^5.0.0
+ svelte: ^5.0.0
+ vite: ^6.0.0
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- '@swc/helpers@0.5.11':
- resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==}
+ '@swc/helpers@0.5.15':
+ resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
@@ -4878,9 +4855,6 @@ packages:
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
- '@types/http-proxy@1.17.14':
- resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
-
'@types/http-proxy@1.17.15':
resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
@@ -4932,9 +4906,6 @@ packages:
'@types/prop-types@15.7.11':
resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
- '@types/pug@2.0.10':
- resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==}
-
'@types/react-dom@18.2.18':
resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
@@ -4944,6 +4915,11 @@ packages:
'@types/react-dom@18.3.1':
resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
+ '@types/react-dom@19.0.2':
+ resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==}
+ peerDependencies:
+ '@types/react': ^19.0.0
+
'@types/react@18.2.51':
resolution: {integrity: sha512-XeoMaU4CzyjdRr3c4IQQtiH7Rpo18V07rYZUucEZQwOUEtGgTXv7e6igQiQ+xnV6MbMe1qjEmKdgMNnfppnXfg==}
@@ -4953,6 +4929,9 @@ packages:
'@types/react@18.3.3':
resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+ '@types/react@19.0.1':
+ resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==}
+
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -4965,6 +4944,9 @@ packages:
'@types/statuses@2.0.4':
resolution: {integrity: sha512-eqNDvZsCNY49OAXB0Firg/Sc2BgoWsntsLUdybGFOhAfCD6QJ2n9HXUIHGqt5qjrxmMv4wS8WLAw43ZkKcJ8Pw==}
+ '@types/tough-cookie@4.0.5':
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+
'@types/unist@2.0.10':
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
@@ -5044,35 +5026,18 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@unhead/dom@1.10.4':
- resolution: {integrity: sha512-ehMy9k6efo4GTLmiP27wCtywWYdiggrP3m7h6kD/d1uhfORH3yCgsd4yXQnmDoSbsMyX6GlY5DBzy5bnYPp/Xw==}
-
'@unhead/dom@1.11.11':
resolution: {integrity: sha512-4YwziCH5CmjvUzSGdZ4Klj6BqhLSTNZooA9kt47yDxj4Qw9uHqVnXwWWupYsVdIYPNsw1tR2AkHveg82y1Fn3A==}
- '@unhead/schema@1.10.4':
- resolution: {integrity: sha512-nX9sJgKPy2t4GHB9ky/vkMLbYqXl9Num5NZToTr0rKrIGkshzHhUrbn/EiHreIjcGI1eIpu+edniCDIwGTJgmw==}
-
'@unhead/schema@1.11.11':
resolution: {integrity: sha512-xSGsWHPBYcMV/ckQeImbrVu6ddeRnrdDCgXUKv3xIjGBY+ob/96V80lGX8FKWh8GwdFSwhblISObKlDAt5K9ZQ==}
- '@unhead/shared@1.10.4':
- resolution: {integrity: sha512-C5wsps9i/XCBObMVQUrbXPvZG17a/e5yL0IsxpICaT4QSiZAj9v7JrNQ5WpM5JOZVMKRI5MYRdafNDw3iSmqZg==}
-
'@unhead/shared@1.11.11':
resolution: {integrity: sha512-RfdvUskPn90ipO+PmR98jKZ8Lsx1uuzscOenO5xcrMrtWGhlLWaEBIrbvFOvX5PZ/u8/VNMJChTXGDUjEtHmlg==}
- '@unhead/ssr@1.10.4':
- resolution: {integrity: sha512-2nDG08q9bTvMB24YGNJCXimAs1vuG9yVa01i/Et1B2y4P8qhweXOxnialGmt5j8xeXwPFUBCe36tC5kLCSuJoQ==}
-
'@unhead/ssr@1.11.11':
resolution: {integrity: sha512-NQC8y+4ldwkMr3x8WFwv3+OR6g+Sj7dwL6J/3ST25KnvlwDSub2KGbnm2hF1x8vTpTmXTVxMA3GDRL9MRfLvMg==}
- '@unhead/vue@1.10.4':
- resolution: {integrity: sha512-Q45F/KOvDeitc8GkfkPY45V8Dmw1m1b9A/aHM5A2BwRV8GyoRV+HRWVw5h02e0AO1TsICvcW8tI90qeCM2oGSA==}
- peerDependencies:
- vue: '>=2.7 || >=3'
-
'@unhead/vue@1.11.11':
resolution: {integrity: sha512-AxsHHauZ+w0m2irwDHqkc3GdNChMLBtolk8CN3IAZM6vTwH0EbPXlFCFcIk4WwkH0opG+R2GlKTThr5H0HLm7g==}
peerDependencies:
@@ -5090,16 +5055,6 @@ packages:
'@vanilla-extract/private@1.0.5':
resolution: {integrity: sha512-6YXeOEKYTA3UV+RC8DeAjFk+/okoNz/h88R+McnzA2zpaVqTR/Ep+vszkWYlGBcMNO7vEkqbq5nT/JMMvhi+tw==}
- '@vercel/nft@0.26.4':
- resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==}
- engines: {node: '>=16'}
- hasBin: true
-
- '@vercel/nft@0.26.5':
- resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==}
- engines: {node: '>=16'}
- hasBin: true
-
'@vercel/nft@0.27.6':
resolution: {integrity: sha512-mwuyUxskdcV8dd7N7JnxBgvFEz1D9UOePI/WyLLzktv6HSCwgPNQGit/UJ2IykAWGlypKw4pBQjOKWvIbXITSg==}
engines: {node: '>=16'}
@@ -5109,26 +5064,20 @@ packages:
resolution: {integrity: sha512-WSN1z931BtasZJlgPp704zJFnQFRg7yzSjkm3MzAWQYe4uXFXlFr1hc5Ac2zae5/HDOz5x1/zDM5Cb54vTCnWw==}
hasBin: true
- '@vinxi/plugin-directives@0.4.1':
- resolution: {integrity: sha512-NsHCDyqU00i4RKGBoNNcBuONEirg/XfGgPCLFK1CZw3AYBE19haFSgvuo21Bx+BFGcwdRU3BRtaBMvwjLrUCnw==}
- peerDependencies:
- vinxi: ^0.4.0
-
- '@vinxi/server-components@0.4.1':
- resolution: {integrity: sha512-rMS+RCGr1tujO1xWgILMLpOWIyw2OwDO46EtkuhTfqaVgLLt/w7+hxzOnh4s3O9sXoKKuUswtj9/MpQQkFoMOQ==}
+ '@vinxi/plugin-directives@0.4.3':
+ resolution: {integrity: sha512-Ey+TRIwyk8871PKhQel8NyZ9B6N0Tvhjo1QIttTyrV0d7BfUpri5GyGygmBY7fHClSE/vqaNCCZIKpTL3NJAEg==}
peerDependencies:
- vinxi: ^0.4.0
+ vinxi: ^0.4.3
- '@vinxi/server-functions@0.4.1':
- resolution: {integrity: sha512-dj5v9V+DurXK8w/nBDgJof+UsK3bkcgk6K/xBUg+WVmn7sUrLTurDTGRkCaknC6tQCyadNzj4FWGGc+qlrWf9g==}
+ '@vinxi/server-components@0.4.3':
+ resolution: {integrity: sha512-KVEnQtb+ZlXIEKaUw4r4WZl/rqFeZqSyIRklY1wFiPw7GCJUxbXzISpsJ+HwDhYi9k4n8uZJyQyLHGkoiEiolg==}
peerDependencies:
- vinxi: ^0.4.0
+ vinxi: ^0.4.3
- '@vitejs/plugin-react@4.2.1':
- resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ '@vinxi/server-functions@0.4.3':
+ resolution: {integrity: sha512-kVYrOrCMHwGvHRwpaeW2/PE7URcGtz4Rk/hIHa2xjt5PGopzzB/Y5GC8YgZjtqSRqo0ElAKsEik7UE6CXH3HXA==}
peerDependencies:
- vite: ^4.2.0 || ^5.0.0
+ vinxi: ^0.4.3
'@vitejs/plugin-react@4.3.3':
resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
@@ -5136,19 +5085,18 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0
- '@vitejs/plugin-vue-jsx@4.0.1':
- resolution: {integrity: sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ '@vitejs/plugin-react@4.3.4':
+ resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^5.0.0
- vue: ^3.0.0
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0
- '@vitejs/plugin-vue@5.1.3':
- resolution: {integrity: sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==}
+ '@vitejs/plugin-vue-jsx@4.1.1':
+ resolution: {integrity: sha512-uMJqv/7u1zz/9NbWAD3XdjaY20tKTf17XVfQ9zq4wY1BjsB/PjpJPMe2xiG39QpP4ZdhYNhm4Hvo66uJrykNLA==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
- vite: ^5.0.0
- vue: ^3.2.25
+ vite: ^5.0.0 || ^6.0.0
+ vue: ^3.0.0
'@vitejs/plugin-vue@5.2.0':
resolution: {integrity: sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==}
@@ -5157,25 +5105,43 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
- '@vitest/coverage-v8@1.5.0':
- resolution: {integrity: sha512-1igVwlcqw1QUMdfcMlzzY4coikSIBN944pkueGi0pawrX5I5Z+9hxdTR+w3Sg6Q3eZhvdMAs8ZaF9JuTG1uYOQ==}
+ '@vitest/coverage-v8@2.1.8':
+ resolution: {integrity: sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==}
+ peerDependencies:
+ '@vitest/browser': 2.1.8
+ vitest: 2.1.8
+ peerDependenciesMeta:
+ '@vitest/browser':
+ optional: true
+
+ '@vitest/expect@2.1.8':
+ resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==}
+
+ '@vitest/mocker@2.1.8':
+ resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==}
peerDependencies:
- vitest: 1.5.0
+ msw: ^2.4.9
+ vite: ^5.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
- '@vitest/expect@1.5.0':
- resolution: {integrity: sha512-0pzuCI6KYi2SIC3LQezmxujU9RK/vwC1U9R0rLuGlNGcOuDWxqWKu6nUdFsX9tH1WU0SXtAxToOsEjeUn1s3hA==}
+ '@vitest/pretty-format@2.1.8':
+ resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==}
- '@vitest/runner@1.5.0':
- resolution: {integrity: sha512-7HWwdxXP5yDoe7DTpbif9l6ZmDwCzcSIK38kTSIt6CFEpMjX4EpCgT6wUmS0xTXqMI6E/ONmfgRKmaujpabjZQ==}
+ '@vitest/runner@2.1.8':
+ resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==}
- '@vitest/snapshot@1.5.0':
- resolution: {integrity: sha512-qpv3fSEuNrhAO3FpH6YYRdaECnnRjg9VxbhdtPwPRnzSfHVXnNzzrpX4cJxqiwgRMo7uRMWDFBlsBq4Cr+rO3A==}
+ '@vitest/snapshot@2.1.8':
+ resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==}
- '@vitest/spy@1.5.0':
- resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==}
+ '@vitest/spy@2.1.8':
+ resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==}
- '@vitest/utils@1.5.0':
- resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==}
+ '@vitest/utils@2.1.8':
+ resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==}
'@volar/kit@2.4.10':
resolution: {integrity: sha512-ul+rLeO9RlFDgkY/FhPWMnpFqAsjvjkKz8VZeOY5YCJMwTblmmSBlNJtFNxSBx9t/k1q80nEthLyxiJ50ZbIAg==}
@@ -5215,6 +5181,9 @@ packages:
'@vue/babel-helper-vue-transform-on@1.2.2':
resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
+ '@vue/babel-helper-vue-transform-on@1.2.5':
+ resolution: {integrity: sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==}
+
'@vue/babel-plugin-jsx@1.2.2':
resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
peerDependencies:
@@ -5223,121 +5192,80 @@ packages:
'@babel/core':
optional: true
+ '@vue/babel-plugin-jsx@1.2.5':
+ resolution: {integrity: sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+
'@vue/babel-plugin-resolve-type@1.2.2':
resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@vue/babel-plugin-resolve-type@1.2.5':
+ resolution: {integrity: sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@vue/compiler-core@3.4.21':
resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
- '@vue/compiler-core@3.4.24':
- resolution: {integrity: sha512-vbW/tgbwJYj62N/Ww99x0zhFTkZDTcGh3uwJEuadZ/nF9/xuFMC4693P9r+3sxGXISABpDKvffY5ApH9pmdd1A==}
-
- '@vue/compiler-core@3.5.0':
- resolution: {integrity: sha512-ja7cpqAOfw4tyFAxgBz70Z42miNDeaqTxExTsnXDLomRpqfyCgyvZvFp482fmsElpfvsoMJUsvzULhvxUTW6Iw==}
-
'@vue/compiler-core@3.5.13':
resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
'@vue/compiler-dom@3.4.21':
resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
- '@vue/compiler-dom@3.4.24':
- resolution: {integrity: sha512-4XgABML/4cNndVsQndG6BbGN7+EoisDwi3oXNovqL/4jdNhwvP8/rfRMTb6FxkxIxUUtg6AI1/qZvwfSjxJiWA==}
-
- '@vue/compiler-dom@3.5.0':
- resolution: {integrity: sha512-xYjUybWZXl+1R/toDy815i4PbeehL2hThiSGkcpmIOCy2HoYyeeC/gAWK/Y/xsoK+GSw198/T5O31bYuQx5uvQ==}
-
'@vue/compiler-dom@3.5.13':
resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
'@vue/compiler-sfc@3.4.21':
resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
- '@vue/compiler-sfc@3.4.24':
- resolution: {integrity: sha512-nRAlJUK02FTWfA2nuvNBAqsDZuERGFgxZ8sGH62XgFSvMxO2URblzulExsmj4gFZ8e+VAyDooU9oAoXfEDNxTA==}
-
- '@vue/compiler-sfc@3.5.0':
- resolution: {integrity: sha512-B9DgLtrqok2GLuaFjLlSL15ZG3ZDBiitUH1ecex9guh/ZcA5MCdwuVE6nsfQxktuZY/QY0awJ35/ripIviCQTQ==}
-
'@vue/compiler-sfc@3.5.13':
resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
'@vue/compiler-ssr@3.4.21':
resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
- '@vue/compiler-ssr@3.4.24':
- resolution: {integrity: sha512-ZsAtr4fhaUFnVcDqwW3bYCSDwq+9Gk69q2r/7dAHDrOMw41kylaMgOP4zRnn6GIEJkQznKgrMOGPMFnLB52RbQ==}
-
- '@vue/compiler-ssr@3.5.0':
- resolution: {integrity: sha512-E263QZmA1dqRd7c3u/sWTLRMpQOT0aZ8av/L9SoD/v/BVMZaWFHPUUBswS+bzrfvG2suJF8vSLKx6k6ba5SUdA==}
-
'@vue/compiler-ssr@3.5.13':
resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
'@vue/devtools-api@6.6.1':
resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
- '@vue/devtools-api@6.6.3':
- resolution: {integrity: sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==}
-
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-core@7.3.3':
- resolution: {integrity: sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==}
-
'@vue/devtools-core@7.4.4':
resolution: {integrity: sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.3.3':
- resolution: {integrity: sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==}
-
'@vue/devtools-kit@7.4.4':
resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
- '@vue/devtools-shared@7.4.0':
- resolution: {integrity: sha512-LpHkjzUlbPHSH6qaCVSyfQDaF8fZwFbEDbHrtAGA9K1/yEZn99zYvXXqE4e5IQCk8GBXiVJo9/bn7vBXJQIIGA==}
-
'@vue/devtools-shared@7.6.4':
resolution: {integrity: sha512-nD6CUvBEel+y7zpyorjiUocy0nh77DThZJ0k1GRnJeOmY3ATq2fWijEp7wk37gb023Cb0R396uYh5qMSBQ5WFg==}
'@vue/reactivity@3.4.21':
resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
- '@vue/reactivity@3.4.24':
- resolution: {integrity: sha512-nup3fSYg4i4LtNvu9slF/HF/0dkMQYfepUdORBcMSsankzRPzE7ypAFurpwyRBfU1i7Dn1kcwpYsE1wETSh91g==}
-
- '@vue/reactivity@3.5.0':
- resolution: {integrity: sha512-Ew3F5riP3B3ZDGjD3ZKb9uZylTTPSqt8hAf4sGbvbjrjDjrFb3Jm15Tk1/w7WwTE5GbQ2Qhwxx1moc9hr8A/OQ==}
-
'@vue/reactivity@3.5.13':
resolution: {integrity: sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==}
'@vue/runtime-core@3.4.21':
resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
- '@vue/runtime-core@3.4.24':
- resolution: {integrity: sha512-c7iMfj6cJMeAG3s5yOn9Rc5D9e2/wIuaozmGf/ICGCY3KV5H7mbTVdvEkd4ZshTq7RUZqj2k7LMJWVx+EBiY1g==}
-
- '@vue/runtime-core@3.5.0':
- resolution: {integrity: sha512-mQyW0F9FaNRdt8ghkAs+BMG3iQ7LGgWKOpkzUzR5AI5swPNydHGL5hvVTqFaeMzwecF1g0c86H4yFQsSxJhH1w==}
-
'@vue/runtime-core@3.5.13':
resolution: {integrity: sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==}
'@vue/runtime-dom@3.4.21':
resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
- '@vue/runtime-dom@3.4.24':
- resolution: {integrity: sha512-uXKzuh/Emfad2Y7Qm0ABsLZZV6H3mAJ5ZVqmAOlrNQRf+T5mxpPGZBfec1hkP41t6h6FwF6RSGCs/gd8WbuySQ==}
-
- '@vue/runtime-dom@3.5.0':
- resolution: {integrity: sha512-NQQXjpdXgyYVJ2M56FJ+lSJgZiecgQ2HhxhnQBN95FymXegRNY/N2htI7vOTwpP75pfxhIeYOJ8mE8sW8KAW6A==}
-
'@vue/runtime-dom@3.5.13':
resolution: {integrity: sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==}
@@ -5346,16 +5274,6 @@ packages:
peerDependencies:
vue: 3.4.21
- '@vue/server-renderer@3.4.24':
- resolution: {integrity: sha512-H+DLK4sQF6sRgzKyofmlEVBIV/9KrQU6HIV7nt6yIwSGGKvSwlV8pqJlebUKLpbXaNHugdSfAbP6YmXF69lxow==}
- peerDependencies:
- vue: 3.4.24
-
- '@vue/server-renderer@3.5.0':
- resolution: {integrity: sha512-HyDIFUg+l7L4PKrEnJlCYWHUOlm6NxZhmSxIefZ5MTYjkIPfDfkwhX7hqxAQHfgIAE1uLMLQZwuNR/ozI0NhZg==}
- peerDependencies:
- vue: 3.5.0
-
'@vue/server-renderer@3.5.13':
resolution: {integrity: sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==}
peerDependencies:
@@ -5364,12 +5282,6 @@ packages:
'@vue/shared@3.4.21':
resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
- '@vue/shared@3.4.24':
- resolution: {integrity: sha512-BW4tajrJBM9AGAknnyEw5tO2xTmnqgup0VTnDAMcxYmqOX0RG0b9aSUGAbEKolD91tdwpA6oCwbltoJoNzpItw==}
-
- '@vue/shared@3.5.0':
- resolution: {integrity: sha512-m9IgiteBpCkFaMNwCOBkFksA7z8QiKc30ooRuoXWUFRDu0mGyNPlFHmbncF0/Kra1RlX8QrmBbRaIxVvikaR0Q==}
-
'@vue/shared@3.5.13':
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
@@ -5532,11 +5444,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
@@ -5588,9 +5495,6 @@ packages:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- ansi-sequence-parser@1.1.1:
- resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
-
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -5599,10 +5503,6 @@ packages:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- ansi-styles@5.2.0:
- resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
- engines: {node: '>=10'}
-
ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
@@ -5692,8 +5592,9 @@ packages:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
- assertion-error@1.1.0:
- resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
ast-kit@1.1.0:
resolution: {integrity: sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ==}
@@ -5719,6 +5620,11 @@ packages:
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
hasBin: true
+ astro@5.0.9:
+ resolution: {integrity: sha512-6jRMPSB+V82y/l8XOylPYJz78ux268nNNV2SLRvUaT4faf18rvIFAR33Y25wTM0Oeukcv1951xFuFsmAkQc+jg==}
+ engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
+ hasBin: true
+
async-sema@3.1.1:
resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==}
@@ -5842,6 +5748,10 @@ packages:
resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -5906,9 +5816,6 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- buffer-crc32@0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
-
buffer-crc32@1.0.0:
resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
engines: {node: '>=8.0.0'}
@@ -5957,17 +5864,6 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@1.10.0:
- resolution: {integrity: sha512-0SsG7UDhoRWcuSvKWHaXmu5uNjDCDN3nkQLRL4Q42IlFy+ze58FcCoI3uPwINXinkz7ZinbhEgyzYFw9u9ZV8g==}
-
- c12@1.11.2:
- resolution: {integrity: sha512-oBs8a4uvSDO9dm8b7OCFW7+dgtVrwmwnrVXYzLm43ta7ep2jCn/0MhoUFygIWtxhyy6+/MG7/agvpY0U1Iemew==}
- peerDependencies:
- magicast: ^0.3.4
- peerDependenciesMeta:
- magicast:
- optional: true
-
c12@2.0.1:
resolution: {integrity: sha512-Z4JgsKXHG37C6PYUtIxCfLJZvo6FyhHJoClwwb9ftUkLpPSkuYqn6Tr+vnaN8hymm0kIbcg6Ey3kv/Q71k5w/A==}
peerDependencies:
@@ -5984,12 +5880,20 @@ packages:
resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ call-bind-apply-helpers@1.0.1:
+ resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ engines: {node: '>= 0.4'}
+
call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ engines: {node: '>= 0.4'}
+
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -6039,9 +5943,9 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai@4.4.1:
- resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==}
- engines: {node: '>=4'}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
+ engines: {node: '>=12'}
chalk-template@0.4.0:
resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==}
@@ -6081,8 +5985,9 @@ packages:
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- check-error@1.0.3:
- resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
+ check-error@2.1.1:
+ resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
+ engines: {node: '>= 16'}
chokidar@3.6.0:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
@@ -6111,6 +6016,10 @@ packages:
resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
engines: {node: '>=8'}
+ ci-info@4.1.0:
+ resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
+ engines: {node: '>=8'}
+
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
@@ -6149,9 +6058,9 @@ packages:
resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
engines: {node: '>=18'}
- cli-width@3.0.0:
- resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
- engines: {node: '>= 10'}
+ cli-width@4.1.0:
+ resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
+ engines: {node: '>= 12'}
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
@@ -6305,9 +6214,6 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- cookie-es@1.1.0:
- resolution: {integrity: sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==}
-
cookie-es@1.2.2:
resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==}
@@ -6318,14 +6224,14 @@ packages:
resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
engines: {node: '>=6.6.0'}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
- engines: {node: '>= 0.6'}
-
cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
+ engines: {node: '>= 0.6'}
+
cookie@0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
@@ -6352,10 +6258,6 @@ packages:
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
- croner@8.0.2:
- resolution: {integrity: sha512-HgSdlSUX8mIgDTTiQpWUP4qY4IFRMsduPCYdca34Pelt8MVdxdaDOzreFtCscA6R+cRZd7UbD1CD3uyx6J3X1A==}
- engines: {node: '>=18.0'}
-
croner@9.0.0:
resolution: {integrity: sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==}
engines: {node: '>=18.0'}
@@ -6412,12 +6314,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.5:
- resolution: {integrity: sha512-Jbzja0xaKwc5JzxPQoc+fotKpYtWEu4wQLMQe29CM0FjjdRjA4omvbGHl2DTGgARKxSTpPssBsok+ixv8uTBqw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
cssnano-preset-default@7.0.6:
resolution: {integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -6430,12 +6326,6 @@ packages:
peerDependencies:
postcss: ^8.4.31
- cssnano@7.0.5:
- resolution: {integrity: sha512-Aq0vqBLtpTT5Yxj+hLlLfNPFuRQCDIjx5JQAhhaedQKLNDvDGeVziF24PS+S1f0Z5KCxWvw0QVI3VNHNBITxVQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
cssnano@7.0.6:
resolution: {integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -6475,20 +6365,6 @@ packages:
dax-sh@0.39.2:
resolution: {integrity: sha512-gpuGEkBQM+5y6p4cWaw9+ePy5TNon+fdwFVtTI8leU3UhwhsBfPewRxMXGuQNC+M2b/MDGMlfgpqynkcd0C3FQ==}
- db0@0.1.4:
- resolution: {integrity: sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==}
- peerDependencies:
- '@libsql/client': ^0.5.2
- better-sqlite3: ^9.4.3
- drizzle-orm: ^0.29.4
- peerDependenciesMeta:
- '@libsql/client':
- optional: true
- better-sqlite3:
- optional: true
- drizzle-orm:
- optional: true
-
db0@0.2.1:
resolution: {integrity: sha512-BWSFmLaCkfyqbSEZBQINMVNjCVfrogi7GQ2RSy1tmtfK9OXlsup6lUMwLsqSD7FbAjD04eWFdXowSHHUp6SE/Q==}
peerDependencies:
@@ -6534,8 +6410,8 @@ packages:
supports-color:
optional: true
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6543,8 +6419,8 @@ packages:
supports-color:
optional: true
- debug@4.3.7:
- resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6571,8 +6447,8 @@ packages:
babel-plugin-macros:
optional: true
- deep-eql@4.1.3:
- resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
deep-extend@0.6.0:
@@ -6669,9 +6545,6 @@ packages:
resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==}
engines: {node: '>=18'}
- devalue@5.0.0:
- resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
-
devalue@5.1.1:
resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==}
@@ -6681,10 +6554,6 @@ packages:
didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- diff-sequences@29.6.3:
- resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
@@ -6725,10 +6594,6 @@ packages:
domutils@3.1.0:
resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
- dot-prop@8.0.2:
- resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==}
- engines: {node: '>=16'}
-
dot-prop@9.0.0:
resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==}
engines: {node: '>=18'}
@@ -6741,6 +6606,10 @@ packages:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -6848,6 +6717,14 @@ packages:
resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
engines: {node: '>= 0.4'}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
es-iterator-helpers@1.0.15:
resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
@@ -6857,6 +6734,10 @@ packages:
es-module-lexer@1.5.4:
resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+
es-set-tostringtag@2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
@@ -6875,9 +6756,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es6-promise@3.3.1:
- resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
-
esbuild-plugin-solid@0.5.0:
resolution: {integrity: sha512-ITK6n+0ayGFeDVUZWNMxX+vLsasEN1ILrg4pISsNOQ+mq4ljlJJiuXotInd+HE0MzwTcA9wExT1yzDE2hsqPsg==}
peerDependencies:
@@ -6920,11 +6798,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.23.1:
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
- engines: {node: '>=18'}
- hasBin: true
-
esbuild@0.24.0:
resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==}
engines: {node: '>=18'}
@@ -7071,8 +6944,8 @@ packages:
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
- esm-env@1.0.0:
- resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
+ esm-env@1.2.1:
+ resolution: {integrity: sha512-U9JedYYjCnadUlXk7e1Kr+aENQhtUaoaV9+gZm1T8LC/YBAPJx3NSPIAurFOC0U5vrdSevnUJS2/wUVxGwPhng==}
espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
@@ -7087,6 +6960,9 @@ packages:
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
engines: {node: '>=0.10'}
+ esrap@1.2.3:
+ resolution: {integrity: sha512-ZlQmCCK+n7SGoqo7DnfKaP1sJZa49P01/dXzmjCASSo04p72w8EksT2NMK8CEX8DhKsfJXANioIw8VyHNsBfvQ==}
+
esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
@@ -7169,10 +7045,18 @@ packages:
resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
engines: {node: '>=6'}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
express@4.19.2:
resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
+ express@4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ engines: {node: '>= 0.10.0'}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -7225,14 +7109,6 @@ packages:
fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
- fdir@6.3.0:
- resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
- peerDependencies:
- picomatch: ^3 || ^4
- peerDependenciesMeta:
- picomatch:
- optional: true
-
fdir@6.4.2:
resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
peerDependencies:
@@ -7241,10 +7117,6 @@ packages:
picomatch:
optional: true
- figures@3.2.0:
- resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
- engines: {node: '>=8'}
-
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -7268,6 +7140,10 @@ packages:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
+ engines: {node: '>= 0.8'}
+
find-up-simple@1.0.0:
resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==}
engines: {node: '>=18'}
@@ -7397,15 +7273,16 @@ packages:
resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
engines: {node: '>=18'}
- get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
-
get-intrinsic@1.2.1:
resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
get-intrinsic@1.2.2:
resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
+ get-intrinsic@1.2.6:
+ resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
+ engines: {node: '>= 0.4'}
+
get-port-please@3.1.2:
resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==}
@@ -7443,9 +7320,6 @@ packages:
git-up@7.0.0:
resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
- git-url-parse@14.0.0:
- resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
-
git-url-parse@15.0.0:
resolution: {integrity: sha512-5reeBufLi+i4QD3ZFftcJs9jC26aULFLBU23FeKM/b1rI0K6ofIeAblmDVO7Ht22zTDE9+CkJ3ZVb0CgJmz3UQ==}
@@ -7468,6 +7342,10 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
+ glob@10.4.5:
+ resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ hasBin: true
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -7504,10 +7382,6 @@ packages:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- globby@14.0.1:
- resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
- engines: {node: '>=18'}
-
globby@14.0.2:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
@@ -7518,6 +7392,10 @@ packages:
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -7546,9 +7424,6 @@ packages:
h3@1.11.1:
resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==}
- h3@1.12.0:
- resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==}
-
h3@1.13.0:
resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==}
@@ -7581,6 +7456,10 @@ packages:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
+
has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
@@ -7599,6 +7478,10 @@ packages:
resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
engines: {node: '>= 0.4'}
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+
hast-util-from-html@2.0.3:
resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
@@ -7789,10 +7672,6 @@ packages:
inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- inquirer@8.2.6:
- resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
- engines: {node: '>=12.0.0'}
-
internal-slot@1.0.5:
resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==}
engines: {node: '>= 0.4'}
@@ -7813,9 +7692,6 @@ packages:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- iron-webcrypto@1.1.1:
- resolution: {integrity: sha512-5xGwQUWHQSy039rFr+5q/zOmj7GP0Ypzvo34Ep+61bPIhaLduEDp/PvLGlU3awD2mzWUR0weN2vJ1mILydFPEg==}
-
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
@@ -7992,16 +7868,15 @@ packages:
resolution: {integrity: sha512-9UoipoxYmSk6Xy7QFgRv2HDyaysmgSG75TFQs6S+3pDM7ZhKTF/bskZV+0UlABHzKjNVhPjYCLfeZUEg1wXxig==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- is-primitive@3.0.1:
- resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==}
- engines: {node: '>=0.10.0'}
-
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
is-reference@3.0.2:
resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
+ is-reference@3.0.3:
+ resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
+
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -8113,12 +7988,12 @@ packages:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
- istanbul-lib-source-maps@5.0.4:
- resolution: {integrity: sha512-wHOoEsNJTVltaJp8eVkm8w+GVkVNHT2YDYo53YdzQEL2gWm1hBX5cGFR9hQJtuGLebidVX7et3+dmDZrmclduw==}
+ istanbul-lib-source-maps@5.0.6:
+ resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==}
engines: {node: '>=10'}
- istanbul-reports@3.1.6:
- resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
+ istanbul-reports@3.1.7:
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
iterator.prototype@1.1.2:
@@ -8128,6 +8003,9 @@ packages:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
engines: {node: '>=14'}
+ jackspeak@3.4.3:
+ resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+
javascript-stringify@2.1.0:
resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
@@ -8261,9 +8139,6 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- launch-editor@2.8.2:
- resolution: {integrity: sha512-eF5slEUZXmi6WvFzI3dYcv+hA24/iKnROf24HztcURJpSz9RBmBgz5cNCVOeguouf1llrwy6Yctl4C4HM+xI8g==}
-
launch-editor@2.9.1:
resolution: {integrity: sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==}
@@ -8294,15 +8169,14 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ linkify-it@5.0.0:
+ resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
+
lint-staged@15.2.1:
resolution: {integrity: sha512-dhwAPnM85VdshybV9FWI/9ghTvMLoQLEXgVMx+ua2DN7mdfzd/tRfoU2yhMcBac0RHkofoxdnnJUokr8s4zKmQ==}
engines: {node: '>=18.12.0'}
hasBin: true
- listhen@1.7.2:
- resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==}
- hasBin: true
-
listhen@1.9.0:
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
hasBin: true
@@ -8391,8 +8265,8 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@2.3.7:
- resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
lru-cache@10.2.0:
resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
@@ -8431,6 +8305,9 @@ packages:
magic-string@0.30.13:
resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==}
+ magic-string@0.30.17:
+ resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+
magic-string@0.30.5:
resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
engines: {node: '>=12'}
@@ -8438,9 +8315,6 @@ packages:
magicast@0.2.11:
resolution: {integrity: sha512-6saXbRDA1HMkqbsvHOU6HBjCVgZT460qheRkLhJQHWAbhXoWESI3Kn/dGGXyKs15FFKR85jsUqFx2sMK0wy/5g==}
- magicast@0.3.4:
- resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
-
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -8467,13 +8341,16 @@ packages:
resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
engines: {node: '>=0.10.0'}
+ markdown-it@14.1.0:
+ resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
+ hasBin: true
+
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- marked@4.3.0:
- resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
- engines: {node: '>= 12'}
- hasBin: true
+ math-intrinsics@1.0.0:
+ resolution: {integrity: sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==}
+ engines: {node: '>= 0.4'}
mdast-util-definitions@5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
@@ -8553,6 +8430,9 @@ packages:
mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+ mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+
media-query-parser@2.0.2:
resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
@@ -8575,6 +8455,9 @@ packages:
merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -8794,11 +8677,6 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- mime@4.0.1:
- resolution: {integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==}
- engines: {node: '>=16'}
- hasBin: true
-
mime@4.0.4:
resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==}
engines: {node: '>=16'}
@@ -8831,6 +8709,10 @@ packages:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -8862,6 +8744,10 @@ packages:
resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
engines: {node: '>=16 || 14 >=14.17'}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minizlib@2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
@@ -8876,10 +8762,6 @@ packages:
mkdirp-classic@0.5.3:
resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- mkdirp@0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
-
mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
@@ -8934,12 +8816,12 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msw@2.1.5:
- resolution: {integrity: sha512-r39AZk4taMmUEYwtzDAgFy38feqJy1yaKykvo0QE8q7H7c28yH/WIlOmE7oatjkC3dMgpTYfND8MaxeywgU+Yg==}
+ msw@2.7.0:
+ resolution: {integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
- typescript: '>= 4.7.x <= 5.3.x'
+ typescript: '>= 4.8.x'
peerDependenciesMeta:
typescript:
optional: true
@@ -8947,8 +8829,9 @@ packages:
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- mute-stream@0.0.8:
- resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+ mute-stream@2.0.0:
+ resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
+ engines: {node: ^18.17.0 || >=20.5.0}
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -8998,16 +8881,16 @@ packages:
sass:
optional: true
- next@15.0.0-rc.0:
- resolution: {integrity: sha512-IWcCvxUSCAuOK5gig4+9yiyt/dLKpIa+WT01Qcx4CBE4TtwJljyTDnCVVn64jDZ4qmSzsaEYXpb4DTI8qbk03A==}
- engines: {node: '>=18.17.0'}
+ next@15.1.0:
+ resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==}
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
babel-plugin-react-compiler: '*'
- react: 19.0.0-rc-f994737d14-20240522
- react-dom: 19.0.0-rc-f994737d14-20240522
+ react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
+ react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
@@ -9032,26 +8915,6 @@ packages:
xml2js:
optional: true
- nitropack@2.9.6:
- resolution: {integrity: sha512-HP2PE0dREcDIBVkL8Zm6eVyrDd10/GI9hTL00PHvjUM8I9Y/2cv73wRDmxNyInfrx/CJKHATb2U/pQrqpzJyXA==}
- engines: {node: ^16.11.0 || >=17.0.0}
- hasBin: true
- peerDependencies:
- xml2js: ^0.6.2
- peerDependenciesMeta:
- xml2js:
- optional: true
-
- nitropack@2.9.7:
- resolution: {integrity: sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==}
- engines: {node: ^16.11.0 || >=17.0.0}
- hasBin: true
- peerDependencies:
- xml2js: ^0.6.2
- peerDependenciesMeta:
- xml2js:
- optional: true
-
nlcst-to-string@4.0.0:
resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==}
@@ -9141,31 +9004,13 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- nuxi@3.13.1:
- resolution: {integrity: sha512-rhUfFCtIH8IxhfibVd26uGrC0ojUijGoU3bAhPQHrkl7mFlK+g+XeIttdsI8YAC7s/wPishrTpE9z1UssHY6eA==}
- engines: {node: ^16.10.0 || >=18.0.0}
- hasBin: true
-
nuxi@3.15.0:
resolution: {integrity: sha512-ZVu45nuDrdb7nzKW2kLGY/N1vvFYLLbUVX6gUYw4BApKGGu4+GktTR5o48dGVgMYX9A8chaugl7TL9ZYmwC9Mg==}
engines: {node: ^16.10.0 || >=18.0.0}
hasBin: true
- nuxt@3.12.4:
- resolution: {integrity: sha512-/ddvyc2kgYYIN2UEjP8QIz48O/W3L0lZm7wChIDbOCj0vF/yLLeZHBaTb3aNvS9Hwp269nfjrm8j/mVxQK4RhA==}
- engines: {node: ^14.18.0 || >=16.10.0}
- hasBin: true
- peerDependencies:
- '@parcel/watcher': ^2.1.0
- '@types/node': ^14.18.0 || >=16.10.0
- peerDependenciesMeta:
- '@parcel/watcher':
- optional: true
- '@types/node':
- optional: true
-
- nuxt@3.14.159:
- resolution: {integrity: sha512-1xz6AfFkun+byUIkBNX3/CTOTShPRFJe0y9HqWZX2aV9xdoz5ByeaHZfktokhOOSbvabjDyzkTbbHh3V673qHw==}
+ nuxt@3.14.1592:
+ resolution: {integrity: sha512-roWAQH4Mb6WY72cNos+YVw0DgTCNAhNygiAMCedM7hbX6ESTR2n3VH7tU0yIWDPe/hfFdii4M4wWTTNHOtS44g==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
peerDependencies:
@@ -9177,11 +9022,6 @@ packages:
'@types/node':
optional: true
- nypm@0.3.11:
- resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
- engines: {node: ^14.16.0 || >=16.10.0}
- hasBin: true
-
nypm@0.3.12:
resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==}
engines: {node: ^14.16.0 || >=16.10.0}
@@ -9206,6 +9046,10 @@ packages:
object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ engines: {node: '>= 0.4'}
+
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -9236,9 +9080,6 @@ packages:
resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
engines: {node: '>= 0.4'}
- ofetch@1.3.4:
- resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==}
-
ofetch@1.4.1:
resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==}
@@ -9290,14 +9131,6 @@ packages:
resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==}
engines: {node: '>=14.16'}
- openapi-typescript@6.7.5:
- resolution: {integrity: sha512-ZD6dgSZi0u1QCP55g8/2yS5hNJfIpgqsSGHLxxdOjvY7eIrXzj271FJEQw33VwsZ6RCtO/NOuhxa7GBWmEudyA==}
- hasBin: true
-
- openapi-typescript@6.7.6:
- resolution: {integrity: sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==}
- hasBin: true
-
openapi-typescript@7.4.3:
resolution: {integrity: sha512-xTIjMIIOv9kNhsr8JxaC00ucbIY/6ZwuJPJBZMSh5FA2dicZN5uM805DWVJojXdom8YI4AQTavPDPHMx/3g0vQ==}
hasBin: true
@@ -9326,8 +9159,8 @@ packages:
outdent@0.8.0:
resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
- outvariant@1.4.2:
- resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==}
+ outvariant@1.4.3:
+ resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
@@ -9341,10 +9174,6 @@ packages:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- p-limit@5.0.0:
- resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==}
- engines: {node: '>=18'}
-
p-limit@6.1.0:
resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==}
engines: {node: '>=18'}
@@ -9377,6 +9206,9 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
package-manager-detector@0.2.4:
resolution: {integrity: sha512-H/OUu9/zUfP89z1APcBf2X8Us0tt8dUK4lUmKqz12QNXif3DxAs1/YqjGtcutZi1zQqeNQRWr9C+EbQnnvSSFA==}
@@ -9462,14 +9294,21 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
+
+ path-to-regexp@0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+
path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
path-to-regexp@2.2.1:
resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
- path-to-regexp@6.2.1:
- resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
+ path-to-regexp@6.3.0:
+ resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
@@ -9486,8 +9325,9 @@ packages:
pathe@1.1.2:
resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
- pathval@1.1.1:
- resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
+ pathval@2.0.0:
+ resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
+ engines: {node: '>= 14.16'}
peek-stream@1.1.3:
resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==}
@@ -9570,24 +9410,12 @@ packages:
peerDependencies:
postcss: ^8.4.31
- postcss-convert-values@7.0.3:
- resolution: {integrity: sha512-yJhocjCs2SQer0uZ9lXTMOwDowbxvhwFVrZeS6NPEij/XXthl73ggUmfwVvJM+Vaj5gtCKJV1jiUu4IhAUkX/Q==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-convert-values@7.0.4:
resolution: {integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-discard-comments@7.0.2:
- resolution: {integrity: sha512-/Hje9Ls1IYcB9duELO/AyDUJI6aQVY3h5Rj1ziXgaLYCTi1iVBLnjg/TS0D6NszR/kDG6I86OwLmAYe+bvJjiQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-discard-comments@7.0.3:
resolution: {integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -9642,24 +9470,12 @@ packages:
ts-node:
optional: true
- postcss-merge-longhand@7.0.3:
- resolution: {integrity: sha512-8waYomFxshdv6M9Em3QRM9MettRLDRcH2JQi2l0Z1KlYD/vhal3gbkeSES0NuACXOlZBB0V/B0AseHZaklzWOA==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-merge-longhand@7.0.4:
resolution: {integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.31
- postcss-merge-rules@7.0.3:
- resolution: {integrity: sha512-2eSas2p3voPxNfdI5sQrvIkMaeUHpVc3EezgVs18hz/wRTQAC9U99tp9j3W5Jx9/L3qHkEDvizEx/LdnmumIvQ==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-merge-rules@7.0.4:
resolution: {integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -9684,12 +9500,6 @@ packages:
peerDependencies:
postcss: ^8.4.31
- postcss-minify-selectors@7.0.3:
- resolution: {integrity: sha512-SxTgUQSgBk6wEqzQZKEv1xQYIp9UBju6no9q+npohzSdhuSICQdkqmD1UMKkZWItS3olJSJMDDEY9WOJ5oGJew==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-minify-selectors@7.0.4:
resolution: {integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -9817,12 +9627,6 @@ packages:
peerDependencies:
postcss: ^8.4.31
- postcss-unique-selectors@7.0.2:
- resolution: {integrity: sha512-CjSam+7Vf8cflJQsHrMS0P2hmy9u0+n/P001kb5eAszLmhjMqrt/i5AqQuNFihhViwDvEAezqTmXqaYXL2ugMw==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
postcss-unique-selectors@7.0.3:
resolution: {integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -9883,10 +9687,6 @@ packages:
resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
engines: {node: ^14.13.1 || >=16.0.0}
- pretty-format@29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
pretty-ms@7.0.1:
resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==}
engines: {node: '>=10'}
@@ -9938,6 +9738,9 @@ packages:
pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
+ psl@1.15.0:
+ resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
+
pump@2.0.1:
resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
@@ -9947,6 +9750,10 @@ packages:
pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
+ punycode.js@2.3.1:
+ resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
+ engines: {node: '>=6'}
+
punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
@@ -9954,10 +9761,21 @@ packages:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
qs@6.11.0:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+ engines: {node: '>=0.6'}
+
+ querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
@@ -10007,17 +9825,14 @@ packages:
peerDependencies:
react: ^18.3.1
- react-dom@19.0.0-rc-b57d2823-20240822:
- resolution: {integrity: sha512-WZbYsxoOD/aUZyeTIN2J7hJmbVvdZoAaneyGuO/5BILH8gy0dsXlrwj/IB1Ji/HyrxA/QBfBRg/9w2TNjw8RfA==}
+ react-dom@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
peerDependencies:
- react: 19.0.0-rc-b57d2823-20240822
+ react: ^19.0.0
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
-
react-refresh@0.14.0:
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
@@ -10033,12 +9848,25 @@ packages:
react: '>=16.8'
react-dom: '>=16.8'
+ react-router-dom@6.28.0:
+ resolution: {integrity: sha512-kQ7Unsl5YdyOltsPGl31zOjLrDv+m2VcIEcIHqYYD3Lp0UppLjrzcfJqDJwXxFw3TH/yvapbnUvPlAj7Kx5nbg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: '>=16.8'
+ react-dom: '>=16.8'
+
react-router@6.23.1:
resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
+ react-router@6.28.0:
+ resolution: {integrity: sha512-HrYdIFqdrnhDw0PqG/AKjAqEqM7AvxCz0DQ4h2W8k6nqmc5uRBYDag0SBxx9iYz5G8gnuNVLzUe13wl9eAsXXg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: '>=16.8'
+
react@18.2.0:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
engines: {node: '>=0.10.0'}
@@ -10047,8 +9875,8 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- react@19.0.0-rc-b57d2823-20240822:
- resolution: {integrity: sha512-SI/vK7ym+yDyJ58/g4sE1F+dUI1g2uEVJUODaLCMgDdGBgEyjjohrdQYDnKfoSCraEMO/Pgoj9QIbagJ8ma0vw==}
+ react@19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -10293,11 +10121,6 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -10358,10 +10181,6 @@ packages:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
- run-async@2.4.1:
- resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
- engines: {node: '>=0.12.0'}
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -10396,17 +10215,14 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sander@0.5.1:
- resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
-
scheduler@0.23.0:
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
- scheduler@0.25.0-rc-b57d2823-20240822:
- resolution: {integrity: sha512-sTgNaWduDaKMwu5wCllFKDqqqeO0GA7XdwUmuYqrlDStdgQpWJHBVW42JCw5b9CWApUP2v/YOb0CDAEzf0fxew==}
+ scheduler@0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
schema-utils@3.3.0:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
@@ -10450,6 +10266,10 @@ packages:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
+ send@1.1.0:
+ resolution: {integrity: sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==}
+ engines: {node: '>= 18'}
+
serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
@@ -10466,9 +10286,6 @@ packages:
serve-handler@6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
- serve-placeholder@2.0.1:
- resolution: {integrity: sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==}
-
serve-placeholder@2.0.2:
resolution: {integrity: sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==}
@@ -10532,9 +10349,6 @@ packages:
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- shiki@0.14.7:
- resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==}
-
shiki@1.23.1:
resolution: {integrity: sha512-8kxV9TH4pXgdKGxNOkrSMydn1Xf6It8lsle0fiqxf7a1149K1WGtdOu3Zb91T5r1JpvRPxqxU3C2XdZZXQnrig==}
@@ -10546,9 +10360,25 @@ packages:
resolution: {integrity: sha512-Kw2NHWktdcdypCj1GkKpXH4o6Vxz8B8TykPlPuLHOGSV8VkhoCLcFOH4k19K4LXAQYRQmxg+0X/eM+m2sLhAkg==}
deprecated: Shikiji is merged back to Shiki v1.0, please migrate over to get the latest updates
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ engines: {node: '>= 0.4'}
+
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -10559,9 +10389,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-git@3.26.0:
- resolution: {integrity: sha512-5tbkCSzuskR6uA7uA23yjasmA0RzugVo8QM2bpsnxkrgP13eisFT7TMS4a+xKEJvbmr4qf+l0WT3eKa9IxxUyw==}
-
simple-git@3.27.0:
resolution: {integrity: sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==}
@@ -10572,6 +10399,10 @@ packages:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
+ sirv@3.0.0:
+ resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==}
+ engines: {node: '>=18'}
+
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -10651,10 +10482,6 @@ packages:
peerDependencies:
solid-js: ^1.7
- sorcery@0.11.0:
- resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==}
- hasBin: true
-
source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
@@ -10723,6 +10550,9 @@ packages:
std-env@3.7.0:
resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
+
stdin-discarder@0.2.2:
resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
engines: {node: '>=18'}
@@ -10854,8 +10684,8 @@ packages:
babel-plugin-macros:
optional: true
- styled-jsx@5.1.3:
- resolution: {integrity: sha512-qLRShOWTE/Mf6Bvl72kFeKBl8N2Eq9WIFfoAuvbtP/6tqlnj1SCjv117n2MIjOPpa1jTorYqLJgsHKy5Y3ziww==}
+ styled-jsx@5.1.6:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
'@babel/core': '*'
@@ -10867,12 +10697,6 @@ packages:
babel-plugin-macros:
optional: true
- stylehacks@7.0.3:
- resolution: {integrity: sha512-4DqtecvI/Nd+2BCvW9YEF6lhBN5UM50IJ1R3rnEAhBwbCKf4VehRf+uqvnVArnBayjYD/WtT3g0G/HSRxWfTRg==}
- engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
- peerDependencies:
- postcss: ^8.4.31
-
stylehacks@7.0.4:
resolution: {integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
@@ -10908,59 +10732,22 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- svelte-check@3.7.0:
- resolution: {integrity: sha512-Va6sGL4Vy4znn0K+vaatk98zoBvG2aDee4y3r5X4S80z8DXfbACHvdLlyXa4C4c5tQzK9H0Uq2pbd20wH3ucjQ==}
+ svelte-check@4.1.1:
+ resolution: {integrity: sha512-NfaX+6Qtc8W/CyVGS/F7/XdiSSyXz+WGYA9ZWV3z8tso14V2vzjfXviKaTFEzB7g8TqfgO2FOzP6XT4ApSTUTw==}
+ engines: {node: '>= 18.0.0'}
hasBin: true
peerDependencies:
- svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
-
- svelte-hmr@0.16.0:
- resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==}
- engines: {node: ^12.20 || ^14.13.1 || >= 16}
- peerDependencies:
- svelte: ^3.19.0 || ^4.0.0
-
- svelte-preprocess@5.1.4:
- resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
- engines: {node: '>= 16.0.0'}
- peerDependencies:
- '@babel/core': ^7.10.2
- coffeescript: ^2.5.1
- less: ^3.11.3 || ^4.0.0
- postcss: ^7 || ^8
- postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
- pug: ^3.0.0
- sass: ^1.26.8
- stylus: ^0.55.0
- sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
- svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
- typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- coffeescript:
- optional: true
- less:
- optional: true
- postcss:
- optional: true
- postcss-load-config:
- optional: true
- pug:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- typescript:
- optional: true
+ svelte: ^4.0.0 || ^5.0.0-next.0
+ typescript: '>=5.0.0'
svelte@4.2.15:
resolution: {integrity: sha512-j9KJSccHgLeRERPlhMKrCXpk2TqL2m5Z+k+OBTQhZOhIdCCd3WfqV+ylPWeipEwq17P/ekiSFWwrVQv93i3bsg==}
engines: {node: '>=16'}
+ svelte@5.14.1:
+ resolution: {integrity: sha512-DET9IJw6LUStRnu5rTXnlBs1fsJt417C9QXE8J+gIEWc4IsqxcJsa3OYUsf7ZJmDQbaBudcp4pxI7Za0NR1QYg==}
+ engines: {node: '>=18'}
+
svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
@@ -11036,15 +10823,15 @@ packages:
engines: {node: '>=10'}
hasBin: true
- test-exclude@6.0.0:
- resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
- engines: {node: '>=8'}
+ test-exclude@7.0.1:
+ resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==}
+ engines: {node: '>=18'}
- testdouble-vitest@0.1.3:
- resolution: {integrity: sha512-UznUMPwqgsn/NJJ/B5pmaZUv3sYHEzYAJinZpyB//FHb9G74C/t3VFluWk0zU/w3nNodKOFV0nkgMZ+kGPd1Pg==}
+ testdouble-vitest@0.2.0:
+ resolution: {integrity: sha512-ElDGAFig8TTQPeImS6Pl9tEj4tZzov9o8U46r73BjVo8WamrXSExMyGuHhGMAeLQJAkFv17iJlTrC2cWkTWprg==}
peerDependencies:
testdouble: ^3.16.0
- vitest: '>=0.25.0 <2.0.0'
+ vitest: '>=0.25.0 <3.0.0'
testdouble@3.20.1:
resolution: {integrity: sha512-D9Or6ayxr16dPPEkmXyGb8ow7VcQjUzuYFUxPTkx2FdSkn5Z6EC6cxQHwEGhedmE30FAJOYiAW+r7XXg6FmYOQ==}
@@ -11066,17 +10853,14 @@ packages:
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
- through@2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
-
tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
- tinybench@2.7.0:
- resolution: {integrity: sha512-Qgayeb106x2o4hNzNjsZEfFziw8IbKqtbXBjVh7VIZfBxfD5M4gWtpyx5+YTae2gJ6Y6Dz/KLepiv16RFeQWNA==}
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
tinyexec@0.3.1:
resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
@@ -11085,20 +10869,16 @@ packages:
resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
engines: {node: '>=12.0.0'}
- tinyglobby@0.2.5:
- resolution: {integrity: sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw==}
- engines: {node: '>=12.0.0'}
-
- tinypool@0.8.4:
- resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
- engines: {node: '>=14.0.0'}
+ tinypool@1.0.2:
+ resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@1.2.0:
resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
engines: {node: '>=14.0.0'}
- tinyspy@2.2.1:
- resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
titleize@3.0.0:
@@ -11128,6 +10908,10 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
+ tough-cookie@4.1.4:
+ resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
+ engines: {node: '>=6'}
+
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
@@ -11194,6 +10978,9 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
tty-table@4.2.3:
resolution: {integrity: sha512-Fs15mu0vGzCrj8fmJNP7Ynxt5J7praPXqFN0leZeZBXJwkMxv9cb2D454k1ltrtUSJbZ4yH4e0CynsHLxmUfFA==}
engines: {node: '>=8.0.0'}
@@ -11206,14 +10993,13 @@ packages:
turbo-stream@2.2.0:
resolution: {integrity: sha512-FKFg7A0To1VU4CH9YmSMON5QphK0BXjSoiC7D9yMh+mEEbXLUP9qJ4hEt1qcjKtzncs1OpcnjZO8NgrlVbZH+g==}
+ turbo-stream@2.4.0:
+ resolution: {integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==}
+
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-detect@4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
- engines: {node: '>=4'}
-
type-fest@0.13.1:
resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==}
engines: {node: '>=10'}
@@ -11242,10 +11028,6 @@ packages:
resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==}
engines: {node: '>=14.16'}
- type-fest@4.10.2:
- resolution: {integrity: sha512-anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw==}
- engines: {node: '>=16'}
-
type-fest@4.27.0:
resolution: {integrity: sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw==}
engines: {node: '>=16'}
@@ -11269,12 +11051,12 @@ packages:
typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- typedoc@0.25.12:
- resolution: {integrity: sha512-F+qhkK2VoTweDXd1c42GS/By2DvI2uDF4/EpG424dTexSHdtCH52C6IcAvMA6jR3DzAWZjHpUOW+E02kyPNUNw==}
- engines: {node: '>= 16'}
+ typedoc@0.27.5:
+ resolution: {integrity: sha512-x+fhKJtTg4ozXwKayh/ek4wxZQI/+2hmZUdO2i2NGDBRUflDble70z+ewHod3d4gRpXSO6fnlnjbDTnJk7HlkQ==}
+ engines: {node: '>= 18'}
hasBin: true
peerDependencies:
- typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x
+ typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x
typesafe-path@0.2.2:
resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==}
@@ -11297,8 +11079,8 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ufo@1.5.3:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ uc.micro@2.1.0:
+ resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
@@ -11338,12 +11120,6 @@ packages:
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
- unenv@1.9.0:
- resolution: {integrity: sha512-QKnFNznRxmbOF1hDgzpqrlIf6NC5sbZ2OJ+5Wl3OX8uM+LUJXbj4TXvLJCtwbPTmbMHCLIz6JLKNinNsMShK9g==}
-
- unhead@1.10.4:
- resolution: {integrity: sha512-qKiYhgZ4IuDbylP409cdwK/8WEIi5cOSIBei/OXzxFs4uxiTZHSSa8NC1qPu2kooxHqxyoXGBw8ARms9zOsbxw==}
-
unhead@1.11.11:
resolution: {integrity: sha512-98tM2R8OWJhvS6uqTewkfIrsPqFU/VwnKpU2tVZ+jPXSWgWSLmM3K2Y2v5AEM4bZjmC/XH8pLVGzbqB7xzFI/Q==}
@@ -11373,9 +11149,6 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
- unimport@3.11.1:
- resolution: {integrity: sha512-DuB1Uoq01LrrXTScxnwOoMSlTXxyKcULguFxbLrMDFcE/CO0ZWHpEiyhovN0mycPt7K6luAHe8laqvwvuoeUPg==}
-
unimport@3.13.2:
resolution: {integrity: sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA==}
@@ -11445,6 +11218,10 @@ packages:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
+ universalify@0.2.0:
+ resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
+ engines: {node: '>= 4.0.0'}
+
universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
@@ -11453,14 +11230,6 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin-vue-router@0.10.7:
- resolution: {integrity: sha512-5KEh7Swc1L2Xh5WOD7yQLeB5bO3iTw+Hst7qMxwmwYcPm9qVrtrRTZUftn2Hj4is17oMKgqacyWadjQzwW5B/Q==}
- peerDependencies:
- vue-router: ^4.4.0
- peerDependenciesMeta:
- vue-router:
- optional: true
-
unplugin-vue-router@0.10.8:
resolution: {integrity: sha512-xi+eLweYAqolIoTRSmumbi6Yx0z5M0PLvl+NFNVWHJgmE2ByJG1SZbrn+TqyuDtIyln20KKgq8tqmL7aLoiFjw==}
peerDependencies:
@@ -11473,58 +11242,10 @@ packages:
resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
engines: {node: '>=14.0.0'}
- unplugin@1.12.3:
- resolution: {integrity: sha512-my8DH0/T/Kx33KO+6QXAqdeMYgyy0GktlOpdQjpagfHKw5DrD0ctPr7SHUyOT3g4ZVpzCQGt/qcpuoKJ/pniHA==}
- engines: {node: '>=14.0.0'}
-
unplugin@1.16.0:
resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
engines: {node: '>=14.0.0'}
- unstorage@1.10.2:
- resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==}
- peerDependencies:
- '@azure/app-configuration': ^1.5.0
- '@azure/cosmos': ^4.0.0
- '@azure/data-tables': ^13.2.2
- '@azure/identity': ^4.0.1
- '@azure/keyvault-secrets': ^4.8.0
- '@azure/storage-blob': ^12.17.0
- '@capacitor/preferences': ^5.0.7
- '@netlify/blobs': ^6.5.0 || ^7.0.0
- '@planetscale/database': ^1.16.0
- '@upstash/redis': ^1.28.4
- '@vercel/kv': ^1.0.1
- idb-keyval: ^6.2.1
- ioredis: ^5.3.2
- peerDependenciesMeta:
- '@azure/app-configuration':
- optional: true
- '@azure/cosmos':
- optional: true
- '@azure/data-tables':
- optional: true
- '@azure/identity':
- optional: true
- '@azure/keyvault-secrets':
- optional: true
- '@azure/storage-blob':
- optional: true
- '@capacitor/preferences':
- optional: true
- '@netlify/blobs':
- optional: true
- '@planetscale/database':
- optional: true
- '@upstash/redis':
- optional: true
- '@vercel/kv':
- optional: true
- idb-keyval:
- optional: true
- ioredis:
- optional: true
-
unstorage@1.13.1:
resolution: {integrity: sha512-ELexQHUrG05QVIM/iUeQNdl9FXDZhqLJ4yP59fnmn2jGUh0TEulwOgov1ubOb3Gt2ZGK/VMchJwPDNVEGWQpRg==}
peerDependencies:
@@ -11618,6 +11339,9 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+
urlpattern-polyfill@8.0.2:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
@@ -11643,6 +11367,14 @@ packages:
v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+ valibot@0.41.0:
+ resolution: {integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==}
+ peerDependencies:
+ typescript: '>=5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
validate-html-nesting@1.2.2:
resolution: {integrity: sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==}
@@ -11672,8 +11404,12 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vinxi@0.4.1:
- resolution: {integrity: sha512-WGEYqIuJ2/P3sBoSVKsGvp/UKpW4wVSaAFdA18gthyMCEExN6nVteoA+Rv1wQFLKXTVL9JRpeGJjcLzcRRgGCA==}
+ vinxi@0.4.3:
+ resolution: {integrity: sha512-RgJz7RWftML5h/qfPsp3QKVc2FSlvV4+HevpE0yEY2j+PS/I2ULjoSsZDXaR8Ks2WYuFFDzQr8yrox7v8aqkng==}
+ hasBin: true
+
+ vinxi@0.5.1:
+ resolution: {integrity: sha512-jvl2hJ0fyWwfDVQdDDHCJiVxqU4k0A6kFAnljS0kIjrGfhdTvKEWIoj0bcJgMyrKhxNMoZZGmHZsstQgjDIL3g==}
hasBin: true
vite-hot-client@0.2.3:
@@ -11686,18 +11422,18 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-node@2.0.5:
- resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
+ vite-node@1.6.0:
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-node@2.1.5:
- resolution: {integrity: sha512-rd0QIgx74q4S1Rd56XIiL2cYEdyWn13cunYBIuqh9mpmQr7gGS0IxXoP8R6OaZtNQQLyXSWbd4rXKYUbhFpK5w==}
+ vite-node@2.1.8:
+ resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite-plugin-checker@0.7.2:
- resolution: {integrity: sha512-xeYeJbG0gaCaT0QcUC4B2Zo4y5NR8ZhYenc5gPbttrZvraRFwkEADCYwq+BfEHl9zYz7yf85TxsiGoYwyyIjhw==}
+ vite-plugin-checker@0.8.0:
+ resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
engines: {node: '>=14.16'}
peerDependencies:
'@biomejs/biome': '>=1.7'
@@ -11709,7 +11445,7 @@ packages:
vite: '>=2.0.0'
vls: '*'
vti: '*'
- vue-tsc: '>=2.0.0'
+ vue-tsc: ~2.1.6
peerDependenciesMeta:
'@biomejs/biome':
optional: true
@@ -11730,48 +11466,14 @@ packages:
vue-tsc:
optional: true
- vite-plugin-checker@0.8.0:
- resolution: {integrity: sha512-UA5uzOGm97UvZRTdZHiQVYFnd86AVn8EVaD4L3PoVzxH+IZSfaAw14WGFwX9QS23UW3lV/5bVKZn6l0w+q9P0g==}
- engines: {node: '>=14.16'}
+ vite-plugin-inspect@0.7.42:
+ resolution: {integrity: sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==}
+ engines: {node: '>=14'}
peerDependencies:
- '@biomejs/biome': '>=1.7'
- eslint: '>=7'
- meow: ^9.0.0
- optionator: ^0.9.1
- stylelint: '>=13'
- typescript: '*'
- vite: '>=2.0.0'
- vls: '*'
- vti: '*'
- vue-tsc: ~2.1.6
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
- '@biomejs/biome':
- optional: true
- eslint:
- optional: true
- meow:
- optional: true
- optionator:
- optional: true
- stylelint:
- optional: true
- typescript:
- optional: true
- vls:
- optional: true
- vti:
- optional: true
- vue-tsc:
- optional: true
-
- vite-plugin-inspect@0.7.42:
- resolution: {integrity: sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==}
- engines: {node: '>=14'}
- peerDependencies:
- '@nuxt/kit': '*'
- vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
- peerDependenciesMeta:
- '@nuxt/kit':
+ '@nuxt/kit':
optional: true
vite-plugin-inspect@0.8.7:
@@ -11784,12 +11486,12 @@ packages:
'@nuxt/kit':
optional: true
- vite-plugin-solid@2.10.2:
- resolution: {integrity: sha512-AOEtwMe2baBSXMXdo+BUwECC8IFHcKS6WQV/1NEd+Q7vHPap5fmIhLcAzr+DUJ04/KHx/1UBU0l1/GWP+rMAPQ==}
+ vite-plugin-solid@2.11.0:
+ resolution: {integrity: sha512-G+NiwDj4EAeUE0wt3Ur9f+Lt9oMUuLd0FIxYuqwJSqRacKQRteCwUFzNy8zMEt88xWokngQhiFjfJMhjc1fDXw==}
peerDependencies:
'@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.*
solid-js: ^1.7.2
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
peerDependenciesMeta:
'@testing-library/jest-dom':
optional: true
@@ -11799,11 +11501,6 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
- vite-plugin-vue-inspector@5.2.0:
- resolution: {integrity: sha512-wWxyb9XAtaIvV/Lr7cqB1HIzmHZFVUJsTNm3yAxkS87dgh/Ky4qr2wDEWNxF23fdhVa3jQ8MZREpr4XyiuaRqA==}
- peerDependencies:
- vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
-
vite-tsconfig-paths@4.3.2:
resolution: {integrity: sha512-0Vd/a6po6Q+86rPlntHye7F31zA2URZMbH8M3saAZ/xR9QoGN/L21bxEGfXdWmFdNkqPpRdxFT7nmNe12e9/uA==}
peerDependencies:
@@ -11899,12 +11596,44 @@ packages:
terser:
optional: true
- vitefu@0.2.5:
- resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
+ vite@6.0.3:
+ resolution: {integrity: sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
peerDependenciesMeta:
- vite:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ 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.0.3:
@@ -11915,15 +11644,23 @@ packages:
vite:
optional: true
- vitest@1.5.0:
- resolution: {integrity: sha512-d8UKgR0m2kjdxDWX6911uwxout6GHS0XaGH1cksSIVVG8kRlE7G7aBw7myKQCvDI5dT4j7ZMa+l706BIORMDLw==}
+ vitefu@1.0.4:
+ resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==}
+ peerDependencies:
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+
+ vitest@2.1.8:
+ resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.5.0
- '@vitest/ui': 1.5.0
+ '@vitest/browser': 2.1.8
+ '@vitest/ui': 2.1.8
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -12050,18 +11787,9 @@ packages:
vscode-nls@5.2.0:
resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==}
- vscode-oniguruma@1.7.0:
- resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
-
- vscode-textmate@8.0.0:
- resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
-
vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- vue-bundle-renderer@2.1.0:
- resolution: {integrity: sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==}
-
vue-bundle-renderer@2.1.1:
resolution: {integrity: sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==}
@@ -12073,18 +11801,8 @@ packages:
peerDependencies:
vue: ^3.2.0
- vue-router@4.3.2:
- resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
- peerDependencies:
- vue: ^3.2.0
-
- vue-router@4.4.3:
- resolution: {integrity: sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==}
- peerDependencies:
- vue: ^3.2.0
-
- vue-router@4.4.5:
- resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==}
+ vue-router@4.5.0:
+ resolution: {integrity: sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==}
peerDependencies:
vue: ^3.2.0
@@ -12096,22 +11814,6 @@ packages:
typescript:
optional: true
- vue@3.4.24:
- resolution: {integrity: sha512-NPdx7dLGyHmKHGRRU5bMRYVE+rechR+KDU5R2tSTNG36PuMwbfAJ+amEvOAw7BPfZp5sQulNELSLm5YUkau+Sg==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- vue@3.5.0:
- resolution: {integrity: sha512-1t70favYoFijwfWJ7g81aTd32obGaAnKYE9FNyMgnEzn3F4YncRi/kqAHHKloG0VXTD8vBYMhbgLKCA+Sk6QDw==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
vue@3.5.13:
resolution: {integrity: sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==}
peerDependencies:
@@ -12255,8 +11957,8 @@ packages:
engines: {node: ^16.13.0 || >=18.0.0}
hasBin: true
- why-is-node-running@2.2.2:
- resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ why-is-node-running@2.3.0:
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
engines: {node: '>=8'}
hasBin: true
@@ -12293,6 +11995,18 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ ws@7.5.10:
+ resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
+ engines: {node: '>=8.3.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
@@ -12360,6 +12074,11 @@ packages:
engines: {node: '>= 14'}
hasBin: true
+ yaml@2.6.1:
+ resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
+ engines: {node: '>= 14'}
+ hasBin: true
+
yargs-parser@18.1.3:
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
engines: {node: '>=6'}
@@ -12384,17 +12103,28 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
- engines: {node: '>=12.20'}
-
yocto-queue@1.1.1:
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
+ yocto-spinner@0.1.2:
+ resolution: {integrity: sha512-VfmLIh/ZSZOJnVRQZc/dvpPP90lWL4G0bmxQMP0+U/2vKBA8GSpcBuWv17y7F+CZItRuO97HN1wdbb4p10uhOg==}
+ engines: {node: '>=18.19'}
+
+ yoctocolors-cjs@2.1.2:
+ resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
+ engines: {node: '>=18'}
+
+ yoctocolors@2.1.1:
+ resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
+ engines: {node: '>=18'}
+
zhead@2.2.4:
resolution: {integrity: sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==}
+ zimmerframe@1.1.2:
+ resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
+
zip-stream@6.0.1:
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
engines: {node: '>= 14'}
@@ -12466,6 +12196,8 @@ snapshots:
'@astrojs/internal-helpers@0.4.1': {}
+ '@astrojs/internal-helpers@0.4.2': {}
+
'@astrojs/language-server@2.15.4(prettier@3.2.4)(typescript@5.7.2)':
dependencies:
'@astrojs/compiler': 2.10.3
@@ -12514,6 +12246,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@astrojs/markdown-remark@6.0.1':
+ dependencies:
+ '@astrojs/prism': 3.2.0
+ github-slugger: 2.0.0
+ hast-util-from-html: 2.0.3
+ hast-util-to-text: 4.0.2
+ import-meta-resolve: 4.1.0
+ js-yaml: 4.1.0
+ mdast-util-definitions: 6.0.0
+ rehype-raw: 7.0.0
+ rehype-stringify: 10.0.1
+ remark-gfm: 4.0.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ remark-smartypants: 3.0.2
+ shiki: 1.23.1
+ unified: 11.0.5
+ unist-util-remove-position: 5.0.0
+ unist-util-visit: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
'@astrojs/node@8.3.4(astro@4.16.14(@types/node@20.12.12)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2))':
dependencies:
astro: 4.16.14(@types/node@20.12.12)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)
@@ -12522,10 +12278,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@astrojs/node@9.0.0(astro@5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))':
+ dependencies:
+ astro: 5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
+ send: 1.1.0
+ server-destroy: 1.0.1
+ transitivePeerDependencies:
+ - supports-color
+
'@astrojs/prism@3.1.0':
dependencies:
prismjs: 1.29.0
+ '@astrojs/prism@3.2.0':
+ dependencies:
+ prismjs: 1.29.0
+
'@astrojs/react@3.6.3(@types/node@20.12.12)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.27.0)':
dependencies:
'@types/react': 18.3.12
@@ -12546,10 +12314,45 @@ snapshots:
- supports-color
- terser
+ '@astrojs/react@4.1.1(@types/node@20.12.12)(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(jiti@2.4.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.27.0)(yaml@2.6.1)':
+ dependencies:
+ '@types/react': 19.0.1
+ '@types/react-dom': 19.0.2(@types/react@19.0.1)
+ '@vitejs/plugin-react': 4.3.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ ultrahtml: 1.5.3
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ transitivePeerDependencies:
+ - '@types/node'
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
'@astrojs/telemetry@3.1.0':
dependencies:
ci-info: 4.0.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
+ dlv: 1.1.3
+ dset: 3.1.4
+ is-docker: 3.0.0
+ is-wsl: 3.1.0
+ which-pm-runs: 1.1.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@astrojs/telemetry@3.2.0':
+ dependencies:
+ ci-info: 4.1.0
+ debug: 4.3.7
dlv: 1.1.3
dset: 3.1.4
is-docker: 3.0.0
@@ -12565,12 +12368,12 @@ snapshots:
'@babel/code-frame@7.24.2':
dependencies:
'@babel/highlight': 7.24.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/code-frame@7.26.2':
dependencies:
@@ -12586,26 +12389,6 @@ snapshots:
'@babel/compat-data@7.26.2': {}
- '@babel/core@7.23.9':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
- '@babel/helpers': 7.23.9
- '@babel/parser': 7.24.4
- '@babel/template': 7.24.0
- '@babel/traverse': 7.23.9
- '@babel/types': 7.24.0
- convert-source-map: 2.0.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.24.4':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -12639,7 +12422,7 @@ snapshots:
'@babel/traverse': 7.25.6
'@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -12659,7 +12442,7 @@ snapshots:
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -12759,6 +12542,19 @@ snapshots:
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
+ '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-function-name': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+
'@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.4)':
dependencies:
'@babel/core': 7.24.4
@@ -12774,28 +12570,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.0)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.0)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -12812,7 +12608,7 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -12853,9 +12649,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-imports@7.18.6':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@babel/helper-module-imports@7.22.15':
dependencies:
@@ -12875,18 +12678,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9)':
+ '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':
dependencies:
- '@babel/core': 7.23.9
+ '@babel/core': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':
+ '@babel/helper-module-transforms@7.23.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -12931,7 +12734,9 @@ snapshots:
dependencies:
'@babel/types': 7.25.6
- '@babel/helper-plugin-utils@7.22.5': {}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
'@babel/helper-plugin-utils@7.24.0': {}
@@ -12955,6 +12760,13 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+
'@babel/helper-replace-supers@7.24.7(@babel/core@7.24.4)':
dependencies:
'@babel/core': 7.24.4
@@ -12964,21 +12776,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.0)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -13004,6 +12816,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-split-export-declaration@7.22.6':
dependencies:
'@babel/types': 7.25.6
@@ -13039,14 +12858,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.23.9':
- dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/helpers@7.24.4':
dependencies:
'@babel/template': 7.24.0
@@ -13070,14 +12881,14 @@ snapshots:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/parser@7.24.4':
dependencies:
@@ -13121,20 +12932,11 @@ snapshots:
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -13163,12 +12965,7 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.0
-
- '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.0
@@ -13193,11 +12990,6 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13208,11 +13000,6 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13228,16 +13015,16 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.24.4)':
+ dependencies:
+ '@babel/core': 7.24.4
+ '@babel/helper-plugin-utils': 7.25.9
+
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13288,15 +13075,20 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)':
dependencies:
@@ -13463,6 +13255,13 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-simple-access': 7.22.5
+ '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-simple-access': 7.22.5
+
'@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.4)':
dependencies:
'@babel/core': 7.24.4
@@ -13572,21 +13371,11 @@ snapshots:
'@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.9)':
- dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
-
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.9)':
- dependencies:
- '@babel/core': 7.23.9
- '@babel/helper-plugin-utils': 7.22.5
-
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
@@ -13650,28 +13439,36 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.0
'@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.26.0)
'@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.24.7
+ '@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
'@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-typescript@7.26.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.4)':
dependencies:
'@babel/core': 7.24.4
@@ -13798,6 +13595,15 @@ snapshots:
'@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
'@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
+ '@babel/preset-typescript@7.24.1(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.26.0)
+
'@babel/regjsgen@0.8.0': {}
'@babel/runtime@7.23.9':
@@ -13817,13 +13623,13 @@ snapshots:
'@babel/template@7.24.7':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.26.2
'@babel/types': 7.25.6
'@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.26.2
'@babel/types': 7.25.6
'@babel/template@7.25.9':
@@ -13832,21 +13638,6 @@ snapshots:
'@babel/parser': 7.26.2
'@babel/types': 7.26.0
- '@babel/traverse@7.23.9':
- dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
- debug: 4.3.7(supports-color@9.4.0)
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/traverse@7.24.1':
dependencies:
'@babel/code-frame': 7.24.2
@@ -13870,9 +13661,9 @@ snapshots:
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
+ '@babel/parser': 7.26.2
'@babel/types': 7.25.6
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -13881,10 +13672,10 @@ snapshots:
dependencies:
'@babel/code-frame': 7.24.7
'@babel/generator': 7.25.6
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.26.2
'@babel/template': 7.25.0
'@babel/types': 7.25.6
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -13896,7 +13687,7 @@ snapshots:
'@babel/parser': 7.26.2
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -13926,14 +13717,19 @@ snapshots:
'@bcoe/v8-coverage@0.2.3': {}
- '@bundled-es-modules/cookie@2.0.0':
+ '@bundled-es-modules/cookie@2.0.1':
dependencies:
- cookie: 0.5.0
+ cookie: 0.7.2
'@bundled-es-modules/statuses@1.0.1':
dependencies:
statuses: 2.0.1
+ '@bundled-es-modules/tough-cookie@0.1.6':
+ dependencies:
+ '@types/tough-cookie': 4.0.5
+ tough-cookie: 4.1.4
+
'@changesets/apply-release-plan@7.0.0':
dependencies:
'@babel/runtime': 7.23.9
@@ -14082,10 +13878,6 @@ snapshots:
human-id: 1.0.2
prettier: 2.8.8
- '@cloudflare/kv-asset-handler@0.3.1':
- dependencies:
- mime: 3.0.0
-
'@cloudflare/kv-asset-handler@0.3.4':
dependencies:
mime: 3.0.0
@@ -14166,9 +13958,6 @@ snapshots:
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.23.1':
- optional: true
-
'@esbuild/aix-ppc64@0.24.0':
optional: true
@@ -14190,9 +13979,6 @@ snapshots:
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.23.1':
- optional: true
-
'@esbuild/android-arm64@0.24.0':
optional: true
@@ -14214,9 +14000,6 @@ snapshots:
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.23.1':
- optional: true
-
'@esbuild/android-arm@0.24.0':
optional: true
@@ -14238,9 +14021,6 @@ snapshots:
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.23.1':
- optional: true
-
'@esbuild/android-x64@0.24.0':
optional: true
@@ -14262,9 +14042,6 @@ snapshots:
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.23.1':
- optional: true
-
'@esbuild/darwin-arm64@0.24.0':
optional: true
@@ -14286,9 +14063,6 @@ snapshots:
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.23.1':
- optional: true
-
'@esbuild/darwin-x64@0.24.0':
optional: true
@@ -14310,9 +14084,6 @@ snapshots:
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.23.1':
- optional: true
-
'@esbuild/freebsd-arm64@0.24.0':
optional: true
@@ -14334,9 +14105,6 @@ snapshots:
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.23.1':
- optional: true
-
'@esbuild/freebsd-x64@0.24.0':
optional: true
@@ -14358,9 +14126,6 @@ snapshots:
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.23.1':
- optional: true
-
'@esbuild/linux-arm64@0.24.0':
optional: true
@@ -14382,9 +14147,6 @@ snapshots:
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.23.1':
- optional: true
-
'@esbuild/linux-arm@0.24.0':
optional: true
@@ -14406,9 +14168,6 @@ snapshots:
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.23.1':
- optional: true
-
'@esbuild/linux-ia32@0.24.0':
optional: true
@@ -14430,9 +14189,6 @@ snapshots:
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.23.1':
- optional: true
-
'@esbuild/linux-loong64@0.24.0':
optional: true
@@ -14454,9 +14210,6 @@ snapshots:
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.23.1':
- optional: true
-
'@esbuild/linux-mips64el@0.24.0':
optional: true
@@ -14478,9 +14231,6 @@ snapshots:
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.23.1':
- optional: true
-
'@esbuild/linux-ppc64@0.24.0':
optional: true
@@ -14502,9 +14252,6 @@ snapshots:
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.23.1':
- optional: true
-
'@esbuild/linux-riscv64@0.24.0':
optional: true
@@ -14526,9 +14273,6 @@ snapshots:
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.23.1':
- optional: true
-
'@esbuild/linux-s390x@0.24.0':
optional: true
@@ -14550,9 +14294,6 @@ snapshots:
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.23.1':
- optional: true
-
'@esbuild/linux-x64@0.24.0':
optional: true
@@ -14574,15 +14315,9 @@ snapshots:
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.23.1':
- optional: true
-
'@esbuild/netbsd-x64@0.24.0':
optional: true
- '@esbuild/openbsd-arm64@0.23.1':
- optional: true
-
'@esbuild/openbsd-arm64@0.24.0':
optional: true
@@ -14604,9 +14339,6 @@ snapshots:
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.23.1':
- optional: true
-
'@esbuild/openbsd-x64@0.24.0':
optional: true
@@ -14628,9 +14360,6 @@ snapshots:
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.23.1':
- optional: true
-
'@esbuild/sunos-x64@0.24.0':
optional: true
@@ -14652,9 +14381,6 @@ snapshots:
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.23.1':
- optional: true
-
'@esbuild/win32-arm64@0.24.0':
optional: true
@@ -14676,9 +14402,6 @@ snapshots:
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.23.1':
- optional: true
-
'@esbuild/win32-ia32@0.24.0':
optional: true
@@ -14700,9 +14423,6 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@esbuild/win32-x64@0.23.1':
- optional: true
-
'@esbuild/win32-x64@0.24.0':
optional: true
@@ -14733,6 +14453,12 @@ snapshots:
'@fontsource/fira-mono@4.5.10': {}
+ '@gerrit0/mini-shiki@1.24.4':
+ dependencies:
+ '@shikijs/engine-oniguruma': 1.24.2
+ '@shikijs/types': 1.24.2
+ '@shikijs/vscode-textmate': 9.3.1
+
'@hapi/hoek@9.3.0': {}
'@hapi/topo@5.1.0':
@@ -14826,6 +14552,80 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
+ '@inquirer/confirm@5.1.0(@types/node@20.10.0)':
+ dependencies:
+ '@inquirer/core': 10.1.1(@types/node@20.10.0)
+ '@inquirer/type': 3.0.1(@types/node@20.10.0)
+ '@types/node': 20.10.0
+
+ '@inquirer/confirm@5.1.0(@types/node@20.11.15)':
+ dependencies:
+ '@inquirer/core': 10.1.1(@types/node@20.11.15)
+ '@inquirer/type': 3.0.1(@types/node@20.11.15)
+ '@types/node': 20.11.15
+
+ '@inquirer/confirm@5.1.0(@types/node@20.12.12)':
+ dependencies:
+ '@inquirer/core': 10.1.1(@types/node@20.12.12)
+ '@inquirer/type': 3.0.1(@types/node@20.12.12)
+ '@types/node': 20.12.12
+
+ '@inquirer/core@10.1.1(@types/node@20.10.0)':
+ dependencies:
+ '@inquirer/figures': 1.0.8
+ '@inquirer/type': 3.0.1(@types/node@20.10.0)
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/core@10.1.1(@types/node@20.11.15)':
+ dependencies:
+ '@inquirer/figures': 1.0.8
+ '@inquirer/type': 3.0.1(@types/node@20.11.15)
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/core@10.1.1(@types/node@20.12.12)':
+ dependencies:
+ '@inquirer/figures': 1.0.8
+ '@inquirer/type': 3.0.1(@types/node@20.12.12)
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@inquirer/figures@1.0.8': {}
+
+ '@inquirer/type@3.0.1(@types/node@20.10.0)':
+ dependencies:
+ '@types/node': 20.10.0
+
+ '@inquirer/type@3.0.1(@types/node@20.11.15)':
+ dependencies:
+ '@types/node': 20.11.15
+
+ '@inquirer/type@3.0.1(@types/node@20.12.12)':
+ dependencies:
+ '@types/node': 20.12.12
+
'@ioredis/commands@1.2.0': {}
'@isaacs/cliui@8.0.2':
@@ -14839,10 +14639,6 @@ snapshots:
'@istanbuljs/schema@0.1.3': {}
- '@jest/schemas@29.6.3':
- dependencies:
- '@sinclair/typebox': 0.27.8
-
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -14876,7 +14672,7 @@ snapshots:
'@kwsites/file-exists@1.1.1':
dependencies:
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -14935,43 +14731,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mswjs/cookies@1.1.0': {}
-
- '@mswjs/interceptors@0.25.15':
+ '@mswjs/interceptors@0.37.3':
dependencies:
'@open-draft/deferred-promise': 2.2.0
'@open-draft/logger': 0.3.0
'@open-draft/until': 2.1.0
is-node-process: 1.2.0
- outvariant: 1.4.2
+ outvariant: 1.4.3
strict-event-emitter: 0.5.1
'@neoconfetti/svelte@1.0.0': {}
- '@netlify/functions@2.6.0':
- dependencies:
- '@netlify/serverless-functions-api': 1.14.0
-
- '@netlify/functions@2.8.1':
- dependencies:
- '@netlify/serverless-functions-api': 1.19.1
-
'@netlify/functions@2.8.2':
dependencies:
'@netlify/serverless-functions-api': 1.26.1
'@netlify/node-cookies@0.1.0': {}
- '@netlify/serverless-functions-api@1.14.0':
- dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
-
- '@netlify/serverless-functions-api@1.19.1':
- dependencies:
- '@netlify/node-cookies': 0.1.0
- urlpattern-polyfill: 8.0.2
-
'@netlify/serverless-functions-api@1.26.1':
dependencies:
'@netlify/node-cookies': 0.1.0
@@ -14979,7 +14755,7 @@ snapshots:
'@next/env@14.2.10': {}
- '@next/env@15.0.0-rc.0': {}
+ '@next/env@15.1.0': {}
'@next/eslint-plugin-next@14.2.10':
dependencies:
@@ -14988,55 +14764,52 @@ snapshots:
'@next/swc-darwin-arm64@14.2.10':
optional: true
- '@next/swc-darwin-arm64@15.0.0-rc.0':
+ '@next/swc-darwin-arm64@15.1.0':
optional: true
'@next/swc-darwin-x64@14.2.10':
optional: true
- '@next/swc-darwin-x64@15.0.0-rc.0':
+ '@next/swc-darwin-x64@15.1.0':
optional: true
'@next/swc-linux-arm64-gnu@14.2.10':
optional: true
- '@next/swc-linux-arm64-gnu@15.0.0-rc.0':
+ '@next/swc-linux-arm64-gnu@15.1.0':
optional: true
'@next/swc-linux-arm64-musl@14.2.10':
optional: true
- '@next/swc-linux-arm64-musl@15.0.0-rc.0':
+ '@next/swc-linux-arm64-musl@15.1.0':
optional: true
'@next/swc-linux-x64-gnu@14.2.10':
optional: true
- '@next/swc-linux-x64-gnu@15.0.0-rc.0':
+ '@next/swc-linux-x64-gnu@15.1.0':
optional: true
'@next/swc-linux-x64-musl@14.2.10':
optional: true
- '@next/swc-linux-x64-musl@15.0.0-rc.0':
+ '@next/swc-linux-x64-musl@15.1.0':
optional: true
'@next/swc-win32-arm64-msvc@14.2.10':
optional: true
- '@next/swc-win32-arm64-msvc@15.0.0-rc.0':
+ '@next/swc-win32-arm64-msvc@15.1.0':
optional: true
'@next/swc-win32-ia32-msvc@14.2.10':
optional: true
- '@next/swc-win32-ia32-msvc@15.0.0-rc.0':
- optional: true
-
'@next/swc-win32-x64-msvc@14.2.10':
optional: true
- '@next/swc-win32-x64-msvc@15.0.0-rc.0':
+ '@next/swc-win32-x64-msvc@15.1.0':
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -15086,21 +14859,21 @@ snapshots:
'@nuxt/devalue@2.0.2': {}
- '@nuxt/devtools-kit@1.4.1(magicast@0.3.4)(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@3.29.4)
- '@nuxt/schema': 3.13.0(rollup@3.29.4)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.4)
execa: 7.2.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/devtools-kit@1.4.1(magicast@0.3.4)(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.22.4)
- '@nuxt/schema': 3.13.0(rollup@4.22.4)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
execa: 7.2.0
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
@@ -15108,41 +14881,17 @@ snapshots:
- rollup
- supports-color
- '@nuxt/devtools-kit@1.4.1(magicast@0.3.4)(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
- dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.27.3)
- '@nuxt/schema': 3.13.0(rollup@4.27.3)
- execa: 7.2.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@nuxt/devtools-kit@1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
execa: 7.2.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/devtools-wizard@1.4.1':
- dependencies:
- consola: 3.2.3
- diff: 5.2.0
- execa: 7.2.0
- global-directory: 4.0.1
- magicast: 0.3.4
- pathe: 1.1.2
- pkg-types: 1.2.0
- prompts: 2.4.2
- rc9: 2.1.2
- semver: 7.6.3
-
'@nuxt/devtools-wizard@1.6.0':
dependencies:
consola: 3.2.3
@@ -15156,14 +14905,14 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.4.1(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@nuxt/devtools@1.6.0(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.4.1(magicast@0.3.4)(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@nuxt/devtools-wizard': 1.4.1
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@3.29.4)
- '@vue/devtools-core': 7.3.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@vue/devtools-kit': 7.3.3
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ '@nuxt/devtools-wizard': 1.6.0
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
+ '@vue/devtools-core': 7.4.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
cronstrue: 2.50.0
@@ -15176,24 +14925,24 @@ snapshots:
hookable: 5.5.3
image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.8.2
+ launch-editor: 2.9.1
local-pkg: 0.5.0
- magicast: 0.3.4
- nypm: 0.3.11
- ohash: 1.1.3
+ magicast: 0.3.5
+ nypm: 0.3.12
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
rc9: 2.1.2
scule: 1.3.0
semver: 7.6.3
- simple-git: 3.26.0
+ simple-git: 3.27.0
sirv: 2.0.4
- tinyglobby: 0.2.5
- unimport: 3.11.1(rollup@3.29.4)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@3.29.4))(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vite-plugin-vue-inspector: 5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ tinyglobby: 0.2.10
+ unimport: 3.13.2(rollup@3.29.4)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@3.29.4))(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vite-plugin-vue-inspector: 5.1.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -15201,15 +14950,16 @@ snapshots:
- rollup
- supports-color
- utf-8-validate
+ - vue
- '@nuxt/devtools@1.4.1(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@nuxt/devtools@1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.4.1(magicast@0.3.4)(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- '@nuxt/devtools-wizard': 1.4.1
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.22.4)
- '@vue/devtools-core': 7.3.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- '@vue/devtools-kit': 7.3.3
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ '@nuxt/devtools-wizard': 1.6.0
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@vue/devtools-core': 7.4.4(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
+ '@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
cronstrue: 2.50.0
@@ -15222,24 +14972,24 @@ snapshots:
hookable: 5.5.3
image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.8.2
+ launch-editor: 2.9.1
local-pkg: 0.5.0
- magicast: 0.3.4
- nypm: 0.3.11
- ohash: 1.1.3
+ magicast: 0.3.5
+ nypm: 0.3.12
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
rc9: 2.1.2
scule: 1.3.0
semver: 7.6.3
- simple-git: 3.26.0
+ simple-git: 3.27.0
sirv: 2.0.4
- tinyglobby: 0.2.5
- unimport: 3.11.1(rollup@4.22.4)
+ tinyglobby: 0.2.10
+ unimport: 3.13.2(rollup@4.27.3)
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.22.4))(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- vite-plugin-vue-inspector: 5.2.0(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -15247,15 +14997,16 @@ snapshots:
- rollup
- supports-color
- utf-8-validate
+ - vue
- '@nuxt/devtools@1.4.1(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@nuxt/devtools@1.6.0(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.3.3))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.4.1(magicast@0.3.4)(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@nuxt/devtools-wizard': 1.4.1
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.27.3)
- '@vue/devtools-core': 7.3.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@vue/devtools-kit': 7.3.3
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ '@nuxt/devtools-wizard': 1.6.0
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@vue/devtools-core': 7.4.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.3.3))
+ '@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
cronstrue: 2.50.0
@@ -15268,24 +15019,24 @@ snapshots:
hookable: 5.5.3
image-meta: 0.2.1
is-installed-globally: 1.0.0
- launch-editor: 2.8.2
+ launch-editor: 2.9.1
local-pkg: 0.5.0
- magicast: 0.3.4
- nypm: 0.3.11
- ohash: 1.1.3
+ magicast: 0.3.5
+ nypm: 0.3.12
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
rc9: 2.1.2
scule: 1.3.0
semver: 7.6.3
- simple-git: 3.26.0
+ simple-git: 3.27.0
sirv: 2.0.4
- tinyglobby: 0.2.5
- unimport: 3.11.1(rollup@4.27.3)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vite-plugin-vue-inspector: 5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ tinyglobby: 0.2.10
+ unimport: 3.13.2(rollup@4.27.3)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vite-plugin-vue-inspector: 5.1.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -15293,14 +15044,15 @@ snapshots:
- rollup
- supports-color
- utf-8-validate
+ - vue
- '@nuxt/devtools@1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
+ '@nuxt/devtools@1.6.0(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@antfu/utils': 0.7.10
- '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ '@nuxt/devtools-kit': 1.6.0(magicast@0.3.5)(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@nuxt/devtools-wizard': 1.6.0
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
+ '@vue/devtools-core': 7.4.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
@@ -15329,9 +15081,9 @@ snapshots:
sirv: 2.0.4
tinyglobby: 0.2.10
unimport: 3.13.2(rollup@4.27.3)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vite-plugin-vue-inspector: 5.1.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vite-plugin-inspect: 0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vite-plugin-vue-inspector: 5.1.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -15341,91 +15093,10 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/kit@3.12.4(magicast@0.3.5)(rollup@3.29.4)':
- dependencies:
- '@nuxt/schema': 3.12.4(rollup@3.29.4)
- c12: 1.11.2(magicast@0.3.5)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.11.1(rollup@3.29.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.12.4(magicast@0.3.5)(rollup@4.22.4)':
- dependencies:
- '@nuxt/schema': 3.12.4(rollup@4.22.4)
- c12: 1.11.2(magicast@0.3.5)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.11.1(rollup@4.22.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.12.4(magicast@0.3.5)(rollup@4.27.3)':
- dependencies:
- '@nuxt/schema': 3.12.4(rollup@4.27.3)
- c12: 1.11.2(magicast@0.3.5)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 5.3.2
- jiti: 1.21.6
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.11.1(rollup@4.27.3)
- untyped: 1.4.2
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@3.29.4)':
+ '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@3.29.4)':
dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.4)(rollup@3.29.4)
- c12: 2.0.1(magicast@0.3.4)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
+ c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
destr: 2.0.3
@@ -15449,37 +15120,10 @@ snapshots:
- rollup
- supports-color
- '@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.22.4)':
- dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.4)(rollup@4.22.4)
- c12: 2.0.1(magicast@0.3.4)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.0
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.13.2(rollup@4.22.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.27.3)':
+ '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3)':
dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.4)(rollup@4.27.3)
- c12: 2.0.1(magicast@0.3.4)
+ '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
destr: 2.0.3
@@ -15503,9 +15147,9 @@ snapshots:
- rollup
- supports-color
- '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@3.29.4)':
+ '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@3.29.4)':
dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.4)
c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -15530,36 +15174,9 @@ snapshots:
- rollup
- supports-color
- '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.22.4)':
- dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.22.4)
- c12: 2.0.1(magicast@0.3.5)
- consola: 3.2.3
- defu: 6.1.4
- destr: 2.0.3
- globby: 14.0.2
- hash-sum: 2.0.0
- ignore: 6.0.2
- jiti: 2.4.0
- klona: 2.0.6
- knitwork: 1.1.0
- mlly: 1.7.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- semver: 7.6.3
- ufo: 1.5.4
- unctx: 2.3.1
- unimport: 3.13.2(rollup@4.22.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxt/kit@3.14.1592(magicast@0.3.5)(rollup@4.27.3)':
dependencies:
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
c12: 2.0.1(magicast@0.3.5)
consola: 3.2.3
defu: 6.1.4
@@ -15584,174 +15201,6 @@ snapshots:
- rollup
- supports-color
- '@nuxt/schema@3.12.4(rollup@3.29.4)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.11.1(rollup@3.29.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.12.4(rollup@4.22.4)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.11.1(rollup@4.22.4)
- untyped: 1.4.2
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.12.4(rollup@4.27.3)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.11.1(rollup@4.27.3)
- untyped: 1.4.2
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.13.0(rollup@3.29.4)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@3.29.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.13.0(rollup@4.22.4)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.22.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.13.0(rollup@4.27.3)':
- dependencies:
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.27.3)
- untyped: 1.5.1
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- '@nuxt/schema@3.14.159(magicast@0.3.4)(rollup@3.29.4)':
- dependencies:
- c12: 2.0.1(magicast@0.3.4)
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@3.29.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/schema@3.14.159(magicast@0.3.4)(rollup@4.22.4)':
- dependencies:
- c12: 2.0.1(magicast@0.3.4)
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.22.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
- '@nuxt/schema@3.14.159(magicast@0.3.4)(rollup@4.27.3)':
- dependencies:
- c12: 2.0.1(magicast@0.3.4)
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.27.3)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
'@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@3.29.4)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
@@ -15772,26 +15221,6 @@ snapshots:
- rollup
- supports-color
- '@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.22.4)':
- dependencies:
- c12: 2.0.1(magicast@0.3.5)
- compatx: 0.1.8
- consola: 3.2.3
- defu: 6.1.4
- hookable: 5.5.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- std-env: 3.7.0
- ufo: 1.5.4
- uncrypto: 0.1.3
- unimport: 3.13.2(rollup@4.22.4)
- untyped: 1.5.1
- transitivePeerDependencies:
- - magicast
- - rollup
- - supports-color
-
'@nuxt/schema@3.14.159(magicast@0.3.5)(rollup@4.27.3)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
@@ -15812,73 +15241,66 @@ snapshots:
- rollup
- supports-color
- '@nuxt/telemetry@2.5.4(magicast@0.3.5)(rollup@3.29.4)':
+ '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@3.29.4)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
- ci-info: 4.0.0
+ c12: 2.0.1(magicast@0.3.5)
+ compatx: 0.1.8
consola: 3.2.3
- create-require: 1.1.1
defu: 6.1.4
- destr: 2.0.3
- dotenv: 16.4.5
- git-url-parse: 14.0.0
- is-docker: 3.0.0
- jiti: 1.21.6
- mri: 1.2.0
- nanoid: 5.0.7
- ofetch: 1.3.4
- parse-git-config: 3.0.0
+ hookable: 5.5.3
pathe: 1.1.2
- rc9: 2.1.2
- std-env: 3.7.0
+ pkg-types: 1.2.1
+ scule: 1.3.0
+ std-env: 3.8.0
+ ufo: 1.5.4
+ uncrypto: 0.1.3
+ unimport: 3.13.2(rollup@3.29.4)
+ untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/telemetry@2.5.4(magicast@0.3.5)(rollup@4.22.4)':
+ '@nuxt/schema@3.14.1592(magicast@0.3.5)(rollup@4.27.3)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.22.4)
- ci-info: 4.0.0
+ c12: 2.0.1(magicast@0.3.5)
+ compatx: 0.1.8
consola: 3.2.3
- create-require: 1.1.1
defu: 6.1.4
- destr: 2.0.3
- dotenv: 16.4.5
- git-url-parse: 14.0.0
- is-docker: 3.0.0
- jiti: 1.21.6
- mri: 1.2.0
- nanoid: 5.0.7
- ofetch: 1.3.4
- parse-git-config: 3.0.0
+ hookable: 5.5.3
pathe: 1.1.2
- rc9: 2.1.2
- std-env: 3.7.0
+ pkg-types: 1.2.1
+ scule: 1.3.0
+ std-env: 3.8.0
+ ufo: 1.5.4
+ uncrypto: 0.1.3
+ unimport: 3.13.2(rollup@4.27.3)
+ untyped: 1.5.1
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/telemetry@2.5.4(magicast@0.3.5)(rollup@4.27.3)':
+ '@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@3.29.4)':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- ci-info: 4.0.0
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
+ ci-info: 4.1.0
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.4
destr: 2.0.3
dotenv: 16.4.5
- git-url-parse: 14.0.0
+ git-url-parse: 15.0.0
is-docker: 3.0.0
jiti: 1.21.6
mri: 1.2.0
nanoid: 5.0.7
- ofetch: 1.3.4
+ ofetch: 1.4.1
+ package-manager-detector: 0.2.4
parse-git-config: 3.0.0
pathe: 1.1.2
rc9: 2.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
transitivePeerDependencies:
- magicast
- rollup
@@ -15887,7 +15309,7 @@ snapshots:
'@nuxt/telemetry@2.6.0(magicast@0.3.5)(rollup@4.27.3)':
dependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- ci-info: 4.0.0
+ ci-info: 4.1.0
consola: 3.2.3
create-require: 1.1.1
defu: 6.1.4
@@ -15903,107 +15325,49 @@ snapshots:
parse-git-config: 3.0.0
pathe: 1.1.2
rc9: 2.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
transitivePeerDependencies:
- magicast
- rollup
- supports-color
- '@nuxt/vite-builder@3.12.4(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@3.29.4)
- '@rollup/plugin-replace': 5.0.7(rollup@3.29.4)
- '@vitejs/plugin-vue': 5.1.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- autoprefixer: 10.4.19(postcss@8.4.44)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.4)
+ '@rollup/plugin-replace': 6.0.1(rollup@3.29.4)
+ '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
+ autoprefixer: 10.4.20(postcss@8.4.49)
clear: 0.1.0
consola: 3.2.3
- cssnano: 7.0.5(postcss@8.4.44)
+ cssnano: 7.0.6(postcss@8.4.49)
defu: 6.1.4
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
get-port-please: 3.1.2
- h3: 1.12.0
+ h3: 1.13.0
+ jiti: 2.4.0
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- ohash: 1.1.3
+ magic-string: 0.30.17
+ mlly: 1.7.3
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- postcss: 8.4.44
+ pkg-types: 1.2.1
+ postcss: 8.4.49
rollup-plugin-visualizer: 5.12.0(rollup@3.29.4)
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.0
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-node: 2.0.5(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-checker: 0.7.2(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
- transitivePeerDependencies:
- - '@biomejs/biome'
- - '@types/node'
- - eslint
- - less
- - lightningcss
- - magicast
- - meow
- - optionator
- - rollup
- - sass
- - sass-embedded
- - stylelint
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
- - uWebSockets.js
- - vls
- - vti
- - vue-tsc
-
- '@nuxt/vite-builder@3.12.4(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.22.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))':
- dependencies:
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.22.4)
- '@rollup/plugin-replace': 5.0.7(rollup@4.22.4)
- '@vitejs/plugin-vue': 5.1.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- autoprefixer: 10.4.19(postcss@8.4.44)
- clear: 0.1.0
- consola: 3.2.3
- cssnano: 7.0.5(postcss@8.4.44)
- defu: 6.1.4
- esbuild: 0.23.1
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- externality: 1.0.2
- get-port-please: 3.1.2
- h3: 1.12.0
- knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- ohash: 1.1.3
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- postcss: 8.4.44
- rollup-plugin-visualizer: 5.12.0(rollup@4.22.4)
- std-env: 3.7.0
- strip-literal: 2.1.0
- ufo: 1.5.4
- unenv: 1.10.0
- unplugin: 1.16.0
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vite-node: 2.0.5(@types/node@20.12.12)(terser@5.27.0)
- vite-plugin-checker: 0.7.2(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
+ vite-node: 2.1.8(@types/node@20.11.15)(terser@5.27.0)
+ vite-plugin-checker: 0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vue: 3.5.13(typescript@5.7.2)
+ vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
- '@types/node'
@@ -16022,47 +15386,47 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- vls
- vti
- vue-tsc
- '@nuxt/vite-builder@3.12.4(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vue@3.5.13(typescript@5.3.3))':
dependencies:
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.27.3)
- '@rollup/plugin-replace': 5.0.7(rollup@4.27.3)
- '@vitejs/plugin-vue': 5.1.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))
- autoprefixer: 10.4.19(postcss@8.4.44)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
+ '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
+ autoprefixer: 10.4.20(postcss@8.4.49)
clear: 0.1.0
consola: 3.2.3
- cssnano: 7.0.5(postcss@8.4.44)
+ cssnano: 7.0.6(postcss@8.4.49)
defu: 6.1.4
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
get-port-please: 3.1.2
- h3: 1.12.0
+ h3: 1.13.0
+ jiti: 2.4.0
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- ohash: 1.1.3
+ magic-string: 0.30.17
+ mlly: 1.7.3
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- postcss: 8.4.44
+ pkg-types: 1.2.1
+ postcss: 8.4.49
rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.0
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vite-node: 2.0.5(@types/node@20.12.12)(terser@5.27.0)
- vite-plugin-checker: 0.7.2(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite-node: 2.1.8(@types/node@20.11.15)(terser@5.27.0)
+ vite-plugin-checker: 0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vue: 3.5.13(typescript@5.3.3)
+ vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
- '@types/node'
@@ -16081,17 +15445,16 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- vls
- vti
- vue-tsc
- '@nuxt/vite-builder@3.14.159(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vue@3.5.13(typescript@5.3.3))':
+ '@nuxt/vite-builder@3.14.1592(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
'@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
- '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
+ '@vitejs/plugin-vue': 5.2.0(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
autoprefixer: 10.4.20(postcss@8.4.49)
clear: 0.1.0
consola: 3.2.3
@@ -16105,7 +15468,7 @@ snapshots:
h3: 1.13.0
jiti: 2.4.0
knitwork: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.17
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
@@ -16113,15 +15476,15 @@ snapshots:
pkg-types: 1.2.1
postcss: 8.4.49
rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
ufo: 1.5.4
unenv: 1.10.0
unplugin: 1.16.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-node: 2.1.5(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-checker: 0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vue: 3.5.13(typescript@5.3.3)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite-node: 2.1.8(@types/node@20.12.12)(terser@5.27.0)
+ vite-plugin-checker: 0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vue: 3.5.13(typescript@5.7.2)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -16141,7 +15504,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- vls
- vti
- vue-tsc
@@ -16211,7 +15573,7 @@ snapshots:
'@open-draft/logger@0.3.0':
dependencies:
is-node-process: 1.2.0
- outvariant: 1.4.2
+ outvariant: 1.4.3
'@open-draft/until@2.1.0': {}
@@ -16271,7 +15633,7 @@ snapshots:
'@parcel/watcher-wasm@2.3.0':
dependencies:
is-glob: 4.0.3
- micromatch: 4.0.5
+ micromatch: 4.0.8
'@parcel/watcher-wasm@2.4.1':
dependencies:
@@ -16340,7 +15702,85 @@ snapshots:
- encoding
- supports-color
- '@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/serve@2.9.2(typescript@5.4.5))(@types/node@20.12.12)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))(typescript@5.4.5)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@remix-run/dev@2.15.1(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/serve@2.15.1(typescript@5.4.5))(@types/node@20.12.12)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))(typescript@5.4.5)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ '@mdx-js/mdx': 2.3.0
+ '@npmcli/package-json': 4.0.1
+ '@remix-run/node': 2.15.1(typescript@5.4.5)
+ '@remix-run/react': 2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
+ '@remix-run/router': 1.21.0
+ '@remix-run/server-runtime': 2.15.1(typescript@5.4.5)
+ '@types/mdx': 2.0.13
+ '@vanilla-extract/integration': 6.5.0(@types/node@20.12.12)(terser@5.27.0)
+ arg: 5.0.2
+ cacache: 17.1.4
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ cross-spawn: 7.0.3
+ dotenv: 16.4.5
+ es-module-lexer: 1.5.4
+ esbuild: 0.17.6
+ esbuild-plugins-node-modules-polyfill: 1.6.4(esbuild@0.17.6)
+ execa: 5.1.1
+ exit-hook: 2.2.1
+ express: 4.21.2
+ fs-extra: 10.1.0
+ get-port: 5.1.1
+ gunzip-maybe: 1.4.2
+ jsesc: 3.0.2
+ json5: 2.2.3
+ lodash: 4.17.21
+ lodash.debounce: 4.0.8
+ minimatch: 9.0.3
+ ora: 5.4.1
+ picocolors: 1.1.1
+ picomatch: 2.3.1
+ pidtree: 0.6.0
+ postcss: 8.4.49
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.49)
+ postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))
+ postcss-modules: 6.0.0(postcss@8.4.49)
+ prettier: 2.8.8
+ pretty-ms: 7.0.1
+ react-refresh: 0.14.2
+ remark-frontmatter: 4.0.1
+ remark-mdx-frontmatter: 1.1.1
+ semver: 7.6.3
+ set-cookie-parser: 2.6.0
+ tar-fs: 2.1.1
+ tsconfig-paths: 4.2.0
+ valibot: 0.41.0(typescript@5.4.5)
+ vite-node: 1.6.0(@types/node@20.12.12)(terser@5.27.0)
+ ws: 7.5.10
+ optionalDependencies:
+ '@remix-run/serve': 2.15.1(typescript@5.4.5)
+ typescript: 5.4.5
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - bluebird
+ - bufferutil
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - ts-node
+ - utf-8-validate
+
+ '@remix-run/dev@2.9.2(@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/serve@2.15.1(typescript@5.7.2))(@types/node@20.11.15)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
'@babel/core': 7.24.4
'@babel/generator': 7.24.4
@@ -16352,12 +15792,12 @@ snapshots:
'@babel/types': 7.24.0
'@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1
- '@remix-run/node': 2.9.2(typescript@5.4.5)
- '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
+ '@remix-run/node': 2.9.2(typescript@5.7.2)
+ '@remix-run/react': 2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)
'@remix-run/router': 1.16.1
- '@remix-run/server-runtime': 2.9.2(typescript@5.4.5)
+ '@remix-run/server-runtime': 2.9.2(typescript@5.7.2)
'@types/mdx': 2.0.13
- '@vanilla-extract/integration': 6.5.0(@types/node@20.12.12)(terser@5.27.0)
+ '@vanilla-extract/integration': 6.5.0(@types/node@20.11.15)(terser@5.27.0)
arg: 5.0.2
cacache: 17.1.4
chalk: 4.1.2
@@ -16384,7 +15824,7 @@ snapshots:
pidtree: 0.6.0
postcss: 8.4.38
postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))
+ postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))
postcss-modules: 6.0.0(postcss@8.4.38)
prettier: 2.8.8
pretty-ms: 7.0.1
@@ -16397,9 +15837,9 @@ snapshots:
tsconfig-paths: 4.2.0
ws: 7.5.9
optionalDependencies:
- '@remix-run/serve': 2.9.2(typescript@5.4.5)
- typescript: 5.4.5
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ '@remix-run/serve': 2.15.1(typescript@5.7.2)
+ typescript: 5.7.2
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -16416,7 +15856,7 @@ snapshots:
- ts-node
- utf-8-validate
- '@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2))(@remix-run/serve@2.9.2(typescript@5.7.2))(@types/node@20.11.15)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/serve@2.9.2(typescript@5.4.5))(@types/node@20.12.12)(terser@5.27.0)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))(typescript@5.4.5)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
dependencies:
'@babel/core': 7.24.4
'@babel/generator': 7.24.4
@@ -16428,12 +15868,12 @@ snapshots:
'@babel/types': 7.24.0
'@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1
- '@remix-run/node': 2.9.2(typescript@5.7.2)
- '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)
+ '@remix-run/node': 2.9.2(typescript@5.4.5)
+ '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)
'@remix-run/router': 1.16.1
- '@remix-run/server-runtime': 2.9.2(typescript@5.7.2)
+ '@remix-run/server-runtime': 2.9.2(typescript@5.4.5)
'@types/mdx': 2.0.13
- '@vanilla-extract/integration': 6.5.0(@types/node@20.11.15)(terser@5.27.0)
+ '@vanilla-extract/integration': 6.5.0(@types/node@20.12.12)(terser@5.27.0)
arg: 5.0.2
cacache: 17.1.4
chalk: 4.1.2
@@ -16460,7 +15900,7 @@ snapshots:
pidtree: 0.6.0
postcss: 8.4.38
postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.11.15)(typescript@5.7.2))
+ postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))
postcss-modules: 6.0.0(postcss@8.4.38)
prettier: 2.8.8
pretty-ms: 7.0.1
@@ -16473,9 +15913,9 @@ snapshots:
tsconfig-paths: 4.2.0
ws: 7.5.9
optionalDependencies:
- '@remix-run/serve': 2.9.2(typescript@5.7.2)
- typescript: 5.7.2
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ '@remix-run/serve': 2.9.2(typescript@5.4.5)
+ typescript: 5.4.5
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -16492,6 +15932,21 @@ snapshots:
- ts-node
- utf-8-validate
+ '@remix-run/express@2.15.1(express@4.21.2)(typescript@5.4.5)':
+ dependencies:
+ '@remix-run/node': 2.15.1(typescript@5.4.5)
+ express: 4.21.2
+ optionalDependencies:
+ typescript: 5.4.5
+
+ '@remix-run/express@2.15.1(express@4.21.2)(typescript@5.7.2)':
+ dependencies:
+ '@remix-run/node': 2.15.1(typescript@5.7.2)
+ express: 4.21.2
+ optionalDependencies:
+ typescript: 5.7.2
+ optional: true
+
'@remix-run/express@2.9.2(express@4.19.2)(typescript@5.4.5)':
dependencies:
'@remix-run/node': 2.9.2(typescript@5.4.5)
@@ -16499,10 +15954,27 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
- '@remix-run/express@2.9.2(express@4.19.2)(typescript@5.7.2)':
+ '@remix-run/node@2.15.1(typescript@5.4.5)':
+ dependencies:
+ '@remix-run/server-runtime': 2.15.1(typescript@5.4.5)
+ '@remix-run/web-fetch': 4.4.2
+ '@web3-storage/multipart-parser': 1.0.0
+ cookie-signature: 1.2.1
+ source-map-support: 0.5.21
+ stream-slice: 0.1.2
+ undici: 6.18.2
+ optionalDependencies:
+ typescript: 5.4.5
+
+ '@remix-run/node@2.15.1(typescript@5.7.2)':
dependencies:
- '@remix-run/node': 2.9.2(typescript@5.7.2)
- express: 4.19.2
+ '@remix-run/server-runtime': 2.15.1(typescript@5.7.2)
+ '@remix-run/web-fetch': 4.4.2
+ '@web3-storage/multipart-parser': 1.0.0
+ cookie-signature: 1.2.1
+ source-map-support: 0.5.21
+ stream-slice: 0.1.2
+ undici: 6.18.2
optionalDependencies:
typescript: 5.7.2
optional: true
@@ -16531,39 +16003,53 @@ snapshots:
optionalDependencies:
typescript: 5.7.2
- '@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)':
+ '@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)':
dependencies:
- '@remix-run/router': 1.16.1
- '@remix-run/server-runtime': 2.9.2(typescript@5.4.5)
+ '@remix-run/router': 1.21.0
+ '@remix-run/server-runtime': 2.15.1(typescript@5.4.5)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-router: 6.23.1(react@18.3.1)
- react-router-dom: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- turbo-stream: 2.2.0
+ react-router: 6.28.0(react@18.3.1)
+ react-router-dom: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ turbo-stream: 2.4.0
optionalDependencies:
typescript: 5.4.5
- '@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)':
+ '@remix-run/react@2.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.7.2)':
+ dependencies:
+ '@remix-run/router': 1.21.0
+ '@remix-run/server-runtime': 2.15.1(typescript@5.7.2)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-router: 6.28.0(react@18.3.1)
+ react-router-dom: 6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ turbo-stream: 2.4.0
+ optionalDependencies:
+ typescript: 5.7.2
+
+ '@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)':
dependencies:
'@remix-run/router': 1.16.1
- '@remix-run/server-runtime': 2.9.2(typescript@5.7.2)
+ '@remix-run/server-runtime': 2.9.2(typescript@5.4.5)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-router: 6.23.1(react@18.3.1)
react-router-dom: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
turbo-stream: 2.2.0
optionalDependencies:
- typescript: 5.7.2
+ typescript: 5.4.5
'@remix-run/router@1.16.1': {}
- '@remix-run/serve@2.9.2(typescript@5.4.5)':
+ '@remix-run/router@1.21.0': {}
+
+ '@remix-run/serve@2.15.1(typescript@5.4.5)':
dependencies:
- '@remix-run/express': 2.9.2(express@4.19.2)(typescript@5.4.5)
- '@remix-run/node': 2.9.2(typescript@5.4.5)
+ '@remix-run/express': 2.15.1(express@4.21.2)(typescript@5.4.5)
+ '@remix-run/node': 2.15.1(typescript@5.4.5)
chokidar: 3.6.0
compression: 1.7.4
- express: 4.19.2
+ express: 4.21.2
get-port: 5.1.1
morgan: 1.10.0
source-map-support: 0.5.21
@@ -16571,13 +16057,13 @@ snapshots:
- supports-color
- typescript
- '@remix-run/serve@2.9.2(typescript@5.7.2)':
+ '@remix-run/serve@2.15.1(typescript@5.7.2)':
dependencies:
- '@remix-run/express': 2.9.2(express@4.19.2)(typescript@5.7.2)
- '@remix-run/node': 2.9.2(typescript@5.7.2)
+ '@remix-run/express': 2.15.1(express@4.21.2)(typescript@5.7.2)
+ '@remix-run/node': 2.15.1(typescript@5.7.2)
chokidar: 3.6.0
compression: 1.7.4
- express: 4.19.2
+ express: 4.21.2
get-port: 5.1.1
morgan: 1.10.0
source-map-support: 0.5.21
@@ -16586,6 +16072,44 @@ snapshots:
- typescript
optional: true
+ '@remix-run/serve@2.9.2(typescript@5.4.5)':
+ dependencies:
+ '@remix-run/express': 2.9.2(express@4.19.2)(typescript@5.4.5)
+ '@remix-run/node': 2.9.2(typescript@5.4.5)
+ chokidar: 3.6.0
+ compression: 1.7.4
+ express: 4.19.2
+ get-port: 5.1.1
+ morgan: 1.10.0
+ source-map-support: 0.5.21
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@remix-run/server-runtime@2.15.1(typescript@5.4.5)':
+ dependencies:
+ '@remix-run/router': 1.21.0
+ '@types/cookie': 0.6.0
+ '@web3-storage/multipart-parser': 1.0.0
+ cookie: 0.6.0
+ set-cookie-parser: 2.6.0
+ source-map: 0.7.4
+ turbo-stream: 2.4.0
+ optionalDependencies:
+ typescript: 5.4.5
+
+ '@remix-run/server-runtime@2.15.1(typescript@5.7.2)':
+ dependencies:
+ '@remix-run/router': 1.21.0
+ '@types/cookie': 0.6.0
+ '@web3-storage/multipart-parser': 1.0.0
+ cookie: 0.6.0
+ set-cookie-parser: 2.6.0
+ source-map: 0.7.4
+ turbo-stream: 2.4.0
+ optionalDependencies:
+ typescript: 5.7.2
+
'@remix-run/server-runtime@2.9.2(typescript@5.4.5)':
dependencies:
'@remix-run/router': 1.16.1
@@ -16644,12 +16168,6 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-alias@5.1.0(rollup@4.22.4)':
- dependencies:
- slash: 4.0.0
- optionalDependencies:
- rollup: 4.22.4
-
'@rollup/plugin-alias@5.1.1(rollup@4.27.3)':
optionalDependencies:
rollup: 4.27.3
@@ -16703,26 +16221,18 @@ snapshots:
'@rollup/pluginutils': 5.1.3(rollup@4.27.3)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.3.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
- magic-string: 0.30.13
+ magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
rollup: 4.27.3
- '@rollup/plugin-inject@5.0.5(rollup@4.22.4)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- estree-walker: 2.0.2
- magic-string: 0.30.11
- optionalDependencies:
- rollup: 4.22.4
-
'@rollup/plugin-inject@5.0.5(rollup@4.27.3)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.27.3)
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.17
optionalDependencies:
rollup: 4.27.3
@@ -16732,12 +16242,6 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-json@6.1.0(rollup@4.22.4)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- optionalDependencies:
- rollup: 4.22.4
-
'@rollup/plugin-json@6.1.0(rollup@4.27.3)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.27.3)
@@ -16797,13 +16301,6 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/plugin-replace@5.0.7(rollup@4.22.4)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- magic-string: 0.30.11
- optionalDependencies:
- rollup: 4.22.4
-
'@rollup/plugin-replace@5.0.7(rollup@4.27.3)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.27.3)
@@ -16811,20 +16308,19 @@ snapshots:
optionalDependencies:
rollup: 4.27.3
- '@rollup/plugin-replace@6.0.1(rollup@4.27.3)':
+ '@rollup/plugin-replace@6.0.1(rollup@3.29.4)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
- magic-string: 0.30.13
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ magic-string: 0.30.17
optionalDependencies:
- rollup: 4.27.3
+ rollup: 3.29.4
- '@rollup/plugin-terser@0.4.4(rollup@4.22.4)':
+ '@rollup/plugin-replace@6.0.1(rollup@4.27.3)':
dependencies:
- serialize-javascript: 6.0.1
- smob: 1.5.0
- terser: 5.27.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ magic-string: 0.30.17
optionalDependencies:
- rollup: 4.22.4
+ rollup: 4.27.3
'@rollup/plugin-terser@0.4.4(rollup@4.27.3)':
dependencies:
@@ -16887,14 +16383,6 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- '@rollup/pluginutils@5.1.3(rollup@4.22.4)':
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.22.4
-
'@rollup/pluginutils@5.1.3(rollup@4.27.3)':
dependencies:
'@types/estree': 1.0.6
@@ -17027,13 +16515,25 @@ snapshots:
'@shikijs/types': 1.23.1
'@shikijs/vscode-textmate': 9.3.0
+ '@shikijs/engine-oniguruma@1.24.2':
+ dependencies:
+ '@shikijs/types': 1.24.2
+ '@shikijs/vscode-textmate': 9.3.1
+
'@shikijs/types@1.23.1':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
+ '@shikijs/types@1.24.2':
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.1
+ '@types/hast': 3.0.4
+
'@shikijs/vscode-textmate@9.3.0': {}
+ '@shikijs/vscode-textmate@9.3.1': {}
+
'@sideway/address@4.1.5':
dependencies:
'@hapi/hoek': 9.3.0
@@ -17042,8 +16542,6 @@ snapshots:
'@sideway/pinpoint@2.0.0': {}
- '@sinclair/typebox@0.27.8': {}
-
'@sindresorhus/merge-streams@2.3.0': {}
'@solidjs/meta@0.29.4(solid-js@1.8.19)':
@@ -17054,194 +16552,205 @@ snapshots:
dependencies:
solid-js: 1.8.19
- '@solidjs/start@1.0.6(rollup@3.29.4)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@solidjs/start@1.0.10(solid-js@1.8.19)(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-components': 0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-functions': 0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))
+ '@vinxi/server-components': 0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))
+ '@vinxi/server-functions': 0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))
defu: 6.1.4
error-stack-parser: 2.1.4
- glob: 10.3.10
html-to-image: 1.11.11
radix3: 1.1.2
seroval: 1.1.0
seroval-plugins: 1.1.0(seroval@1.1.0)
shikiji: 0.9.19
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
terracotta: 1.0.5(solid-js@1.8.19)
- vite-plugin-inspect: 0.7.42(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vite-plugin-solid: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ tinyglobby: 0.2.10
+ vite-plugin-solid: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- - '@nuxt/kit'
- '@testing-library/jest-dom'
- - rollup
- solid-js
- supports-color
- vinxi
- vite
- '@solidjs/start@1.0.6(rollup@4.22.4)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@solidjs/start@1.0.10(solid-js@1.8.19)(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-components': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-functions': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
+ '@vinxi/server-components': 0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
+ '@vinxi/server-functions': 0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
defu: 6.1.4
error-stack-parser: 2.1.4
- glob: 10.3.10
html-to-image: 1.11.11
radix3: 1.1.2
seroval: 1.1.0
seroval-plugins: 1.1.0(seroval@1.1.0)
shikiji: 0.9.19
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
terracotta: 1.0.5(solid-js@1.8.19)
- vite-plugin-inspect: 0.7.42(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- vite-plugin-solid: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ tinyglobby: 0.2.10
+ vite-plugin-solid: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- - '@nuxt/kit'
- '@testing-library/jest-dom'
- - rollup
- solid-js
- supports-color
- vinxi
- vite
- '@solidjs/start@1.0.6(rollup@4.27.3)(solid-js@1.8.19)(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@solidjs/start@1.0.10(solid-js@1.8.19)(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-components': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
- '@vinxi/server-functions': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))
+ '@vinxi/server-components': 0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))
+ '@vinxi/server-functions': 0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))
defu: 6.1.4
error-stack-parser: 2.1.4
- glob: 10.3.10
html-to-image: 1.11.11
radix3: 1.1.2
seroval: 1.1.0
seroval-plugins: 1.1.0(seroval@1.1.0)
shikiji: 0.9.19
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
terracotta: 1.0.5(solid-js@1.8.19)
- vite-plugin-inspect: 0.7.42(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- vite-plugin-solid: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ tinyglobby: 0.2.10
+ vite-plugin-solid: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- - '@nuxt/kit'
- '@testing-library/jest-dom'
- - rollup
- solid-js
- supports-color
- vinxi
- vite
- '@sveltejs/adapter-auto@3.2.0(@sveltejs/kit@2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))':
+ '@sveltejs/adapter-auto@3.3.1(@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))':
dependencies:
- '@sveltejs/kit': 2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ '@sveltejs/kit': 2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
import-meta-resolve: 4.1.0
- '@sveltejs/kit@2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@types/cookie': 0.6.0
cookie: 0.6.0
- devalue: 5.0.0
- esm-env: 1.0.0
+ devalue: 5.1.1
+ esm-env: 1.2.1
import-meta-resolve: 4.1.0
kleur: 4.1.5
- magic-string: 0.30.11
+ magic-string: 0.30.17
mrmime: 2.0.0
sade: 1.8.1
set-cookie-parser: 2.6.0
- sirv: 2.0.4
+ sirv: 3.0.0
svelte: 4.2.15
tiny-glob: 0.2.9
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
- '@sveltejs/kit@2.5.25(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@types/cookie': 0.6.0
cookie: 0.6.0
- devalue: 5.0.0
- esm-env: 1.0.0
+ devalue: 5.1.1
+ esm-env: 1.2.1
import-meta-resolve: 4.1.0
kleur: 4.1.5
- magic-string: 0.30.11
+ magic-string: 0.30.17
mrmime: 2.0.0
sade: 1.8.1
set-cookie-parser: 2.6.0
- sirv: 2.0.4
- svelte: 4.2.15
+ sirv: 3.0.0
+ svelte: 5.14.1
tiny-glob: 0.2.9
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
- '@sveltejs/kit@2.5.7(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@sveltejs/kit@2.12.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
'@types/cookie': 0.6.0
cookie: 0.6.0
- devalue: 5.0.0
- esm-env: 1.0.0
+ devalue: 5.1.1
+ esm-env: 1.2.1
import-meta-resolve: 4.1.0
kleur: 4.1.5
- magic-string: 0.30.10
+ magic-string: 0.30.17
mrmime: 2.0.0
sade: 1.8.1
set-cookie-parser: 2.6.0
- sirv: 2.0.4
- svelte: 4.2.15
+ sirv: 3.0.0
+ svelte: 5.14.1
tiny-glob: 0.2.9
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- debug: 4.3.4
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
svelte: 4.2.15
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- debug: 4.3.4
- svelte: 4.2.15
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
+ svelte: 5.14.1
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- debug: 4.3.4
+ '@sveltejs/vite-plugin-svelte': 5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
+ svelte: 5.14.1
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sveltejs/vite-plugin-svelte@5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
+ dependencies:
+ '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@4.2.15)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
deepmerge: 4.3.1
kleur: 4.1.5
- magic-string: 0.30.10
+ magic-string: 0.30.17
svelte: 4.2.15
- svelte-hmr: 0.16.0(svelte@4.2.15)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vitefu: 0.2.5(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)))(svelte@4.2.15)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- debug: 4.3.4
+ '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
deepmerge: 4.3.1
kleur: 4.1.5
- magic-string: 0.30.10
- svelte: 4.2.15
- svelte-hmr: 0.16.0(svelte@4.2.15)
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vitefu: 0.2.5(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ magic-string: 0.30.17
+ svelte: 5.14.1
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
+ dependencies:
+ '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.2(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)))(svelte@5.14.1)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ debug: 4.4.0(supports-color@9.4.0)
+ deepmerge: 4.3.1
+ kleur: 4.1.5
+ magic-string: 0.30.17
+ svelte: 5.14.1
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- supports-color
'@swc/counter@0.1.3': {}
- '@swc/helpers@0.5.11':
+ '@swc/helpers@0.5.15':
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
'@swc/helpers@0.5.5':
dependencies:
@@ -17330,10 +16839,6 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
- '@types/http-proxy@1.17.14':
- dependencies:
- '@types/node': 20.12.12
-
'@types/http-proxy@1.17.15':
dependencies:
'@types/node': 20.12.12
@@ -17384,20 +16889,22 @@ snapshots:
'@types/prop-types@15.7.11': {}
- '@types/pug@2.0.10': {}
-
'@types/react-dom@18.2.18':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.12
'@types/react-dom@18.3.0':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.12
'@types/react-dom@18.3.1':
dependencies:
'@types/react': 18.3.12
+ '@types/react-dom@19.0.2(@types/react@19.0.1)':
+ dependencies:
+ '@types/react': 19.0.1
+
'@types/react@18.2.51':
dependencies:
'@types/prop-types': 15.7.11
@@ -17414,6 +16921,10 @@ snapshots:
'@types/prop-types': 15.7.11
csstype: 3.1.3
+ '@types/react@19.0.1':
+ dependencies:
+ csstype: 3.1.3
+
'@types/resolve@1.20.2': {}
'@types/scheduler@0.16.8': {}
@@ -17422,6 +16933,8 @@ snapshots:
'@types/statuses@2.0.4': {}
+ '@types/tough-cookie@4.0.5': {}
+
'@types/unist@2.0.10': {}
'@types/unist@3.0.3': {}
@@ -17609,64 +17122,46 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@unhead/dom@1.10.4':
- dependencies:
- '@unhead/schema': 1.10.4
- '@unhead/shared': 1.10.4
-
'@unhead/dom@1.11.11':
dependencies:
'@unhead/schema': 1.11.11
'@unhead/shared': 1.11.11
- '@unhead/schema@1.10.4':
- dependencies:
- hookable: 5.5.3
- zhead: 2.2.4
-
'@unhead/schema@1.11.11':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
- '@unhead/shared@1.10.4':
- dependencies:
- '@unhead/schema': 1.10.4
-
'@unhead/shared@1.11.11':
dependencies:
'@unhead/schema': 1.11.11
- '@unhead/ssr@1.10.4':
- dependencies:
- '@unhead/schema': 1.10.4
- '@unhead/shared': 1.10.4
-
'@unhead/ssr@1.11.11':
dependencies:
'@unhead/schema': 1.11.11
'@unhead/shared': 1.11.11
- '@unhead/vue@1.10.4(vue@3.5.0(typescript@5.7.2))':
+ '@unhead/vue@1.11.11(vue@3.5.13(typescript@5.3.3))':
dependencies:
- '@unhead/schema': 1.10.4
- '@unhead/shared': 1.10.4
+ '@unhead/schema': 1.11.11
+ '@unhead/shared': 1.11.11
+ defu: 6.1.4
hookable: 5.5.3
- unhead: 1.10.4
- vue: 3.5.0(typescript@5.7.2)
+ unhead: 1.11.11
+ vue: 3.5.13(typescript@5.3.3)
- '@unhead/vue@1.11.11(vue@3.5.13(typescript@5.3.3))':
+ '@unhead/vue@1.11.11(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@unhead/schema': 1.11.11
'@unhead/shared': 1.11.11
defu: 6.1.4
hookable: 5.5.3
unhead: 1.11.11
- vue: 3.5.13(typescript@5.3.3)
+ vue: 3.5.13(typescript@5.7.2)
'@vanilla-extract/babel-plugin-debug-ids@1.0.6':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -17682,7 +17177,7 @@ snapshots:
deepmerge: 4.3.1
media-query-parser: 2.0.2
modern-ahocorasick: 1.0.1
- picocolors: 1.0.1
+ picocolors: 1.1.1
transitivePeerDependencies:
- babel-plugin-macros
@@ -17742,42 +17237,6 @@ snapshots:
'@vanilla-extract/private@1.0.5': {}
- '@vercel/nft@0.26.4(encoding@0.1.13)':
- dependencies:
- '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
- '@rollup/pluginutils': 4.2.1
- acorn: 8.14.0
- acorn-import-attributes: 1.9.5(acorn@8.14.0)
- async-sema: 3.1.1
- bindings: 1.5.0
- estree-walker: 2.0.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- micromatch: 4.0.5
- node-gyp-build: 4.8.0
- resolve-from: 5.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
-
- '@vercel/nft@0.26.5(encoding@0.1.13)':
- dependencies:
- '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
- '@rollup/pluginutils': 4.2.1
- acorn: 8.14.0
- acorn-import-attributes: 1.9.5(acorn@8.14.0)
- async-sema: 3.1.1
- bindings: 1.5.0
- estree-walker: 2.0.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- micromatch: 4.0.8
- node-gyp-build: 4.8.0
- resolve-from: 5.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
-
'@vercel/nft@0.27.6(encoding@0.1.13)':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13)
@@ -17805,22 +17264,33 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
get-port-please: 3.1.2
- h3: 1.11.1
+ h3: 1.13.0
http-shutdown: 1.2.2
- jiti: 1.21.0
- mlly: 1.6.1
+ jiti: 1.21.6
+ mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
untun: 0.1.3
uqr: 0.1.2
- transitivePeerDependencies:
- - uWebSockets.js
- '@vinxi/plugin-directives@0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/plugin-directives@0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))':
+ dependencies:
+ '@babel/parser': 7.26.2
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn-loose: 8.4.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ astring: 1.8.6
+ magicast: 0.2.11
+ recast: 0.23.9
+ tslib: 2.6.2
+ vinxi: 0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2)
+
+ '@vinxi/plugin-directives@0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))':
dependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.26.2
acorn: 8.14.0
acorn-jsx: 5.3.2(acorn@8.14.0)
acorn-loose: 8.4.0
@@ -17829,11 +17299,11 @@ snapshots:
magicast: 0.2.11
recast: 0.23.9
tslib: 2.6.2
- vinxi: 0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
- '@vinxi/plugin-directives@0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/plugin-directives@0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))':
dependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.26.2
acorn: 8.14.0
acorn-jsx: 5.3.2(acorn@8.14.0)
acorn-loose: 8.4.0
@@ -17842,204 +17312,280 @@ snapshots:
magicast: 0.2.11
recast: 0.23.9
tslib: 2.6.2
- vinxi: 0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1)
+
+ '@vinxi/server-components@0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))':
+ dependencies:
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))
+ acorn: 8.14.0
+ acorn-loose: 8.4.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ astring: 1.8.6
+ magicast: 0.2.11
+ recast: 0.23.9
+ vinxi: 0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2)
+
+ '@vinxi/server-components@0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))':
+ dependencies:
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
+ acorn: 8.14.0
+ acorn-loose: 8.4.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ astring: 1.8.6
+ magicast: 0.2.11
+ recast: 0.23.9
+ vinxi: 0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
- '@vinxi/server-components@0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/server-components@0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))
acorn: 8.14.0
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.0)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1)
- '@vinxi/server-components@0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/server-functions@0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2))
acorn: 8.14.0
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.0)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2)
- '@vinxi/server-functions@0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/server-functions@0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1))
acorn: 8.14.0
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.0)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1)
- '@vinxi/server-functions@0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))':
+ '@vinxi/server-functions@0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))':
dependencies:
- '@vinxi/plugin-directives': 0.4.1(vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1))
acorn: 8.14.0
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.0)
astring: 1.8.6
magicast: 0.2.11
recast: 0.23.9
- vinxi: 0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)
+ vinxi: 0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1)
- '@vitejs/plugin-react@4.2.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
dependencies:
- '@babel/core': 7.23.9
- '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9)
- '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
- react-refresh: 0.14.0
+ react-refresh: 0.14.2
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@vitejs/plugin-react@4.3.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vue: 3.5.13(typescript@5.3.3)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))':
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.1.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))':
+ '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
+ dependencies:
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vue: 3.5.13(typescript@5.3.3)
+
+ '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.7.2)
- '@vitejs/plugin-vue@5.1.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.0(typescript@5.7.2))':
+ '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.7.2)
- '@vitejs/plugin-vue@5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
+ '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.10.0)(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(terser@5.27.0))':
dependencies:
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vue: 3.5.13(typescript@5.3.3)
+ '@ampproject/remapping': 2.3.0
+ '@bcoe/v8-coverage': 0.2.3
+ debug: 4.3.7
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ std-env: 3.8.0
+ test-exclude: 7.0.1
+ tinyrainbow: 1.2.0
+ vitest: 2.1.8(@types/node@20.10.0)(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(terser@5.27.0)
+ transitivePeerDependencies:
+ - supports-color
- '@vitest/coverage-v8@1.5.0(vitest@1.5.0(@types/node@20.10.0)(terser@5.27.0))':
+ '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.4
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.4
- istanbul-reports: 3.1.6
- magic-string: 0.30.10
- magicast: 0.3.4
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- test-exclude: 6.0.0
- vitest: 1.5.0(@types/node@20.10.0)(terser@5.27.0)
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ std-env: 3.8.0
+ test-exclude: 7.0.1
+ tinyrainbow: 1.2.0
+ vitest: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@1.5.0(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0))':
+ '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.4
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.4
- istanbul-reports: 3.1.6
- magic-string: 0.30.10
- magicast: 0.3.4
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- test-exclude: 6.0.0
- vitest: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ std-env: 3.8.0
+ test-exclude: 7.0.1
+ tinyrainbow: 1.2.0
+ vitest: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@1.5.0(vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0))':
+ '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.4
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 5.0.4
- istanbul-reports: 3.1.6
- magic-string: 0.30.10
- magicast: 0.3.4
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- test-exclude: 6.0.0
- vitest: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ std-env: 3.8.0
+ test-exclude: 7.0.1
+ tinyrainbow: 1.2.0
+ vitest: 2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@1.5.0':
+ '@vitest/expect@2.1.8':
+ dependencies:
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
+ chai: 5.1.2
+ tinyrainbow: 1.2.0
+
+ '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(vite@5.4.11(@types/node@20.10.0)(terser@5.27.0))':
+ dependencies:
+ '@vitest/spy': 2.1.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ msw: 2.7.0(@types/node@20.10.0)(typescript@5.3.3)
+ vite: 5.4.11(@types/node@20.10.0)(terser@5.27.0)
+
+ '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ dependencies:
+ '@vitest/spy': 2.1.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ msw: 2.7.0(@types/node@20.11.15)(typescript@5.3.3)
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+
+ '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
dependencies:
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
- chai: 4.4.1
+ '@vitest/spy': 2.1.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ msw: 2.7.0(@types/node@20.12.12)(typescript@5.4.5)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+
+ '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ dependencies:
+ '@vitest/spy': 2.1.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ msw: 2.7.0(@types/node@20.12.12)(typescript@5.7.2)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- '@vitest/runner@1.5.0':
+ '@vitest/pretty-format@2.1.8':
dependencies:
- '@vitest/utils': 1.5.0
- p-limit: 5.0.0
+ tinyrainbow: 1.2.0
+
+ '@vitest/runner@2.1.8':
+ dependencies:
+ '@vitest/utils': 2.1.8
pathe: 1.1.2
- '@vitest/snapshot@1.5.0':
+ '@vitest/snapshot@2.1.8':
dependencies:
- magic-string: 0.30.10
+ '@vitest/pretty-format': 2.1.8
+ magic-string: 0.30.17
pathe: 1.1.2
- pretty-format: 29.7.0
- '@vitest/spy@1.5.0':
+ '@vitest/spy@2.1.8':
dependencies:
- tinyspy: 2.2.1
+ tinyspy: 3.0.2
- '@vitest/utils@1.5.0':
+ '@vitest/utils@2.1.8':
dependencies:
- diff-sequences: 29.6.3
- estree-walker: 3.0.3
- loupe: 2.3.7
- pretty-format: 29.7.0
+ '@vitest/pretty-format': 2.1.8
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
'@volar/kit@2.4.10(typescript@5.7.2)':
dependencies:
@@ -18091,89 +17637,77 @@ snapshots:
'@vscode/l10n@0.0.18': {}
- '@vue-macros/common@1.12.2(rollup@3.29.4)(vue@3.5.0(typescript@5.7.2))':
- dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- '@vue/compiler-sfc': 3.5.0
- ast-kit: 1.1.0
- local-pkg: 0.5.0
- magic-string-ast: 0.6.2
- optionalDependencies:
- vue: 3.5.0(typescript@5.7.2)
- transitivePeerDependencies:
- - rollup
-
- '@vue-macros/common@1.12.2(rollup@4.22.4)(vue@3.5.0(typescript@5.7.2))':
+ '@vue-macros/common@1.12.2(rollup@3.29.4)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- '@vue/compiler-sfc': 3.5.0
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ '@vue/compiler-sfc': 3.5.13
ast-kit: 1.1.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- rollup
- '@vue-macros/common@1.12.2(rollup@4.27.3)(vue@3.5.0(typescript@5.7.2))':
+ '@vue-macros/common@1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.3.3))':
dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- '@vue/compiler-sfc': 3.5.0
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@vue/compiler-sfc': 3.5.13
ast-kit: 1.1.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.0(typescript@5.7.2)
+ vue: 3.5.13(typescript@5.3.3)
transitivePeerDependencies:
- rollup
- '@vue-macros/common@1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.3.3))':
+ '@vue-macros/common@1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- '@vue/compiler-sfc': 3.5.0
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@vue/compiler-sfc': 3.5.13
ast-kit: 1.1.0
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.13(typescript@5.3.3)
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- rollup
'@vue/babel-helper-vue-transform-on@1.2.2': {}
- '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.25.2)':
+ '@vue/babel-helper-vue-transform-on@1.2.5': {}
+
+ '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.26.0)':
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.25.2)
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@vue/babel-helper-vue-transform-on': 1.2.2
- '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.25.2)
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.26.0)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.26.0)':
+ '@vue/babel-plugin-jsx@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.0)
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- '@vue/babel-helper-vue-transform-on': 1.2.2
- '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.26.0)
- camelcase: 6.3.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ '@vue/babel-helper-vue-transform-on': 1.2.5
+ '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
@@ -18181,23 +17715,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.25.2)':
+ '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.26.0)':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/core': 7.25.2
+ '@babel/code-frame': 7.26.2
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/parser': 7.25.6
- '@vue/compiler-sfc': 3.5.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/parser': 7.26.2
+ '@vue/compiler-sfc': 3.5.13
- '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.26.0)':
+ '@vue/babel-plugin-resolve-type@1.2.5(@babel/core@7.26.0)':
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/parser': 7.25.6
- '@vue/compiler-sfc': 3.5.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/parser': 7.26.2
+ '@vue/compiler-sfc': 3.5.13
+ transitivePeerDependencies:
+ - supports-color
'@vue/compiler-core@3.4.21':
dependencies:
@@ -18205,23 +17741,7 @@ snapshots:
'@vue/shared': 3.4.21
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-core@3.4.24':
- dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.24
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- '@vue/compiler-core@3.5.0':
- dependencies:
- '@babel/parser': 7.25.6
- '@vue/shared': 3.5.0
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
'@vue/compiler-core@3.5.13':
dependencies:
@@ -18229,23 +17749,13 @@ snapshots:
'@vue/shared': 3.5.13
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
'@vue/compiler-dom@3.4.21':
dependencies:
'@vue/compiler-core': 3.4.21
'@vue/shared': 3.4.21
- '@vue/compiler-dom@3.4.24':
- dependencies:
- '@vue/compiler-core': 3.4.24
- '@vue/shared': 3.4.24
-
- '@vue/compiler-dom@3.5.0':
- dependencies:
- '@vue/compiler-core': 3.5.0
- '@vue/shared': 3.5.0
-
'@vue/compiler-dom@3.5.13':
dependencies:
'@vue/compiler-core': 3.5.13
@@ -18263,30 +17773,6 @@ snapshots:
postcss: 8.4.38
source-map-js: 1.2.0
- '@vue/compiler-sfc@3.4.24':
- dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.24
- '@vue/compiler-dom': 3.4.24
- '@vue/compiler-ssr': 3.4.24
- '@vue/shared': 3.4.24
- estree-walker: 2.0.2
- magic-string: 0.30.11
- postcss: 8.4.38
- source-map-js: 1.2.0
-
- '@vue/compiler-sfc@3.5.0':
- dependencies:
- '@babel/parser': 7.25.6
- '@vue/compiler-core': 3.5.0
- '@vue/compiler-dom': 3.5.0
- '@vue/compiler-ssr': 3.5.0
- '@vue/shared': 3.5.0
- estree-walker: 2.0.2
- magic-string: 0.30.11
- postcss: 8.4.44
- source-map-js: 1.2.0
-
'@vue/compiler-sfc@3.5.13':
dependencies:
'@babel/parser': 7.26.2
@@ -18295,25 +17781,15 @@ snapshots:
'@vue/compiler-ssr': 3.5.13
'@vue/shared': 3.5.13
estree-walker: 2.0.2
- magic-string: 0.30.13
+ magic-string: 0.30.17
postcss: 8.4.49
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
'@vue/compiler-ssr@3.4.21':
dependencies:
'@vue/compiler-dom': 3.4.21
'@vue/shared': 3.4.21
- '@vue/compiler-ssr@3.4.24':
- dependencies:
- '@vue/compiler-dom': 3.4.24
- '@vue/shared': 3.4.24
-
- '@vue/compiler-ssr@3.5.0':
- dependencies:
- '@vue/compiler-dom': 3.5.0
- '@vue/shared': 3.5.0
-
'@vue/compiler-ssr@3.5.13':
dependencies:
'@vue/compiler-dom': 3.5.13
@@ -18321,54 +17797,44 @@ snapshots:
'@vue/devtools-api@6.6.1': {}
- '@vue/devtools-api@6.6.3': {}
-
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-core@7.3.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))':
+ '@vue/devtools-core@7.4.4(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@vue/devtools-kit': 7.3.3
- '@vue/devtools-shared': 7.4.0
+ '@vue/devtools-kit': 7.4.4
+ '@vue/devtools-shared': 7.6.4
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vite-hot-client: 0.2.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- vite
- '@vue/devtools-core@7.3.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))':
+ '@vue/devtools-core@7.4.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.3.3))':
dependencies:
- '@vue/devtools-kit': 7.3.3
- '@vue/devtools-shared': 7.4.0
+ '@vue/devtools-kit': 7.4.4
+ '@vue/devtools-shared': 7.6.4
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vite-hot-client: 0.2.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vue: 3.5.13(typescript@5.3.3)
transitivePeerDependencies:
- vite
- '@vue/devtools-core@7.4.4(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))':
+ '@vue/devtools-core@7.4.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@vue/devtools-kit': 7.4.4
'@vue/devtools-shared': 7.6.4
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vue: 3.5.13(typescript@5.3.3)
+ vite-hot-client: 0.2.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.3.3':
- dependencies:
- '@vue/devtools-shared': 7.4.0
- birpc: 0.2.17
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.1
-
'@vue/devtools-kit@7.4.4':
dependencies:
'@vue/devtools-shared': 7.6.4
@@ -18379,10 +17845,6 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.4.0':
- dependencies:
- rfdc: 1.4.1
-
'@vue/devtools-shared@7.6.4':
dependencies:
rfdc: 1.4.1
@@ -18391,14 +17853,6 @@ snapshots:
dependencies:
'@vue/shared': 3.4.21
- '@vue/reactivity@3.4.24':
- dependencies:
- '@vue/shared': 3.4.24
-
- '@vue/reactivity@3.5.0':
- dependencies:
- '@vue/shared': 3.5.0
-
'@vue/reactivity@3.5.13':
dependencies:
'@vue/shared': 3.5.13
@@ -18408,16 +17862,6 @@ snapshots:
'@vue/reactivity': 3.4.21
'@vue/shared': 3.4.21
- '@vue/runtime-core@3.4.24':
- dependencies:
- '@vue/reactivity': 3.4.24
- '@vue/shared': 3.4.24
-
- '@vue/runtime-core@3.5.0':
- dependencies:
- '@vue/reactivity': 3.5.0
- '@vue/shared': 3.5.0
-
'@vue/runtime-core@3.5.13':
dependencies:
'@vue/reactivity': 3.5.13
@@ -18429,19 +17873,6 @@ snapshots:
'@vue/shared': 3.4.21
csstype: 3.1.3
- '@vue/runtime-dom@3.4.24':
- dependencies:
- '@vue/runtime-core': 3.4.24
- '@vue/shared': 3.4.24
- csstype: 3.1.3
-
- '@vue/runtime-dom@3.5.0':
- dependencies:
- '@vue/reactivity': 3.5.0
- '@vue/runtime-core': 3.5.0
- '@vue/shared': 3.5.0
- csstype: 3.1.3
-
'@vue/runtime-dom@3.5.13':
dependencies:
'@vue/reactivity': 3.5.13
@@ -18455,18 +17886,6 @@ snapshots:
'@vue/shared': 3.4.21
vue: 3.5.13(typescript@5.7.2)
- '@vue/server-renderer@3.4.24(vue@3.4.24(typescript@5.7.2))':
- dependencies:
- '@vue/compiler-ssr': 3.4.24
- '@vue/shared': 3.4.24
- vue: 3.4.24(typescript@5.7.2)
-
- '@vue/server-renderer@3.5.0(vue@3.5.0(typescript@5.7.2))':
- dependencies:
- '@vue/compiler-ssr': 3.5.0
- '@vue/shared': 3.5.0
- vue: 3.5.0(typescript@5.7.2)
-
'@vue/server-renderer@3.5.13(vue@3.5.13(typescript@5.3.3))':
dependencies:
'@vue/compiler-ssr': 3.5.13
@@ -18481,10 +17900,6 @@ snapshots:
'@vue/shared@3.4.21': {}
- '@vue/shared@3.4.24': {}
-
- '@vue/shared@3.5.0': {}
-
'@vue/shared@3.5.13': {}
'@web3-storage/multipart-parser@1.0.0': {}
@@ -18684,19 +18099,17 @@ snapshots:
acorn@8.11.3: {}
- acorn@8.12.1: {}
-
acorn@8.14.0: {}
agent-base@6.0.2:
dependencies:
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
agent-base@7.1.1(supports-color@9.4.0):
dependencies:
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -18741,8 +18154,6 @@ snapshots:
ansi-regex@6.0.1: {}
- ansi-sequence-parser@1.1.1: {}
-
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -18751,8 +18162,6 @@ snapshots:
dependencies:
color-convert: 2.0.1
- ansi-styles@5.2.0: {}
-
ansi-styles@6.2.1: {}
any-promise@1.3.0: {}
@@ -18868,11 +18277,11 @@ snapshots:
arrify@1.0.1: {}
- assertion-error@1.1.0: {}
+ assertion-error@2.0.1: {}
ast-kit@1.1.0:
dependencies:
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.26.2
pathe: 1.1.2
ast-types-flow@0.0.8: {}
@@ -18883,12 +18292,12 @@ snapshots:
ast-walker-scope@0.6.2:
dependencies:
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.26.2
ast-kit: 1.1.0
astring@1.8.6: {}
- astro@4.16.14(@types/node@20.12.12)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2):
+ astro@4.16.14(@types/node@20.12.12)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.1
@@ -18898,7 +18307,7 @@ snapshots:
'@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
'@babel/types': 7.26.0
'@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
'@types/babel__core': 7.20.5
'@types/cookie': 0.6.0
acorn: 8.14.0
@@ -18910,7 +18319,7 @@ snapshots:
common-ancestor-path: 1.0.1
cookie: 0.7.2
cssesc: 3.0.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
deterministic-object-hash: 2.0.2
devalue: 5.1.1
diff: 5.2.0
@@ -18967,29 +18376,25 @@ snapshots:
- terser
- typescript
- astro@4.16.14(@types/node@20.12.12)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2):
+ astro@5.0.9(@types/node@20.12.12)(jiti@2.4.0)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1):
dependencies:
'@astrojs/compiler': 2.10.3
- '@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 5.3.0
- '@astrojs/telemetry': 3.1.0
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.0
+ '@astrojs/internal-helpers': 0.4.2
+ '@astrojs/markdown-remark': 6.0.1
+ '@astrojs/telemetry': 3.2.0
'@oslojs/encoding': 1.1.0
'@rollup/pluginutils': 5.1.3(rollup@4.27.3)
- '@types/babel__core': 7.20.5
'@types/cookie': 0.6.0
acorn: 8.14.0
aria-query: 5.3.2
axobject-query: 4.1.0
boxen: 8.0.1
- ci-info: 4.0.0
+ ci-info: 4.1.0
clsx: 2.1.1
common-ancestor-path: 1.0.1
cookie: 0.7.2
cssesc: 3.0.0
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
deterministic-object-hash: 2.0.2
devalue: 5.1.1
diff: 5.2.0
@@ -19001,17 +18406,15 @@ snapshots:
fast-glob: 3.3.2
flattie: 1.1.1
github-slugger: 2.0.0
- gray-matter: 4.0.3
html-escaper: 3.0.3
http-cache-semantics: 4.1.1
js-yaml: 4.1.0
kleur: 4.1.5
- magic-string: 0.30.13
+ magic-string: 0.30.17
magicast: 0.3.5
micromatch: 4.0.8
mrmime: 2.0.0
neotraverse: 0.6.18
- ora: 8.1.1
p-limit: 6.1.0
p-queue: 8.0.1
preferred-pm: 4.0.0
@@ -19021,13 +18424,15 @@ snapshots:
shiki: 1.23.1
tinyexec: 0.3.1
tsconfck: 3.1.4(typescript@5.7.2)
+ ultrahtml: 1.5.3
unist-util-visit: 5.0.0
vfile: 6.0.3
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vitefu: 1.0.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
which-pm: 3.0.0
xxhash-wasm: 1.1.0
yargs-parser: 21.1.1
+ yocto-spinner: 0.1.2
zod: 3.23.8
zod-to-json-schema: 3.23.5(zod@3.23.8)
zod-to-ts: 1.2.0(typescript@5.7.2)(zod@3.23.8)
@@ -19035,6 +18440,7 @@ snapshots:
sharp: 0.33.5
transitivePeerDependencies:
- '@types/node'
+ - jiti
- less
- lightningcss
- rollup
@@ -19044,7 +18450,9 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
- typescript
+ - yaml
async-sema@3.1.1: {}
@@ -19064,16 +18472,6 @@ snapshots:
postcss: 8.4.38
postcss-value-parser: 4.2.0
- autoprefixer@10.4.19(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.0
- caniuse-lite: 1.0.30001612
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.0.0
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
browserslist: 4.24.2
@@ -19112,8 +18510,17 @@ snapshots:
dependencies:
'@babel/core': 7.24.4
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.24.4)
+ '@babel/types': 7.26.0
+ html-entities: 2.3.3
+ validate-html-nesting: 1.2.2
+
+ babel-plugin-jsx-dom-expressions@0.38.1(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
html-entities: 2.3.3
validate-html-nesting: 1.2.2
@@ -19146,6 +18553,11 @@ snapshots:
'@babel/core': 7.24.4
babel-plugin-jsx-dom-expressions: 0.38.1(@babel/core@7.24.4)
+ babel-preset-solid@1.8.19(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ babel-plugin-jsx-dom-expressions: 0.38.1(@babel/core@7.26.0)
+
bail@2.0.2: {}
balanced-match@1.0.2: {}
@@ -19200,6 +18612,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ body-parser@1.20.3:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ http-errors: 2.0.0
+ iconv-lite: 0.4.24
+ on-finished: 2.4.1
+ qs: 6.13.0
+ raw-body: 2.5.2
+ type-is: 1.6.18
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
boolbase@1.0.0: {}
boxen@7.0.0:
@@ -19299,8 +18728,6 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
- buffer-crc32@0.2.13: {}
-
buffer-crc32@1.0.0: {}
buffer-from@1.1.2: {}
@@ -19353,55 +18780,6 @@ snapshots:
bytes@3.1.2: {}
- c12@1.10.0:
- dependencies:
- chokidar: 3.6.0
- confbox: 0.1.7
- defu: 6.1.4
- dotenv: 16.4.5
- giget: 1.2.3
- jiti: 1.21.0
- mlly: 1.6.1
- ohash: 1.1.3
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- rc9: 2.1.2
-
- c12@1.11.2(magicast@0.3.5):
- dependencies:
- chokidar: 3.6.0
- confbox: 0.1.7
- defu: 6.1.4
- dotenv: 16.4.5
- giget: 1.2.3
- jiti: 1.21.6
- mlly: 1.7.1
- ohash: 1.1.3
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.0
- rc9: 2.1.2
- optionalDependencies:
- magicast: 0.3.5
-
- c12@2.0.1(magicast@0.3.4):
- dependencies:
- chokidar: 4.0.1
- confbox: 0.1.8
- defu: 6.1.4
- dotenv: 16.4.5
- giget: 1.2.3
- jiti: 2.4.0
- mlly: 1.7.3
- ohash: 1.1.4
- pathe: 1.1.2
- perfect-debounce: 1.0.0
- pkg-types: 1.2.1
- rc9: 2.1.2
- optionalDependencies:
- magicast: 0.3.4
-
c12@2.0.1(magicast@0.3.5):
dependencies:
chokidar: 4.0.1
@@ -19436,6 +18814,11 @@ snapshots:
tar: 6.2.1
unique-filename: 3.0.0
+ call-bind-apply-helpers@1.0.1:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
call-bind@1.0.2:
dependencies:
function-bind: 1.1.2
@@ -19447,6 +18830,11 @@ snapshots:
get-intrinsic: 1.2.2
set-function-length: 1.2.0
+ call-bound@1.0.3:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ get-intrinsic: 1.2.6
+
callsites@3.1.0: {}
camelcase-css@2.0.1: {}
@@ -19467,8 +18855,8 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001655
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001680
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
@@ -19484,15 +18872,13 @@ snapshots:
ccount@2.0.1: {}
- chai@4.4.1:
+ chai@5.1.2:
dependencies:
- assertion-error: 1.1.0
- check-error: 1.0.3
- deep-eql: 4.1.3
- get-func-name: 2.0.2
- loupe: 2.3.7
- pathval: 1.1.1
- type-detect: 4.0.8
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.1.2
+ pathval: 2.0.0
chalk-template@0.4.0:
dependencies:
@@ -19525,9 +18911,7 @@ snapshots:
chardet@0.7.0: {}
- check-error@1.0.3:
- dependencies:
- get-func-name: 2.0.2
+ check-error@2.1.1: {}
chokidar@3.6.0:
dependencies:
@@ -19555,6 +18939,8 @@ snapshots:
ci-info@4.0.0: {}
+ ci-info@4.1.0: {}
+
citty@0.1.6:
dependencies:
consola: 3.2.3
@@ -19586,7 +18972,7 @@ snapshots:
slice-ansi: 5.0.0
string-width: 7.1.0
- cli-width@3.0.0: {}
+ cli-width@4.1.0: {}
client-only@0.0.1: {}
@@ -19739,18 +19125,16 @@ snapshots:
convert-source-map@2.0.0: {}
- cookie-es@1.1.0: {}
-
cookie-es@1.2.2: {}
cookie-signature@1.0.6: {}
cookie-signature@1.2.1: {}
- cookie@0.5.0: {}
-
cookie@0.6.0: {}
+ cookie@0.7.1: {}
+
cookie@0.7.2: {}
copy-anything@3.0.5:
@@ -19772,8 +19156,6 @@ snapshots:
create-require@1.1.1: {}
- croner@8.0.2: {}
-
croner@9.0.0: {}
cronstrue@2.50.0: {}
@@ -19804,10 +19186,6 @@ snapshots:
dependencies:
uncrypto: 0.1.3
- css-declaration-sorter@7.2.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
-
css-declaration-sorter@7.2.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
@@ -19823,7 +19201,7 @@ snapshots:
css-tree@2.2.1:
dependencies:
mdn-data: 2.0.28
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
css-tree@2.3.1:
dependencies:
@@ -19834,40 +19212,6 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.5(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- css-declaration-sorter: 7.2.0(postcss@8.4.44)
- cssnano-utils: 5.0.0(postcss@8.4.44)
- postcss: 8.4.44
- postcss-calc: 10.0.2(postcss@8.4.44)
- postcss-colormin: 7.0.2(postcss@8.4.44)
- postcss-convert-values: 7.0.3(postcss@8.4.44)
- postcss-discard-comments: 7.0.2(postcss@8.4.44)
- postcss-discard-duplicates: 7.0.1(postcss@8.4.44)
- postcss-discard-empty: 7.0.0(postcss@8.4.44)
- postcss-discard-overridden: 7.0.0(postcss@8.4.44)
- postcss-merge-longhand: 7.0.3(postcss@8.4.44)
- postcss-merge-rules: 7.0.3(postcss@8.4.44)
- postcss-minify-font-values: 7.0.0(postcss@8.4.44)
- postcss-minify-gradients: 7.0.0(postcss@8.4.44)
- postcss-minify-params: 7.0.2(postcss@8.4.44)
- postcss-minify-selectors: 7.0.3(postcss@8.4.44)
- postcss-normalize-charset: 7.0.0(postcss@8.4.44)
- postcss-normalize-display-values: 7.0.0(postcss@8.4.44)
- postcss-normalize-positions: 7.0.0(postcss@8.4.44)
- postcss-normalize-repeat-style: 7.0.0(postcss@8.4.44)
- postcss-normalize-string: 7.0.0(postcss@8.4.44)
- postcss-normalize-timing-functions: 7.0.0(postcss@8.4.44)
- postcss-normalize-unicode: 7.0.2(postcss@8.4.44)
- postcss-normalize-url: 7.0.0(postcss@8.4.44)
- postcss-normalize-whitespace: 7.0.0(postcss@8.4.44)
- postcss-ordered-values: 7.0.1(postcss@8.4.44)
- postcss-reduce-initial: 7.0.2(postcss@8.4.44)
- postcss-reduce-transforms: 7.0.0(postcss@8.4.44)
- postcss-svgo: 7.0.1(postcss@8.4.44)
- postcss-unique-selectors: 7.0.2(postcss@8.4.44)
-
cssnano-preset-default@7.0.6(postcss@8.4.49):
dependencies:
browserslist: 4.24.2
@@ -19902,20 +19246,10 @@ snapshots:
postcss-svgo: 7.0.1(postcss@8.4.49)
postcss-unique-selectors: 7.0.3(postcss@8.4.49)
- cssnano-utils@5.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
-
cssnano-utils@5.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
- cssnano@7.0.5(postcss@8.4.44):
- dependencies:
- cssnano-preset-default: 7.0.5(postcss@8.4.44)
- lilconfig: 3.1.2
- postcss: 8.4.44
-
cssnano@7.0.6(postcss@8.4.49):
dependencies:
cssnano-preset-default: 7.0.6(postcss@8.4.49)
@@ -19952,8 +19286,6 @@ snapshots:
'@deno/shim-deno': 0.19.2
undici-types: 5.26.5
- db0@0.1.4: {}
-
db0@0.2.1: {}
debug@2.6.9:
@@ -19968,11 +19300,11 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.6:
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
- debug@4.3.7(supports-color@9.4.0):
+ debug@4.4.0(supports-color@9.4.0):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -19991,9 +19323,7 @@ snapshots:
dedent@1.5.3: {}
- deep-eql@4.1.3:
- dependencies:
- type-detect: 4.0.8
+ deep-eql@5.0.2: {}
deep-extend@0.6.0: {}
@@ -20068,8 +19398,6 @@ snapshots:
dependencies:
base-64: 1.0.0
- devalue@5.0.0: {}
-
devalue@5.1.1: {}
devlop@1.1.0:
@@ -20078,8 +19406,6 @@ snapshots:
didyoumean@1.2.2: {}
- diff-sequences@29.6.3: {}
-
diff@4.0.2: {}
diff@5.2.0: {}
@@ -20118,10 +19444,6 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
- dot-prop@8.0.2:
- dependencies:
- type-fest: 3.13.1
-
dot-prop@9.0.0:
dependencies:
type-fest: 4.27.0
@@ -20130,6 +19452,12 @@ snapshots:
dset@3.1.4: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
duplexer@0.1.2: {}
duplexify@3.7.1:
@@ -20303,6 +19631,10 @@ snapshots:
unbox-primitive: 1.0.2
which-typed-array: 1.1.13
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
es-iterator-helpers@1.0.15:
dependencies:
asynciterator.prototype: 1.0.0
@@ -20324,6 +19656,10 @@ snapshots:
es-module-lexer@1.5.4: {}
+ es-object-atoms@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+
es-set-tostringtag@2.0.1:
dependencies:
get-intrinsic: 1.2.1
@@ -20350,8 +19686,6 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es6-promise@3.3.1: {}
-
esbuild-plugin-solid@0.5.0(esbuild@0.17.19)(solid-js@1.8.19):
dependencies:
'@babel/core': 7.24.4
@@ -20521,33 +19855,6 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- esbuild@0.23.1:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.1
- '@esbuild/android-arm': 0.23.1
- '@esbuild/android-arm64': 0.23.1
- '@esbuild/android-x64': 0.23.1
- '@esbuild/darwin-arm64': 0.23.1
- '@esbuild/darwin-x64': 0.23.1
- '@esbuild/freebsd-arm64': 0.23.1
- '@esbuild/freebsd-x64': 0.23.1
- '@esbuild/linux-arm': 0.23.1
- '@esbuild/linux-arm64': 0.23.1
- '@esbuild/linux-ia32': 0.23.1
- '@esbuild/linux-loong64': 0.23.1
- '@esbuild/linux-mips64el': 0.23.1
- '@esbuild/linux-ppc64': 0.23.1
- '@esbuild/linux-riscv64': 0.23.1
- '@esbuild/linux-s390x': 0.23.1
- '@esbuild/linux-x64': 0.23.1
- '@esbuild/netbsd-x64': 0.23.1
- '@esbuild/openbsd-arm64': 0.23.1
- '@esbuild/openbsd-x64': 0.23.1
- '@esbuild/sunos-x64': 0.23.1
- '@esbuild/win32-arm64': 0.23.1
- '@esbuild/win32-ia32': 0.23.1
- '@esbuild/win32-x64': 0.23.1
-
esbuild@0.24.0:
optionalDependencies:
'@esbuild/aix-ppc64': 0.24.0
@@ -20862,7 +20169,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- esm-env@1.0.0: {}
+ esm-env@1.2.1: {}
espree@9.6.1:
dependencies:
@@ -20876,6 +20183,11 @@ snapshots:
dependencies:
estraverse: 5.3.0
+ esrap@1.2.3:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@types/estree': 1.0.6
+
esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
@@ -20974,6 +20286,8 @@ snapshots:
exit-hook@2.2.1: {}
+ expect-type@1.1.0: {}
+
express@4.19.2:
dependencies:
accepts: 1.3.8
@@ -21010,6 +20324,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ express@4.21.2:
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.3
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.7.1
+ cookie-signature: 1.0.6
+ debug: 2.6.9
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.3.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.3
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.12
+ proxy-addr: 2.0.7
+ qs: 6.13.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.19.0
+ serve-static: 1.16.2
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -21026,8 +20376,8 @@ snapshots:
externality@1.0.2:
dependencies:
- enhanced-resolve: 5.16.0
- mlly: 1.7.1
+ enhanced-resolve: 5.17.1
+ mlly: 1.7.3
pathe: 1.1.2
ufo: 1.5.4
@@ -21065,18 +20415,10 @@ snapshots:
dependencies:
format: 0.2.2
- fdir@6.3.0(picomatch@4.0.2):
- optionalDependencies:
- picomatch: 4.0.2
-
fdir@6.4.2(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
- figures@3.2.0:
- dependencies:
- escape-string-regexp: 1.0.5
-
file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
@@ -21115,6 +20457,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ finalhandler@1.3.1:
+ dependencies:
+ debug: 2.6.9
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
find-up-simple@1.0.0: {}
find-up@4.1.0:
@@ -21239,8 +20593,6 @@ snapshots:
get-east-asian-width@1.2.0: {}
- get-func-name@2.0.2: {}
-
get-intrinsic@1.2.1:
dependencies:
function-bind: 1.1.2
@@ -21255,6 +20607,19 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.0
+ get-intrinsic@1.2.6:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ dunder-proto: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ function-bind: 1.1.2
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.0.0
+
get-port-please@3.1.2: {}
get-port@5.1.1: {}
@@ -21292,10 +20657,6 @@ snapshots:
is-ssh: 1.4.0
parse-url: 8.1.0
- git-url-parse@14.0.0:
- dependencies:
- git-up: 7.0.0
-
git-url-parse@15.0.0:
dependencies:
git-up: 7.0.0
@@ -21320,6 +20681,15 @@ snapshots:
minipass: 7.0.4
path-scurry: 1.10.1
+ glob@10.4.5:
+ dependencies:
+ foreground-child: 3.1.1
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ package-json-from-dist: 1.0.1
+ path-scurry: 1.11.1
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -21365,19 +20735,10 @@ snapshots:
globby@13.2.2:
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 4.0.0
-
- globby@14.0.1:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.1
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
+ fast-glob: 3.3.2
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 4.0.0
globby@14.0.2:
dependencies:
@@ -21394,6 +20755,8 @@ snapshots:
dependencies:
get-intrinsic: 1.2.1
+ gopd@1.2.0: {}
+
graceful-fs@4.2.11: {}
grapheme-splitter@1.0.4: {}
@@ -21424,27 +20787,12 @@ snapshots:
h3@1.11.1:
dependencies:
- cookie-es: 1.1.0
- crossws: 0.2.4
- defu: 6.1.4
- destr: 2.0.3
- iron-webcrypto: 1.1.1
- ohash: 1.1.3
- radix3: 1.1.2
- ufo: 1.5.4
- uncrypto: 0.1.3
- unenv: 1.9.0
- transitivePeerDependencies:
- - uWebSockets.js
-
- h3@1.12.0:
- dependencies:
- cookie-es: 1.1.0
+ cookie-es: 1.2.2
crossws: 0.2.4
defu: 6.1.4
destr: 2.0.3
- iron-webcrypto: 1.1.1
- ohash: 1.1.3
+ iron-webcrypto: 1.2.1
+ ohash: 1.1.4
radix3: 1.1.2
ufo: 1.5.4
uncrypto: 0.1.3
@@ -21455,7 +20803,7 @@ snapshots:
h3@1.13.0:
dependencies:
cookie-es: 1.2.2
- crossws: 0.2.4
+ crossws: 0.3.1
defu: 6.1.4
destr: 2.0.3
iron-webcrypto: 1.2.1
@@ -21464,8 +20812,6 @@ snapshots:
ufo: 1.5.4
uncrypto: 0.1.3
unenv: 1.10.0
- transitivePeerDependencies:
- - uWebSockets.js
hard-rejection@2.1.0: {}
@@ -21487,6 +20833,8 @@ snapshots:
has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
+
has-tostringtag@1.0.0:
dependencies:
has-symbols: 1.0.3
@@ -21501,6 +20849,10 @@ snapshots:
dependencies:
function-bind: 1.1.2
+ hasown@2.0.2:
+ dependencies:
+ function-bind: 1.1.2
+
hast-util-from-html@2.0.3:
dependencies:
'@types/hast': 3.0.4
@@ -21655,14 +21007,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.5(supports-color@9.4.0):
dependencies:
agent-base: 7.1.1(supports-color@9.4.0)
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -21691,6 +21043,10 @@ snapshots:
dependencies:
postcss: 8.4.38
+ icss-utils@5.1.0(postcss@8.4.49):
+ dependencies:
+ postcss: 8.4.49
+
ieee754@1.2.1: {}
ignore@5.3.1: {}
@@ -21713,6 +21069,16 @@ snapshots:
import-meta-resolve@4.1.0: {}
+ impound@0.2.0(rollup@3.29.4):
+ dependencies:
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ mlly: 1.7.3
+ pathe: 1.1.2
+ unenv: 1.10.0
+ unplugin: 1.16.0
+ transitivePeerDependencies:
+ - rollup
+
impound@0.2.0(rollup@4.27.3):
dependencies:
'@rollup/pluginutils': 5.1.3(rollup@4.27.3)
@@ -21742,24 +21108,6 @@ snapshots:
inline-style-parser@0.1.1: {}
- inquirer@8.2.6:
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
- ora: 5.4.1
- run-async: 2.4.1
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
- wrap-ansi: 6.2.0
-
internal-slot@1.0.5:
dependencies:
get-intrinsic: 1.2.1
@@ -21778,7 +21126,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -21790,8 +21138,6 @@ snapshots:
ipaddr.js@1.9.1: {}
- iron-webcrypto@1.1.1: {}
-
iron-webcrypto@1.2.1: {}
is-alphabetical@2.0.1: {}
@@ -21929,8 +21275,6 @@ snapshots:
is-port-reachable@4.0.0: {}
- is-primitive@3.0.1: {}
-
is-reference@1.2.1:
dependencies:
'@types/estree': 1.0.5
@@ -21939,6 +21283,10 @@ snapshots:
dependencies:
'@types/estree': 1.0.5
+ is-reference@3.0.3:
+ dependencies:
+ '@types/estree': 1.0.6
+
is-regex@1.1.4:
dependencies:
call-bind: 1.0.5
@@ -22029,15 +21377,15 @@ snapshots:
make-dir: 4.0.0
supports-color: 7.2.0
- istanbul-lib-source-maps@5.0.4:
+ istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.6
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
- istanbul-reports@3.1.6:
+ istanbul-reports@3.1.7:
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
@@ -22056,6 +21404,12 @@ snapshots:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
+ jackspeak@3.4.3:
+ dependencies:
+ '@isaacs/cliui': 8.0.2
+ optionalDependencies:
+ '@pkgjs/parseargs': 0.11.0
+
javascript-stringify@2.1.0: {}
jest-worker@27.5.1:
@@ -22162,11 +21516,6 @@ snapshots:
dependencies:
language-subtag-registry: 0.3.22
- launch-editor@2.8.2:
- dependencies:
- picocolors: 1.0.1
- shell-quote: 1.8.1
-
launch-editor@2.9.1:
dependencies:
picocolors: 1.1.1
@@ -22191,6 +21540,10 @@ snapshots:
lines-and-columns@1.2.4: {}
+ linkify-it@5.0.0:
+ dependencies:
+ uc.micro: 2.1.0
+
lint-staged@15.2.1:
dependencies:
chalk: 5.3.0
@@ -22206,29 +21559,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- listhen@1.7.2:
- dependencies:
- '@parcel/watcher': 2.4.1
- '@parcel/watcher-wasm': 2.4.1
- citty: 0.1.6
- clipboardy: 4.0.0
- consola: 3.2.3
- crossws: 0.2.4
- defu: 6.1.4
- get-port-please: 3.1.2
- h3: 1.11.1
- http-shutdown: 1.2.2
- jiti: 1.21.0
- mlly: 1.7.1
- node-forge: 1.3.1
- pathe: 1.1.2
- std-env: 3.7.0
- ufo: 1.5.4
- untun: 0.1.3
- uqr: 0.1.2
- transitivePeerDependencies:
- - uWebSockets.js
-
listhen@1.9.0:
dependencies:
'@parcel/watcher': 2.4.1
@@ -22245,12 +21575,10 @@ snapshots:
mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
untun: 0.1.3
uqr: 0.1.2
- transitivePeerDependencies:
- - uWebSockets.js
listr2@8.0.1:
dependencies:
@@ -22338,9 +21666,7 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@2.3.7:
- dependencies:
- get-func-name: 2.0.2
+ loupe@3.1.2: {}
lru-cache@10.2.0: {}
@@ -22365,7 +21691,7 @@ snapshots:
magic-string-ast@0.6.2:
dependencies:
- magic-string: 0.30.11
+ magic-string: 0.30.17
magic-string@0.30.10:
dependencies:
@@ -22379,22 +21705,20 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.17:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
magic-string@0.30.5:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
magicast@0.2.11:
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
recast: 0.23.9
- magicast@0.3.4:
- dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
- source-map-js: 1.2.0
-
magicast@0.3.5:
dependencies:
'@babel/parser': 7.26.2
@@ -22417,9 +21741,18 @@ snapshots:
markdown-extensions@1.1.1: {}
+ markdown-it@14.1.0:
+ dependencies:
+ argparse: 2.0.1
+ entities: 4.5.0
+ linkify-it: 5.0.0
+ mdurl: 2.0.0
+ punycode.js: 2.3.1
+ uc.micro: 2.1.0
+
markdown-table@3.0.4: {}
- marked@4.3.0: {}
+ math-intrinsics@1.0.0: {}
mdast-util-definitions@5.1.2:
dependencies:
@@ -22652,6 +21985,8 @@ snapshots:
mdn-data@2.0.30: {}
+ mdurl@2.0.0: {}
+
media-query-parser@2.0.2:
dependencies:
'@babel/runtime': 7.23.9
@@ -22680,6 +22015,8 @@ snapshots:
merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -23049,7 +22386,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -23071,7 +22408,7 @@ snapshots:
micromark@4.0.1:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.2
@@ -23118,8 +22455,6 @@ snapshots:
mime@3.0.0: {}
- mime@4.0.1: {}
-
mime@4.0.4: {}
mimic-fn@2.1.0: {}
@@ -23142,6 +22477,10 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimist-options@4.1.0:
dependencies:
arrify: 1.0.1
@@ -23170,6 +22509,8 @@ snapshots:
minipass@7.0.4: {}
+ minipass@7.1.2: {}
+
minizlib@2.1.2:
dependencies:
minipass: 3.3.6
@@ -23181,10 +22522,6 @@ snapshots:
mkdirp-classic@0.5.3: {}
- mkdirp@0.5.6:
- dependencies:
- minimist: 1.2.8
-
mkdirp@1.0.4: {}
mkdist@1.3.0(typescript@5.3.3):
@@ -23274,78 +22611,109 @@ snapshots:
ms@2.1.3: {}
- msw@2.1.5(typescript@5.3.3):
+ msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3):
dependencies:
- '@bundled-es-modules/cookie': 2.0.0
+ '@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
- '@mswjs/cookies': 1.1.0
- '@mswjs/interceptors': 0.25.15
+ '@bundled-es-modules/tough-cookie': 0.1.6
+ '@inquirer/confirm': 5.1.0(@types/node@20.10.0)
+ '@mswjs/interceptors': 0.37.3
+ '@open-draft/deferred-promise': 2.2.0
+ '@open-draft/until': 2.1.0
+ '@types/cookie': 0.6.0
+ '@types/statuses': 2.0.4
+ graphql: 16.8.1
+ headers-polyfill: 4.0.2
+ is-node-process: 1.2.0
+ outvariant: 1.4.3
+ path-to-regexp: 6.3.0
+ picocolors: 1.1.1
+ strict-event-emitter: 0.5.1
+ type-fest: 4.27.0
+ yargs: 17.7.2
+ optionalDependencies:
+ typescript: 5.3.3
+ transitivePeerDependencies:
+ - '@types/node'
+
+ msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3):
+ dependencies:
+ '@bundled-es-modules/cookie': 2.0.1
+ '@bundled-es-modules/statuses': 1.0.1
+ '@bundled-es-modules/tough-cookie': 0.1.6
+ '@inquirer/confirm': 5.1.0(@types/node@20.11.15)
+ '@mswjs/interceptors': 0.37.3
+ '@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
'@types/statuses': 2.0.4
- chalk: 4.1.2
- chokidar: 3.6.0
graphql: 16.8.1
headers-polyfill: 4.0.2
- inquirer: 8.2.6
is-node-process: 1.2.0
- outvariant: 1.4.2
- path-to-regexp: 6.2.1
+ outvariant: 1.4.3
+ path-to-regexp: 6.3.0
+ picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.10.2
+ type-fest: 4.27.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.3.3
+ transitivePeerDependencies:
+ - '@types/node'
- msw@2.1.5(typescript@5.4.5):
+ msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5):
dependencies:
- '@bundled-es-modules/cookie': 2.0.0
+ '@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
- '@mswjs/cookies': 1.1.0
- '@mswjs/interceptors': 0.25.15
+ '@bundled-es-modules/tough-cookie': 0.1.6
+ '@inquirer/confirm': 5.1.0(@types/node@20.12.12)
+ '@mswjs/interceptors': 0.37.3
+ '@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
'@types/statuses': 2.0.4
- chalk: 4.1.2
- chokidar: 3.6.0
graphql: 16.8.1
headers-polyfill: 4.0.2
- inquirer: 8.2.6
is-node-process: 1.2.0
- outvariant: 1.4.2
- path-to-regexp: 6.2.1
+ outvariant: 1.4.3
+ path-to-regexp: 6.3.0
+ picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.10.2
+ type-fest: 4.27.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.4.5
+ transitivePeerDependencies:
+ - '@types/node'
- msw@2.1.5(typescript@5.7.2):
+ msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2):
dependencies:
- '@bundled-es-modules/cookie': 2.0.0
+ '@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
- '@mswjs/cookies': 1.1.0
- '@mswjs/interceptors': 0.25.15
+ '@bundled-es-modules/tough-cookie': 0.1.6
+ '@inquirer/confirm': 5.1.0(@types/node@20.12.12)
+ '@mswjs/interceptors': 0.37.3
+ '@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
'@types/statuses': 2.0.4
- chalk: 4.1.2
- chokidar: 3.6.0
graphql: 16.8.1
headers-polyfill: 4.0.2
- inquirer: 8.2.6
is-node-process: 1.2.0
- outvariant: 1.4.2
- path-to-regexp: 6.2.1
+ outvariant: 1.4.3
+ path-to-regexp: 6.3.0
+ picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.10.2
+ type-fest: 4.27.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.7.2
+ transitivePeerDependencies:
+ - '@types/node'
muggle-string@0.4.1: {}
- mute-stream@0.0.8: {}
+ mute-stream@2.0.0: {}
mz@2.7.0:
dependencies:
@@ -23392,7 +22760,7 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@14.2.10(react-dom@19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822))(react@19.0.0-rc-b57d2823-20240822):
+ next@14.2.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
'@next/env': 14.2.10
'@swc/helpers': 0.5.5
@@ -23400,9 +22768,9 @@ snapshots:
caniuse-lite: 1.0.30001655
graceful-fs: 4.2.11
postcss: 8.4.31
- react: 19.0.0-rc-b57d2823-20240822
- react-dom: 19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822)
- styled-jsx: 5.1.1(react@19.0.0-rc-b57d2823-20240822)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.1(react@19.0.0)
optionalDependencies:
'@next/swc-darwin-arm64': 14.2.10
'@next/swc-darwin-x64': 14.2.10
@@ -23417,27 +22785,26 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@15.0.0-rc.0(react-dom@19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822))(react@19.0.0-rc-b57d2823-20240822):
+ next@15.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0):
dependencies:
- '@next/env': 15.0.0-rc.0
- '@swc/helpers': 0.5.11
+ '@next/env': 15.1.0
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.15
busboy: 1.6.0
- caniuse-lite: 1.0.30001643
- graceful-fs: 4.2.11
+ caniuse-lite: 1.0.30001680
postcss: 8.4.31
- react: 19.0.0-rc-b57d2823-20240822
- react-dom: 19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822)
- styled-jsx: 5.1.3(react@19.0.0-rc-b57d2823-20240822)
+ react: 19.0.0
+ react-dom: 19.0.0(react@19.0.0)
+ styled-jsx: 5.1.6(react@19.0.0)
optionalDependencies:
- '@next/swc-darwin-arm64': 15.0.0-rc.0
- '@next/swc-darwin-x64': 15.0.0-rc.0
- '@next/swc-linux-arm64-gnu': 15.0.0-rc.0
- '@next/swc-linux-arm64-musl': 15.0.0-rc.0
- '@next/swc-linux-x64-gnu': 15.0.0-rc.0
- '@next/swc-linux-x64-musl': 15.0.0-rc.0
- '@next/swc-win32-arm64-msvc': 15.0.0-rc.0
- '@next/swc-win32-ia32-msvc': 15.0.0-rc.0
- '@next/swc-win32-x64-msvc': 15.0.0-rc.0
+ '@next/swc-darwin-arm64': 15.1.0
+ '@next/swc-darwin-x64': 15.1.0
+ '@next/swc-linux-arm64-gnu': 15.1.0
+ '@next/swc-linux-arm64-musl': 15.1.0
+ '@next/swc-linux-x64-gnu': 15.1.0
+ '@next/swc-linux-x64-musl': 15.1.0
+ '@next/swc-win32-arm64-msvc': 15.1.0
+ '@next/swc-win32-x64-msvc': 15.1.0
sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
@@ -23487,7 +22854,7 @@ snapshots:
klona: 2.0.6
knitwork: 1.1.0
listhen: 1.9.0
- magic-string: 0.30.13
+ magic-string: 0.30.17
magicast: 0.3.5
mime: 4.0.4
mlly: 1.7.3
@@ -23506,7 +22873,7 @@ snapshots:
semver: 7.6.3
serve-placeholder: 2.0.2
serve-static: 1.16.2
- std-env: 3.7.0
+ std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
unctx: 2.3.1
@@ -23536,76 +22903,76 @@ snapshots:
- mysql2
- supports-color
- typescript
- - uWebSockets.js
- nitropack@2.9.6(encoding@0.1.13):
- dependencies:
- '@cloudflare/kv-asset-handler': 0.3.1
- '@netlify/functions': 2.6.0
- '@rollup/plugin-alias': 5.1.0(rollup@4.22.4)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.22.4)
- '@rollup/plugin-inject': 5.0.5(rollup@4.22.4)
- '@rollup/plugin-json': 6.1.0(rollup@4.22.4)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4)
- '@rollup/plugin-replace': 5.0.7(rollup@4.22.4)
- '@rollup/plugin-terser': 0.4.4(rollup@4.22.4)
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- '@types/http-proxy': 1.17.14
- '@vercel/nft': 0.26.4(encoding@0.1.13)
+ nitropack@2.10.4(encoding@0.1.13)(typescript@5.4.5):
+ dependencies:
+ '@cloudflare/kv-asset-handler': 0.3.4
+ '@netlify/functions': 2.8.2
+ '@rollup/plugin-alias': 5.1.1(rollup@4.27.3)
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.27.3)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.27.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.27.3)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.27.3)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@types/http-proxy': 1.17.15
+ '@vercel/nft': 0.27.6(encoding@0.1.13)
archiver: 7.0.1
- c12: 1.10.0
- chalk: 5.3.0
+ c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.1.8
consola: 3.2.3
- cookie-es: 1.1.0
- croner: 8.0.2
- crossws: 0.2.4
- db0: 0.1.4
+ cookie-es: 1.2.2
+ croner: 9.0.0
+ crossws: 0.3.1
+ db0: 0.2.1
defu: 6.1.4
destr: 2.0.3
- dot-prop: 8.0.2
- esbuild: 0.20.2
+ dot-prop: 9.0.0
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
- globby: 14.0.1
+ globby: 14.0.2
gzip-size: 7.0.0
- h3: 1.11.1
+ h3: 1.13.0
hookable: 5.5.3
httpxy: 0.1.5
ioredis: 5.4.1
- is-primitive: 3.0.1
- jiti: 1.21.0
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- listhen: 1.7.2
- magic-string: 0.30.11
- mime: 4.0.1
- mlly: 1.6.1
- mri: 1.2.0
+ listhen: 1.9.0
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ mime: 4.0.4
+ mlly: 1.7.3
node-fetch-native: 1.6.4
- ofetch: 1.3.4
- ohash: 1.1.3
- openapi-typescript: 6.7.5
+ ofetch: 1.4.1
+ ohash: 1.1.4
+ openapi-typescript: 7.4.3(encoding@0.1.13)(typescript@5.4.5)
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.22.4
- rollup-plugin-visualizer: 5.12.0(rollup@4.22.4)
+ rollup: 4.27.3
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
scule: 1.3.0
- semver: 7.6.0
- serve-placeholder: 2.0.1
- serve-static: 1.15.0
- std-env: 3.7.0
+ semver: 7.6.3
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
unctx: 2.3.1
- unenv: 1.9.0
- unimport: 3.11.1(rollup@4.22.4)
- unstorage: 1.10.2(ioredis@5.4.1)
+ unenv: 1.10.0
+ unimport: 3.13.2(rollup@4.27.3)
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -23615,6 +22982,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -23624,76 +22992,79 @@ snapshots:
- drizzle-orm
- encoding
- idb-keyval
+ - mysql2
- supports-color
- - uWebSockets.js
+ - typescript
- nitropack@2.9.7(encoding@0.1.13)(magicast@0.3.5):
+ nitropack@2.10.4(encoding@0.1.13)(typescript@5.7.2):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
- '@netlify/functions': 2.8.1
- '@rollup/plugin-alias': 5.1.0(rollup@4.22.4)
- '@rollup/plugin-commonjs': 25.0.8(rollup@4.22.4)
- '@rollup/plugin-inject': 5.0.5(rollup@4.22.4)
- '@rollup/plugin-json': 6.1.0(rollup@4.22.4)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.22.4)
- '@rollup/plugin-replace': 5.0.7(rollup@4.22.4)
- '@rollup/plugin-terser': 0.4.4(rollup@4.22.4)
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- '@types/http-proxy': 1.17.14
- '@vercel/nft': 0.26.5(encoding@0.1.13)
+ '@netlify/functions': 2.8.2
+ '@rollup/plugin-alias': 5.1.1(rollup@4.27.3)
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.27.3)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.27.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.27.3)
+ '@rollup/plugin-node-resolve': 15.3.0(rollup@4.27.3)
+ '@rollup/plugin-replace': 6.0.1(rollup@4.27.3)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.27.3)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@types/http-proxy': 1.17.15
+ '@vercel/nft': 0.27.6(encoding@0.1.13)
archiver: 7.0.1
- c12: 1.11.2(magicast@0.3.5)
- chalk: 5.3.0
+ c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
citty: 0.1.6
+ compatx: 0.1.8
+ confbox: 0.1.8
consola: 3.2.3
- cookie-es: 1.1.0
- croner: 8.0.2
- crossws: 0.2.4
- db0: 0.1.4
+ cookie-es: 1.2.2
+ croner: 9.0.0
+ crossws: 0.3.1
+ db0: 0.2.1
defu: 6.1.4
destr: 2.0.3
- dot-prop: 8.0.2
- esbuild: 0.20.2
+ dot-prop: 9.0.0
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
globby: 14.0.2
gzip-size: 7.0.0
- h3: 1.12.0
+ h3: 1.13.0
hookable: 5.5.3
httpxy: 0.1.5
ioredis: 5.4.1
- jiti: 1.21.6
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- listhen: 1.7.2
- magic-string: 0.30.11
+ listhen: 1.9.0
+ magic-string: 0.30.17
+ magicast: 0.3.5
mime: 4.0.4
- mlly: 1.7.1
- mri: 1.2.0
+ mlly: 1.7.3
node-fetch-native: 1.6.4
- ofetch: 1.3.4
- ohash: 1.1.3
- openapi-typescript: 6.7.6
+ ofetch: 1.4.1
+ ohash: 1.1.4
+ openapi-typescript: 7.4.3(encoding@0.1.13)(typescript@5.7.2)
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
pretty-bytes: 6.1.1
radix3: 1.1.2
- rollup: 4.22.4
- rollup-plugin-visualizer: 5.12.0(rollup@4.22.4)
+ rollup: 4.27.3
+ rollup-plugin-visualizer: 5.12.0(rollup@4.27.3)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
- serve-static: 1.15.0
- std-env: 3.7.0
+ serve-static: 1.16.2
+ std-env: 3.8.0
ufo: 1.5.4
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.11.1(rollup@4.22.4)
- unstorage: 1.10.2(ioredis@5.4.1)
+ unimport: 3.13.2(rollup@4.27.3)
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
unwasm: 0.3.9
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -23703,6 +23074,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -23712,9 +23084,9 @@ snapshots:
- drizzle-orm
- encoding
- idb-keyval
- - magicast
+ - mysql2
- supports-color
- - uWebSockets.js
+ - typescript
nlcst-to-string@4.0.0:
dependencies:
@@ -23811,73 +23183,74 @@ snapshots:
dependencies:
boolbase: 1.0.0
- nuxi@3.13.1:
- optionalDependencies:
- fsevents: 2.3.3
-
nuxi@3.15.0: {}
- nuxt@3.12.4(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.4.1(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@3.29.4)
- '@nuxt/schema': 3.12.4(rollup@3.29.4)
- '@nuxt/telemetry': 2.5.4(magicast@0.3.5)(rollup@3.29.4)
- '@nuxt/vite-builder': 3.12.4(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))
- '@unhead/dom': 1.10.4
- '@unhead/ssr': 1.10.4
- '@unhead/vue': 1.10.4(vue@3.5.0(typescript@5.7.2))
- '@vue/shared': 3.5.0
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
+ '@nuxt/devtools': 1.6.0(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@3.29.4)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@3.29.4)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@3.29.4)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@3.29.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))
+ '@unhead/dom': 1.11.11
+ '@unhead/shared': 1.11.11
+ '@unhead/ssr': 1.11.11
+ '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.7.2))
+ '@vue/shared': 3.5.13
+ acorn: 8.14.0
+ c12: 2.0.1(magicast@0.3.5)
+ chokidar: 4.0.1
compatx: 0.1.8
consola: 3.2.3
- cookie-es: 1.1.0
+ cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
- devalue: 5.0.0
+ devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
globby: 14.0.2
- h3: 1.12.0
+ h3: 1.13.0
hookable: 5.5.3
- ignore: 5.3.2
- jiti: 1.21.6
+ ignore: 6.0.2
+ impound: 0.2.0(rollup@3.29.4)
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
- nuxi: 3.13.1
- nypm: 0.3.11
- ofetch: 1.3.4
- ohash: 1.1.3
+ magic-string: 0.30.17
+ mlly: 1.7.3
+ nanotar: 0.1.1
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
+ nuxi: 3.15.0
+ nypm: 0.3.12
+ ofetch: 1.4.1
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
radix3: 1.1.2
scule: 1.3.0
semver: 7.6.3
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
+ tinyglobby: 0.2.10
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.11.1(rollup@3.29.4)
- unplugin: 1.12.3
- unplugin-vue-router: 0.10.7(rollup@3.29.4)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2))
- unstorage: 1.10.2(ioredis@5.4.1)
- untyped: 1.4.2
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
+ unhead: 1.11.11
+ unimport: 3.13.2(rollup@3.29.4)
+ unplugin: 1.16.0
+ unplugin-vue-router: 0.10.8(rollup@3.29.4)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
+ vue: 3.5.13(typescript@5.7.2)
+ vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
'@parcel/watcher': 2.4.1
'@types/node': 20.11.15
@@ -23890,6 +23263,7 @@ snapshots:
- '@azure/storage-blob'
- '@biomejs/biome'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -23906,6 +23280,7 @@ snapshots:
- lightningcss
- magicast
- meow
+ - mysql2
- optionator
- rollup
- sass
@@ -23916,7 +23291,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- utf-8-validate
- vite
- vls
@@ -23924,70 +23298,75 @@ snapshots:
- vue-tsc
- xml2js
- nuxt@3.12.4(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.22.4)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.4.1(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.22.4)
- '@nuxt/schema': 3.12.4(rollup@4.22.4)
- '@nuxt/telemetry': 2.5.4(magicast@0.3.5)(rollup@4.22.4)
- '@nuxt/vite-builder': 3.12.4(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.22.4)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))
- '@unhead/dom': 1.10.4
- '@unhead/ssr': 1.10.4
- '@unhead/vue': 1.10.4(vue@3.5.0(typescript@5.7.2))
- '@vue/shared': 3.5.0
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
+ '@nuxt/devtools': 1.6.0(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.3.3))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vue@3.5.13(typescript@5.3.3))
+ '@unhead/dom': 1.11.11
+ '@unhead/shared': 1.11.11
+ '@unhead/ssr': 1.11.11
+ '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.3.3))
+ '@vue/shared': 3.5.13
+ acorn: 8.14.0
+ c12: 2.0.1(magicast@0.3.5)
+ chokidar: 4.0.1
compatx: 0.1.8
consola: 3.2.3
- cookie-es: 1.1.0
+ cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
- devalue: 5.0.0
+ devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
globby: 14.0.2
- h3: 1.12.0
+ h3: 1.13.0
hookable: 5.5.3
- ignore: 5.3.2
- jiti: 1.21.6
+ ignore: 6.0.2
+ impound: 0.2.0(rollup@4.27.3)
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
- nuxi: 3.13.1
- nypm: 0.3.11
- ofetch: 1.3.4
- ohash: 1.1.3
+ magic-string: 0.30.17
+ mlly: 1.7.3
+ nanotar: 0.1.1
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.3.3)
+ nuxi: 3.15.0
+ nypm: 0.3.12
+ ofetch: 1.4.1
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
radix3: 1.1.2
scule: 1.3.0
semver: 7.6.3
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
+ tinyglobby: 0.2.10
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.11.1(rollup@4.22.4)
- unplugin: 1.12.3
- unplugin-vue-router: 0.10.7(rollup@4.22.4)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2))
- unstorage: 1.10.2(ioredis@5.4.1)
- untyped: 1.4.2
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
+ unhead: 1.11.11
+ unimport: 3.13.2(rollup@4.27.3)
+ unplugin: 1.16.0
+ unplugin-vue-router: 0.10.8(rollup@4.27.3)(vue-router@4.5.0(vue@3.5.13(typescript@5.3.3)))(vue@3.5.13(typescript@5.3.3))
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
+ vue: 3.5.13(typescript@5.3.3)
+ vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.3.3))
optionalDependencies:
'@parcel/watcher': 2.4.1
- '@types/node': 20.12.12
+ '@types/node': 20.11.15
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -23997,6 +23376,7 @@ snapshots:
- '@azure/storage-blob'
- '@biomejs/biome'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -24013,6 +23393,7 @@ snapshots:
- lightningcss
- magicast
- meow
+ - mysql2
- optionator
- rollup
- sass
@@ -24023,7 +23404,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- utf-8-validate
- vite
- vls
@@ -24031,67 +23411,72 @@ snapshots:
- vue-tsc
- xml2js
- nuxt@3.12.4(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.4.1(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- '@nuxt/kit': 3.12.4(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.12.4(rollup@4.27.3)
- '@nuxt/telemetry': 2.5.4(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/vite-builder': 3.12.4(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.0(typescript@5.7.2))
- '@unhead/dom': 1.10.4
- '@unhead/ssr': 1.10.4
- '@unhead/vue': 1.10.4(vue@3.5.0(typescript@5.7.2))
- '@vue/shared': 3.5.0
- acorn: 8.12.1
- c12: 1.11.2(magicast@0.3.5)
- chokidar: 3.6.0
+ '@nuxt/devtools': 1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/vite-builder': 3.14.1592(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))
+ '@unhead/dom': 1.11.11
+ '@unhead/shared': 1.11.11
+ '@unhead/ssr': 1.11.11
+ '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.7.2))
+ '@vue/shared': 3.5.13
+ acorn: 8.14.0
+ c12: 2.0.1(magicast@0.3.5)
+ chokidar: 4.0.1
compatx: 0.1.8
consola: 3.2.3
- cookie-es: 1.1.0
+ cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
- devalue: 5.0.0
+ devalue: 5.1.1
errx: 0.1.0
- esbuild: 0.23.1
+ esbuild: 0.24.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
globby: 14.0.2
- h3: 1.12.0
+ h3: 1.13.0
hookable: 5.5.3
- ignore: 5.3.2
- jiti: 1.21.6
+ ignore: 6.0.2
+ impound: 0.2.0(rollup@4.27.3)
+ jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.11
- mlly: 1.7.1
- nitropack: 2.9.7(encoding@0.1.13)(magicast@0.3.5)
- nuxi: 3.13.1
- nypm: 0.3.11
- ofetch: 1.3.4
- ohash: 1.1.3
+ magic-string: 0.30.17
+ mlly: 1.7.3
+ nanotar: 0.1.1
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
+ nuxi: 3.15.0
+ nypm: 0.3.12
+ ofetch: 1.4.1
+ ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
radix3: 1.1.2
scule: 1.3.0
semver: 7.6.3
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
+ tinyglobby: 0.2.10
ufo: 1.5.4
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.10.0
- unimport: 3.11.1(rollup@4.27.3)
- unplugin: 1.12.3
- unplugin-vue-router: 0.10.7(rollup@4.27.3)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2))
- unstorage: 1.10.2(ioredis@5.4.1)
- untyped: 1.4.2
- vue: 3.5.0(typescript@5.7.2)
- vue-bundle-renderer: 2.1.0
+ unhead: 1.11.11
+ unimport: 3.13.2(rollup@4.27.3)
+ unplugin: 1.16.0
+ unplugin-vue-router: 0.10.8(rollup@4.27.3)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
+ unstorage: 1.13.1(ioredis@5.4.1)
+ untyped: 1.5.1
+ vue: 3.5.13(typescript@5.7.2)
+ vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
'@parcel/watcher': 2.4.1
'@types/node': 20.12.12
@@ -24104,6 +23489,7 @@ snapshots:
- '@azure/storage-blob'
- '@biomejs/biome'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -24120,6 +23506,7 @@ snapshots:
- lightningcss
- magicast
- meow
+ - mysql2
- optionator
- rollup
- sass
@@ -24130,7 +23517,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- utf-8-validate
- vite
- vls
@@ -24138,18 +23524,18 @@ snapshots:
- vue-tsc
- xml2js
- nuxt@3.14.159(@parcel/watcher@2.4.1)(@types/node@20.11.15)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ nuxt@3.14.1592(@parcel/watcher@2.4.1)(@types/node@20.12.12)(encoding@0.1.13)(eslint@8.56.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.6.0(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))(vue@3.5.13(typescript@5.3.3))
- '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/schema': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/devtools': 1.6.0(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/kit': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
+ '@nuxt/schema': 3.14.1592(magicast@0.3.5)(rollup@4.27.3)
'@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.27.3)
- '@nuxt/vite-builder': 3.14.159(@types/node@20.11.15)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.3.3)(vue@3.5.13(typescript@5.3.3))
+ '@nuxt/vite-builder': 3.14.1592(@types/node@20.12.12)(eslint@8.56.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.27.3)(terser@5.27.0)(typescript@5.7.2)(vue@3.5.13(typescript@5.7.2))
'@unhead/dom': 1.11.11
'@unhead/shared': 1.11.11
'@unhead/ssr': 1.11.11
- '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.3.3))
+ '@unhead/vue': 1.11.11(vue@3.5.13(typescript@5.7.2))
'@vue/shared': 3.5.13
acorn: 8.14.0
c12: 2.0.1(magicast@0.3.5)
@@ -24172,10 +23558,10 @@ snapshots:
jiti: 2.4.0
klona: 2.0.6
knitwork: 1.1.0
- magic-string: 0.30.13
+ magic-string: 0.30.17
mlly: 1.7.3
nanotar: 0.1.1
- nitropack: 2.10.4(encoding@0.1.13)(typescript@5.3.3)
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
nuxi: 3.15.0
nypm: 0.3.12
ofetch: 1.4.1
@@ -24186,7 +23572,7 @@ snapshots:
radix3: 1.1.2
scule: 1.3.0
semver: 7.6.3
- std-env: 3.7.0
+ std-env: 3.8.0
strip-literal: 2.1.0
tinyglobby: 0.2.10
ufo: 1.5.4
@@ -24197,16 +23583,16 @@ snapshots:
unhead: 1.11.11
unimport: 3.13.2(rollup@4.27.3)
unplugin: 1.16.0
- unplugin-vue-router: 0.10.8(rollup@4.27.3)(vue-router@4.4.5(vue@3.5.13(typescript@5.3.3)))(vue@3.5.13(typescript@5.3.3))
+ unplugin-vue-router: 0.10.8(rollup@4.27.3)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
unstorage: 1.13.1(ioredis@5.4.1)
untyped: 1.5.1
- vue: 3.5.13(typescript@5.3.3)
+ vue: 3.5.13(typescript@5.7.2)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.5.13(typescript@5.3.3))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
'@parcel/watcher': 2.4.1
- '@types/node': 20.11.15
+ '@types/node': 20.12.12
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -24244,7 +23630,6 @@ snapshots:
- supports-color
- terser
- typescript
- - uWebSockets.js
- utf-8-validate
- vite
- vls
@@ -24252,15 +23637,6 @@ snapshots:
- vue-tsc
- xml2js
- nypm@0.3.11:
- dependencies:
- citty: 0.1.6
- consola: 3.2.3
- execa: 8.0.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- ufo: 1.5.4
-
nypm@0.3.12:
dependencies:
citty: 0.1.6
@@ -24286,6 +23662,8 @@ snapshots:
object-inspect@1.13.1: {}
+ object-inspect@1.13.3: {}
+
object-keys@1.1.1: {}
object.assign@4.1.4:
@@ -24332,12 +23710,6 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.22.2
- ofetch@1.3.4:
- dependencies:
- destr: 2.0.3
- node-fetch-native: 1.6.4
- ufo: 1.5.4
-
ofetch@1.4.1:
dependencies:
destr: 2.0.3
@@ -24400,32 +23772,38 @@ snapshots:
is-inside-container: 1.0.0
is-wsl: 2.2.0
- openapi-typescript@6.7.5:
+ openapi-typescript@7.4.3(encoding@0.1.13)(typescript@5.3.3):
dependencies:
+ '@redocly/openapi-core': 1.25.11(encoding@0.1.13)(supports-color@9.4.0)
ansi-colors: 4.1.3
- fast-glob: 3.3.2
- js-yaml: 4.1.0
+ change-case: 5.4.4
+ parse-json: 8.1.0
supports-color: 9.4.0
- undici: 5.28.4
+ typescript: 5.3.3
yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - encoding
- openapi-typescript@6.7.6:
+ openapi-typescript@7.4.3(encoding@0.1.13)(typescript@5.4.5):
dependencies:
+ '@redocly/openapi-core': 1.25.11(encoding@0.1.13)(supports-color@9.4.0)
ansi-colors: 4.1.3
- fast-glob: 3.3.2
- js-yaml: 4.1.0
+ change-case: 5.4.4
+ parse-json: 8.1.0
supports-color: 9.4.0
- undici: 5.28.4
+ typescript: 5.4.5
yargs-parser: 21.1.1
+ transitivePeerDependencies:
+ - encoding
- openapi-typescript@7.4.3(encoding@0.1.13)(typescript@5.3.3):
+ openapi-typescript@7.4.3(encoding@0.1.13)(typescript@5.7.2):
dependencies:
'@redocly/openapi-core': 1.25.11(encoding@0.1.13)(supports-color@9.4.0)
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.1.0
supports-color: 9.4.0
- typescript: 5.3.3
+ typescript: 5.7.2
yargs-parser: 21.1.1
transitivePeerDependencies:
- encoding
@@ -24469,7 +23847,7 @@ snapshots:
outdent@0.8.0: {}
- outvariant@1.4.2: {}
+ outvariant@1.4.3: {}
p-filter@2.1.0:
dependencies:
@@ -24483,10 +23861,6 @@ snapshots:
dependencies:
yocto-queue: 0.1.0
- p-limit@5.0.0:
- dependencies:
- yocto-queue: 1.0.0
-
p-limit@6.1.0:
dependencies:
yocto-queue: 1.1.1
@@ -24514,6 +23888,8 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
package-manager-detector@0.2.4: {}
pako@0.2.9: {}
@@ -24554,7 +23930,7 @@ snapshots:
dependencies:
'@babel/code-frame': 7.26.2
index-to-position: 0.1.2
- type-fest: 4.10.2
+ type-fest: 4.27.0
parse-latin@7.0.0:
dependencies:
@@ -24604,11 +23980,18 @@ snapshots:
lru-cache: 10.2.0
minipass: 7.0.4
+ path-scurry@1.11.1:
+ dependencies:
+ lru-cache: 10.4.3
+ minipass: 7.1.2
+
+ path-to-regexp@0.1.12: {}
+
path-to-regexp@0.1.7: {}
path-to-regexp@2.2.1: {}
- path-to-regexp@6.2.1: {}
+ path-to-regexp@6.3.0: {}
path-type@3.0.0:
dependencies:
@@ -24620,7 +24003,7 @@ snapshots:
pathe@1.1.2: {}
- pathval@1.1.1: {}
+ pathval@2.0.0: {}
peek-stream@1.1.3:
dependencies:
@@ -24682,51 +24065,26 @@ snapshots:
pluralize@8.0.0: {}
- postcss-calc@10.0.2(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
- postcss-value-parser: 4.2.0
-
postcss-calc@10.0.2(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-colormin@7.0.2(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- colord: 2.9.3
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-colormin@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.3(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-convert-values@7.0.4(postcss@8.4.49):
dependencies:
browserslist: 4.24.2
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-discard-comments@7.0.2(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
-
postcss-discard-comments@7.0.3(postcss@8.4.49):
dependencies:
postcss: 8.4.49
@@ -24736,26 +24094,18 @@ snapshots:
dependencies:
postcss: 8.4.38
- postcss-discard-duplicates@7.0.1(postcss@8.4.44):
+ postcss-discard-duplicates@5.1.0(postcss@8.4.49):
dependencies:
- postcss: 8.4.44
+ postcss: 8.4.49
postcss-discard-duplicates@7.0.1(postcss@8.4.49):
dependencies:
postcss: 8.4.49
- postcss-discard-empty@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
-
postcss-discard-empty@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
- postcss-discard-overridden@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
-
postcss-discard-overridden@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
@@ -24788,33 +24138,19 @@ snapshots:
postcss: 8.4.38
ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
- postcss-load-config@4.0.2(postcss@8.4.49):
+ postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)):
dependencies:
lilconfig: 3.1.1
yaml: 2.3.4
optionalDependencies:
postcss: 8.4.49
- optional: true
-
- postcss-merge-longhand@7.0.3(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
- stylehacks: 7.0.3(postcss@8.4.44)
+ ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5)
postcss-merge-longhand@7.0.4(postcss@8.4.49):
- dependencies:
- postcss: 8.4.49
- postcss-value-parser: 4.2.0
- stylehacks: 7.0.4(postcss@8.4.49)
-
- postcss-merge-rules@7.0.3(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.4.44)
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
+ dependencies:
+ postcss: 8.4.49
+ postcss-value-parser: 4.2.0
+ stylehacks: 7.0.4(postcss@8.4.49)
postcss-merge-rules@7.0.4(postcss@8.4.49):
dependencies:
@@ -24824,23 +24160,11 @@ snapshots:
postcss: 8.4.49
postcss-selector-parser: 6.1.2
- postcss-minify-font-values@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-minify-font-values@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.0(postcss@8.4.44):
- dependencies:
- colord: 2.9.3
- cssnano-utils: 5.0.0(postcss@8.4.44)
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-minify-gradients@7.0.0(postcss@8.4.49):
dependencies:
colord: 2.9.3
@@ -24848,26 +24172,13 @@ snapshots:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.2(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- cssnano-utils: 5.0.0(postcss@8.4.44)
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-minify-params@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
cssnano-utils: 5.0.0(postcss@8.4.49)
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.3(postcss@8.4.44):
- dependencies:
- cssesc: 3.0.0
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
-
postcss-minify-selectors@7.0.4(postcss@8.4.49):
dependencies:
cssesc: 3.0.0
@@ -24878,6 +24189,10 @@ snapshots:
dependencies:
postcss: 8.4.38
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.49):
+ dependencies:
+ postcss: 8.4.49
+
postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
dependencies:
icss-utils: 5.1.0(postcss@8.4.38)
@@ -24885,16 +24200,33 @@ snapshots:
postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.49):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+ postcss-selector-parser: 6.0.16
+ postcss-value-parser: 4.2.0
+
postcss-modules-scope@3.2.0(postcss@8.4.38):
dependencies:
postcss: 8.4.38
postcss-selector-parser: 6.0.16
+ postcss-modules-scope@3.2.0(postcss@8.4.49):
+ dependencies:
+ postcss: 8.4.49
+ postcss-selector-parser: 6.0.16
+
postcss-modules-values@4.0.0(postcss@8.4.38):
dependencies:
icss-utils: 5.1.0(postcss@8.4.38)
postcss: 8.4.38
+ postcss-modules-values@4.0.0(postcss@8.4.49):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.4.49)
+ postcss: 8.4.49
+
postcss-modules@6.0.0(postcss@8.4.38):
dependencies:
generic-names: 4.0.0
@@ -24907,130 +24239,80 @@ snapshots:
postcss-modules-values: 4.0.0(postcss@8.4.38)
string-hash: 1.1.3
+ postcss-modules@6.0.0(postcss@8.4.49):
+ dependencies:
+ generic-names: 4.0.0
+ icss-utils: 5.1.0(postcss@8.4.49)
+ lodash.camelcase: 4.3.0
+ postcss: 8.4.49
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.49)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.49)
+ postcss-modules-scope: 3.2.0(postcss@8.4.49)
+ postcss-modules-values: 4.0.0(postcss@8.4.49)
+ string-hash: 1.1.3
+
postcss-nested@6.0.1(postcss@8.4.38):
dependencies:
postcss: 8.4.38
postcss-selector-parser: 6.0.16
- postcss-normalize-charset@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
-
postcss-normalize-charset@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
- postcss-normalize-display-values@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-display-values@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-positions@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-repeat-style@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-string@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-timing-functions@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.2(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-unicode@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-url@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-normalize-whitespace@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-ordered-values@7.0.1(postcss@8.4.44):
- dependencies:
- cssnano-utils: 5.0.0(postcss@8.4.44)
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-ordered-values@7.0.1(postcss@8.4.49):
dependencies:
cssnano-utils: 5.0.0(postcss@8.4.49)
postcss: 8.4.49
postcss-value-parser: 4.2.0
- postcss-reduce-initial@7.0.2(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- caniuse-api: 3.0.0
- postcss: 8.4.44
-
postcss-reduce-initial@7.0.2(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
caniuse-api: 3.0.0
postcss: 8.4.49
- postcss-reduce-transforms@7.0.0(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
-
postcss-reduce-transforms@7.0.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
@@ -25046,23 +24328,12 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@7.0.1(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-value-parser: 4.2.0
- svgo: 3.3.2
-
postcss-svgo@7.0.1(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@7.0.2(postcss@8.4.44):
- dependencies:
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
-
postcss-unique-selectors@7.0.3(postcss@8.4.49):
dependencies:
postcss: 8.4.49
@@ -25073,8 +24344,8 @@ snapshots:
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
postcss@8.4.38:
dependencies:
@@ -25122,12 +24393,6 @@ snapshots:
pretty-bytes@6.1.1: {}
- pretty-format@29.7.0:
- dependencies:
- '@jest/schemas': 29.6.3
- ansi-styles: 5.2.0
- react-is: 18.2.0
-
pretty-ms@7.0.1:
dependencies:
parse-ms: 2.1.0
@@ -25169,6 +24434,10 @@ snapshots:
pseudomap@1.0.2: {}
+ psl@1.15.0:
+ dependencies:
+ punycode: 2.3.1
+
pump@2.0.1:
dependencies:
end-of-stream: 1.4.4
@@ -25185,14 +24454,24 @@ snapshots:
inherits: 2.0.4
pump: 2.0.1
+ punycode.js@2.3.1: {}
+
punycode@1.4.1: {}
punycode@2.3.0: {}
+ punycode@2.3.1: {}
+
qs@6.11.0:
dependencies:
side-channel: 1.0.4
+ qs@6.13.0:
+ dependencies:
+ side-channel: 1.1.0
+
+ querystringify@2.2.0: {}
+
queue-microtask@1.2.3: {}
queue-tick@1.0.1: {}
@@ -25245,15 +24524,13 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-dom@19.0.0-rc-b57d2823-20240822(react@19.0.0-rc-b57d2823-20240822):
+ react-dom@19.0.0(react@19.0.0):
dependencies:
- react: 19.0.0-rc-b57d2823-20240822
- scheduler: 0.25.0-rc-b57d2823-20240822
+ react: 19.0.0
+ scheduler: 0.25.0
react-is@16.13.1: {}
- react-is@18.2.0: {}
-
react-refresh@0.14.0: {}
react-refresh@0.14.2: {}
@@ -25265,11 +24542,23 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-router: 6.23.1(react@18.3.1)
+ react-router-dom@6.28.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@remix-run/router': 1.21.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-router: 6.28.0(react@18.3.1)
+
react-router@6.23.1(react@18.3.1):
dependencies:
'@remix-run/router': 1.16.1
react: 18.3.1
+ react-router@6.28.0(react@18.3.1):
+ dependencies:
+ '@remix-run/router': 1.21.0
+ react: 18.3.1
+
react@18.2.0:
dependencies:
loose-envify: 1.4.0
@@ -25278,7 +24567,7 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- react@19.0.0-rc-b57d2823-20240822: {}
+ react@19.0.0: {}
read-cache@1.0.0:
dependencies:
@@ -25616,10 +24905,6 @@ snapshots:
rfdc@1.4.1: {}
- rimraf@2.7.1:
- dependencies:
- glob: 7.2.3
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
@@ -25657,15 +24942,6 @@ snapshots:
optionalDependencies:
rollup: 3.29.4
- rollup-plugin-visualizer@5.12.0(rollup@4.22.4):
- dependencies:
- open: 8.4.2
- picomatch: 2.3.1
- source-map: 0.7.4
- yargs: 17.7.2
- optionalDependencies:
- rollup: 4.22.4
-
rollup-plugin-visualizer@5.12.0(rollup@4.27.3):
dependencies:
open: 8.4.2
@@ -25742,8 +25018,6 @@ snapshots:
run-applescript@7.0.0: {}
- run-async@2.4.1: {}
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -25788,13 +25062,6 @@ snapshots:
safer-buffer@2.1.2: {}
- sander@0.5.1:
- dependencies:
- es6-promise: 3.3.1
- graceful-fs: 4.2.11
- mkdirp: 0.5.6
- rimraf: 2.7.1
-
scheduler@0.23.0:
dependencies:
loose-envify: 1.4.0
@@ -25803,7 +25070,7 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- scheduler@0.25.0-rc-b57d2823-20240822: {}
+ scheduler@0.25.0: {}
schema-utils@3.3.0:
dependencies:
@@ -25868,6 +25135,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ send@1.1.0:
+ dependencies:
+ debug: 4.3.7
+ destroy: 1.2.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime-types: 2.1.35
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
serialize-javascript@6.0.1:
dependencies:
randombytes: 2.1.0
@@ -25889,10 +25173,6 @@ snapshots:
path-to-regexp: 2.2.1
range-parser: 1.2.0
- serve-placeholder@2.0.1:
- dependencies:
- defu: 6.1.4
-
serve-placeholder@2.0.2:
dependencies:
defu: 6.1.4
@@ -25998,13 +25278,6 @@ snapshots:
shell-quote@1.8.1: {}
- shiki@0.14.7:
- dependencies:
- ansi-sequence-parser: 1.1.1
- jsonc-parser: 3.2.0
- vscode-oniguruma: 1.7.0
- vscode-textmate: 8.0.0
-
shiki@1.23.1:
dependencies:
'@shikijs/core': 1.23.1
@@ -26020,31 +25293,51 @@ snapshots:
dependencies:
shikiji-core: 0.9.19
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.6
+ object-inspect: 1.13.3
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.6
+ object-inspect: 1.13.3
+ side-channel-map: 1.0.1
+
side-channel@1.0.4:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.1
object-inspect: 1.13.0
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
+
siginfo@2.0.0: {}
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
- simple-git@3.26.0:
- dependencies:
- '@kwsites/file-exists': 1.1.1
- '@kwsites/promise-deferred': 1.1.1
- debug: 4.3.7(supports-color@9.4.0)
- transitivePeerDependencies:
- - supports-color
-
simple-git@3.27.0:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -26059,6 +25352,12 @@ snapshots:
mrmime: 2.0.0
totalist: 3.0.1
+ sirv@3.0.0:
+ dependencies:
+ '@polka/url': 1.0.0-next.25
+ mrmime: 2.0.0
+ totalist: 3.0.1
+
sisteransi@1.0.5: {}
slash@3.0.0: {}
@@ -26096,14 +25395,14 @@ snapshots:
solid-refresh@0.6.3(solid-js@1.8.19):
dependencies:
- '@babel/generator': 7.24.10
- '@babel/helper-module-imports': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/generator': 7.26.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/types': 7.26.0
solid-js: 1.8.19
transitivePeerDependencies:
- supports-color
- solid-start@0.3.11(@solidjs/meta@0.29.4(solid-js@1.8.19))(@solidjs/router@0.14.1(solid-js@1.8.19))(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ solid-start@0.3.11(@solidjs/meta@0.29.4(solid-js@1.8.19))(@solidjs/router@0.14.1(solid-js@1.8.19))(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@babel/core': 7.24.4
'@babel/generator': 7.24.4
@@ -26138,9 +25437,9 @@ snapshots:
solid-js: 1.8.19
terser: 5.27.0
undici: 5.28.4
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-plugin-inspect: 0.7.42(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
- vite-plugin-solid: 2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vite-plugin-inspect: 0.7.42(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
+ vite-plugin-solid: 2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
wait-on: 6.0.1(debug@4.3.4)
transitivePeerDependencies:
- '@nuxt/kit'
@@ -26151,13 +25450,6 @@ snapshots:
dependencies:
solid-js: 1.8.19
- sorcery@0.11.0:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
- buffer-crc32: 0.2.13
- minimist: 1.2.8
- sander: 0.5.1
-
source-map-js@1.2.0: {}
source-map-js@1.2.1: {}
@@ -26212,6 +25504,8 @@ snapshots:
std-env@3.7.0: {}
+ std-env@3.8.0: {}
+
stdin-discarder@0.2.2: {}
stream-shift@1.0.3: {}
@@ -26352,21 +25646,15 @@ snapshots:
client-only: 0.0.1
react: 18.3.1
- styled-jsx@5.1.1(react@19.0.0-rc-b57d2823-20240822):
+ styled-jsx@5.1.1(react@19.0.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-b57d2823-20240822
+ react: 19.0.0
- styled-jsx@5.1.3(react@19.0.0-rc-b57d2823-20240822):
+ styled-jsx@5.1.6(react@19.0.0):
dependencies:
client-only: 0.0.1
- react: 19.0.0-rc-b57d2823-20240822
-
- stylehacks@7.0.3(postcss@8.4.44):
- dependencies:
- browserslist: 4.23.3
- postcss: 8.4.44
- postcss-selector-parser: 6.1.2
+ react: 19.0.0
stylehacks@7.0.4(postcss@8.4.49):
dependencies:
@@ -26404,45 +25692,17 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte-check@3.7.0(@babel/core@7.26.0)(postcss-load-config@4.0.2(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.15):
+ svelte-check@4.1.1(picomatch@4.0.2)(svelte@5.14.1)(typescript@5.3.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- chokidar: 3.6.0
- fast-glob: 3.3.2
- import-fresh: 3.3.0
- picocolors: 1.0.0
+ chokidar: 4.0.1
+ fdir: 6.4.2(picomatch@4.0.2)
+ picocolors: 1.1.1
sade: 1.8.1
- svelte: 4.2.15
- svelte-preprocess: 5.1.4(@babel/core@7.26.0)(postcss-load-config@4.0.2(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.15)(typescript@5.7.2)
- typescript: 5.7.2
+ svelte: 5.14.1
+ typescript: 5.3.3
transitivePeerDependencies:
- - '@babel/core'
- - coffeescript
- - less
- - postcss
- - postcss-load-config
- - pug
- - sass
- - stylus
- - sugarss
-
- svelte-hmr@0.16.0(svelte@4.2.15):
- dependencies:
- svelte: 4.2.15
-
- svelte-preprocess@5.1.4(@babel/core@7.26.0)(postcss-load-config@4.0.2(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.15)(typescript@5.7.2):
- dependencies:
- '@types/pug': 2.0.10
- detect-indent: 6.1.0
- magic-string: 0.30.11
- sorcery: 0.11.0
- strip-indent: 3.0.0
- svelte: 4.2.15
- optionalDependencies:
- '@babel/core': 7.26.0
- postcss: 8.4.49
- postcss-load-config: 4.0.2(postcss@8.4.49)
- typescript: 5.7.2
+ - picomatch
svelte@4.2.15:
dependencies:
@@ -26461,6 +25721,22 @@ snapshots:
magic-string: 0.30.10
periscopic: 3.1.0
+ svelte@5.14.1:
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@types/estree': 1.0.6
+ acorn: 8.14.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ aria-query: 5.3.2
+ axobject-query: 4.1.0
+ esm-env: 1.2.1
+ esrap: 1.2.3
+ is-reference: 3.0.3
+ locate-character: 3.0.0
+ magic-string: 0.30.17
+ zimmerframe: 1.1.2
+
svg-tags@1.0.0: {}
svgo@3.3.2:
@@ -26471,7 +25747,7 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.0.1
+ picocolors: 1.1.1
synckit@0.8.8:
dependencies:
@@ -26609,16 +25885,16 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
- test-exclude@6.0.0:
+ test-exclude@7.0.1:
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 7.2.3
- minimatch: 3.1.2
+ glob: 10.4.5
+ minimatch: 9.0.5
- testdouble-vitest@0.1.3(testdouble@3.20.1)(vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0)):
+ testdouble-vitest@0.2.0(testdouble@3.20.1)(vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)):
dependencies:
testdouble: 3.20.1
- vitest: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
+ vitest: 2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0)
testdouble@3.20.1:
dependencies:
@@ -26644,8 +25920,6 @@ snapshots:
readable-stream: 2.3.8
xtend: 4.0.2
- through@2.3.8: {}
-
tiny-glob@0.2.9:
dependencies:
globalyzer: 0.1.0
@@ -26653,7 +25927,7 @@ snapshots:
tiny-invariant@1.3.3: {}
- tinybench@2.7.0: {}
+ tinybench@2.9.0: {}
tinyexec@0.3.1: {}
@@ -26662,16 +25936,11 @@ snapshots:
fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
- tinyglobby@0.2.5:
- dependencies:
- fdir: 6.3.0(picomatch@4.0.2)
- picomatch: 4.0.2
-
- tinypool@0.8.4: {}
+ tinypool@1.0.2: {}
tinyrainbow@1.2.0: {}
- tinyspy@2.2.1: {}
+ tinyspy@3.0.2: {}
titleize@3.0.0: {}
@@ -26691,6 +25960,13 @@ snapshots:
totalist@3.0.1: {}
+ tough-cookie@4.1.4:
+ dependencies:
+ psl: 1.15.0
+ punycode: 2.3.0
+ universalify: 0.2.0
+ url-parse: 1.5.10
+
tr46@0.0.3: {}
trim-lines@3.0.1: {}
@@ -26822,6 +26098,8 @@ snapshots:
tslib@2.6.2: {}
+ tslib@2.8.1: {}
+
tty-table@4.2.3:
dependencies:
chalk: 4.1.2
@@ -26836,12 +26114,12 @@ snapshots:
turbo-stream@2.2.0: {}
+ turbo-stream@2.4.0: {}
+
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- type-detect@4.0.8: {}
-
type-fest@0.13.1: {}
type-fest@0.20.2: {}
@@ -26856,8 +26134,6 @@ snapshots:
type-fest@3.13.1: {}
- type-fest@4.10.2: {}
-
type-fest@4.27.0: {}
type-is@1.6.18:
@@ -26892,29 +26168,32 @@ snapshots:
for-each: 0.3.3
is-typed-array: 1.1.12
- typedoc@0.25.12(typescript@5.3.3):
+ typedoc@0.27.5(typescript@5.3.3):
dependencies:
+ '@gerrit0/mini-shiki': 1.24.4
lunr: 2.3.9
- marked: 4.3.0
- minimatch: 9.0.3
- shiki: 0.14.7
+ markdown-it: 14.1.0
+ minimatch: 9.0.5
typescript: 5.3.3
+ yaml: 2.6.1
- typedoc@0.25.12(typescript@5.4.5):
+ typedoc@0.27.5(typescript@5.4.5):
dependencies:
+ '@gerrit0/mini-shiki': 1.24.4
lunr: 2.3.9
- marked: 4.3.0
- minimatch: 9.0.3
- shiki: 0.14.7
+ markdown-it: 14.1.0
+ minimatch: 9.0.5
typescript: 5.4.5
+ yaml: 2.6.1
- typedoc@0.25.12(typescript@5.7.2):
+ typedoc@0.27.5(typescript@5.7.2):
dependencies:
+ '@gerrit0/mini-shiki': 1.24.4
lunr: 2.3.9
- marked: 4.3.0
- minimatch: 9.0.3
- shiki: 0.14.7
+ markdown-it: 14.1.0
+ minimatch: 9.0.5
typescript: 5.7.2
+ yaml: 2.6.1
typesafe-path@0.2.2: {}
@@ -26928,7 +26207,7 @@ snapshots:
typescript@5.7.2: {}
- ufo@1.5.3: {}
+ uc.micro@2.1.0: {}
ufo@1.5.4: {}
@@ -27062,21 +26341,6 @@ snapshots:
node-fetch-native: 1.6.4
pathe: 1.1.2
- unenv@1.9.0:
- dependencies:
- consola: 3.2.3
- defu: 6.1.4
- mime: 3.0.0
- node-fetch-native: 1.6.4
- pathe: 1.1.2
-
- unhead@1.10.4:
- dependencies:
- '@unhead/dom': 1.10.4
- '@unhead/schema': 1.10.4
- '@unhead/shared': 1.10.4
- hookable: 5.5.3
-
unhead@1.11.11:
dependencies:
'@unhead/dom': 1.11.11
@@ -27117,60 +26381,6 @@ snapshots:
trough: 2.2.0
vfile: 6.0.3
- unimport@3.11.1(rollup@3.29.4):
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.16.0
- transitivePeerDependencies:
- - rollup
-
- unimport@3.11.1(rollup@4.22.4):
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.16.0
- transitivePeerDependencies:
- - rollup
-
- unimport@3.11.1(rollup@4.27.3):
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
- pathe: 1.1.2
- pkg-types: 1.2.0
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.16.0
- transitivePeerDependencies:
- - rollup
-
unimport@3.13.2(rollup@3.29.4):
dependencies:
'@rollup/pluginutils': 5.1.3(rollup@3.29.4)
@@ -27189,24 +26399,6 @@ snapshots:
transitivePeerDependencies:
- rollup
- unimport@3.13.2(rollup@4.22.4):
- dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.22.4)
- acorn: 8.14.0
- escape-string-regexp: 5.0.0
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- local-pkg: 0.5.0
- magic-string: 0.30.13
- mlly: 1.7.3
- pathe: 1.1.2
- pkg-types: 1.2.1
- scule: 1.3.0
- strip-literal: 2.1.0
- unplugin: 1.16.0
- transitivePeerDependencies:
- - rollup
-
unimport@3.13.2(rollup@4.27.3):
dependencies:
'@rollup/pluginutils': 5.1.3(rollup@4.27.3)
@@ -27313,94 +26505,74 @@ snapshots:
universalify@0.1.2: {}
+ universalify@0.2.0: {}
+
universalify@2.0.0: {}
unpipe@1.0.0: {}
- unplugin-vue-router@0.10.7(rollup@3.29.4)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2)):
- dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- '@vue-macros/common': 1.12.2(rollup@3.29.4)(vue@3.5.0(typescript@5.7.2))
- ast-walker-scope: 0.6.2
- chokidar: 3.6.0
- fast-glob: 3.3.2
- json5: 2.2.3
- local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
- pathe: 1.1.2
- scule: 1.3.0
- unplugin: 1.16.0
- yaml: 2.5.0
- optionalDependencies:
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
- transitivePeerDependencies:
- - rollup
- - vue
-
- unplugin-vue-router@0.10.7(rollup@4.22.4)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2)):
+ unplugin-vue-router@0.10.8(rollup@3.29.4)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- '@vue-macros/common': 1.12.2(rollup@4.22.4)(vue@3.5.0(typescript@5.7.2))
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ '@vue-macros/common': 1.12.2(rollup@3.29.4)(vue@3.5.13(typescript@5.7.2))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.17
+ mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
unplugin: 1.16.0
- yaml: 2.5.0
+ yaml: 2.6.1
optionalDependencies:
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- rollup
- vue
- unplugin-vue-router@0.10.7(rollup@4.27.3)(vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)))(vue@3.5.0(typescript@5.7.2)):
+ unplugin-vue-router@0.10.8(rollup@4.27.3)(vue-router@4.5.0(vue@3.5.13(typescript@5.3.3)))(vue@3.5.13(typescript@5.3.3)):
dependencies:
- '@babel/types': 7.25.6
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- '@vue-macros/common': 1.12.2(rollup@4.27.3)(vue@3.5.0(typescript@5.7.2))
+ '@babel/types': 7.26.0
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@vue-macros/common': 1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.3.3))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.0
- magic-string: 0.30.11
- mlly: 1.7.1
+ magic-string: 0.30.17
+ mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
unplugin: 1.16.0
- yaml: 2.5.0
+ yaml: 2.6.1
optionalDependencies:
- vue-router: 4.4.3(vue@3.5.0(typescript@5.7.2))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.3.3))
transitivePeerDependencies:
- rollup
- vue
- unplugin-vue-router@0.10.8(rollup@4.27.3)(vue-router@4.4.5(vue@3.5.13(typescript@5.3.3)))(vue@3.5.13(typescript@5.3.3)):
+ unplugin-vue-router@0.10.8(rollup@4.27.3)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@babel/types': 7.26.0
'@rollup/pluginutils': 5.1.3(rollup@4.27.3)
- '@vue-macros/common': 1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.3.3))
+ '@vue-macros/common': 1.12.2(rollup@4.27.3)(vue@3.5.13(typescript@5.7.2))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.0
- magic-string: 0.30.13
+ magic-string: 0.30.17
mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
unplugin: 1.16.0
- yaml: 2.5.0
+ yaml: 2.6.1
optionalDependencies:
- vue-router: 4.4.5(vue@3.5.13(typescript@5.3.3))
+ vue-router: 4.5.0(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- rollup
- vue
@@ -27412,34 +26584,11 @@ snapshots:
webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.1
- unplugin@1.12.3:
- dependencies:
- acorn: 8.14.0
- webpack-sources: 3.2.3
- webpack-virtual-modules: 0.6.2
-
unplugin@1.16.0:
dependencies:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
- unstorage@1.10.2(ioredis@5.4.1):
- dependencies:
- anymatch: 3.1.3
- chokidar: 3.6.0
- destr: 2.0.3
- h3: 1.11.1
- listhen: 1.7.2
- lru-cache: 10.2.0
- mri: 1.2.0
- node-fetch-native: 1.6.4
- ofetch: 1.3.4
- ufo: 1.5.4
- optionalDependencies:
- ioredis: 5.4.1
- transitivePeerDependencies:
- - uWebSockets.js
-
unstorage@1.13.1(ioredis@5.4.1):
dependencies:
anymatch: 3.1.3
@@ -27454,8 +26603,6 @@ snapshots:
ufo: 1.5.4
optionalDependencies:
ioredis: 5.4.1
- transitivePeerDependencies:
- - uWebSockets.js
untildify@4.0.0: {}
@@ -27492,7 +26639,7 @@ snapshots:
unwasm@0.3.9:
dependencies:
knitwork: 1.1.0
- magic-string: 0.30.11
+ magic-string: 0.30.17
mlly: 1.7.1
pathe: 1.1.2
pkg-types: 1.2.0
@@ -27502,25 +26649,25 @@ snapshots:
dependencies:
browserslist: 4.22.3
escalade: 3.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
update-browserslist-db@1.0.13(browserslist@4.23.0):
dependencies:
browserslist: 4.23.0
escalade: 3.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
update-browserslist-db@1.1.0(browserslist@4.23.2):
dependencies:
browserslist: 4.23.2
escalade: 3.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
browserslist: 4.23.3
escalade: 3.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
@@ -27541,6 +26688,11 @@ snapshots:
dependencies:
punycode: 2.3.0
+ url-parse@1.5.10:
+ dependencies:
+ querystringify: 2.2.0
+ requires-port: 1.0.0
+
urlpattern-polyfill@8.0.2: {}
util-deprecate@1.0.2: {}
@@ -27566,6 +26718,10 @@ snapshots:
v8-compile-cache-lib@3.0.1: {}
+ valibot@0.41.0(typescript@5.4.5):
+ optionalDependencies:
+ typescript: 5.4.5
+
validate-html-nesting@1.2.2: {}
validate-npm-package-license@3.0.4:
@@ -27606,11 +26762,11 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vinxi@0.4.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0):
+ vinxi@0.4.3(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0)(typescript@5.7.2):
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
'@types/micromatch': 4.0.9
'@vinxi/listhen': 1.5.6
boxen: 7.1.1
@@ -27620,28 +26776,28 @@ snapshots:
crossws: 0.2.4
dax-sh: 0.39.2
defu: 6.1.4
- es-module-lexer: 1.3.1
+ es-module-lexer: 1.5.4
esbuild: 0.20.2
fast-glob: 3.3.2
get-port-please: 3.1.2
h3: 1.11.1
hookable: 5.5.3
http-proxy: 1.18.1
- micromatch: 4.0.5
- nitropack: 2.9.6(encoding@0.1.13)
+ micromatch: 4.0.8
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
node-fetch-native: 1.6.4
- path-to-regexp: 6.2.1
+ path-to-regexp: 6.3.0
pathe: 1.1.2
radix3: 1.1.2
resolve: 1.22.8
- serve-placeholder: 2.0.1
- serve-static: 1.15.0
- ufo: 1.5.3
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ ufo: 1.5.4
unctx: 2.3.1
- unenv: 1.9.0
- unstorage: 1.10.2(ioredis@5.4.1)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- zod: 3.22.4
+ unenv: 1.10.0
+ unstorage: 1.13.1(ioredis@5.4.1)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ zod: 3.23.8
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -27650,6 +26806,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -27664,51 +26821,125 @@ snapshots:
- ioredis
- less
- lightningcss
+ - mysql2
- sass
- sass-embedded
- stylus
- sugarss
- supports-color
- terser
+ - typescript
- uWebSockets.js
- xml2js
- vinxi@0.4.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(terser@5.27.0):
+ vinxi@0.5.1(@types/node@20.11.15)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.7.2)(yaml@2.6.1):
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
'@types/micromatch': 4.0.9
'@vinxi/listhen': 1.5.6
boxen: 7.1.1
chokidar: 3.6.0
citty: 0.1.6
consola: 3.2.3
- crossws: 0.2.4
+ crossws: 0.3.1
dax-sh: 0.39.2
defu: 6.1.4
- es-module-lexer: 1.3.1
+ es-module-lexer: 1.5.4
esbuild: 0.20.2
fast-glob: 3.3.2
get-port-please: 3.1.2
- h3: 1.11.1
+ h3: 1.13.0
hookable: 5.5.3
http-proxy: 1.18.1
- micromatch: 4.0.5
- nitropack: 2.9.6(encoding@0.1.13)
+ micromatch: 4.0.8
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.7.2)
node-fetch-native: 1.6.4
- path-to-regexp: 6.2.1
+ path-to-regexp: 6.3.0
pathe: 1.1.2
radix3: 1.1.2
resolve: 1.22.8
- serve-placeholder: 2.0.1
- serve-static: 1.15.0
- ufo: 1.5.3
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ ufo: 1.5.4
+ unctx: 2.3.1
+ unenv: 1.10.0
+ unstorage: 1.13.1(ioredis@5.4.1)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ zod: 3.23.8
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@electric-sql/pglite'
+ - '@libsql/client'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@types/node'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - better-sqlite3
+ - debug
+ - drizzle-orm
+ - encoding
+ - idb-keyval
+ - ioredis
+ - jiti
+ - less
+ - lightningcss
+ - mysql2
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - xml2js
+ - yaml
+
+ vinxi@0.5.1(@types/node@20.12.12)(encoding@0.1.13)(ioredis@5.4.1)(jiti@2.4.0)(terser@5.27.0)(typescript@5.4.5)(yaml@2.6.1):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@types/micromatch': 4.0.9
+ '@vinxi/listhen': 1.5.6
+ boxen: 7.1.1
+ chokidar: 3.6.0
+ citty: 0.1.6
+ consola: 3.2.3
+ crossws: 0.3.1
+ dax-sh: 0.39.2
+ defu: 6.1.4
+ es-module-lexer: 1.5.4
+ esbuild: 0.20.2
+ fast-glob: 3.3.2
+ get-port-please: 3.1.2
+ h3: 1.13.0
+ hookable: 5.5.3
+ http-proxy: 1.18.1
+ micromatch: 4.0.8
+ nitropack: 2.10.4(encoding@0.1.13)(typescript@5.4.5)
+ node-fetch-native: 1.6.4
+ path-to-regexp: 6.3.0
+ pathe: 1.1.2
+ radix3: 1.1.2
+ resolve: 1.22.8
+ serve-placeholder: 2.0.2
+ serve-static: 1.16.2
+ ufo: 1.5.4
unctx: 2.3.1
- unenv: 1.9.0
- unstorage: 1.10.2(ioredis@5.4.1)
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- zod: 3.22.4
+ unenv: 1.10.0
+ unstorage: 1.13.1(ioredis@5.4.1)
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ zod: 3.23.8
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -27717,6 +26948,7 @@ snapshots:
- '@azure/keyvault-secrets'
- '@azure/storage-blob'
- '@capacitor/preferences'
+ - '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
@@ -27729,32 +26961,36 @@ snapshots:
- encoding
- idb-keyval
- ioredis
+ - jiti
- less
- lightningcss
+ - mysql2
- sass
- sass-embedded
- stylus
- sugarss
- supports-color
- terser
- - uWebSockets.js
+ - tsx
+ - typescript
- xml2js
-
- vite-hot-client@0.2.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
- dependencies:
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ - yaml
vite-hot-client@0.2.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
dependencies:
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vite-node@1.5.0(@types/node@20.10.0)(terser@5.27.0):
+ vite-hot-client@0.2.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
+ dependencies:
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+
+ vite-node@1.5.0(@types/node@20.11.15)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.4
+ debug: 4.3.7
pathe: 1.1.2
- picocolors: 1.0.0
- vite: 5.4.11(@types/node@20.10.0)(terser@5.27.0)
+ picocolors: 1.1.1
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27766,13 +27002,13 @@ snapshots:
- supports-color
- terser
- vite-node@1.5.0(@types/node@20.11.15)(terser@5.27.0):
+ vite-node@1.5.0(@types/node@20.12.12)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.4
+ debug: 4.3.7
pathe: 1.1.2
- picocolors: 1.0.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ picocolors: 1.1.1
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27784,12 +27020,12 @@ snapshots:
- supports-color
- terser
- vite-node@1.5.0(@types/node@20.12.12)(terser@5.27.0):
+ vite-node@1.6.0(@types/node@20.12.12)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.4
+ debug: 4.3.7
pathe: 1.1.2
- picocolors: 1.0.0
+ picocolors: 1.1.1
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
@@ -27802,13 +27038,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.0.5(@types/node@20.11.15)(terser@5.27.0):
+ vite-node@2.1.8(@types/node@20.10.0)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
+ es-module-lexer: 1.5.4
pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 5.4.11(@types/node@20.10.0)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27820,13 +27056,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.0.5(@types/node@20.12.12)(terser@5.27.0):
+ vite-node@2.1.8(@types/node@20.11.15)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
+ es-module-lexer: 1.5.4
pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27838,13 +27074,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.5(@types/node@20.11.15)(terser@5.27.0):
+ vite-node@2.1.8(@types/node@20.12.12)(terser@5.27.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7(supports-color@9.4.0)
+ debug: 4.3.7
es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -27856,9 +27092,9 @@ snapshots:
- supports-color
- terser
- vite-plugin-checker@0.7.2(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-checker@0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.6.0
@@ -27871,16 +27107,16 @@ snapshots:
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
eslint: 8.56.0
optionator: 0.9.3
- typescript: 5.7.2
+ typescript: 5.3.3
- vite-plugin-checker@0.7.2(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ vite-plugin-checker@0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
chalk: 4.1.2
chokidar: 3.6.0
@@ -27890,17 +27126,17 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
eslint: 8.56.0
optionator: 0.9.3
typescript: 5.7.2
- vite-plugin-checker@0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.3.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-checker@0.8.0(eslint@8.56.0)(optionator@0.9.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
dependencies:
'@babel/code-frame': 7.26.2
ansi-escapes: 4.3.2
@@ -27912,17 +27148,17 @@ snapshots:
npm-run-path: 4.0.1
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
- vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
eslint: 8.56.0
optionator: 0.9.3
- typescript: 5.3.3
+ typescript: 5.7.2
- vite-plugin-inspect@0.7.42(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-inspect@0.7.42(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@antfu/utils': 0.7.7
'@rollup/pluginutils': 5.1.0(rollup@3.29.4)
@@ -27932,140 +27168,92 @@ snapshots:
open: 9.1.0
picocolors: 1.0.0
sirv: 2.0.4
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.7.42(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
- dependencies:
- '@antfu/utils': 0.7.7
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- debug: 4.3.4
- error-stack-parser-es: 0.1.1
- fs-extra: 11.2.0
- open: 9.1.0
- picocolors: 1.0.0
- sirv: 2.0.4
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.7.42(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
- dependencies:
- '@antfu/utils': 0.7.7
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- debug: 4.3.4
- error-stack-parser-es: 0.1.1
- fs-extra: 11.2.0
- open: 9.1.0
- picocolors: 1.0.0
- sirv: 2.0.4
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@3.29.4))(rollup@3.29.4)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@3.29.4))(rollup@3.29.4)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
- debug: 4.3.7(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.4)
+ debug: 4.4.0(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
sirv: 2.0.4
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
optionalDependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@3.29.4)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@3.29.4)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.22.4))(rollup@4.22.4)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.22.4)
- debug: 4.3.7(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ debug: 4.4.0(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
sirv: 2.0.4
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
optionalDependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.22.4)
- transitivePeerDependencies:
- - rollup
- - supports-color
-
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.4)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
- dependencies:
- '@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- debug: 4.3.7(supports-color@9.4.0)
- error-stack-parser-es: 0.1.5
- fs-extra: 11.2.0
- open: 10.1.0
- perfect-debounce: 1.0.0
- picocolors: 1.0.1
- sirv: 2.0.4
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- optionalDependencies:
- '@nuxt/kit': 3.14.159(magicast@0.3.4)(rollup@4.27.3)
+ '@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-inspect@0.8.7(@nuxt/kit@3.14.159(magicast@0.3.5)(rollup@4.27.3))(rollup@4.27.3)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
'@antfu/utils': 0.7.10
- '@rollup/pluginutils': 5.1.0(rollup@4.27.3)
- debug: 4.3.7(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ debug: 4.4.0(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
perfect-debounce: 1.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
sirv: 2.0.4
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
optionalDependencies:
'@nuxt/kit': 3.14.159(magicast@0.3.5)(rollup@4.27.3)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-solid@2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-solid@2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.19(@babel/core@7.24.4)
+ babel-preset-solid: 1.8.19(@babel/core@7.26.0)
merge-anything: 5.1.7
solid-js: 1.8.19
solid-refresh: 0.6.3(solid-js@1.8.19)
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vitefu: 0.2.5(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- supports-color
- vite-plugin-solid@2.10.2(solid-js@1.8.19)(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ vite-plugin-solid@2.11.0(solid-js@1.8.19)(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.26.0
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.19(@babel/core@7.24.4)
+ babel-preset-solid: 1.8.19(@babel/core@7.26.0)
merge-anything: 5.1.7
solid-js: 1.8.19
solid-refresh: 0.6.3(solid-js@1.8.19)
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vitefu: 0.2.5(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+ vitefu: 1.0.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1))
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite-plugin-vue-inspector@5.1.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.26.0)
@@ -28073,40 +27261,25 @@ snapshots:
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.26.0)
- '@vue/compiler-dom': 3.5.0
- kolorist: 1.8.0
- magic-string: 0.30.13
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- transitivePeerDependencies:
- - supports-color
-
- vite-plugin-vue-inspector@5.2.0(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
- '@vue/compiler-dom': 3.5.0
+ '@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
- magic-string: 0.30.11
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ magic-string: 0.30.17
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-inspector@5.2.0(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ vite-plugin-vue-inspector@5.1.3(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.25.2)
- '@vue/compiler-dom': 3.5.0
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.26.0)
+ '@vue/compiler-dom': 3.5.13
kolorist: 1.8.0
- magic-string: 0.30.11
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ magic-string: 0.30.17
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
transitivePeerDependencies:
- supports-color
@@ -28144,7 +27317,7 @@ snapshots:
vite@5.4.11(@types/node@20.10.0)(terser@5.27.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.44
+ postcss: 8.4.49
rollup: 4.22.4
optionalDependencies:
'@types/node': 20.10.0
@@ -28154,7 +27327,7 @@ snapshots:
vite@5.4.11(@types/node@20.11.15)(terser@5.27.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.44
+ postcss: 8.4.49
rollup: 4.22.4
optionalDependencies:
'@types/node': 20.11.15
@@ -28164,52 +27337,77 @@ snapshots:
vite@5.4.11(@types/node@20.12.12)(terser@5.27.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.4.44
+ postcss: 8.4.49
rollup: 4.22.4
optionalDependencies:
'@types/node': 20.12.12
fsevents: 2.3.3
terser: 5.27.0
- vitefu@0.2.5(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0)):
+ vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1):
+ dependencies:
+ esbuild: 0.24.0
+ postcss: 8.4.49
+ rollup: 4.27.3
optionalDependencies:
- vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
+ '@types/node': 20.11.15
+ fsevents: 2.3.3
+ jiti: 2.4.0
+ terser: 5.27.0
+ yaml: 2.6.1
- vitefu@0.2.5(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
+ vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1):
+ dependencies:
+ esbuild: 0.24.0
+ postcss: 8.4.49
+ rollup: 4.27.3
optionalDependencies:
- vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ '@types/node': 20.12.12
+ fsevents: 2.3.3
+ jiti: 2.4.0
+ terser: 5.27.0
+ yaml: 2.6.1
vitefu@1.0.3(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0)):
optionalDependencies:
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vitest@1.5.0(@types/node@20.10.0)(terser@5.27.0):
- dependencies:
- '@vitest/expect': 1.5.0
- '@vitest/runner': 1.5.0
- '@vitest/snapshot': 1.5.0
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
- acorn-walk: 8.3.2
- chai: 4.4.1
- debug: 4.3.4
- execa: 8.0.1
- local-pkg: 0.5.0
- magic-string: 0.30.10
+ vitefu@1.0.4(vite@6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
+ optionalDependencies:
+ vite: 6.0.3(@types/node@20.11.15)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+
+ vitefu@1.0.4(vite@6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)):
+ optionalDependencies:
+ vite: 6.0.3(@types/node@20.12.12)(jiti@2.4.0)(terser@5.27.0)(yaml@2.6.1)
+
+ vitest@2.1.8(@types/node@20.10.0)(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(terser@5.27.0):
+ dependencies:
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.10.0)(typescript@5.3.3))(vite@5.4.11(@types/node@20.10.0)(terser@5.27.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
+ chai: 5.1.2
+ debug: 4.3.7
+ expect-type: 1.1.0
+ magic-string: 0.30.17
pathe: 1.1.2
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- tinybench: 2.7.0
- tinypool: 0.8.4
+ std-env: 3.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
+ tinypool: 1.0.2
+ tinyrainbow: 1.2.0
vite: 5.4.11(@types/node@20.10.0)(terser@5.27.0)
- vite-node: 1.5.0(@types/node@20.10.0)(terser@5.27.0)
- why-is-node-running: 2.2.2
+ vite-node: 2.1.8(@types/node@20.10.0)(terser@5.27.0)
+ why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.10.0
transitivePeerDependencies:
- less
- lightningcss
+ - msw
- sass
- sass-embedded
- stylus
@@ -28217,33 +27415,34 @@ snapshots:
- supports-color
- terser
- vitest@1.5.0(@types/node@20.11.15)(terser@5.27.0):
- dependencies:
- '@vitest/expect': 1.5.0
- '@vitest/runner': 1.5.0
- '@vitest/snapshot': 1.5.0
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
- acorn-walk: 8.3.2
- chai: 4.4.1
- debug: 4.3.4
- execa: 8.0.1
- local-pkg: 0.5.0
- magic-string: 0.30.10
+ vitest@2.1.8(@types/node@20.11.15)(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(terser@5.27.0):
+ dependencies:
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.11.15)(typescript@5.3.3))(vite@5.4.11(@types/node@20.11.15)(terser@5.27.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
+ chai: 5.1.2
+ debug: 4.3.7
+ expect-type: 1.1.0
+ magic-string: 0.30.17
pathe: 1.1.2
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- tinybench: 2.7.0
- tinypool: 0.8.4
+ std-env: 3.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
+ tinypool: 1.0.2
+ tinyrainbow: 1.2.0
vite: 5.4.11(@types/node@20.11.15)(terser@5.27.0)
- vite-node: 1.5.0(@types/node@20.11.15)(terser@5.27.0)
- why-is-node-running: 2.2.2
+ vite-node: 2.1.8(@types/node@20.11.15)(terser@5.27.0)
+ why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.11.15
transitivePeerDependencies:
- less
- lightningcss
+ - msw
- sass
- sass-embedded
- stylus
@@ -28251,33 +27450,69 @@ snapshots:
- supports-color
- terser
- vitest@1.5.0(@types/node@20.12.12)(terser@5.27.0):
- dependencies:
- '@vitest/expect': 1.5.0
- '@vitest/runner': 1.5.0
- '@vitest/snapshot': 1.5.0
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
- acorn-walk: 8.3.2
- chai: 4.4.1
- debug: 4.3.4
- execa: 8.0.1
- local-pkg: 0.5.0
- magic-string: 0.30.10
+ vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(terser@5.27.0):
+ dependencies:
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.12.12)(typescript@5.4.5))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
+ chai: 5.1.2
+ debug: 4.3.7
+ expect-type: 1.1.0
+ magic-string: 0.30.17
pathe: 1.1.2
- picocolors: 1.0.0
- std-env: 3.7.0
- strip-literal: 2.1.0
- tinybench: 2.7.0
- tinypool: 0.8.4
+ std-env: 3.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
+ tinypool: 1.0.2
+ tinyrainbow: 1.2.0
vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
- vite-node: 1.5.0(@types/node@20.12.12)(terser@5.27.0)
- why-is-node-running: 2.2.2
+ vite-node: 2.1.8(@types/node@20.12.12)(terser@5.27.0)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@types/node': 20.12.12
+ transitivePeerDependencies:
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+
+ vitest@2.1.8(@types/node@20.12.12)(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(terser@5.27.0):
+ dependencies:
+ '@vitest/expect': 2.1.8
+ '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.12.12)(typescript@5.7.2))(vite@5.4.11(@types/node@20.12.12)(terser@5.27.0))
+ '@vitest/pretty-format': 2.1.8
+ '@vitest/runner': 2.1.8
+ '@vitest/snapshot': 2.1.8
+ '@vitest/spy': 2.1.8
+ '@vitest/utils': 2.1.8
+ chai: 5.1.2
+ debug: 4.3.7
+ expect-type: 1.1.0
+ magic-string: 0.30.17
+ pathe: 1.1.2
+ std-env: 3.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
+ tinypool: 1.0.2
+ tinyrainbow: 1.2.0
+ vite: 5.4.11(@types/node@20.12.12)(terser@5.27.0)
+ vite-node: 2.1.8(@types/node@20.12.12)(terser@5.27.0)
+ why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.12.12
transitivePeerDependencies:
- less
- lightningcss
+ - msw
- sass
- sass-embedded
- stylus
@@ -28401,16 +27636,8 @@ snapshots:
vscode-nls@5.2.0: {}
- vscode-oniguruma@1.7.0: {}
-
- vscode-textmate@8.0.0: {}
-
vscode-uri@3.0.8: {}
- vue-bundle-renderer@2.1.0:
- dependencies:
- ufo: 1.5.4
-
vue-bundle-renderer@2.1.1:
dependencies:
ufo: 1.5.4
@@ -28422,20 +27649,15 @@ snapshots:
'@vue/devtools-api': 6.6.1
vue: 3.5.13(typescript@5.7.2)
- vue-router@4.3.2(vue@3.4.24(typescript@5.7.2)):
- dependencies:
- '@vue/devtools-api': 6.6.1
- vue: 3.4.24(typescript@5.7.2)
-
- vue-router@4.4.3(vue@3.5.0(typescript@5.7.2)):
+ vue-router@4.5.0(vue@3.5.13(typescript@5.3.3)):
dependencies:
- '@vue/devtools-api': 6.6.3
- vue: 3.5.0(typescript@5.7.2)
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.13(typescript@5.3.3)
- vue-router@4.4.5(vue@3.5.13(typescript@5.3.3)):
+ vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.13(typescript@5.3.3)
+ vue: 3.5.13(typescript@5.7.2)
vue@3.4.21(typescript@5.7.2):
dependencies:
@@ -28447,26 +27669,6 @@ snapshots:
optionalDependencies:
typescript: 5.7.2
- vue@3.4.24(typescript@5.7.2):
- dependencies:
- '@vue/compiler-dom': 3.4.24
- '@vue/compiler-sfc': 3.4.24
- '@vue/runtime-dom': 3.4.24
- '@vue/server-renderer': 3.4.24(vue@3.4.24(typescript@5.7.2))
- '@vue/shared': 3.4.24
- optionalDependencies:
- typescript: 5.7.2
-
- vue@3.5.0(typescript@5.7.2):
- dependencies:
- '@vue/compiler-dom': 3.5.0
- '@vue/compiler-sfc': 3.5.0
- '@vue/runtime-dom': 3.5.0
- '@vue/server-renderer': 3.5.0(vue@3.5.0(typescript@5.7.2))
- '@vue/shared': 3.5.0
- optionalDependencies:
- typescript: 5.7.2
-
vue@3.5.13(typescript@5.3.3):
dependencies:
'@vue/compiler-dom': 3.5.13
@@ -28755,7 +27957,7 @@ snapshots:
dependencies:
isexe: 3.1.1
- why-is-node-running@2.2.2:
+ why-is-node-running@2.3.0:
dependencies:
siginfo: 2.0.0
stackback: 0.0.2
@@ -28800,6 +28002,8 @@ snapshots:
wrappy@1.0.2: {}
+ ws@7.5.10: {}
+
ws@7.5.9: {}
ws@8.18.0: {}
@@ -28841,6 +28045,8 @@ snapshots:
yaml@2.5.0: {}
+ yaml@2.6.1: {}
+
yargs-parser@18.1.3:
dependencies:
camelcase: 5.3.1
@@ -28876,12 +28082,20 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
-
yocto-queue@1.1.1: {}
+ yocto-spinner@0.1.2:
+ dependencies:
+ yoctocolors: 2.1.1
+
+ yoctocolors-cjs@2.1.2: {}
+
+ yoctocolors@2.1.1: {}
+
zhead@2.2.4: {}
+ zimmerframe@1.1.2: {}
+
zip-stream@6.0.1:
dependencies:
archiver-utils: 5.0.2
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 6faa8778..27568d42 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -4,7 +4,8 @@ packages:
- "examples/*/*/*"
- "packages/*"
- "integration-tests"
- - "integration-tests/test-apps/astro"
+ - "integration-tests/test-apps/astro-4"
+ - "integration-tests/test-apps/astro-5"
- "integration-tests/test-apps/nextjs"
- "integration-tests/test-apps/nuxt"
- "integration-tests/test-apps/remix"