diff --git a/biome.json b/biome.json
index 1b10a9f21..4ffa235c6 100644
--- a/biome.json
+++ b/biome.json
@@ -1,5 +1,5 @@
{
- "$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
+ "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": [
"**/dist",
diff --git a/package.json b/package.json
index af5b15b4d..56721a052 100644
--- a/package.json
+++ b/package.json
@@ -42,13 +42,13 @@
}
},
"devDependencies": {
- "@astrojs/check": "^0.9.3",
- "@biomejs/biome": "1.9.2",
+ "@astrojs/check": "^0.9.4",
+ "@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
- "@changesets/cli": "^2.27.8",
- "@types/node": "^20.16.10",
+ "@changesets/cli": "^2.27.9",
+ "@types/node": "^20.17.4",
"esbuild": "^0.21.5",
- "eslint": "^9.11.1",
+ "eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
@@ -56,8 +56,8 @@
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
- "turbo": "^2.1.3",
- "typescript": "^5.6.2",
- "typescript-eslint": "^8.8.0"
+ "turbo": "^2.2.3",
+ "typescript": "^5.6.3",
+ "typescript-eslint": "^8.12.2"
}
}
diff --git a/packages/cloudflare/CHANGELOG.md b/packages/cloudflare/CHANGELOG.md
index 18bce6fc1..f9443cd25 100644
--- a/packages/cloudflare/CHANGELOG.md
+++ b/packages/cloudflare/CHANGELOG.md
@@ -48,6 +48,16 @@
- [#392](https://github.com/withastro/adapters/pull/392) [`3a49eb7`](https://github.com/withastro/adapters/commit/3a49eb7802c44212ccfab06034b7dc5f2b060e94) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Updates internal code for Astro 5 changes. No changes is required to your project, apart from using Astro 5
+## 11.2.0
+
+### Minor Changes
+
+- [#423](https://github.com/withastro/adapters/pull/423) [`169ac24`](https://github.com/withastro/adapters/commit/169ac24451d8ac0e47dda27f7148d2ddad66e3dc) Thanks [@schummar](https://github.com/schummar)! - Changes the logic which generates the `_routes.json` file to improve generation for projects with many static pages, while still making sure all routes work as expected.
+
+### Patch Changes
+
+- [#409](https://github.com/withastro/adapters/pull/409) [`d63bed8`](https://github.com/withastro/adapters/commit/d63bed81afe549f98d705573d365de5204cab134) Thanks [@alexanderniebuhr](https://github.com/alexanderniebuhr)! - Fixes an issue where `cloudflare:` scoped imports made the build fail. We externalize all imports with the `cloudflare:` scope by default now.
+
## 11.1.0
### Minor Changes
diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json
index 0cb3e0636..5cd4b6564 100644
--- a/packages/cloudflare/package.json
+++ b/packages/cloudflare/package.json
@@ -30,14 +30,14 @@
"dependencies": {
"@astrojs/internal-helpers": "0.4.1",
"@astrojs/underscore-redirects": "^0.4.0-alpha.0",
- "@cloudflare/workers-types": "^4.20240925.0",
+ "@cloudflare/workers-types": "^4.20241022.0",
"esbuild": "^0.23.1",
"estree-walker": "^3.0.3",
- "magic-string": "^0.30.11",
- "miniflare": "^3.20240925.0",
+ "magic-string": "^0.30.12",
+ "miniflare": "^3.20241022.0",
"tiny-glob": "^0.2.9",
- "wrangler": "^3.78.12",
- "@inox-tools/astro-when": "^0.2.3"
+ "wrangler": "^3.84.0",
+ "@inox-tools/astro-when": "^0.2.4"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
@@ -49,9 +49,9 @@
"cheerio": "1.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
- "rollup": "^4.22.5",
+ "rollup": "^4.24.3",
"strip-ansi": "^7.1.0",
- "vite": "^5.4.8"
+ "vite": "^5.4.10"
},
"publishConfig": {
"provenance": true
diff --git a/packages/cloudflare/src/index.ts b/packages/cloudflare/src/index.ts
index c2b2f2de0..0acd86fd8 100644
--- a/packages/cloudflare/src/index.ts
+++ b/packages/cloudflare/src/index.ts
@@ -129,6 +129,16 @@ export default function createIntegration(args?: Options): AstroIntegration {
// https://developers.cloudflare.com/pages/functions/module-support/
// Allows imports of '.wasm', '.bin', and '.txt' file types
cloudflareModulePlugin,
+ {
+ name: 'vite:cf-imports',
+ enforce: 'pre',
+ resolveId(source) {
+ if (source.startsWith('cloudflare:')) {
+ return { id: source, external: true };
+ }
+ return null;
+ },
+ },
],
},
integrations: [astroWhen()],
diff --git a/packages/cloudflare/src/utils/generate-routes-json.ts b/packages/cloudflare/src/utils/generate-routes-json.ts
index 43adeb675..3d7f8a643 100644
--- a/packages/cloudflare/src/utils/generate-routes-json.ts
+++ b/packages/cloudflare/src/utils/generate-routes-json.ts
@@ -225,6 +225,7 @@ export async function createRoutesFile(
const convertedPath = segmentsToCfSyntax(route.segments, _config);
if (route.pathname === '/404' && route.prerender === true) hasPrerendered404 = true;
+ // eslint-disable-next-line @typescript-eslint/switch-exhaustiveness-check
switch (route.type) {
case 'page':
if (route.prerender === false) includePaths.push(convertedPath);
@@ -307,11 +308,10 @@ export async function createRoutesFile(
const EXTENDED_EXCLUDE_RULES_COUNT = excludeExtends?.length ?? 0;
const EXCLUDE_RULES_COUNT = AUTOMATIC_EXCLUDE_RULES_COUNT + EXTENDED_EXCLUDE_RULES_COUNT;
- if (
- !hasPrerendered404 ||
- INCLUDE_RULES_COUNT > CLOUDFLARE_COMBINED_LIMIT ||
- EXCLUDE_RULES_COUNT > CLOUDFLARE_COMBINED_LIMIT
- ) {
+ const OPTION2_TOTAL_COUNT =
+ INCLUDE_RULES_COUNT + (includedPathsHaveWildcard ? EXCLUDE_RULES_COUNT : 0);
+
+ if (!hasPrerendered404 || OPTION2_TOTAL_COUNT > CLOUDFLARE_COMBINED_LIMIT) {
await writeRoutesFileToOutDir(
_config,
logger,
diff --git a/packages/cloudflare/test/fixtures/astro-dev-platform/package.json b/packages/cloudflare/test/fixtures/astro-dev-platform/package.json
index 2392c6172..12ae29808 100644
--- a/packages/cloudflare/test/fixtures/astro-dev-platform/package.json
+++ b/packages/cloudflare/test/fixtures/astro-dev-platform/package.json
@@ -7,6 +7,6 @@
"astro": "^5.0.0-alpha.8"
},
"devDependencies": {
- "wrangler": "^3.78.12"
+ "wrangler": "^3.84.0"
}
}
diff --git a/packages/cloudflare/test/fixtures/astro-env/package.json b/packages/cloudflare/test/fixtures/astro-env/package.json
index 2598bee1a..e4e8e0fa9 100644
--- a/packages/cloudflare/test/fixtures/astro-env/package.json
+++ b/packages/cloudflare/test/fixtures/astro-env/package.json
@@ -7,6 +7,6 @@
"astro": "^5.0.0-alpha.8"
},
"devDependencies": {
- "wrangler": "^3.78.12"
+ "wrangler": "^3.84.0"
}
}
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/env.d.ts b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/env.d.ts
new file mode 100644
index 000000000..4e6b85c4a
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/env.d.ts
@@ -0,0 +1 @@
+///
\ No newline at end of file
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/[id].astro b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/[id].astro
new file mode 100644
index 000000000..1931fc8a6
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/[id].astro
@@ -0,0 +1,16 @@
+---
+import type { GetStaticPaths } from "astro";
+
+export const getStaticPaths = (() => {
+
+ return Array.from({length:100}).map((_, i) => ({
+ params: {
+ id: i.toString()
+ }
+ }));
+}) satisfies GetStaticPaths;
+
+const { id } = Astro.params;
+---
+
+id={id}
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/dynamic.astro b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/dynamic.astro
new file mode 100644
index 000000000..13502d70c
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStatic/pages/dynamic.astro
@@ -0,0 +1,5 @@
+---
+export const prerender = false;
+---
+
+dynamic
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/env.d.ts b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/env.d.ts
new file mode 100644
index 000000000..4e6b85c4a
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/env.d.ts
@@ -0,0 +1 @@
+///
\ No newline at end of file
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/404.astro b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/404.astro
new file mode 100644
index 000000000..e69de29bb
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/[id].astro b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/[id].astro
new file mode 100644
index 000000000..1931fc8a6
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/[id].astro
@@ -0,0 +1,16 @@
+---
+import type { GetStaticPaths } from "astro";
+
+export const getStaticPaths = (() => {
+
+ return Array.from({length:100}).map((_, i) => ({
+ params: {
+ id: i.toString()
+ }
+ }));
+}) satisfies GetStaticPaths;
+
+const { id } = Astro.params;
+---
+
+id={id}
diff --git a/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/dynamic.astro b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/dynamic.astro
new file mode 100644
index 000000000..13502d70c
--- /dev/null
+++ b/packages/cloudflare/test/fixtures/routes-json/src/manyStaticWith404/pages/dynamic.astro
@@ -0,0 +1,5 @@
+---
+export const prerender = false;
+---
+
+dynamic
diff --git a/packages/cloudflare/test/fixtures/with-solid-js/package.json b/packages/cloudflare/test/fixtures/with-solid-js/package.json
index 13df3b222..8f3a34596 100644
--- a/packages/cloudflare/test/fixtures/with-solid-js/package.json
+++ b/packages/cloudflare/test/fixtures/with-solid-js/package.json
@@ -6,6 +6,6 @@
"@astrojs/cloudflare": "workspace:*",
"@astrojs/solid-js": "^4.4.2",
"astro": "^5.0.0-alpha.8",
- "solid-js": "^1.9.1"
+ "solid-js": "^1.9.3"
}
}
diff --git a/packages/cloudflare/test/routes-json.test.js b/packages/cloudflare/test/routes-json.test.js
index 95a50c306..ee788721d 100644
--- a/packages/cloudflare/test/routes-json.test.js
+++ b/packages/cloudflare/test/routes-json.test.js
@@ -185,4 +185,58 @@ describe('_routes.json generation', () => {
});
});
});
+
+ describe('with many static files', () => {
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: new URL('./fixtures/routes-json/', import.meta.url).toString(),
+ srcDir: './src/manyStatic',
+ adapter: cloudflare({}),
+ });
+ await fixture.build();
+ });
+
+ it('creates a wildcard `include` and `exclude` for as many static assets and redirects as possible, truncating after 100 rules', async () => {
+ const _routesJson = await fixture.readFile('/_routes.json');
+ const routes = JSON.parse(_routesJson);
+
+ assert.deepEqual(routes, {
+ version: 1,
+ include: ['/*'],
+ exclude: [
+ '/_astro/*',
+ '/redirectme',
+ '/public.txt',
+ '/a/*',
+ ...Array.from({ length: 95 }, (_, i) => `/${i}`),
+ ],
+ });
+ });
+ });
+
+ describe('with many static files when a static 404 is present', () => {
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: new URL('./fixtures/routes-json/', import.meta.url).toString(),
+ srcDir: './src/manyStaticWith404',
+ adapter: cloudflare({}),
+ });
+ await fixture.build();
+ });
+
+ it('creates `include` for on-demand and `exclude` that are supposed to match nothin', async () => {
+ const _routesJson = await fixture.readFile('/_routes.json');
+ const routes = JSON.parse(_routesJson);
+
+ assert.deepEqual(routes, {
+ version: 1,
+ include: ['/_image', '/dynamic'],
+ exclude: [],
+ });
+ });
+ });
});
diff --git a/packages/netlify/CHANGELOG.md b/packages/netlify/CHANGELOG.md
index 7b43d721a..5220ff786 100644
--- a/packages/netlify/CHANGELOG.md
+++ b/packages/netlify/CHANGELOG.md
@@ -52,6 +52,12 @@
- [#385](https://github.com/withastro/adapters/pull/385) [`bb725b7`](https://github.com/withastro/adapters/commit/bb725b7a430a01a3cd197e3e84381be4fa0c945c) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Cleans up `astro:env` support
+## 5.5.4
+
+### Patch Changes
+
+- [#413](https://github.com/withastro/adapters/pull/413) [`1b18e67`](https://github.com/withastro/adapters/commit/1b18e671a689b67bde20fdc7fb8cf1d6283e4ec9) Thanks [@ascorbic](https://github.com/ascorbic)! - Fixes `context.rewrite` in edge middleware
+
## 5.5.3
### Patch Changes
diff --git a/packages/netlify/package.json b/packages/netlify/package.json
index f1ca2db60..ffdb68d94 100644
--- a/packages/netlify/package.json
+++ b/packages/netlify/package.json
@@ -34,9 +34,9 @@
"@astrojs/internal-helpers": "0.4.1",
"@astrojs/underscore-redirects": "^0.4.0-alpha.0",
"@netlify/functions": "^2.8.0",
- "@vercel/nft": "^0.27.4",
+ "@vercel/nft": "^0.27.5",
"esbuild": "^0.21.5",
- "vite": "^5.4.8"
+ "vite": "^5.4.10"
},
"peerDependencies": {
"astro": "^5.0.0-alpha.8"
@@ -45,14 +45,14 @@
"@astrojs/test-utils": "workspace:*",
"@netlify/edge-functions": "^2.11.0",
"@netlify/edge-handler-types": "^0.34.1",
- "@types/node": "^20.16.10",
+ "@types/node": "^20.17.4",
"astro": "^5.0.0-alpha.8",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"strip-ansi": "^7.1.0",
- "typescript": "^5.6.2"
+ "typescript": "^5.6.3"
},
"astro": {
"external": true
diff --git a/packages/netlify/src/index.ts b/packages/netlify/src/index.ts
index 87adc6cab..a64bfb59c 100644
--- a/packages/netlify/src/index.ts
+++ b/packages/netlify/src/index.ts
@@ -292,6 +292,25 @@ export default function netlifyIntegration(
params: {}
});
ctx.locals = { netlify: { context } }
+ // https://docs.netlify.com/edge-functions/api/#return-a-rewrite
+ ctx.rewrite = (target) => {
+ if(target instanceof Request) {
+ // We can only mutate headers, so if anything else is different, we need to fetch
+ // the target URL instead.
+ if(target.method !== request.method || target.body || target.url.origin !== request.url.origin) {
+ return fetch(target);
+ }
+ // We can't replace the headers object, so we need to delete all headers and set them again
+ request.headers.forEach((_value, key) => {
+ request.headers.delete(key);
+ });
+ target.headers.forEach((value, key) => {
+ request.headers.set(key, value);
+ });
+ return new URL(target.url);
+ }
+ return new URL(target, request.url);
+ };
const next = () => {
const { netlify, ...otherLocals } = ctx.locals;
request.headers.set("x-astro-locals", trySerializeLocals(otherLocals));
diff --git a/packages/node/package.json b/packages/node/package.json
index 335459e77..178396b5d 100644
--- a/packages/node/package.json
+++ b/packages/node/package.json
@@ -26,7 +26,7 @@
"test": "astro-scripts test \"test/**/*.test.js\""
},
"dependencies": {
- "send": "^0.19.0",
+ "send": "^0.19.1",
"server-destroy": "^1.0.1"
},
"peerDependencies": {
@@ -34,14 +34,14 @@
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
- "@types/node": "^18.19.54",
+ "@types/node": "^18.19.62",
"@types/send": "^0.17.4",
"@types/server-destroy": "^1.0.4",
"astro": "^5.0.0-alpha.8",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0",
- "express": "^4.21.0",
- "node-mocks-http": "^1.16.0"
+ "express": "^4.21.1",
+ "node-mocks-http": "^1.16.1"
},
"publishConfig": {
"provenance": true
diff --git a/packages/vercel/CHANGELOG.md b/packages/vercel/CHANGELOG.md
index ff066de63..cb2556add 100644
--- a/packages/vercel/CHANGELOG.md
+++ b/packages/vercel/CHANGELOG.md
@@ -20,6 +20,12 @@
- [#385](https://github.com/withastro/adapters/pull/385) [`bb725b7`](https://github.com/withastro/adapters/commit/bb725b7a430a01a3cd197e3e84381be4fa0c945c) Thanks [@florian-lefebvre](https://github.com/florian-lefebvre)! - Cleans up `astro:env` support
+## 7.8.2
+
+### Patch Changes
+
+- [#373](https://github.com/withastro/adapters/pull/373) [`5b802a4`](https://github.com/withastro/adapters/commit/5b802a4099743c86418747872171bbe224caaa6d) Thanks [@hrabiel](https://github.com/hrabiel)! - Fix excluding routes with rest parameters from ISR
+
## 7.8.1
### Patch Changes
diff --git a/packages/vercel/package.json b/packages/vercel/package.json
index bbdb967ac..4f9ca6c55 100644
--- a/packages/vercel/package.json
+++ b/packages/vercel/package.json
@@ -37,9 +37,9 @@
},
"dependencies": {
"@astrojs/internal-helpers": "^0.4.1",
- "@vercel/analytics": "^1.3.1",
+ "@vercel/analytics": "^1.3.2",
"@vercel/edge": "^1.1.2",
- "@vercel/nft": "^0.27.4",
+ "@vercel/nft": "^0.27.5",
"esbuild": "^0.21.5",
"fast-glob": "^3.3.2"
},
diff --git a/packages/vercel/src/lib/redirects.ts b/packages/vercel/src/lib/redirects.ts
index 9a7a503aa..7ef4d5045 100644
--- a/packages/vercel/src/lib/redirects.ts
+++ b/packages/vercel/src/lib/redirects.ts
@@ -45,25 +45,31 @@ function getParts(part: string, file: string) {
// 2022-04-26
function getMatchPattern(segments: RoutePart[][]) {
return segments
- .map((segment) => {
- return segment[0].spread
+ .map((segment, segmentIndex) => {
+ return segment.length === 1 && segment[0].spread
? '(?:\\/(.*?))?'
- : segment
- .map((part) => {
- if (part)
- return part.dynamic
- ? '([^/]+?)'
- : part.content
- .normalize()
- .replace(/\?/g, '%3F')
- .replace(/#/g, '%23')
- .replace(/%5B/g, '[')
- .replace(/%5D/g, ']')
- .replace(/[*+?^${}()|[\]\\]/g, '\\$&');
- })
- .join('');
+ : // Omit leading slash if segment is a spread.
+ // This is handled using a regex in Astro core.
+ // To avoid complex data massaging, we handle in-place here.
+ (segmentIndex === 0 ? '' : '/') +
+ segment
+ .map((part) => {
+ if (part)
+ return part.spread
+ ? '(.*?)'
+ : part.dynamic
+ ? '([^/]+?)'
+ : part.content
+ .normalize()
+ .replace(/\?/g, '%3F')
+ .replace(/#/g, '%23')
+ .replace(/%5B/g, '[')
+ .replace(/%5D/g, ']')
+ .replace(/[*+?^${}()|[\]\\]/g, '\\$&');
+ })
+ .join('');
})
- .join('/');
+ .join('');
}
function getReplacePattern(segments: RoutePart[][]) {
diff --git a/packages/vercel/test/fixtures/isr/astro.config.mjs b/packages/vercel/test/fixtures/isr/astro.config.mjs
index 4b675ab6c..97626d60b 100644
--- a/packages/vercel/test/fixtures/isr/astro.config.mjs
+++ b/packages/vercel/test/fixtures/isr/astro.config.mjs
@@ -7,7 +7,7 @@ export default defineConfig({
isr: {
bypassToken: "1c9e601d-9943-4e7c-9575-005556d774a8",
expiration: 120,
- exclude: ["/two", "/excluded/[dynamic]"]
+ exclude: ["/two", "/excluded/[dynamic]", "/excluded/[...rest]"]
}
})
});
diff --git a/packages/vercel/test/fixtures/isr/src/pages/excluded/[...rest].astro b/packages/vercel/test/fixtures/isr/src/pages/excluded/[...rest].astro
new file mode 100644
index 000000000..caf4f5416
--- /dev/null
+++ b/packages/vercel/test/fixtures/isr/src/pages/excluded/[...rest].astro
@@ -0,0 +1,8 @@
+
+
+ Rest
+
+
+ Rest
+
+
diff --git a/packages/vercel/test/isr.test.js b/packages/vercel/test/isr.test.js
index 6c88d0081..e3af25d66 100644
--- a/packages/vercel/test/isr.test.js
+++ b/packages/vercel/test/isr.test.js
@@ -37,10 +37,18 @@ describe('ISR', () => {
src: '^/excluded/([^/]+?)$',
dest: '_render',
},
+ {
+ src: '^/excluded(?:\\/(.*?))?$',
+ dest: '_render',
+ },
{
src: '^\\/excluded\\/([^/]+?)\\/?$',
dest: '/_isr?x_astro_path=$0',
},
+ {
+ src: '^\\/excluded(?:\\/(.*?))?\\/?$',
+ dest: '/_isr?x_astro_path=$0',
+ },
{
src: '^\\/one\\/?$',
dest: '/_isr?x_astro_path=$0',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d17812894..fb8bd1387 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,38 +9,38 @@ importers:
.:
devDependencies:
'@astrojs/check':
- specifier: ^0.9.3
- version: 0.9.3(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.2)
+ specifier: ^0.9.4
+ version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.3)
'@biomejs/biome':
- specifier: 1.9.2
- version: 1.9.2
+ specifier: 1.9.4
+ version: 1.9.4
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0
'@changesets/cli':
- specifier: ^2.27.8
- version: 2.27.8
+ specifier: ^2.27.9
+ version: 2.27.9
'@types/node':
- specifier: ^20.16.10
- version: 20.16.10
+ specifier: ^20.17.4
+ version: 20.17.4
esbuild:
specifier: ^0.21.5
version: 0.21.5
eslint:
- specifier: ^9.11.1
- version: 9.11.1
+ specifier: ^9.13.0
+ version: 9.13.0
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@9.11.1)
+ version: 9.1.0(eslint@9.13.0)
eslint-plugin-no-only-tests:
specifier: ^3.3.0
version: 3.3.0
eslint-plugin-prettier:
specifier: ^5.2.1
- version: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.11.1))(eslint@9.11.1)(prettier@3.3.3)
+ version: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.13.0))(eslint@9.13.0)(prettier@3.3.3)
eslint-plugin-regexp:
specifier: ^2.6.0
- version: 2.6.0(eslint@9.11.1)
+ version: 2.6.0(eslint@9.13.0)
only-allow:
specifier: ^1.2.1
version: 1.2.1
@@ -51,14 +51,14 @@ importers:
specifier: ^0.14.1
version: 0.14.1
turbo:
- specifier: ^2.1.3
- version: 2.1.3
+ specifier: ^2.2.3
+ version: 2.2.3
typescript:
- specifier: ^5.6.2
- version: 5.6.2
+ specifier: ^5.6.3
+ version: 5.6.3
typescript-eslint:
- specifier: ^8.8.0
- version: 8.8.0(eslint@9.11.1)(typescript@5.6.2)
+ specifier: ^8.12.2
+ version: 8.12.2(eslint@9.13.0)(typescript@5.6.3)
packages/cloudflare:
dependencies:
@@ -69,11 +69,11 @@ importers:
specifier: ^0.4.0-alpha.0
version: 0.4.0-beta.1
'@cloudflare/workers-types':
- specifier: ^4.20240925.0
- version: 4.20240925.0
+ specifier: ^4.20241022.0
+ version: 4.20241022.0
'@inox-tools/astro-when':
- specifier: ^0.2.3
- version: 0.2.3(astro@5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2))
+ specifier: ^0.2.4
+ version: 0.2.4(astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3))
esbuild:
specifier: ^0.23.1
version: 0.23.1
@@ -81,24 +81,24 @@ importers:
specifier: ^3.0.3
version: 3.0.3
magic-string:
- specifier: ^0.30.11
- version: 0.30.11
+ specifier: ^0.30.12
+ version: 0.30.12
miniflare:
- specifier: ^3.20240925.0
- version: 3.20240925.0
+ specifier: ^3.20241022.0
+ version: 3.20241022.0
tiny-glob:
specifier: ^0.2.9
version: 0.2.9
wrangler:
- specifier: ^3.78.12
- version: 3.78.12(@cloudflare/workers-types@4.20240925.0)
+ specifier: ^3.84.0
+ version: 3.84.0(@cloudflare/workers-types@4.20241022.0)
devDependencies:
'@astrojs/test-utils':
specifier: workspace:*
version: link:../test-utils
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
astro-scripts:
specifier: workspace:*
version: link:../../scripts
@@ -112,14 +112,14 @@ importers:
specifier: ^3.3.2
version: 3.3.2
rollup:
- specifier: ^4.22.5
- version: 4.22.5
+ specifier: ^4.24.3
+ version: 4.24.3
strip-ansi:
specifier: ^7.1.0
version: 7.1.0
vite:
- specifier: ^5.4.8
- version: 5.4.8(@types/node@22.4.1)
+ specifier: ^5.4.10
+ version: 5.4.10(@types/node@22.4.1)
packages/cloudflare/test/fixtures/astro-dev-platform:
dependencies:
@@ -128,11 +128,11 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
devDependencies:
wrangler:
- specifier: ^3.78.12
- version: 3.78.12(@cloudflare/workers-types@4.20240925.0)
+ specifier: ^3.84.0
+ version: 3.84.0(@cloudflare/workers-types@4.20241022.0)
packages/cloudflare/test/fixtures/astro-env:
dependencies:
@@ -141,11 +141,11 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
devDependencies:
wrangler:
- specifier: ^3.78.12
- version: 3.78.12(@cloudflare/workers-types@4.20240925.0)
+ specifier: ^3.84.0
+ version: 3.84.0(@cloudflare/workers-types@4.20241022.0)
packages/cloudflare/test/fixtures/compile-image-service:
dependencies:
@@ -154,7 +154,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/cloudflare/test/fixtures/external-image-service:
dependencies:
@@ -163,7 +163,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/cloudflare/test/fixtures/module-loader:
dependencies:
@@ -172,7 +172,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/cloudflare/test/fixtures/no-output:
dependencies:
@@ -181,7 +181,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/cloudflare/test/fixtures/routes-json:
dependencies:
@@ -190,7 +190,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/cloudflare/test/fixtures/with-solid-js:
dependencies:
@@ -199,13 +199,13 @@ importers:
version: link:../../..
'@astrojs/solid-js':
specifier: ^4.4.2
- version: 4.4.2(solid-js@1.9.1)(vite@6.0.0-beta.2(@types/node@22.4.1))
+ version: 4.4.2(solid-js@1.9.3)(vite@6.0.0-beta.2(@types/node@22.4.1))
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
solid-js:
- specifier: ^1.9.1
- version: 1.9.1
+ specifier: ^1.9.3
+ version: 1.9.3
packages/cloudflare/test/fixtures/wrangler-preview-platform:
dependencies:
@@ -214,7 +214,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/netlify:
dependencies:
@@ -228,14 +228,14 @@ importers:
specifier: ^2.8.0
version: 2.8.0(@opentelemetry/api@1.9.0)
'@vercel/nft':
- specifier: ^0.27.4
- version: 0.27.4
+ specifier: ^0.27.5
+ version: 0.27.5
esbuild:
specifier: ^0.21.5
version: 0.21.5
vite:
- specifier: ^5.4.8
- version: 5.4.8(@types/node@20.16.10)
+ specifier: ^5.4.10
+ version: 5.4.10(@types/node@20.17.4)
devDependencies:
'@astrojs/test-utils':
specifier: workspace:*
@@ -247,11 +247,11 @@ importers:
specifier: ^0.34.1
version: 0.34.1
'@types/node':
- specifier: ^20.16.10
- version: 20.16.10
+ specifier: ^20.17.4
+ version: 20.17.4
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@20.16.10)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@20.17.4)(rollup@4.24.3)(typescript@5.6.3)
astro-scripts:
specifier: workspace:*
version: link:../../scripts
@@ -268,8 +268,8 @@ importers:
specifier: ^7.1.0
version: 7.1.0
typescript:
- specifier: ^5.6.2
- version: 5.6.2
+ specifier: ^5.6.3
+ version: 5.6.3
packages/netlify/test/functions/fixtures/cookies:
dependencies:
@@ -299,7 +299,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/netlify/test/static/fixtures/redirects:
dependencies:
@@ -310,8 +310,8 @@ importers:
packages/node:
dependencies:
send:
- specifier: ^0.19.0
- version: 0.19.0
+ specifier: ^0.19.1
+ version: 0.19.1
server-destroy:
specifier: ^1.0.1
version: 1.0.1
@@ -320,8 +320,8 @@ importers:
specifier: workspace:*
version: link:../test-utils
'@types/node':
- specifier: ^18.19.54
- version: 18.19.54
+ specifier: ^18.19.62
+ version: 18.19.62
'@types/send':
specifier: ^0.17.4
version: 0.17.4
@@ -330,7 +330,7 @@ importers:
version: 1.0.4
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@18.19.54)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@18.19.62)(rollup@4.24.3)(typescript@5.6.3)
astro-scripts:
specifier: workspace:*
version: link:../../scripts
@@ -338,11 +338,11 @@ importers:
specifier: 1.0.0
version: 1.0.0
express:
- specifier: ^4.21.0
- version: 4.21.0
+ specifier: ^4.21.1
+ version: 4.21.1
node-mocks-http:
- specifier: ^1.16.0
- version: 1.16.0
+ specifier: ^1.16.1
+ version: 1.16.1(@types/express@4.17.21)(@types/node@18.19.62)
packages/node/test/fixtures/api-route:
dependencies:
@@ -351,7 +351,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/bad-urls:
dependencies:
@@ -360,7 +360,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/encoded:
dependencies:
@@ -369,7 +369,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/errors:
dependencies:
@@ -378,7 +378,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/headers:
dependencies:
@@ -387,7 +387,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/image:
dependencies:
@@ -396,7 +396,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/locals:
dependencies:
@@ -405,7 +405,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/node-middleware:
dependencies:
@@ -414,7 +414,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/prerender:
dependencies:
@@ -423,7 +423,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/prerender-404-500:
dependencies:
@@ -432,7 +432,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/preview-headers:
dependencies:
@@ -441,7 +441,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/trailing-slash:
dependencies:
@@ -450,7 +450,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/url:
dependencies:
@@ -459,7 +459,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/node/test/fixtures/well-known-locations:
dependencies:
@@ -468,13 +468,13 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/test-utils:
dependencies:
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
execa:
specifier: ^8.0.1
version: 8.0.1
@@ -491,14 +491,14 @@ importers:
specifier: ^0.4.1
version: 0.4.1
'@vercel/analytics':
- specifier: ^1.3.1
- version: 1.3.1
+ specifier: ^1.3.2
+ version: 1.3.2
'@vercel/edge':
specifier: ^1.1.2
version: 1.1.2
'@vercel/nft':
- specifier: ^0.27.4
- version: 0.27.4
+ specifier: ^0.27.5
+ version: 0.27.5
esbuild:
specifier: ^0.21.5
version: 0.21.5
@@ -511,7 +511,7 @@ importers:
version: link:../test-utils
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
astro-scripts:
specifier: workspace:*
version: link:../../scripts
@@ -526,7 +526,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/image:
dependencies:
@@ -535,7 +535,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/isr:
dependencies:
@@ -544,7 +544,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/max-duration:
dependencies:
@@ -553,7 +553,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/middleware-with-edge-file:
dependencies:
@@ -562,7 +562,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/middleware-without-edge-file:
dependencies:
@@ -571,7 +571,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/no-output:
dependencies:
@@ -580,7 +580,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/prerendered-error-pages:
dependencies:
@@ -589,7 +589,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/redirects:
dependencies:
@@ -598,7 +598,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/redirects-serverless:
dependencies:
@@ -607,7 +607,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/server-islands:
dependencies:
@@ -616,7 +616,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/serverless-prerender:
dependencies:
@@ -625,7 +625,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/serverless-with-dynamic-routes:
dependencies:
@@ -634,7 +634,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-beta.5
- version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/static:
dependencies:
@@ -643,7 +643,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/static-assets:
dependencies:
@@ -652,7 +652,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/streaming:
dependencies:
@@ -661,7 +661,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/fixtures/with-web-analytics-enabled/output-as-static:
dependencies:
@@ -670,7 +670,7 @@ importers:
version: link:../../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
packages/vercel/test/hosted/hosted-astro-project:
dependencies:
@@ -679,7 +679,7 @@ importers:
version: link:../../..
astro:
specifier: ^5.0.0-alpha.8
- version: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ version: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
scripts:
dependencies:
@@ -693,8 +693,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@astrojs/check@0.9.3':
- resolution: {integrity: sha512-I6Dz45bMI5YRbp4yK2LKWsHH3/kkHRGdPGruGkLap6pqxhdcNh7oCgN04Ac+haDfc9ow5BYPGPmEhkwef15GQQ==}
+ '@astrojs/check@0.9.4':
+ resolution: {integrity: sha512-IOheHwCtpUfvogHHsvu0AbeRZEnjJg3MopdLddkJE70mULItS/Vh37BHcI00mcOJcH1vhD3odbpvWokpxam7xA==}
hasBin: true
peerDependencies:
typescript: ^5.0.0
@@ -705,8 +705,8 @@ packages:
'@astrojs/internal-helpers@0.4.1':
resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==}
- '@astrojs/language-server@2.14.1':
- resolution: {integrity: sha512-mkKtCTPRD4dyKdAqIP0zmmPyO/ZABOqFESnaVca47Dg/sAagJnDSEsDUDzNbHFh1+9Dj1o5y4iwNsxJboGdaNg==}
+ '@astrojs/language-server@2.15.0':
+ resolution: {integrity: sha512-wJHSjGApm5X8Rg1GvkevoatZBfvaFizY4kCPvuSYgs3jGCobuY3KstJGKC1yNLsRJlDweHruP+J54iKn9vEKoA==}
hasBin: true
peerDependencies:
prettier: ^3.0.0
@@ -717,9 +717,6 @@ packages:
prettier-plugin-astro:
optional: true
- '@astrojs/markdown-remark@6.0.0-beta.1':
- resolution: {integrity: sha512-aNl4fUDEkCNisBdHgWWOk2G1hoVBBOK6Dc5BjQg6DtIuSEmNap/xs14ukJL1LZ+xw+w10pVnhjQG7x7bQ4lrRA==}
-
'@astrojs/markdown-remark@6.0.0-beta.2':
resolution: {integrity: sha512-XHadnf3c+hb2A0kWBuwKA3TqBKi7bIF3bpRt49DTnE3dVlsHDPmByn0Wj3CZij1HvXL/ODmPiOJt2JGXMeivuQ==}
@@ -747,75 +744,67 @@ packages:
'@astrojs/yaml2ts@0.2.1':
resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.2':
- resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
+ '@babel/compat-data@7.25.9':
+ resolution: {integrity: sha512-yD+hEuJ/+wAJ4Ox2/rpNv5HIuPG82x3ZlQvYVn8iYCprdxzE7P1udpGF1jyjQVBU4dgznN+k2h103vxZ7NdPyw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.2':
- resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.5':
- resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.2':
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
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'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.2':
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-plugin-utils@7.24.8':
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.8':
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.0':
- resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.4':
- resolution: {integrity: sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -824,67 +813,67 @@ packages:
resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.0':
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.4':
- resolution: {integrity: sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.6':
- resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
- '@biomejs/biome@1.9.2':
- resolution: {integrity: sha512-4j2Gfwft8Jqp1X0qLYvK4TEy4xhTo4o6rlvJPsjPeEame8gsmbGQfOPBkw7ur+7/Z/f0HZmCZKqbMvR7vTXQYQ==}
+ '@biomejs/biome@1.9.4':
+ resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==}
engines: {node: '>=14.21.3'}
hasBin: true
- '@biomejs/cli-darwin-arm64@1.9.2':
- resolution: {integrity: sha512-rbs9uJHFmhqB3Td0Ro+1wmeZOHhAPTL3WHr8NtaVczUmDhXkRDWScaxicG9+vhSLj1iLrW47itiK6xiIJy6vaA==}
+ '@biomejs/cli-darwin-arm64@1.9.4':
+ resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
- '@biomejs/cli-darwin-x64@1.9.2':
- resolution: {integrity: sha512-BlfULKijNaMigQ9GH9fqJVt+3JTDOSiZeWOQtG/1S1sa8Lp046JHG3wRJVOvekTPL9q/CNFW1NVG8J0JN+L1OA==}
+ '@biomejs/cli-darwin-x64@1.9.4':
+ resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
- '@biomejs/cli-linux-arm64-musl@1.9.2':
- resolution: {integrity: sha512-ZATvbUWhNxegSALUnCKWqetTZqrK72r2RsFD19OK5jXDj/7o1hzI1KzDNG78LloZxftrwr3uI9SqCLh06shSZw==}
+ '@biomejs/cli-linux-arm64-musl@1.9.4':
+ resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- '@biomejs/cli-linux-arm64@1.9.2':
- resolution: {integrity: sha512-T8TJuSxuBDeQCQzxZu2o3OU4eyLumTofhCxxFd3+aH2AEWVMnH7Z/c3QP1lHI5RRMBP9xIJeMORqDQ5j+gVZzw==}
+ '@biomejs/cli-linux-arm64@1.9.4':
+ resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
- '@biomejs/cli-linux-x64-musl@1.9.2':
- resolution: {integrity: sha512-CjPM6jT1miV5pry9C7qv8YJk0FIZvZd86QRD3atvDgfgeh9WQU0k2Aoo0xUcPdTnoz0WNwRtDicHxwik63MmSg==}
+ '@biomejs/cli-linux-x64-musl@1.9.4':
+ resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- '@biomejs/cli-linux-x64@1.9.2':
- resolution: {integrity: sha512-T0cPk3C3Jr2pVlsuQVTBqk2qPjTm8cYcTD9p/wmR9MeVqui1C/xTVfOIwd3miRODFMrJaVQ8MYSXnVIhV9jTjg==}
+ '@biomejs/cli-linux-x64@1.9.4':
+ resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
- '@biomejs/cli-win32-arm64@1.9.2':
- resolution: {integrity: sha512-2x7gSty75bNIeD23ZRPXyox6Z/V0M71ObeJtvQBhi1fgrvPdtkEuw7/0wEHg6buNCubzOFuN9WYJm6FKoUHfhg==}
+ '@biomejs/cli-win32-arm64@1.9.4':
+ resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
- '@biomejs/cli-win32-x64@1.9.2':
- resolution: {integrity: sha512-JC3XvdYcjmu1FmAehVwVV0SebLpeNTnO2ZaMdGCSOdS7f8O9Fq14T2P1gTG1Q29Q8Dt1S03hh0IdVpIZykOL8g==}
+ '@biomejs/cli-win32-x64@1.9.4':
+ resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
@@ -901,8 +890,8 @@ packages:
'@changesets/changelog-github@0.5.0':
resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
- '@changesets/cli@2.27.8':
- resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==}
+ '@changesets/cli@2.27.9':
+ resolution: {integrity: sha512-q42a/ZbDnxPpCb5Wkm6tMVIxgeI9C/bexntzTeCFBrQEdpisQqk8kCHllYZMDjYtEc1ZzumbMJAG8H0Z4rdvjg==}
hasBin: true
'@changesets/config@3.0.3':
@@ -954,42 +943,42 @@ packages:
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@cloudflare/workerd-darwin-64@1.20240925.0':
- resolution: {integrity: sha512-KdLnSXuzB65CbqZPm+qYzk+zkQ1tUNPaaRGYVd/jPYAxwwtfTUQdQ+ahDPwVVs2tmQELKy7ZjQjf2apqSWUfjw==}
+ '@cloudflare/workerd-darwin-64@1.20241022.0':
+ resolution: {integrity: sha512-1NNYun37myMTgCUiPQEJ0cMal4mKZVTpkD0b2tx9hV70xji+frVJcSK8YVLeUm1P+Rw1d/ct8DMgQuCpsz3Fsw==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-arm64@1.20240925.0':
- resolution: {integrity: sha512-MiQ6uUmCXjsXgWNV+Ock2tp2/tYqNJGzjuaH6jFioeRF+//mz7Tv7J7EczOL4zq+TH8QFOh0/PUsLyazIWVGng==}
+ '@cloudflare/workerd-darwin-arm64@1.20241022.0':
+ resolution: {integrity: sha512-FOO/0P0U82EsTLTdweNVgw+4VOk5nghExLPLSppdOziq6IR5HVgP44Kmq5LdsUeHUhwUmfOh9hzaTpkNzUqKvw==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20240925.0':
- resolution: {integrity: sha512-Rjix8jsJMfsInmq3Hm3fmiRQ+rwzuWRPV1pg/OWhMSfNP7Qp2RCU+RGkhgeR9Z5eNAje0Sn2BMrFq4RvF9/yRA==}
+ '@cloudflare/workerd-linux-64@1.20241022.0':
+ resolution: {integrity: sha512-RsNc19BQJG9yd+ngnjuDeG9ywZG+7t1L4JeglgceyY5ViMNMKVO7Zpbsu69kXslU9h6xyQG+lrmclg3cBpnhYA==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20240925.0':
- resolution: {integrity: sha512-VYIPeMHQRtbwQoIjUwS/zULlywPxyDvo46XkTpIW5MScEChfqHvAYviQ7TzYGx6Q+gmZmN+DUB2KOMx+MEpCxA==}
+ '@cloudflare/workerd-linux-arm64@1.20241022.0':
+ resolution: {integrity: sha512-x5mUXpKxfsosxcFmcq5DaqLs37PejHYVRsNz1cWI59ma7aC4y4Qn6Tf3i0r9MwQTF/MccP4SjVslMU6m4W7IaA==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-windows-64@1.20240925.0':
- resolution: {integrity: sha512-C8peGvaU5R51bIySi1VbyfRgwNSSRknqoFSnSbSBI3uTN3THTB3UnmRKy7GXJDmyjgXuT9Pcs1IgaWNubLtNtw==}
+ '@cloudflare/workerd-windows-64@1.20241022.0':
+ resolution: {integrity: sha512-eBCClx4szCOgKqOlxxbdNszMqQf3MRG1B9BRIqEM/diDfdR9IrZ8l3FaEm+l9gXgPmS6m1NBn40aWuGBl8UTSw==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
- '@cloudflare/workers-shared@0.5.4':
- resolution: {integrity: sha512-PNL/0TjKRdUHa1kwgVdqUNJVZ9ez4kacsi8omz+gv859EvJmsVuGiMAClY2YfJnC9LVKhKCcjqmFgKNXG9/IXA==}
+ '@cloudflare/workers-shared@0.7.0':
+ resolution: {integrity: sha512-LLQRTqx7lKC7o2eCYMpyc5FXV8d0pUX6r3A+agzhqS9aoR5A6zCPefwQGcvbKx83ozX22ATZcemwxQXn12UofQ==}
engines: {node: '>=16.7.0'}
- '@cloudflare/workers-types@4.20240925.0':
- resolution: {integrity: sha512-KpqyRWvanEuXgBTKYFzRp4NsWOEcswxjsPRSre1zYQcODmc8PUrraVHQUmgvkJgv3FzB+vI9xm7J6oE4MmZHCA==}
+ '@cloudflare/workers-types@4.20241022.0':
+ resolution: {integrity: sha512-1zOAw5QIDKItzGatzCrEpfLOB1AuMTwVqKmbw9B9eBfCUGRFNfJYMrJxIwcse9EmKahsQt2GruqU00pY/GyXgg==}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
@@ -1601,16 +1590,16 @@ packages:
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
+ '@eslint/core@0.7.0':
+ resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.11.1':
- resolution: {integrity: sha512-/qu+TWz8WwPWc7/HcIJKi+c+MOm46GdVaSlTTQcaqaL53+GsoA6MxWp5PtTx48qbSP7ylM1Kn7nhvkugfJvRSA==}
+ '@eslint/js@9.13.0':
+ resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.4':
@@ -1634,12 +1623,20 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ '@humanfs/core@0.19.0':
+ resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.5':
+ resolution: {integrity: sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==}
+ engines: {node: '>=18.18.0'}
+
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.0':
- resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
engines: {node: '>=18.18'}
'@img/sharp-darwin-arm64@0.33.5':
@@ -1747,8 +1744,8 @@ packages:
cpu: [x64]
os: [win32]
- '@inox-tools/astro-when@0.2.3':
- resolution: {integrity: sha512-W81a9YuTYo21q3TKess+2cVGo/SkX+CppysTzgSo91tKVuA2CweBDkIE5eqx1hYJF1ulhgyBMNtQKj/+e01b9g==}
+ '@inox-tools/astro-when@0.2.4':
+ resolution: {integrity: sha512-A1urUbru+Ni7UnsWui0Cq3rGXE75XsiVmU3vmJXhA9duQ4JyIYxLZALDSsqsT0pAzBrUWokZ09fALJ5eJUPtZQ==}
peerDependencies:
astro: ^4
@@ -1977,17 +1974,8 @@ packages:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
- '@rollup/pluginutils@5.1.0':
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
- peerDependenciesMeta:
- rollup:
- optional: true
-
- '@rollup/pluginutils@5.1.2':
- resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -1995,103 +1983,107 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.22.5':
- resolution: {integrity: sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==}
+ '@rollup/rollup-android-arm-eabi@4.24.3':
+ resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.22.5':
- resolution: {integrity: sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==}
+ '@rollup/rollup-android-arm64@4.24.3':
+ resolution: {integrity: sha512-iAHpft/eQk9vkWIV5t22V77d90CRofgR2006UiCjHcHJFVI1E0oBkQIAbz+pLtthFw3hWEmVB4ilxGyBf48i2Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.22.5':
- resolution: {integrity: sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==}
+ '@rollup/rollup-darwin-arm64@4.24.3':
+ resolution: {integrity: sha512-QPW2YmkWLlvqmOa2OwrfqLJqkHm7kJCIMq9kOz40Zo9Ipi40kf9ONG5Sz76zszrmIZZ4hgRIkez69YnTHgEz1w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.22.5':
- resolution: {integrity: sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==}
+ '@rollup/rollup-darwin-x64@4.24.3':
+ resolution: {integrity: sha512-KO0pN5x3+uZm1ZXeIfDqwcvnQ9UEGN8JX5ufhmgH5Lz4ujjZMAnxQygZAVGemFWn+ZZC0FQopruV4lqmGMshow==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.22.5':
- resolution: {integrity: sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==}
+ '@rollup/rollup-freebsd-arm64@4.24.3':
+ resolution: {integrity: sha512-CsC+ZdIiZCZbBI+aRlWpYJMSWvVssPuWqrDy/zi9YfnatKKSLFCe6fjna1grHuo/nVaHG+kiglpRhyBQYRTK4A==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.24.3':
+ resolution: {integrity: sha512-F0nqiLThcfKvRQhZEzMIXOQG4EeX61im61VYL1jo4eBxv4aZRmpin6crnBJQ/nWnCsjH5F6J3W6Stdm0mBNqBg==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
+ resolution: {integrity: sha512-KRSFHyE/RdxQ1CSeOIBVIAxStFC/hnBgVcaiCkQaVC+EYDtTe4X7z5tBkFyRoBgUGtB6Xg6t9t2kulnX6wJc6A==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.22.5':
- resolution: {integrity: sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==}
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
+ resolution: {integrity: sha512-h6Q8MT+e05zP5BxEKz0vi0DhthLdrNEnspdLzkoFqGwnmOzakEHSlXfVyA4HJ322QtFy7biUAVFPvIDEDQa6rw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.22.5':
- resolution: {integrity: sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==}
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
+ resolution: {integrity: sha512-fKElSyXhXIJ9pqiYRqisfirIo2Z5pTTve5K438URf08fsypXrEkVmShkSfM8GJ1aUyvjakT+fn2W7Czlpd/0FQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.22.5':
- resolution: {integrity: sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==}
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
+ resolution: {integrity: sha512-YlddZSUk8G0px9/+V9PVilVDC6ydMz7WquxozToozSnfFK6wa6ne1ATUjUvjin09jp34p84milxlY5ikueoenw==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.22.5':
- resolution: {integrity: sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
+ resolution: {integrity: sha512-yNaWw+GAO8JjVx3s3cMeG5Esz1cKVzz8PkTJSfYzE5u7A+NvGmbVFEHP+BikTIyYWuz0+DX9kaA3pH9Sqxp69g==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.22.5':
- resolution: {integrity: sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==}
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
+ resolution: {integrity: sha512-lWKNQfsbpv14ZCtM/HkjCTm4oWTKTfxPmr7iPfp3AHSqyoTz5AgLemYkWLwOBWc+XxBbrU9SCokZP0WlBZM9lA==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.22.5':
- resolution: {integrity: sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
+ resolution: {integrity: sha512-HoojGXTC2CgCcq0Woc/dn12wQUlkNyfH0I1ABK4Ni9YXyFQa86Fkt2Q0nqgLfbhkyfQ6003i3qQk9pLh/SpAYw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.22.5':
- resolution: {integrity: sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==}
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
+ resolution: {integrity: sha512-mnEOh4iE4USSccBOtcrjF5nj+5/zm6NcNhbSEfR3Ot0pxBwvEn5QVUXcuOwwPkapDtGZ6pT02xLoPaNv06w7KQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.22.5':
- resolution: {integrity: sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==}
+ '@rollup/rollup-linux-x64-musl@4.24.3':
+ resolution: {integrity: sha512-rMTzawBPimBQkG9NKpNHvquIUTQPzrnPxPbCY1Xt+mFkW7pshvyIS5kYgcf74goxXOQk0CP3EoOC1zcEezKXhw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.22.5':
- resolution: {integrity: sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==}
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
+ resolution: {integrity: sha512-2lg1CE305xNvnH3SyiKwPVsTVLCg4TmNCF1z7PSHX2uZY2VbUpdkgAllVoISD7JO7zu+YynpWNSKAtOrX3AiuA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.22.5':
- resolution: {integrity: sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==}
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
+ resolution: {integrity: sha512-9SjYp1sPyxJsPWuhOCX6F4jUMXGbVVd5obVpoVEi8ClZqo52ViZewA6eFz85y8ezuOA+uJMP5A5zo6Oz4S5rVQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.22.5':
- resolution: {integrity: sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==}
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
+ resolution: {integrity: sha512-HGZgRFFYrMrP3TJlq58nR1xy8zHKId25vhmm5S9jETEfDf6xybPxsavFTJaufe2zgOGYJBskGlj49CwtEuFhWQ==}
cpu: [x64]
os: [win32]
- '@shikijs/core@1.16.3':
- resolution: {integrity: sha512-yETIvrETCeC39gSPIiSADmjri9FwKmxz0QvONMtTIUYlKZe90CJkvcjPksayC2VQOtzOJonEiULUa8v8crUQvA==}
-
- '@shikijs/core@1.22.0':
- resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==}
+ '@shikijs/core@1.22.2':
+ resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
- '@shikijs/engine-javascript@1.22.0':
- resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==}
+ '@shikijs/engine-javascript@1.22.2':
+ resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
- '@shikijs/engine-oniguruma@1.22.0':
- resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==}
+ '@shikijs/engine-oniguruma@1.22.2':
+ resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
- '@shikijs/types@1.22.0':
- resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==}
-
- '@shikijs/vscode-textmate@9.2.2':
- resolution: {integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==}
+ '@shikijs/types@1.22.2':
+ resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
@@ -2120,9 +2112,6 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
-
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -2159,11 +2148,11 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@18.19.54':
- resolution: {integrity: sha512-+BRgt0G5gYjTvdLac9sIeE0iZcJxi4Jc4PV5EUzqi+88jmQLr+fRZdv2tCTV7IHKSGxM6SaLoOXQWWUiLUItMw==}
+ '@types/node@18.19.62':
+ resolution: {integrity: sha512-UOGhw+yZV/icyM0qohQVh3ktpY40Sp7tdTW7HxG3pTd7AiMrlFlAJNUrGK9t5mdW0+ViQcFV74zCSIx9ZJpncA==}
- '@types/node@20.16.10':
- resolution: {integrity: sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==}
+ '@types/node@20.17.4':
+ resolution: {integrity: sha512-Fi1Bj8qTJr4f1FDdHFR7oMlOawEYSzkHNdBJK+aRjcDDNHwEV3jPPjuZP2Lh2QNgXeqzM8Y+U6b6urKAog2rZw==}
'@types/node@22.4.1':
resolution: {integrity: sha512-1tbpb9325+gPnKK0dMm+/LMriX0vKxf6RnB0SZUqfyVkQ4fMgUSySqhxE/y8Jvs4NyF1yHzTfG9KlnkIODxPKg==}
@@ -2174,9 +2163,6 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
-
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
@@ -2192,8 +2178,8 @@ packages:
'@types/unist@3.0.2':
resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
- '@typescript-eslint/eslint-plugin@8.8.0':
- resolution: {integrity: sha512-wORFWjU30B2WJ/aXBfOm1LX9v9nyt9D3jsSOxC3cCaTQGCW5k4jNpmjFv3U7p/7s4yvdjHzwtv2Sd2dOyhjS0A==}
+ '@typescript-eslint/eslint-plugin@8.12.2':
+ resolution: {integrity: sha512-gQxbxM8mcxBwaEmWdtLCIGLfixBMHhQjBqR8sVWNTPpcj45WlYL2IObS/DNMLH1DBP0n8qz+aiiLTGfopPEebw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -2203,8 +2189,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.8.0':
- resolution: {integrity: sha512-uEFUsgR+tl8GmzmLjRqz+VrDv4eoaMqMXW7ruXfgThaAShO9JTciKpEsB+TvnfFfbg5IpujgMXVV36gOJRLtZg==}
+ '@typescript-eslint/parser@8.12.2':
+ resolution: {integrity: sha512-MrvlXNfGPLH3Z+r7Tk+Z5moZAc0dzdVjTgUgwsdGweH7lydysQsnSww3nAmsq8blFuRD5VRlAr9YdEFw3e6PBw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -2213,12 +2199,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@8.8.0':
- resolution: {integrity: sha512-EL8eaGC6gx3jDd8GwEFEV091210U97J0jeEHrAYvIYosmEGet4wJ+g0SYmLu+oRiAwbSA5AVrt6DxLHfdd+bUg==}
+ '@typescript-eslint/scope-manager@8.12.2':
+ resolution: {integrity: sha512-gPLpLtrj9aMHOvxJkSbDBmbRuYdtiEbnvO25bCMza3DhMjTQw0u7Y1M+YR5JPbMsXXnSPuCf5hfq0nEkQDL/JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.8.0':
- resolution: {integrity: sha512-IKwJSS7bCqyCeG4NVGxnOP6lLT9Okc3Zj8hLO96bpMkJab+10HIfJbMouLrlpyOr3yrQ1cA413YPFiGd1mW9/Q==}
+ '@typescript-eslint/type-utils@8.12.2':
+ resolution: {integrity: sha512-bwuU4TAogPI+1q/IJSKuD4shBLc/d2vGcRT588q+jzayQyjVK2X6v/fbR4InY2U2sgf8MEvVCqEWUzYzgBNcGQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -2226,12 +2212,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@8.8.0':
- resolution: {integrity: sha512-QJwc50hRCgBd/k12sTykOJbESe1RrzmX6COk8Y525C9l7oweZ+1lw9JiU56im7Amm8swlz00DRIlxMYLizr2Vw==}
+ '@typescript-eslint/types@8.12.2':
+ resolution: {integrity: sha512-VwDwMF1SZ7wPBUZwmMdnDJ6sIFk4K4s+ALKLP6aIQsISkPv8jhiw65sAK6SuWODN/ix+m+HgbYDkH+zLjrzvOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.8.0':
- resolution: {integrity: sha512-ZaMJwc/0ckLz5DaAZ+pNLmHv8AMVGtfWxZe/x2JVEkD5LnmhWiQMMcYT7IY7gkdJuzJ9P14fRy28lUrlDSWYdw==}
+ '@typescript-eslint/typescript-estree@8.12.2':
+ resolution: {integrity: sha512-mME5MDwGe30Pq9zKPvyduyU86PH7aixwqYR2grTglAdB+AN8xXQ1vFGpYaUSJ5o5P/5znsSBeNcs5g5/2aQwow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -2239,24 +2225,24 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@8.8.0':
- resolution: {integrity: sha512-QE2MgfOTem00qrlPgyByaCHay9yb1+9BjnMFnSFkUKQfu7adBXDTnCAivURnuPPAG/qiB+kzKkZKmKfaMT0zVg==}
+ '@typescript-eslint/utils@8.12.2':
+ resolution: {integrity: sha512-UTTuDIX3fkfAz6iSVa5rTuSfWIYZ6ATtEocQ/umkRSyC9O919lbZ8dcH7mysshrCdrAM03skJOEYaBugxN+M6A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- '@typescript-eslint/visitor-keys@8.8.0':
- resolution: {integrity: sha512-8mq51Lx6Hpmd7HnA2fcHQo3YgfX1qbccxQOgZcb4tvasu//zXRaA1j5ZRFeCw/VRAdFi4mRM9DnZw0Nu0Q2d1g==}
+ '@typescript-eslint/visitor-keys@8.12.2':
+ resolution: {integrity: sha512-PChz8UaKQAVNHghsHcPyx1OMHoFRUEA7rJSK/mDhdq85bk+PLsUHUBqTQTFt18VJZbmxBovM65fezlheQRsSDA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@vercel/analytics@1.3.1':
- resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==}
+ '@vercel/analytics@1.3.2':
+ resolution: {integrity: sha512-n/Ws7skBbW+fUBMeg+jrT30+GP00jTHvCcL4fuVrShuML0uveEV/4vVUdvqEVnDgXIGfLm0GXW5EID2mCcRXhg==}
peerDependencies:
next: '>= 13'
- react: ^18 || ^19
+ react: ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
next:
optional: true
@@ -2266,30 +2252,30 @@ packages:
'@vercel/edge@1.1.2':
resolution: {integrity: sha512-wt5SnhsMahWX8U9ZZhFUQoiXhMn/CUxA5xeMdZX1cwyOL1ZbDR3rNI8HRT9RSU73nDxeF6jlnqJyp/0Jy0VM2A==}
- '@vercel/nft@0.27.4':
- resolution: {integrity: sha512-Rioz3LJkEKicKCi9BSyc1RXZ5R6GmXosFMeBSThh6msWSOiArKhb7c75MiWwZEgPL7x0/l3TAfH/l0cxKNuUFA==}
+ '@vercel/nft@0.27.5':
+ resolution: {integrity: sha512-b2A7M+4yMHdWKY7xCC+kBEcnMrpaSE84CnuauTjhKKoCEeej0byJMAB8h/RBVnw/HdZOAFVcxR0Izr3LL24FwA==}
engines: {node: '>=16'}
hasBin: true
- '@volar/kit@2.4.0':
- resolution: {integrity: sha512-uqwtPKhrbnP+3f8hs+ltDYXLZ6Wdbs54IzkaPocasI4aBhqWLht5qXctE1MqpZU52wbH359E0u9nhxEFmyon+w==}
+ '@volar/kit@2.4.6':
+ resolution: {integrity: sha512-OaMtpmLns6IYD1nOSd0NdG/F5KzJ7Jr4B7TLeb4byPzu+ExuuRVeO56Dn1C7Frnw6bGudUQd90cpQAmxdB+RlQ==}
peerDependencies:
typescript: '*'
- '@volar/language-core@2.4.0':
- resolution: {integrity: sha512-FTla+khE+sYK0qJP+6hwPAAUwiNHVMph4RUXpxf/FIPKUP61NFrVZorml4mjFShnueR2y9/j8/vnh09YwVdH7A==}
+ '@volar/language-core@2.4.6':
+ resolution: {integrity: sha512-FxUfxaB8sCqvY46YjyAAV6c3mMIq/NWQMVvJ+uS4yxr1KzOvyg61gAuOnNvgCvO4TZ7HcLExBEsWcDu4+K4E8A==}
- '@volar/language-server@2.4.0':
- resolution: {integrity: sha512-rmGIjAxWekWQiGH97Mosb4juiD/hfFYNQKV5Py9r7vDOLSkbIwRhITbwHm88NJKs8P6TNc6w/PfBXN6yjKadJg==}
+ '@volar/language-server@2.4.6':
+ resolution: {integrity: sha512-ARIbMXapEUPj9UFbZqWqw/iZ+ZuxUcY+vY212+2uutZVo/jrdzhLPu2TfZd9oB9akX8XXuslinT3051DyHLLRA==}
- '@volar/language-service@2.4.0':
- resolution: {integrity: sha512-4P3yeQXIL68mLfS3n6P3m02IRg3GnLHUU9k/1PCHEfm5FG9bySkDOc72dbBn2vAa2BxOqm18bmmZXrsWuQ5AOw==}
+ '@volar/language-service@2.4.6':
+ resolution: {integrity: sha512-wNeEVBgBKgpP1MfMYPrgTf1K8nhOGEh3ac0+9n6ECyk2N03+j0pWCpQ2i99mRWT/POvo1PgizDmYFH8S67bZOA==}
- '@volar/source-map@2.4.0':
- resolution: {integrity: sha512-2ceY8/NEZvN6F44TXw2qRP6AQsvCYhV2bxaBPWxV9HqIfkbRydSksTFObCF1DBDNBfKiZTS8G/4vqV6cvjdOIQ==}
+ '@volar/source-map@2.4.6':
+ resolution: {integrity: sha512-Nsh7UW2ruK+uURIPzjJgF0YRGP5CX9nQHypA2OMqdM2FKy7rh+uv3XgPnWPw30JADbKvZ5HuBzG4gSbVDYVtiw==}
- '@volar/typescript@2.4.0':
- resolution: {integrity: sha512-9zx3lQWgHmVd+JRRAHUSRiEhe4TlzL7U7e6ulWXOxHH/WNYxzKwCvZD7WYWEZFdw4dHfTD9vUR0yPQO6GilCaQ==}
+ '@volar/typescript@2.4.6':
+ resolution: {integrity: sha512-NMIrA7y5OOqddL9VtngPWYmdQU03htNKFtAYidbYfWA0TOhyGVd9tfcP4TsLWQ+RBWDZCbBqsr8xzU0ZOxYTCQ==}
'@vscode/emmet-helper@2.9.3':
resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==}
@@ -2318,8 +2304,8 @@ packages:
resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
engines: {node: '>=0.4.0'}
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -2348,10 +2334,6 @@ packages:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -2378,9 +2360,6 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@5.3.0:
- resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
-
aria-query@5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
@@ -2407,11 +2386,6 @@ packages:
peerDependencies:
astro: ^4.12.0
- astro@5.0.0-beta.2:
- resolution: {integrity: sha512-PJlq/pbUwme7PXsFiVCRmrQO3ANh/hnhoQ81vxguwHJOJDwEUOYurJ9JgCJIyMCvRvfOP6G3FKnp3Y640b0B/w==}
- engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
- hasBin: true
-
astro@5.0.0-beta.5:
resolution: {integrity: sha512-ONR2ngPbmi0CX1aCjvjLqvkcqakqYhHXTtTQAooADOxopyXS/l0WajHGsED75K4c7LMR0blDzBC9PPcfn0Oo0w==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'}
@@ -2464,10 +2438,6 @@ packages:
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- boxen@7.1.1:
- resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==}
- engines: {node: '>=14.16'}
-
boxen@8.0.1:
resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==}
engines: {node: '>=18'}
@@ -2482,8 +2452,8 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.24.0:
+ resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2499,16 +2469,12 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camelcase@7.0.1:
- resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==}
- engines: {node: '>=14.16'}
-
camelcase@8.0.0:
resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
engines: {node: '>=16'}
- caniuse-lite@1.0.30001643:
- resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==}
+ caniuse-lite@1.0.30001667:
+ resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
capnp-ts@0.7.0:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
@@ -2516,10 +2482,6 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
-
chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
@@ -2551,6 +2513,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
@@ -2570,14 +2536,6 @@ packages:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
- cli-cursor@5.0.0:
- resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
- engines: {node: '>=18'}
-
- cli-spinners@2.9.2:
- resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
- engines: {node: '>=6'}
-
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
@@ -2586,16 +2544,10 @@ packages:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -2644,8 +2596,8 @@ packages:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
cookie@0.7.2:
@@ -2680,6 +2632,9 @@ packages:
dataloader@1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -2741,9 +2696,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==}
@@ -2778,22 +2730,15 @@ packages:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
- dset@3.1.3:
- resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==}
- engines: {node: '>=4'}
-
dset@3.1.4:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.0:
- resolution: {integrity: sha512-Vb3xHHYnLseK8vlMJQKJYXJ++t4u1/qJ3vykuVrVjvdiOEhYyT1AuP4x03G8EnPmYvYOhe9T+dADTmthjRQMkA==}
+ electron-to-chromium@1.5.33:
+ resolution: {integrity: sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==}
emmet@2.4.7:
resolution: {integrity: sha512-O5O5QNqtdlnQM2bmKHtJgyChcrFMgQuulI+WdiOw2NArzprUqqxUW6bgYtKvzKgrsYpuLWalOkdhNP+1jluhCA==}
@@ -2804,9 +2749,6 @@ packages:
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
-
encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
@@ -2864,10 +2806,6 @@ packages:
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- escape-string-regexp@1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
-
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -2906,20 +2844,20 @@ packages:
peerDependencies:
eslint: '>=8.44.0'
- eslint-scope@8.0.2:
- resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
+ eslint-scope@8.1.0:
+ resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.0.0:
- resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
+ eslint-visitor-keys@4.1.0:
+ resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.11.1:
- resolution: {integrity: sha512-MobhYKIoAO1s1e4VUrgx1l1Sk2JBR/Gqjjgw8+mfgoLE2xwsHur4gdfTxyTgShrhvdVFTaJSgMiQBl1jv/AWxg==}
+ eslint@9.13.0:
+ resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -2928,8 +2866,8 @@ packages:
jiti:
optional: true
- espree@10.1.0:
- resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
+ espree@10.2.0:
+ resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@4.0.1:
@@ -2977,14 +2915,10 @@ packages:
resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
engines: {node: '>=6'}
- express@4.21.0:
- resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==}
+ express@4.21.1:
+ resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
engines: {node: '>= 0.10.0'}
- extend-shallow@2.0.1:
- resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
- engines: {node: '>=0.10.0'}
-
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -3162,14 +3096,6 @@ packages:
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- gray-matter@4.0.3:
- resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
- engines: {node: '>=6.0'}
-
- has-flag@3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
-
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -3192,9 +3118,6 @@ packages:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
- hast-util-from-html@2.0.1:
- resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==}
-
hast-util-from-html@2.0.3:
resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==}
@@ -3210,9 +3133,6 @@ packages:
hast-util-raw@9.0.2:
resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==}
- hast-util-to-html@9.0.0:
- resolution: {integrity: sha512-IVGhNgg7vANuUA2XKrT6sOIIPgaYZnmLx3l/CCOAK0PtgfoHrZwX7jCSYyFxHTrGmC6S9q8aQQekjp4JPZF+cw==}
-
hast-util-to-html@9.0.3:
resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==}
@@ -3310,10 +3230,6 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
- is-extendable@0.1.1:
- resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
- engines: {node: '>=0.10.0'}
-
is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
@@ -3331,18 +3247,10 @@ packages:
engines: {node: '>=14.16'}
hasBin: true
- is-interactive@2.0.0:
- resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
- engines: {node: '>=12'}
-
is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
-
is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
@@ -3355,14 +3263,6 @@ packages:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
- is-unicode-supported@1.3.0:
- resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
- engines: {node: '>=12'}
-
- is-unicode-supported@2.0.0:
- resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
- engines: {node: '>=18'}
-
is-what@4.1.16:
resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==}
engines: {node: '>=12.13'}
@@ -3378,6 +3278,9 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ itty-time@1.0.6:
+ resolution: {integrity: sha512-+P8IZaLLBtFv8hCkIjcymZOp4UJ+xW6bSlQsXGqrkmJh7vSiMFSlNne0mCYagEE0N7HDNR5jJBRxwN0oYv61Rw==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -3393,9 +3296,9 @@ packages:
resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==}
engines: {node: '>=12.0.0'}
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.1:
@@ -3427,10 +3330,6 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- kind-of@6.0.3:
- resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
- engines: {node: '>=0.10.0'}
-
kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
@@ -3467,10 +3366,6 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- log-symbols@6.0.0:
- resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
- engines: {node: '>=18'}
-
long@5.2.3:
resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
@@ -3486,9 +3381,6 @@ packages:
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
-
magic-string@0.30.12:
resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
@@ -3673,12 +3565,8 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- mimic-function@5.0.1:
- resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
- engines: {node: '>=18'}
-
- miniflare@3.20240925.0:
- resolution: {integrity: sha512-2LmQbKHf0n6ertUKhT+Iltixi53giqDH7P71+wCir3OnGyXIODqYwOECx1mSDNhYThpxM2dav8UdPn6SQiMoXw==}
+ miniflare@3.20241022.0:
+ resolution: {integrity: sha512-x9Fbq1Hmz1f0osIT9Qmj78iX4UpCP2EqlZnA/tzj/3+I49vc3Kq0fNqSSKplcdf6HlCHdL3fOBicmreQF4BUUQ==}
engines: {node: '>=16.13'}
hasBin: true
@@ -3766,12 +3654,20 @@ packages:
resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
hasBin: true
- node-mocks-http@1.16.0:
- resolution: {integrity: sha512-jmDjsr87ugnZ4nqBeX8ccMB1Fn04qc5Fz45XgrneJerWGV0VqS+wpu/zVkwv8LDAYHljDy5FzNvRJaOzEW9Dyw==}
+ node-mocks-http@1.16.1:
+ resolution: {integrity: sha512-Q2m5bmIE1KFeeKI6OsSn+c4XDara5NWnUJgzqnIkhiCNukYX+fqu0ADSeKOlpWtbCwgRnJ69F+7RUiQltzTKXA==}
engines: {node: '>=14'}
+ peerDependencies:
+ '@types/express': ^4.17.21 || ^5.0.0
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/express':
+ optional: true
+ '@types/node':
+ optional: true
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
nopt@5.0.0:
resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==}
@@ -3815,13 +3711,6 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
- onetime@7.0.0:
- resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
- engines: {node: '>=18'}
-
- oniguruma-to-js@0.3.3:
- resolution: {integrity: sha512-m90/WEhgs8g4BxG37+Nu3YrMfJDs2YXtYtIllhsEPR+wP3+K4EZk6dDUvy2v2K4MNFDDOYKL4/yqYPXDqyozTQ==}
-
oniguruma-to-js@0.4.3:
resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==}
@@ -3833,10 +3722,6 @@ packages:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
- ora@8.1.0:
- resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==}
- engines: {node: '>=18'}
-
os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
@@ -3949,6 +3834,10 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -4052,6 +3941,10 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
recast@0.23.9:
resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
engines: {node: '>= 4'}
@@ -4076,15 +3969,9 @@ packages:
rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
- rehype-stringify@10.0.0:
- resolution: {integrity: sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==}
-
rehype-stringify@10.0.1:
resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==}
- rehype@13.0.1:
- resolution: {integrity: sha512-AcSLS2mItY+0fYu9xKxOu1LhUZeBZZBx8//5HKzF+0XP+eP8+6a5MXn2+DW2kfXR6Dtp1FEXMVrjyKAcvcU8vg==}
-
rehype@13.0.2:
resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==}
@@ -4094,9 +3981,6 @@ packages:
remark-parse@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
- remark-rehype@11.1.0:
- resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==}
-
remark-rehype@11.1.1:
resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
@@ -4141,10 +4025,6 @@ packages:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
- restore-cursor@5.1.0:
- resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
- engines: {node: '>=18'}
-
retext-latin@4.0.0:
resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==}
@@ -4176,8 +4056,8 @@ packages:
rollup-pluginutils@2.8.2:
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
- rollup@4.22.5:
- resolution: {integrity: sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==}
+ rollup@4.24.3:
+ resolution: {integrity: sha512-HBW896xR5HGmoksbi3JBDtmVzWiPAYqp7wip50hjQ67JbDz61nyoMPdqu1DvVW9asYb2M65Z20ZHsyJCMqMyDg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -4200,10 +4080,6 @@ packages:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
engines: {node: ^14.0.0 || >=16.0.0}
- section-matter@1.0.0:
- resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
- engines: {node: '>=4'}
-
selfsigned@2.4.1:
resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
engines: {node: '>=10'}
@@ -4221,6 +4097,10 @@ packages:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
+ send@0.19.1:
+ resolution: {integrity: sha512-p4rRk4f23ynFEfcD9LA0xRYngj+IyGiEYyqqOak8kaN0TvNmuxC2dcVeBn62GpCeR2CpWqyHCNScTP91QbAVFg==}
+ engines: {node: '>= 0.8.0'}
+
seroval-plugins@1.1.1:
resolution: {integrity: sha512-qNSy1+nUj7hsCOon7AO4wdAIo9P0jrzAMp18XhiOzA6/uO5TKtP7ScozVJ8T293oRIvi5wyCHSM4TrJo/c/GJA==}
engines: {node: '>=10'}
@@ -4271,11 +4151,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.16.3:
- resolution: {integrity: sha512-GypUE+fEd06FqDs63LSAVlmq7WsahhPQU62cgZxGF+TJT5LjD2k7HTxXj4/CKOVuMM3+wWQ1t4Y5oooeJFRRBQ==}
-
- shiki@1.22.0:
- resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==}
+ shiki@1.22.2:
+ resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
shimmer@1.2.1:
resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
@@ -4301,8 +4178,8 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- solid-js@1.9.1:
- resolution: {integrity: sha512-Gd6QWRFfO2XKKZqVK4YwbhWZkr0jWw1dYHOt+VYebomeyikGP0SuMflf42XcDuU9HAEYDArFJIYsBNjlE7iZsw==}
+ solid-js@1.9.3:
+ resolution: {integrity: sha512-5ba3taPoZGt9GY3YlsCB24kCg0Lv/rie/HTD4kG6h4daZZz7+yK02xn8Vx8dLYBc9i6Ps5JwAbEiqjmKaLB3Ag==}
solid-refresh@0.6.3:
resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==}
@@ -4341,10 +4218,6 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- stdin-discarder@0.2.2:
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
- engines: {node: '>=18'}
-
stoppable@1.1.0:
resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
engines: {node: '>=4', npm: '>=6'}
@@ -4353,10 +4226,6 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
@@ -4375,10 +4244,6 @@ packages:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
- strip-bom-string@1.0.0:
- resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
- engines: {node: '>=0.10.0'}
-
strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
@@ -4394,10 +4259,6 @@ packages:
suf-log@2.5.3:
resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==}
- supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
-
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -4427,17 +4288,13 @@ packages:
tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
- tinyexec@0.3.0:
- resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==}
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -4461,16 +4318,6 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
- tsconfck@3.1.3:
- resolution: {integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==}
- engines: {node: ^18 || >=20}
- hasBin: true
- peerDependencies:
- typescript: ^5.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
-
tsconfck@3.1.4:
resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==}
engines: {node: ^18 || >=20}
@@ -4484,48 +4331,44 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- turbo-darwin-64@2.1.3:
- resolution: {integrity: sha512-ouJOm0g0YyoBuhmikEujVCBGo3Zr0lbSOWFIsQtWUTItC88F2w2byhjtsYGPXQwMlTbXwmoBU2lOCfWNkeEwHQ==}
+ turbo-darwin-64@2.2.3:
+ resolution: {integrity: sha512-Rcm10CuMKQGcdIBS3R/9PMeuYnv6beYIHqfZFeKWVYEWH69sauj4INs83zKMTUiZJ3/hWGZ4jet9AOwhsssLyg==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.1.3:
- resolution: {integrity: sha512-j2FOJsK4LAOtHQlb3Oom0yWB/Vi0nF1ljInr311mVzHoFAJRZtfW2fRvdZRb/lBUwjSp8be58qWHzANIcrA0OA==}
+ turbo-darwin-arm64@2.2.3:
+ resolution: {integrity: sha512-+EIMHkuLFqUdJYsA3roj66t9+9IciCajgj+DVek+QezEdOJKcRxlvDOS2BUaeN8kEzVSsNiAGnoysFWYw4K0HA==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.1.3:
- resolution: {integrity: sha512-ubRHkI1gSel7H7wsmxKK8C9UlLWqg/2dkCC88LFupaK6TKgvBKqDqA0Z1M9C/escK0Jsle2k0H8bybV9OYIl4Q==}
+ turbo-linux-64@2.2.3:
+ resolution: {integrity: sha512-UBhJCYnqtaeOBQLmLo8BAisWbc9v9daL9G8upLR+XGj6vuN/Nz6qUAhverN4Pyej1g4Nt1BhROnj6GLOPYyqxQ==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.1.3:
- resolution: {integrity: sha512-LffUL+e5wv7BtD6DgnM2kKOlDkMo2eRjhbAjVnrCD3wi2ug0tl6NDzajnHHjtaMyOnIf4AvzSKdLWsBxafGBQA==}
+ turbo-linux-arm64@2.2.3:
+ resolution: {integrity: sha512-hJYT9dN06XCQ3jBka/EWvvAETnHRs3xuO/rb5bESmDfG+d9yQjeTMlhRXKrr4eyIMt6cLDt1LBfyi+6CQ+VAwQ==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@2.1.3:
- resolution: {integrity: sha512-S9SvcZZoaq5jKr6kA6eF7/xgQhVn8Vh7PVy5lono9zybvhyL4eY++y2PaLToIgL8G9IcbLmgOC73ExNjFBg9XQ==}
+ turbo-windows-64@2.2.3:
+ resolution: {integrity: sha512-NPrjacrZypMBF31b4HE4ROg4P3nhMBPHKS5WTpMwf7wydZ8uvdEHpESVNMOtqhlp857zbnKYgP+yJF30H3N2dQ==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.1.3:
- resolution: {integrity: sha512-twlEo8lRrGbrR6T/ZklUIquW3IlFCEtywklgVA81aIrSBm56+GEVpSrHhIlsx1hiYeSNrs+GpDwZGe+V7fvEVQ==}
+ turbo-windows-arm64@2.2.3:
+ resolution: {integrity: sha512-fnNrYBCqn6zgKPKLHu4sOkihBI/+0oYFr075duRxqUZ+1aLWTAGfHZLgjVeLh3zR37CVzuerGIPWAEkNhkWEIw==}
cpu: [arm64]
os: [win32]
- turbo@2.1.3:
- resolution: {integrity: sha512-lY0yj2GH2a2a3NExZ3rGe+rHUVeFE2aXuRAue57n+08E7Z7N7YCmynju0kPC1grAQzERmoLpKrmzmWd+PNiADw==}
+ turbo@2.2.3:
+ resolution: {integrity: sha512-5lDvSqIxCYJ/BAd6rQGK/AzFRhBkbu4JHVMLmGh/hCb7U3CqSnr5Tjwfy9vc+/5wG2DJ6wttgAaA7MoCgvBKZQ==}
hasBin: true
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-fest@2.19.0:
- resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
- engines: {node: '>=12.20'}
-
type-fest@4.26.1:
resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
@@ -4540,8 +4383,8 @@ packages:
typescript-auto-import-cache@0.3.3:
resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==}
- typescript-eslint@8.8.0:
- resolution: {integrity: sha512-BjIT/VwJ8+0rVO01ZQ2ZVnjE1svFBiRczcpr1t1Yxt7sT25VSbPfrJtDsQ8uQTy2pilX5nI9gwxhUyLULNentw==}
+ typescript-eslint@8.12.2:
+ resolution: {integrity: sha512-UbuVUWSrHVR03q9CWx+JDHeO6B/Hr9p4U5lRH++5tq/EbFq1faYZe50ZSBePptgfIKLEti0aPQ3hFgnPVcd8ZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -4549,8 +4392,8 @@ packages:
typescript:
optional: true
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -4571,8 +4414,8 @@ packages:
resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
engines: {node: '>=18.17'}
- unenv-nightly@2.0.0-20240919-125358-9a64854:
- resolution: {integrity: sha512-XjsgUTrTHR7iw+k/SRTNjh6EQgwpC9voygnoCJo5kh4hKqsSDHUW84MhL9EsHTNfLctvVBHaSw8e2k3R2fKXsQ==}
+ unenv-nightly@2.0.0-20241024-111401-d4156ac:
+ resolution: {integrity: sha512-xJO1hfY+Te+/XnfCYrCbFbRcgu6XEODND1s5wnVbaBCkuQX7JXF7fHEXPrukFE2j8EOH848P8QN19VO47XN8hw==}
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
@@ -4657,8 +4500,8 @@ packages:
'@testing-library/jest-dom':
optional: true
- vite@5.4.8:
- resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -4727,14 +4570,6 @@ packages:
vite:
optional: true
- vitefu@1.0.2:
- resolution: {integrity: sha512-0/iAvbXyM3RiPPJ4lyD4w6Mjgtf4ejTK6TPvTNG3H32PLwuT0N/ZjJLiXug7ETE/LWtTeHw9WRv7uX/tIKYyKg==}
- peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
- peerDependenciesMeta:
- vite:
- optional: true
-
vitefu@1.0.3:
resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==}
peerDependencies:
@@ -4893,10 +4728,6 @@ packages:
wide-align@1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
- widest-line@4.0.1:
- resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
- engines: {node: '>=12'}
-
widest-line@5.0.0:
resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==}
engines: {node: '>=18'}
@@ -4905,17 +4736,17 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- workerd@1.20240925.0:
- resolution: {integrity: sha512-/Jj6+yLwfieZGEt3Kx4+5MoufuC3g/8iFaIh4MPBNGJOGYmdSKXvgCqz09m2+tVCYnysRfbq2zcbVxJRBfOCqQ==}
+ workerd@1.20241022.0:
+ resolution: {integrity: sha512-jyGXsgO9DRcJyx6Ovv7gUyDPc3UYC2i/E0p9GFUg6GUzpldw4Y93y9kOmdfsOnKZ3+lY53veSiUniiBPE6Q2NQ==}
engines: {node: '>=16'}
hasBin: true
- wrangler@3.78.12:
- resolution: {integrity: sha512-a/xk/N04IvOGk9J+BLkiFg42GDyPS+0BiJimbrHsbX+CDr8Iqq3HNMEyQld+6zbmq01u/gmc8S7GKVR9vDx4+g==}
+ wrangler@3.84.0:
+ resolution: {integrity: sha512-EA8oh7YQmZ3kD+a5MId9reHKGgXpodmsPWMLriE5gT5YmG9is66n0AA2tyLzQZKZXmgbo6JyGxvCDPcLeb/X0w==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20240925.0
+ '@cloudflare/workers-types': ^4.20241022.0
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
@@ -4924,10 +4755,6 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
wrap-ansi@9.0.0:
resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
engines: {node: '>=18'}
@@ -5003,13 +4830,8 @@ packages:
youch@3.3.3:
resolution: {integrity: sha512-qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==}
- zod-to-json-schema@3.23.2:
- resolution: {integrity: sha512-uSt90Gzc/tUfyNqxnjlfBs8W6WSGpNBv0rVsNxP/BVSMHMKGdthPYff4xtCHYloJGM0CFxFsb3NbC0eqPhfImw==}
- peerDependencies:
- zod: ^3.23.3
-
- zod-to-json-schema@3.23.3:
- resolution: {integrity: sha512-TYWChTxKQbRJp5ST22o/Irt9KC5nj7CdBKYB/AosCRdj/wxEMvv4NNaj9XVUHDOIp53ZxArGhnw5HMZziPFjog==}
+ zod-to-json-schema@3.23.5:
+ resolution: {integrity: sha512-5wlSS0bXfF/BrL4jPAbz9da5hDlDptdEppYfe+x4eIJ7jioqKG9uUxOwPzqof09u/XeVdrgFu29lZi+8XNDJtA==}
peerDependencies:
zod: ^3.23.3
@@ -5032,13 +4854,12 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@astrojs/check@0.9.3(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.2)':
+ '@astrojs/check@0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.3)':
dependencies:
- '@astrojs/language-server': 2.14.1(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.2)
- chokidar: 3.6.0
- fast-glob: 3.3.2
+ '@astrojs/language-server': 2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.3)
+ chokidar: 4.0.1
kleur: 4.1.5
- typescript: 5.6.2
+ typescript: 5.6.3
yargs: 17.7.2
transitivePeerDependencies:
- prettier
@@ -5048,25 +4869,24 @@ snapshots:
'@astrojs/internal-helpers@0.4.1': {}
- '@astrojs/language-server@2.14.1(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.2)':
+ '@astrojs/language-server@2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.3.3)(typescript@5.6.3)':
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/yaml2ts': 0.2.1
'@jridgewell/sourcemap-codec': 1.5.0
- '@volar/kit': 2.4.0(typescript@5.6.2)
- '@volar/language-core': 2.4.0
- '@volar/language-server': 2.4.0
- '@volar/language-service': 2.4.0
- '@volar/typescript': 2.4.0
+ '@volar/kit': 2.4.6(typescript@5.6.3)
+ '@volar/language-core': 2.4.6
+ '@volar/language-server': 2.4.6
+ '@volar/language-service': 2.4.6
fast-glob: 3.3.2
muggle-string: 0.4.1
- volar-service-css: 0.0.61(@volar/language-service@2.4.0)
- volar-service-emmet: 0.0.61(@volar/language-service@2.4.0)
- volar-service-html: 0.0.61(@volar/language-service@2.4.0)
- volar-service-prettier: 0.0.61(@volar/language-service@2.4.0)(prettier@3.3.3)
- volar-service-typescript: 0.0.61(@volar/language-service@2.4.0)
- volar-service-typescript-twoslash-queries: 0.0.61(@volar/language-service@2.4.0)
- volar-service-yaml: 0.0.61(@volar/language-service@2.4.0)
+ volar-service-css: 0.0.61(@volar/language-service@2.4.6)
+ volar-service-emmet: 0.0.61(@volar/language-service@2.4.6)
+ volar-service-html: 0.0.61(@volar/language-service@2.4.6)
+ volar-service-prettier: 0.0.61(@volar/language-service@2.4.6)(prettier@3.3.3)
+ volar-service-typescript: 0.0.61(@volar/language-service@2.4.6)
+ volar-service-typescript-twoslash-queries: 0.0.61(@volar/language-service@2.4.6)
+ volar-service-yaml: 0.0.61(@volar/language-service@2.4.6)
vscode-html-languageservice: 5.3.0
vscode-uri: 3.0.8
optionalDependencies:
@@ -5075,29 +4895,6 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@astrojs/markdown-remark@6.0.0-beta.1':
- dependencies:
- '@astrojs/prism': 3.1.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
- mdast-util-definitions: 6.0.0
- rehype-raw: 7.0.0
- rehype-stringify: 10.0.0
- remark-gfm: 4.0.0
- remark-parse: 11.0.0
- remark-rehype: 11.1.0
- remark-smartypants: 3.0.2
- shiki: 1.16.3
- 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/markdown-remark@6.0.0-beta.2':
dependencies:
'@astrojs/prism': 3.1.0
@@ -5113,7 +4910,7 @@ snapshots:
remark-parse: 11.0.0
remark-rehype: 11.1.1
remark-smartypants: 3.0.2
- shiki: 1.22.0
+ shiki: 1.22.2
unified: 11.0.5
unist-util-remove-position: 5.0.0
unist-util-visit: 5.0.0
@@ -5126,10 +4923,10 @@ snapshots:
dependencies:
prismjs: 1.29.0
- '@astrojs/solid-js@4.4.2(solid-js@1.9.1)(vite@6.0.0-beta.2(@types/node@22.4.1))':
+ '@astrojs/solid-js@4.4.2(solid-js@1.9.3)(vite@6.0.0-beta.2(@types/node@22.4.1))':
dependencies:
- solid-js: 1.9.1
- vite-plugin-solid: 2.10.2(solid-js@1.9.1)(vite@6.0.0-beta.2(@types/node@22.4.1))
+ solid-js: 1.9.3
+ vite-plugin-solid: 2.10.2(solid-js@1.9.3)(vite@6.0.0-beta.2(@types/node@22.4.1))
transitivePeerDependencies:
- '@testing-library/jest-dom'
- supports-color
@@ -5140,7 +4937,7 @@ snapshots:
ci-info: 4.0.0
debug: 4.3.7
dlv: 1.1.3
- dset: 3.1.3
+ dset: 3.1.4
is-docker: 3.0.0
is-wsl: 3.1.0
which-pm-runs: 1.1.0
@@ -5153,25 +4950,26 @@ snapshots:
dependencies:
yaml: 2.5.0
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
picocolors: 1.1.0
- '@babel/compat-data@7.25.2': {}
+ '@babel/compat-data@7.25.9': {}
- '@babel/core@7.25.2':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helpers': 7.25.0
- '@babel/parser': 7.25.4
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
debug: 4.3.7
gensync: 1.0.0-beta.2
@@ -5180,139 +4978,124 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.25.5':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
- '@babel/helper-compilation-targets@7.25.2':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ '@babel/compat-data': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
'@babel/helper-module-imports@7.18.6':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.4
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-plugin-utils@7.24.8': {}
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-simple-access@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.4
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-string-parser@7.24.8': {}
-
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helpers@7.25.0':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/highlight@7.24.7':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
- '@babel/parser@7.25.4':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/runtime@7.24.1':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.25.0':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- '@babel/traverse@7.25.4':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.5
- '@babel/parser': 7.25.4
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.25.6':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@biomejs/biome@1.9.2':
+ '@biomejs/biome@1.9.4':
optionalDependencies:
- '@biomejs/cli-darwin-arm64': 1.9.2
- '@biomejs/cli-darwin-x64': 1.9.2
- '@biomejs/cli-linux-arm64': 1.9.2
- '@biomejs/cli-linux-arm64-musl': 1.9.2
- '@biomejs/cli-linux-x64': 1.9.2
- '@biomejs/cli-linux-x64-musl': 1.9.2
- '@biomejs/cli-win32-arm64': 1.9.2
- '@biomejs/cli-win32-x64': 1.9.2
+ '@biomejs/cli-darwin-arm64': 1.9.4
+ '@biomejs/cli-darwin-x64': 1.9.4
+ '@biomejs/cli-linux-arm64': 1.9.4
+ '@biomejs/cli-linux-arm64-musl': 1.9.4
+ '@biomejs/cli-linux-x64': 1.9.4
+ '@biomejs/cli-linux-x64-musl': 1.9.4
+ '@biomejs/cli-win32-arm64': 1.9.4
+ '@biomejs/cli-win32-x64': 1.9.4
- '@biomejs/cli-darwin-arm64@1.9.2':
+ '@biomejs/cli-darwin-arm64@1.9.4':
optional: true
- '@biomejs/cli-darwin-x64@1.9.2':
+ '@biomejs/cli-darwin-x64@1.9.4':
optional: true
- '@biomejs/cli-linux-arm64-musl@1.9.2':
+ '@biomejs/cli-linux-arm64-musl@1.9.4':
optional: true
- '@biomejs/cli-linux-arm64@1.9.2':
+ '@biomejs/cli-linux-arm64@1.9.4':
optional: true
- '@biomejs/cli-linux-x64-musl@1.9.2':
+ '@biomejs/cli-linux-x64-musl@1.9.4':
optional: true
- '@biomejs/cli-linux-x64@1.9.2':
+ '@biomejs/cli-linux-x64@1.9.4':
optional: true
- '@biomejs/cli-win32-arm64@1.9.2':
+ '@biomejs/cli-win32-arm64@1.9.4':
optional: true
- '@biomejs/cli-win32-x64@1.9.2':
+ '@biomejs/cli-win32-x64@1.9.4':
optional: true
'@changesets/apply-release-plan@7.0.5':
@@ -5352,7 +5135,7 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.27.8':
+ '@changesets/cli@2.27.9':
dependencies:
'@changesets/apply-release-plan': 7.0.5
'@changesets/assemble-release-plan': 6.0.4
@@ -5369,14 +5152,12 @@ snapshots:
'@changesets/types': 6.0.0
'@changesets/write': 0.3.2
'@manypkg/get-packages': 1.1.3
- '@types/semver': 7.5.8
ansi-colors: 4.1.3
ci-info: 3.9.0
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
mri: 1.2.0
- outdent: 0.5.0
p-limit: 2.3.0
package-manager-detector: 0.2.0
picocolors: 1.1.0
@@ -5478,27 +5259,27 @@ snapshots:
dependencies:
mime: 3.0.0
- '@cloudflare/workerd-darwin-64@1.20240925.0':
+ '@cloudflare/workerd-darwin-64@1.20241022.0':
optional: true
- '@cloudflare/workerd-darwin-arm64@1.20240925.0':
+ '@cloudflare/workerd-darwin-arm64@1.20241022.0':
optional: true
- '@cloudflare/workerd-linux-64@1.20240925.0':
+ '@cloudflare/workerd-linux-64@1.20241022.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20240925.0':
+ '@cloudflare/workerd-linux-arm64@1.20241022.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20240925.0':
+ '@cloudflare/workerd-windows-64@1.20241022.0':
optional: true
- '@cloudflare/workers-shared@0.5.4':
+ '@cloudflare/workers-shared@0.7.0':
dependencies:
mime: 3.0.0
zod: 3.23.8
- '@cloudflare/workers-types@4.20240925.0': {}
+ '@cloudflare/workers-types@4.20241022.0': {}
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -5821,9 +5602,9 @@ snapshots:
'@esbuild/win32-x64@0.24.0':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.11.1)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.13.0)':
dependencies:
- eslint: 9.11.1
+ eslint: 9.13.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.11.0': {}
@@ -5836,13 +5617,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
+ '@eslint/core@0.7.0': {}
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
debug: 4.3.7
- espree: 10.1.0
+ espree: 10.2.0
globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.0
@@ -5852,7 +5633,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.11.1': {}
+ '@eslint/js@9.13.0': {}
'@eslint/object-schema@2.1.4': {}
@@ -5874,9 +5655,16 @@ snapshots:
protobufjs: 7.4.0
yargs: 17.7.2
+ '@humanfs/core@0.19.0': {}
+
+ '@humanfs/node@0.16.5':
+ dependencies:
+ '@humanfs/core': 0.19.0
+ '@humanwhocodes/retry': 0.3.1
+
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.0': {}
+ '@humanwhocodes/retry@0.3.1': {}
'@img/sharp-darwin-arm64@0.33.5':
optionalDependencies:
@@ -5953,10 +5741,10 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@inox-tools/astro-when@0.2.3(astro@5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2))':
+ '@inox-tools/astro-when@0.2.4(astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3))':
dependencies:
- astro: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
- astro-integration-kit: 0.16.1(astro@5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2))
+ astro: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
+ astro-integration-kit: 0.16.1(astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3))
debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -6244,135 +6032,126 @@ snapshots:
estree-walker: 2.0.2
picomatch: 2.3.1
- '@rollup/pluginutils@5.1.0(rollup@4.22.5)':
- dependencies:
- '@types/estree': 1.0.5
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.22.5
-
- '@rollup/pluginutils@5.1.2(rollup@4.22.5)':
+ '@rollup/pluginutils@5.1.3(rollup@4.24.3)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 4.22.5
+ rollup: 4.24.3
- '@rollup/rollup-android-arm-eabi@4.22.5':
+ '@rollup/rollup-android-arm-eabi@4.24.3':
optional: true
- '@rollup/rollup-android-arm64@4.22.5':
+ '@rollup/rollup-android-arm64@4.24.3':
optional: true
- '@rollup/rollup-darwin-arm64@4.22.5':
+ '@rollup/rollup-darwin-arm64@4.24.3':
optional: true
- '@rollup/rollup-darwin-x64@4.22.5':
+ '@rollup/rollup-darwin-x64@4.24.3':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.22.5':
+ '@rollup/rollup-freebsd-arm64@4.24.3':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.22.5':
+ '@rollup/rollup-freebsd-x64@4.24.3':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.22.5':
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.3':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.22.5':
+ '@rollup/rollup-linux-arm-musleabihf@4.24.3':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.22.5':
+ '@rollup/rollup-linux-arm64-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.22.5':
+ '@rollup/rollup-linux-arm64-musl@4.24.3':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.22.5':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.22.5':
+ '@rollup/rollup-linux-riscv64-gnu@4.24.3':
optional: true
- '@rollup/rollup-linux-x64-musl@4.22.5':
+ '@rollup/rollup-linux-s390x-gnu@4.24.3':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.22.5':
+ '@rollup/rollup-linux-x64-gnu@4.24.3':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.22.5':
+ '@rollup/rollup-linux-x64-musl@4.24.3':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.22.5':
+ '@rollup/rollup-win32-arm64-msvc@4.24.3':
optional: true
- '@shikijs/core@1.16.3':
- dependencies:
- '@shikijs/vscode-textmate': 9.2.2
- '@types/hast': 3.0.4
- oniguruma-to-js: 0.3.3
- regex: 4.3.2
+ '@rollup/rollup-win32-ia32-msvc@4.24.3':
+ optional: true
- '@shikijs/core@1.22.0':
+ '@rollup/rollup-win32-x64-msvc@4.24.3':
+ optional: true
+
+ '@shikijs/core@1.22.2':
dependencies:
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/engine-javascript@1.22.0':
+ '@shikijs/engine-javascript@1.22.2':
dependencies:
- '@shikijs/types': 1.22.0
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
- '@shikijs/engine-oniguruma@1.22.0':
+ '@shikijs/engine-oniguruma@1.22.2':
dependencies:
- '@shikijs/types': 1.22.0
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
- '@shikijs/types@1.22.0':
+ '@shikijs/types@1.22.2':
dependencies:
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
- '@shikijs/vscode-textmate@9.2.2': {}
-
'@shikijs/vscode-textmate@9.3.0': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__traverse@7.20.5':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
+ optional: true
'@types/connect@3.4.38':
dependencies:
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
+ optional: true
'@types/cookie@0.6.0': {}
@@ -6380,16 +6159,15 @@ snapshots:
dependencies:
'@types/ms': 0.7.34
- '@types/estree@1.0.5': {}
-
'@types/estree@1.0.6': {}
'@types/express-serve-static-core@4.19.5':
dependencies:
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
'@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
+ optional: true
'@types/express@4.17.21':
dependencies:
@@ -6397,12 +6175,14 @@ snapshots:
'@types/express-serve-static-core': 4.19.5
'@types/qs': 6.9.15
'@types/serve-static': 1.15.7
+ optional: true
'@types/hast@3.0.4':
dependencies:
'@types/unist': 3.0.2
- '@types/http-errors@2.0.4': {}
+ '@types/http-errors@2.0.4':
+ optional: true
'@types/json-schema@7.0.15': {}
@@ -6420,15 +6200,15 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.16.10
+ '@types/node': 20.17.4
'@types/node@12.20.55': {}
- '@types/node@18.19.54':
+ '@types/node@18.19.62':
dependencies:
undici-types: 5.26.5
- '@types/node@20.16.10':
+ '@types/node@20.17.4':
dependencies:
undici-types: 6.19.6
@@ -6437,126 +6217,127 @@ snapshots:
undici-types: 6.19.6
optional: true
- '@types/qs@6.9.15': {}
-
- '@types/range-parser@1.2.7': {}
+ '@types/qs@6.9.15':
+ optional: true
- '@types/semver@7.5.8': {}
+ '@types/range-parser@1.2.7':
+ optional: true
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
'@types/send': 0.17.4
+ optional: true
'@types/server-destroy@1.0.4':
dependencies:
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
'@types/shimmer@1.2.0': {}
'@types/unist@3.0.2': {}
- '@typescript-eslint/eslint-plugin@8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.8.0
- '@typescript-eslint/type-utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.0
- eslint: 9.11.1
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/type-utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
+ eslint: 9.13.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.8.0
- '@typescript-eslint/types': 8.8.0
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.8.0
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.2
debug: 4.3.7
- eslint: 9.11.1
+ eslint: 9.13.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.8.0':
+ '@typescript-eslint/scope-manager@8.12.2':
dependencies:
- '@typescript-eslint/types': 8.8.0
- '@typescript-eslint/visitor-keys': 8.8.0
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
- '@typescript-eslint/type-utils@8.8.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/type-utils@8.12.2(eslint@9.13.0)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
debug: 4.3.7
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- '@typescript-eslint/types@8.8.0': {}
+ '@typescript-eslint/types@8.12.2': {}
- '@typescript-eslint/typescript-estree@8.8.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@8.12.2(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.8.0
- '@typescript-eslint/visitor-keys': 8.8.0
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/visitor-keys': 8.12.2
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.8.0(eslint@9.11.1)(typescript@5.6.2)':
+ '@typescript-eslint/utils@8.12.2(eslint@9.13.0)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1)
- '@typescript-eslint/scope-manager': 8.8.0
- '@typescript-eslint/types': 8.8.0
- '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.6.2)
- eslint: 9.11.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0)
+ '@typescript-eslint/scope-manager': 8.12.2
+ '@typescript-eslint/types': 8.12.2
+ '@typescript-eslint/typescript-estree': 8.12.2(typescript@5.6.3)
+ eslint: 9.13.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@8.8.0':
+ '@typescript-eslint/visitor-keys@8.12.2':
dependencies:
- '@typescript-eslint/types': 8.8.0
+ '@typescript-eslint/types': 8.12.2
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@vercel/analytics@1.3.1':
+ '@vercel/analytics@1.3.2':
dependencies:
server-only: 0.0.1
'@vercel/edge@1.1.2': {}
- '@vercel/nft@0.27.4':
+ '@vercel/nft@0.27.5':
dependencies:
'@mapbox/node-pre-gyp': 1.0.11
'@rollup/pluginutils': 4.2.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.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
@@ -6569,24 +6350,24 @@ snapshots:
- encoding
- supports-color
- '@volar/kit@2.4.0(typescript@5.6.2)':
+ '@volar/kit@2.4.6(typescript@5.6.3)':
dependencies:
- '@volar/language-service': 2.4.0
- '@volar/typescript': 2.4.0
+ '@volar/language-service': 2.4.6
+ '@volar/typescript': 2.4.6
typesafe-path: 0.2.2
- typescript: 5.6.2
+ typescript: 5.6.3
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/language-core@2.4.0':
+ '@volar/language-core@2.4.6':
dependencies:
- '@volar/source-map': 2.4.0
+ '@volar/source-map': 2.4.6
- '@volar/language-server@2.4.0':
+ '@volar/language-server@2.4.6':
dependencies:
- '@volar/language-core': 2.4.0
- '@volar/language-service': 2.4.0
- '@volar/typescript': 2.4.0
+ '@volar/language-core': 2.4.6
+ '@volar/language-service': 2.4.6
+ '@volar/typescript': 2.4.6
path-browserify: 1.0.1
request-light: 0.7.0
vscode-languageserver: 9.0.1
@@ -6594,18 +6375,18 @@ snapshots:
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/language-service@2.4.0':
+ '@volar/language-service@2.4.6':
dependencies:
- '@volar/language-core': 2.4.0
+ '@volar/language-core': 2.4.6
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- '@volar/source-map@2.4.0': {}
+ '@volar/source-map@2.4.6': {}
- '@volar/typescript@2.4.0':
+ '@volar/typescript@2.4.6':
dependencies:
- '@volar/language-core': 2.4.0
+ '@volar/language-core': 2.4.6
path-browserify: 1.0.1
vscode-uri: 3.0.8
@@ -6626,17 +6407,17 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-attributes@1.9.5(acorn@8.12.1):
+ acorn-import-attributes@1.9.5(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk@8.3.2: {}
- acorn@8.12.1: {}
+ acorn@8.14.0: {}
agent-base@6.0.2:
dependencies:
@@ -6668,10 +6449,6 @@ snapshots:
ansi-regex@6.0.1: {}
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
-
ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
@@ -6696,10 +6473,6 @@ snapshots:
argparse@2.0.1: {}
- aria-query@5.3.0:
- dependencies:
- dequal: 2.0.3
-
aria-query@5.3.2: {}
array-flatten@1.1.1: {}
@@ -6716,155 +6489,71 @@ snapshots:
dependencies:
tslib: 2.6.2
- astro-integration-kit@0.16.1(astro@5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)):
+ astro-integration-kit@0.16.1(astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)):
dependencies:
- astro: 5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2)
+ astro: 5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3)
pathe: 1.1.2
recast: 0.23.9
- astro@5.0.0-beta.2(@types/node@18.19.54)(rollup@4.22.5)(typescript@5.6.2):
- dependencies:
- '@astrojs/compiler': 2.10.3
- '@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 6.0.0-beta.1
- '@astrojs/telemetry': 3.1.0
- '@babel/types': 7.25.6
- '@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.0(rollup@4.22.5)
- '@types/cookie': 0.6.0
- acorn: 8.12.1
- aria-query: 5.3.0
- axobject-query: 4.1.0
- boxen: 7.1.1
- ci-info: 4.0.0
- clsx: 2.1.1
- common-ancestor-path: 1.0.1
- cookie: 0.6.0
- cssesc: 3.0.0
- debug: 4.3.7
- deterministic-object-hash: 2.0.2
- devalue: 5.0.0
- diff: 5.2.0
- dlv: 1.1.3
- dset: 3.1.3
- es-module-lexer: 1.5.4
- esbuild: 0.21.5
- estree-walker: 3.0.3
- fast-glob: 3.3.2
- fastq: 1.17.1
- 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.11
- magicast: 0.3.5
- micromatch: 4.0.8
- mrmime: 2.0.0
- neotraverse: 0.6.18
- ora: 8.1.0
- p-limit: 6.1.0
- p-queue: 8.0.1
- preferred-pm: 4.0.0
- prompts: 2.4.2
- rehype: 13.0.1
- semver: 7.6.3
- shiki: 1.16.3
- string-width: 7.2.0
- strip-ansi: 7.1.0
- tinyexec: 0.3.0
- tsconfck: 3.1.3(typescript@5.6.2)
- unist-util-visit: 5.0.0
- vfile: 6.0.3
- vite: 5.4.8(@types/node@18.19.54)
- vitefu: 1.0.2(vite@5.4.8(@types/node@18.19.54))
- which-pm: 3.0.0
- xxhash-wasm: 1.0.2
- yargs-parser: 21.1.1
- zod: 3.23.8
- zod-to-json-schema: 3.23.2(zod@3.23.8)
- zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8)
- optionalDependencies:
- sharp: 0.33.5
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - rollup
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - typescript
-
- astro@5.0.0-beta.2(@types/node@20.16.10)(rollup@4.22.5)(typescript@5.6.2):
+ astro@5.0.0-beta.5(@types/node@18.19.62)(rollup@4.24.3)(typescript@5.6.3):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 6.0.0-beta.1
+ '@astrojs/markdown-remark': 6.0.0-beta.2
'@astrojs/telemetry': 3.1.0
- '@babel/types': 7.25.6
'@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.0(rollup@4.22.5)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
'@types/cookie': 0.6.0
- acorn: 8.12.1
- aria-query: 5.3.0
+ acorn: 8.14.0
+ aria-query: 5.3.2
axobject-query: 4.1.0
- boxen: 7.1.1
+ boxen: 8.0.1
ci-info: 4.0.0
clsx: 2.1.1
common-ancestor-path: 1.0.1
- cookie: 0.6.0
+ cookie: 0.7.2
cssesc: 3.0.0
debug: 4.3.7
deterministic-object-hash: 2.0.2
- devalue: 5.0.0
+ devalue: 5.1.1
diff: 5.2.0
dlv: 1.1.3
- dset: 3.1.3
+ dset: 3.1.4
es-module-lexer: 1.5.4
esbuild: 0.21.5
estree-walker: 3.0.3
fast-glob: 3.3.2
- fastq: 1.17.1
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.11
+ magic-string: 0.30.12
magicast: 0.3.5
micromatch: 4.0.8
mrmime: 2.0.0
neotraverse: 0.6.18
- ora: 8.1.0
p-limit: 6.1.0
p-queue: 8.0.1
preferred-pm: 4.0.0
prompts: 2.4.2
- rehype: 13.0.1
+ rehype: 13.0.2
semver: 7.6.3
- shiki: 1.16.3
- string-width: 7.2.0
- strip-ansi: 7.1.0
- tinyexec: 0.3.0
- tsconfck: 3.1.3(typescript@5.6.2)
+ shiki: 1.22.2
+ tinyexec: 0.3.1
+ tsconfck: 3.1.4(typescript@5.6.3)
unist-util-visit: 5.0.0
vfile: 6.0.3
- vite: 5.4.8(@types/node@20.16.10)
- vitefu: 1.0.2(vite@5.4.8(@types/node@20.16.10))
+ vite: 6.0.0-beta.2(@types/node@18.19.62)
+ vitefu: 1.0.3(vite@6.0.0-beta.2(@types/node@18.19.62))
which-pm: 3.0.0
xxhash-wasm: 1.0.2
yargs-parser: 21.1.1
+ yocto-spinner: 0.1.1
zod: 3.23.8
- zod-to-json-schema: 3.23.2(zod@3.23.8)
- zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8)
+ zod-to-json-schema: 3.23.5(zod@3.23.8)
+ zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8)
optionalDependencies:
sharp: 0.33.5
transitivePeerDependencies:
@@ -6880,70 +6569,65 @@ snapshots:
- terser
- typescript
- astro@5.0.0-beta.2(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2):
+ astro@5.0.0-beta.5(@types/node@20.17.4)(rollup@4.24.3)(typescript@5.6.3):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.1
- '@astrojs/markdown-remark': 6.0.0-beta.1
+ '@astrojs/markdown-remark': 6.0.0-beta.2
'@astrojs/telemetry': 3.1.0
- '@babel/types': 7.25.6
'@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.0(rollup@4.22.5)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
'@types/cookie': 0.6.0
- acorn: 8.12.1
- aria-query: 5.3.0
+ acorn: 8.14.0
+ aria-query: 5.3.2
axobject-query: 4.1.0
- boxen: 7.1.1
+ boxen: 8.0.1
ci-info: 4.0.0
clsx: 2.1.1
common-ancestor-path: 1.0.1
- cookie: 0.6.0
+ cookie: 0.7.2
cssesc: 3.0.0
debug: 4.3.7
deterministic-object-hash: 2.0.2
- devalue: 5.0.0
+ devalue: 5.1.1
diff: 5.2.0
dlv: 1.1.3
- dset: 3.1.3
+ dset: 3.1.4
es-module-lexer: 1.5.4
esbuild: 0.21.5
estree-walker: 3.0.3
fast-glob: 3.3.2
- fastq: 1.17.1
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.11
+ magic-string: 0.30.12
magicast: 0.3.5
micromatch: 4.0.8
mrmime: 2.0.0
neotraverse: 0.6.18
- ora: 8.1.0
p-limit: 6.1.0
p-queue: 8.0.1
preferred-pm: 4.0.0
prompts: 2.4.2
- rehype: 13.0.1
+ rehype: 13.0.2
semver: 7.6.3
- shiki: 1.16.3
- string-width: 7.2.0
- strip-ansi: 7.1.0
- tinyexec: 0.3.0
- tsconfck: 3.1.3(typescript@5.6.2)
+ shiki: 1.22.2
+ tinyexec: 0.3.1
+ tsconfck: 3.1.4(typescript@5.6.3)
unist-util-visit: 5.0.0
vfile: 6.0.3
- vite: 5.4.8(@types/node@22.4.1)
- vitefu: 1.0.2(vite@5.4.8(@types/node@22.4.1))
+ vite: 6.0.0-beta.2(@types/node@20.17.4)
+ vitefu: 1.0.3(vite@6.0.0-beta.2(@types/node@20.17.4))
which-pm: 3.0.0
xxhash-wasm: 1.0.2
yargs-parser: 21.1.1
+ yocto-spinner: 0.1.1
zod: 3.23.8
- zod-to-json-schema: 3.23.2(zod@3.23.8)
- zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8)
+ zod-to-json-schema: 3.23.5(zod@3.23.8)
+ zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8)
optionalDependencies:
sharp: 0.33.5
transitivePeerDependencies:
@@ -6959,16 +6643,16 @@ snapshots:
- terser
- typescript
- astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.22.5)(typescript@5.6.2):
+ astro@5.0.0-beta.5(@types/node@22.4.1)(rollup@4.24.3)(typescript@5.6.3):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.1
'@astrojs/markdown-remark': 6.0.0-beta.2
'@astrojs/telemetry': 3.1.0
'@oslojs/encoding': 1.1.0
- '@rollup/pluginutils': 5.1.2(rollup@4.22.5)
+ '@rollup/pluginutils': 5.1.3(rollup@4.24.3)
'@types/cookie': 0.6.0
- acorn: 8.12.1
+ acorn: 8.14.0
aria-query: 5.3.2
axobject-query: 4.1.0
boxen: 8.0.1
@@ -7004,9 +6688,9 @@ snapshots:
prompts: 2.4.2
rehype: 13.0.2
semver: 7.6.3
- shiki: 1.22.0
- tinyexec: 0.3.0
- tsconfck: 3.1.4(typescript@5.6.2)
+ shiki: 1.22.2
+ tinyexec: 0.3.1
+ tsconfck: 3.1.4(typescript@5.6.3)
unist-util-visit: 5.0.0
vfile: 6.0.3
vite: 6.0.0-beta.2(@types/node@22.4.1)
@@ -7016,8 +6700,8 @@ snapshots:
yargs-parser: 21.1.1
yocto-spinner: 0.1.1
zod: 3.23.8
- zod-to-json-schema: 3.23.3(zod@3.23.8)
- zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8)
+ zod-to-json-schema: 3.23.5(zod@3.23.8)
+ zod-to-ts: 1.2.0(typescript@5.6.3)(zod@3.23.8)
optionalDependencies:
sharp: 0.33.5
transitivePeerDependencies:
@@ -7037,19 +6721,19 @@ snapshots:
axobject-query@4.1.0: {}
- babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.25.2):
+ babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/types': 7.25.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
- babel-preset-solid@1.8.16(@babel/core@7.25.2):
+ babel-preset-solid@1.8.16(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.26.0)
bail@2.0.2: {}
@@ -7088,17 +6772,6 @@ snapshots:
boolbase@1.0.0: {}
- boxen@7.1.1:
- dependencies:
- ansi-align: 3.0.1
- camelcase: 7.0.1
- chalk: 5.3.0
- cli-boxes: 3.0.0
- string-width: 5.1.2
- type-fest: 2.19.0
- widest-line: 4.0.1
- wrap-ansi: 8.1.0
-
boxen@8.0.1:
dependencies:
ansi-align: 3.0.1
@@ -7123,12 +6796,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.23.2:
+ browserslist@4.24.0:
dependencies:
- caniuse-lite: 1.0.30001643
- electron-to-chromium: 1.5.0
- node-releases: 2.0.14
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ caniuse-lite: 1.0.30001667
+ electron-to-chromium: 1.5.33
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.0(browserslist@4.24.0)
bytes@3.1.2: {}
@@ -7142,11 +6815,9 @@ snapshots:
callsites@3.1.0: {}
- camelcase@7.0.1: {}
-
camelcase@8.0.0: {}
- caniuse-lite@1.0.30001643: {}
+ caniuse-lite@1.0.30001667: {}
capnp-ts@0.7.0:
dependencies:
@@ -7157,12 +6828,6 @@ snapshots:
ccount@2.0.1: {}
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
-
chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
@@ -7213,6 +6878,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
+
chownr@2.0.0: {}
ci-info@3.9.0: {}
@@ -7223,12 +6892,6 @@ snapshots:
cli-boxes@3.0.0: {}
- cli-cursor@5.0.0:
- dependencies:
- restore-cursor: 5.1.0
-
- cli-spinners@2.9.2: {}
-
cliui@8.0.1:
dependencies:
string-width: 4.2.3
@@ -7237,16 +6900,10 @@ snapshots:
clsx@2.1.1: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
color-string@1.9.1:
@@ -7283,7 +6940,7 @@ snapshots:
cookie@0.5.0: {}
- cookie@0.6.0: {}
+ cookie@0.7.1: {}
cookie@0.7.2: {}
@@ -7317,6 +6974,8 @@ snapshots:
dataloader@1.4.0: {}
+ date-fns@4.1.0: {}
+
debug@2.6.9:
dependencies:
ms: 2.0.0
@@ -7357,8 +7016,6 @@ snapshots:
dependencies:
base-64: 1.0.0
- devalue@5.0.0: {}
-
devalue@5.1.1: {}
devlop@1.1.0:
@@ -7393,15 +7050,11 @@ snapshots:
dotenv@8.6.0: {}
- dset@3.1.3: {}
-
dset@3.1.4: {}
- eastasianwidth@0.2.0: {}
-
ee-first@1.1.1: {}
- electron-to-chromium@1.5.0: {}
+ electron-to-chromium@1.5.33: {}
emmet@2.4.7:
dependencies:
@@ -7412,8 +7065,6 @@ snapshots:
emoji-regex@8.0.0: {}
- emoji-regex@9.2.2: {}
-
encodeurl@1.0.2: {}
encodeurl@2.0.0: {}
@@ -7547,59 +7198,57 @@ snapshots:
escape-html@1.0.3: {}
- escape-string-regexp@1.0.5: {}
-
escape-string-regexp@4.0.0: {}
escape-string-regexp@5.0.0: {}
- eslint-config-prettier@9.1.0(eslint@9.11.1):
+ eslint-config-prettier@9.1.0(eslint@9.13.0):
dependencies:
- eslint: 9.11.1
+ eslint: 9.13.0
eslint-plugin-no-only-tests@3.3.0: {}
- eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.11.1))(eslint@9.11.1)(prettier@3.3.3):
+ eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.13.0))(eslint@9.13.0)(prettier@3.3.3):
dependencies:
- eslint: 9.11.1
+ eslint: 9.13.0
prettier: 3.3.3
prettier-linter-helpers: 1.0.0
synckit: 0.9.1
optionalDependencies:
- eslint-config-prettier: 9.1.0(eslint@9.11.1)
+ eslint-config-prettier: 9.1.0(eslint@9.13.0)
- eslint-plugin-regexp@2.6.0(eslint@9.11.1):
+ eslint-plugin-regexp@2.6.0(eslint@9.13.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0)
'@eslint-community/regexpp': 4.11.0
comment-parser: 1.4.1
- eslint: 9.11.1
+ eslint: 9.13.0
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
- eslint-scope@8.0.2:
+ eslint-scope@8.1.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.0.0: {}
+ eslint-visitor-keys@4.1.0: {}
- eslint@9.11.1:
+ eslint@9.13.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0)
'@eslint-community/regexpp': 4.11.0
'@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
+ '@eslint/core': 0.7.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.11.1
+ '@eslint/js': 9.13.0
'@eslint/plugin-kit': 0.2.0
+ '@humanfs/node': 0.16.5
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.3.0
- '@nodelib/fs.walk': 1.2.8
+ '@humanwhocodes/retry': 0.3.1
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
ajv: 6.12.6
@@ -7607,9 +7256,9 @@ snapshots:
cross-spawn: 7.0.3
debug: 4.3.7
escape-string-regexp: 4.0.0
- eslint-scope: 8.0.2
- eslint-visitor-keys: 4.0.0
- espree: 10.1.0
+ eslint-scope: 8.1.0
+ eslint-visitor-keys: 4.1.0
+ espree: 10.2.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -7619,22 +7268,20 @@ snapshots:
ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
json-stable-stringify-without-jsonify: 1.0.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
- espree@10.1.0:
+ espree@10.2.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
- eslint-visitor-keys: 4.0.0
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.1.0
esprima@4.0.1: {}
@@ -7654,7 +7301,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
@@ -7676,14 +7323,14 @@ snapshots:
exit-hook@2.2.1: {}
- express@4.21.0:
+ express@4.21.1:
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.6.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
@@ -7712,10 +7359,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- extend-shallow@2.0.1:
- dependencies:
- is-extendable: 0.1.1
-
extend@3.0.2: {}
extendable-error@0.1.7: {}
@@ -7902,15 +7545,6 @@ snapshots:
graphemer@1.4.0: {}
- gray-matter@4.0.3:
- dependencies:
- js-yaml: 3.14.1
- kind-of: 6.0.3
- section-matter: 1.0.0
- strip-bom-string: 1.0.0
-
- has-flag@3.0.0: {}
-
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
@@ -7927,15 +7561,6 @@ snapshots:
dependencies:
function-bind: 1.1.2
- hast-util-from-html@2.0.1:
- dependencies:
- '@types/hast': 3.0.4
- devlop: 1.1.0
- hast-util-from-parse5: 8.0.1
- parse5: 7.1.2
- vfile: 6.0.3
- vfile-message: 4.0.2
-
hast-util-from-html@2.0.3:
dependencies:
'@types/hast': 3.0.4
@@ -7980,21 +7605,6 @@ snapshots:
web-namespaces: 2.0.1
zwitch: 2.0.4
- hast-util-to-html@9.0.0:
- dependencies:
- '@types/hast': 3.0.4
- '@types/unist': 3.0.2
- ccount: 2.0.1
- comma-separated-tokens: 2.0.3
- hast-util-raw: 9.0.2
- hast-util-whitespace: 3.0.0
- html-void-elements: 3.0.0
- mdast-util-to-hast: 13.1.0
- property-information: 6.4.1
- space-separated-tokens: 2.0.2
- stringify-entities: 4.0.3
- zwitch: 2.0.4
-
hast-util-to-html@9.0.3:
dependencies:
'@types/hast': 3.0.4
@@ -8089,8 +7699,8 @@ snapshots:
import-in-the-middle@1.11.0:
dependencies:
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
cjs-module-lexer: 1.4.0
module-details-from-path: 1.0.3
@@ -8119,8 +7729,6 @@ snapshots:
is-docker@3.0.0: {}
- is-extendable@0.1.1: {}
-
is-extglob@2.1.1: {}
is-fullwidth-code-point@3.0.0: {}
@@ -8133,12 +7741,8 @@ snapshots:
dependencies:
is-docker: 3.0.0
- is-interactive@2.0.0: {}
-
is-number@7.0.0: {}
- is-path-inside@3.0.3: {}
-
is-plain-obj@4.1.0: {}
is-stream@3.0.0: {}
@@ -8147,10 +7751,6 @@ snapshots:
dependencies:
better-path-resolve: 1.0.0
- is-unicode-supported@1.3.0: {}
-
- is-unicode-supported@2.0.0: {}
-
is-what@4.1.16: {}
is-windows@1.0.2: {}
@@ -8161,6 +7761,8 @@ snapshots:
isexe@2.0.0: {}
+ itty-time@1.0.6: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -8174,7 +7776,7 @@ snapshots:
jsdoc-type-pratt-parser@4.1.0: {}
- jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -8198,8 +7800,6 @@ snapshots:
dependencies:
json-buffer: 3.0.1
- kind-of@6.0.3: {}
-
kleur@3.0.3: {}
kleur@4.1.5: {}
@@ -8232,11 +7832,6 @@ snapshots:
lodash@4.17.21: {}
- log-symbols@6.0.0:
- dependencies:
- chalk: 5.3.0
- is-unicode-supported: 1.3.0
-
long@5.2.3: {}
longest-streak@3.1.0: {}
@@ -8254,18 +7849,14 @@ snapshots:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.30.11:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.4
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
source-map-js: 1.2.0
make-dir@3.1.0:
@@ -8615,19 +8206,17 @@ snapshots:
mimic-fn@4.0.0: {}
- mimic-function@5.0.1: {}
-
- miniflare@3.20240925.0:
+ miniflare@3.20241022.0:
dependencies:
'@cspotcode/source-map-support': 0.8.1
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk: 8.3.2
capnp-ts: 0.7.0
exit-hook: 2.2.1
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.4
- workerd: 1.20240925.0
+ workerd: 1.20241022.0
ws: 8.18.0
youch: 3.3.3
zod: 3.23.8
@@ -8691,10 +8280,8 @@ snapshots:
node-gyp-build@4.8.1: {}
- node-mocks-http@1.16.0:
+ node-mocks-http@1.16.1(@types/express@4.17.21)(@types/node@18.19.62):
dependencies:
- '@types/express': 4.17.21
- '@types/node': 18.19.54
accepts: 1.3.8
content-disposition: 0.5.4
depd: 1.1.2
@@ -8705,8 +8292,11 @@ snapshots:
parseurl: 1.3.3
range-parser: 1.2.1
type-is: 1.6.18
+ optionalDependencies:
+ '@types/express': 4.17.21
+ '@types/node': 18.19.62
- node-releases@2.0.14: {}
+ node-releases@2.0.18: {}
nopt@5.0.0:
dependencies:
@@ -8747,12 +8337,6 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
- onetime@7.0.0:
- dependencies:
- mimic-function: 5.0.1
-
- oniguruma-to-js@0.3.3: {}
-
oniguruma-to-js@0.4.3:
dependencies:
regex: 4.3.2
@@ -8770,18 +8354,6 @@ snapshots:
type-check: 0.4.0
word-wrap: 1.2.5
- ora@8.1.0:
- dependencies:
- chalk: 5.3.0
- cli-cursor: 5.0.0
- cli-spinners: 2.9.2
- is-interactive: 2.0.0
- is-unicode-supported: 2.0.0
- log-symbols: 6.0.0
- stdin-discarder: 0.2.2
- string-width: 7.2.0
- strip-ansi: 7.1.0
-
os-tmpdir@1.0.2: {}
outdent@0.5.0: {}
@@ -8875,6 +8447,8 @@ snapshots:
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pify@4.0.1: {}
pkg-dir@4.2.0:
@@ -8941,7 +8515,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 20.16.10
+ '@types/node': 20.17.4
long: 5.2.3
proxy-addr@2.0.7:
@@ -8985,6 +8559,8 @@ snapshots:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
recast@0.23.9:
dependencies:
ast-types: 0.16.1
@@ -9009,7 +8585,7 @@ snapshots:
rehype-parse@9.0.0:
dependencies:
'@types/hast': 3.0.4
- hast-util-from-html: 2.0.1
+ hast-util-from-html: 2.0.3
unified: 11.0.5
rehype-raw@7.0.0:
@@ -9018,30 +8594,17 @@ snapshots:
hast-util-raw: 9.0.2
vfile: 6.0.3
- rehype-stringify@10.0.0:
- dependencies:
- '@types/hast': 3.0.4
- hast-util-to-html: 9.0.0
- unified: 11.0.5
-
rehype-stringify@10.0.1:
dependencies:
'@types/hast': 3.0.4
- hast-util-to-html: 9.0.0
- unified: 11.0.5
-
- rehype@13.0.1:
- dependencies:
- '@types/hast': 3.0.4
- rehype-parse: 9.0.0
- rehype-stringify: 10.0.0
+ hast-util-to-html: 9.0.3
unified: 11.0.5
rehype@13.0.2:
dependencies:
'@types/hast': 3.0.4
rehype-parse: 9.0.0
- rehype-stringify: 10.0.0
+ rehype-stringify: 10.0.1
unified: 11.0.5
remark-gfm@4.0.0:
@@ -9064,14 +8627,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- remark-rehype@11.1.0:
- dependencies:
- '@types/hast': 3.0.4
- '@types/mdast': 4.0.3
- mdast-util-to-hast: 13.1.0
- unified: 11.0.5
- vfile: 6.0.3
-
remark-rehype@11.1.1:
dependencies:
'@types/hast': 3.0.4
@@ -9121,11 +8676,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- restore-cursor@5.1.0:
- dependencies:
- onetime: 7.0.0
- signal-exit: 4.1.0
-
retext-latin@4.0.0:
dependencies:
'@types/nlcst': 2.0.3
@@ -9171,26 +8721,28 @@ snapshots:
dependencies:
estree-walker: 0.6.1
- rollup@4.22.5:
+ rollup@4.24.3:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.22.5
- '@rollup/rollup-android-arm64': 4.22.5
- '@rollup/rollup-darwin-arm64': 4.22.5
- '@rollup/rollup-darwin-x64': 4.22.5
- '@rollup/rollup-linux-arm-gnueabihf': 4.22.5
- '@rollup/rollup-linux-arm-musleabihf': 4.22.5
- '@rollup/rollup-linux-arm64-gnu': 4.22.5
- '@rollup/rollup-linux-arm64-musl': 4.22.5
- '@rollup/rollup-linux-powerpc64le-gnu': 4.22.5
- '@rollup/rollup-linux-riscv64-gnu': 4.22.5
- '@rollup/rollup-linux-s390x-gnu': 4.22.5
- '@rollup/rollup-linux-x64-gnu': 4.22.5
- '@rollup/rollup-linux-x64-musl': 4.22.5
- '@rollup/rollup-win32-arm64-msvc': 4.22.5
- '@rollup/rollup-win32-ia32-msvc': 4.22.5
- '@rollup/rollup-win32-x64-msvc': 4.22.5
+ '@rollup/rollup-android-arm-eabi': 4.24.3
+ '@rollup/rollup-android-arm64': 4.24.3
+ '@rollup/rollup-darwin-arm64': 4.24.3
+ '@rollup/rollup-darwin-x64': 4.24.3
+ '@rollup/rollup-freebsd-arm64': 4.24.3
+ '@rollup/rollup-freebsd-x64': 4.24.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.3
+ '@rollup/rollup-linux-arm64-gnu': 4.24.3
+ '@rollup/rollup-linux-arm64-musl': 4.24.3
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.3
+ '@rollup/rollup-linux-s390x-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-gnu': 4.24.3
+ '@rollup/rollup-linux-x64-musl': 4.24.3
+ '@rollup/rollup-win32-arm64-msvc': 4.24.3
+ '@rollup/rollup-win32-ia32-msvc': 4.24.3
+ '@rollup/rollup-win32-x64-msvc': 4.24.3
fsevents: 2.3.3
run-parallel@1.2.0:
@@ -9213,11 +8765,6 @@ snapshots:
refa: 0.12.1
regexp-ast-analysis: 0.7.1
- section-matter@1.0.0:
- dependencies:
- extend-shallow: 2.0.1
- kind-of: 6.0.3
-
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.11
@@ -9245,6 +8792,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ send@0.19.1:
+ dependencies:
+ debug: 2.6.9
+ depd: 2.0.0
+ 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: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
seroval-plugins@1.1.1(seroval@1.1.1):
dependencies:
seroval: 1.1.1
@@ -9315,18 +8880,12 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.16.3:
- dependencies:
- '@shikijs/core': 1.16.3
- '@shikijs/vscode-textmate': 9.2.2
- '@types/hast': 3.0.4
-
- shiki@1.22.0:
+ shiki@1.22.2:
dependencies:
- '@shikijs/core': 1.22.0
- '@shikijs/engine-javascript': 1.22.0
- '@shikijs/engine-oniguruma': 1.22.0
- '@shikijs/types': 1.22.0
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
'@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
@@ -9351,18 +8910,18 @@ snapshots:
slash@3.0.0: {}
- solid-js@1.9.1:
+ solid-js@1.9.3:
dependencies:
csstype: 3.1.3
seroval: 1.1.1
seroval-plugins: 1.1.1(seroval@1.1.1)
- solid-refresh@0.6.3(solid-js@1.9.1):
+ solid-refresh@0.6.3(solid-js@1.9.3):
dependencies:
- '@babel/generator': 7.25.5
- '@babel/helper-module-imports': 7.24.7
- '@babel/types': 7.25.6
- solid-js: 1.9.1
+ '@babel/generator': 7.26.2
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/types': 7.26.0
+ solid-js: 1.9.3
transitivePeerDependencies:
- supports-color
@@ -9390,8 +8949,6 @@ snapshots:
statuses@2.0.1: {}
- stdin-discarder@0.2.2: {}
-
stoppable@1.1.0: {}
string-width@4.2.3:
@@ -9400,12 +8957,6 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
- dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.1.0
-
string-width@7.2.0:
dependencies:
emoji-regex: 10.3.0
@@ -9429,8 +8980,6 @@ snapshots:
dependencies:
ansi-regex: 6.0.1
- strip-bom-string@1.0.0: {}
-
strip-bom@3.0.0: {}
strip-final-newline@3.0.0: {}
@@ -9441,10 +8990,6 @@ snapshots:
dependencies:
s.color: 0.0.15
- supports-color@5.5.0:
- dependencies:
- has-flag: 3.0.0
-
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -9476,14 +9021,12 @@ snapshots:
tiny-invariant@1.3.3: {}
- tinyexec@0.3.0: {}
+ tinyexec@0.3.1: {}
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
- to-fast-properties@2.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -9496,53 +9039,47 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@1.3.0(typescript@5.6.2):
+ ts-api-utils@1.3.0(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
-
- tsconfck@3.1.3(typescript@5.6.2):
- optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- tsconfck@3.1.4(typescript@5.6.2):
+ tsconfck@3.1.4(typescript@5.6.3):
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
tslib@2.6.2: {}
- turbo-darwin-64@2.1.3:
+ turbo-darwin-64@2.2.3:
optional: true
- turbo-darwin-arm64@2.1.3:
+ turbo-darwin-arm64@2.2.3:
optional: true
- turbo-linux-64@2.1.3:
+ turbo-linux-64@2.2.3:
optional: true
- turbo-linux-arm64@2.1.3:
+ turbo-linux-arm64@2.2.3:
optional: true
- turbo-windows-64@2.1.3:
+ turbo-windows-64@2.2.3:
optional: true
- turbo-windows-arm64@2.1.3:
+ turbo-windows-arm64@2.2.3:
optional: true
- turbo@2.1.3:
+ turbo@2.2.3:
optionalDependencies:
- turbo-darwin-64: 2.1.3
- turbo-darwin-arm64: 2.1.3
- turbo-linux-64: 2.1.3
- turbo-linux-arm64: 2.1.3
- turbo-windows-64: 2.1.3
- turbo-windows-arm64: 2.1.3
+ turbo-darwin-64: 2.2.3
+ turbo-darwin-arm64: 2.2.3
+ turbo-linux-64: 2.2.3
+ turbo-linux-arm64: 2.2.3
+ turbo-windows-64: 2.2.3
+ turbo-windows-arm64: 2.2.3
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- type-fest@2.19.0: {}
-
type-fest@4.26.1: {}
type-is@1.6.18:
@@ -9556,18 +9093,18 @@ snapshots:
dependencies:
semver: 7.6.3
- typescript-eslint@8.8.0(eslint@9.11.1)(typescript@5.6.2):
+ typescript-eslint@8.12.2(eslint@9.13.0)(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/parser@8.8.0(eslint@9.11.1)(typescript@5.6.2))(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.8.0(eslint@9.11.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.12.2(@typescript-eslint/parser@8.12.2(eslint@9.13.0)(typescript@5.6.3))(eslint@9.13.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.2(eslint@9.13.0)(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
- typescript@5.6.2: {}
+ typescript@5.6.3: {}
ufo@1.5.4: {}
@@ -9581,7 +9118,7 @@ snapshots:
undici@6.19.8: {}
- unenv-nightly@2.0.0-20240919-125358-9a64854:
+ unenv-nightly@2.0.0-20241024-111401-d4156ac:
dependencies:
defu: 6.1.4
ohash: 1.1.4
@@ -9644,9 +9181,9 @@ snapshots:
unpipe@1.0.0: {}
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.1.0(browserslist@4.24.0):
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.24.0
escalade: 3.1.2
picocolors: 1.1.0
@@ -9679,51 +9216,60 @@ snapshots:
'@types/unist': 3.0.2
vfile-message: 4.0.2
- vite-plugin-solid@2.10.2(solid-js@1.9.1)(vite@6.0.0-beta.2(@types/node@22.4.1)):
+ vite-plugin-solid@2.10.2(solid-js@1.9.3)(vite@6.0.0-beta.2(@types/node@22.4.1)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.16(@babel/core@7.25.2)
+ babel-preset-solid: 1.8.16(@babel/core@7.26.0)
merge-anything: 5.1.7
- solid-js: 1.9.1
- solid-refresh: 0.6.3(solid-js@1.9.1)
+ solid-js: 1.9.3
+ solid-refresh: 0.6.3(solid-js@1.9.3)
vite: 6.0.0-beta.2(@types/node@22.4.1)
vitefu: 0.2.5(vite@6.0.0-beta.2(@types/node@22.4.1))
transitivePeerDependencies:
- supports-color
- vite@5.4.8(@types/node@18.19.54):
+ vite@5.4.10(@types/node@20.17.4):
dependencies:
esbuild: 0.21.5
postcss: 8.4.45
- rollup: 4.22.5
+ rollup: 4.24.3
optionalDependencies:
- '@types/node': 18.19.54
+ '@types/node': 20.17.4
fsevents: 2.3.3
- vite@5.4.8(@types/node@20.16.10):
+ vite@5.4.10(@types/node@22.4.1):
dependencies:
esbuild: 0.21.5
postcss: 8.4.45
- rollup: 4.22.5
+ rollup: 4.24.3
optionalDependencies:
- '@types/node': 20.16.10
+ '@types/node': 22.4.1
fsevents: 2.3.3
- vite@5.4.8(@types/node@22.4.1):
+ vite@6.0.0-beta.2(@types/node@18.19.62):
dependencies:
- esbuild: 0.21.5
- postcss: 8.4.45
- rollup: 4.22.5
+ esbuild: 0.24.0
+ postcss: 8.4.47
+ rollup: 4.24.3
optionalDependencies:
- '@types/node': 22.4.1
+ '@types/node': 18.19.62
+ fsevents: 2.3.3
+
+ vite@6.0.0-beta.2(@types/node@20.17.4):
+ dependencies:
+ esbuild: 0.24.0
+ postcss: 8.4.47
+ rollup: 4.24.3
+ optionalDependencies:
+ '@types/node': 20.17.4
fsevents: 2.3.3
vite@6.0.0-beta.2(@types/node@22.4.1):
dependencies:
esbuild: 0.24.0
postcss: 8.4.47
- rollup: 4.22.5
+ rollup: 4.24.3
optionalDependencies:
'@types/node': 22.4.1
fsevents: 2.3.3
@@ -9732,61 +9278,57 @@ snapshots:
optionalDependencies:
vite: 6.0.0-beta.2(@types/node@22.4.1)
- vitefu@1.0.2(vite@5.4.8(@types/node@18.19.54)):
- optionalDependencies:
- vite: 5.4.8(@types/node@18.19.54)
-
- vitefu@1.0.2(vite@5.4.8(@types/node@20.16.10)):
+ vitefu@1.0.3(vite@6.0.0-beta.2(@types/node@18.19.62)):
optionalDependencies:
- vite: 5.4.8(@types/node@20.16.10)
+ vite: 6.0.0-beta.2(@types/node@18.19.62)
- vitefu@1.0.2(vite@5.4.8(@types/node@22.4.1)):
+ vitefu@1.0.3(vite@6.0.0-beta.2(@types/node@20.17.4)):
optionalDependencies:
- vite: 5.4.8(@types/node@22.4.1)
+ vite: 6.0.0-beta.2(@types/node@20.17.4)
vitefu@1.0.3(vite@6.0.0-beta.2(@types/node@22.4.1)):
optionalDependencies:
vite: 6.0.0-beta.2(@types/node@22.4.1)
- volar-service-css@0.0.61(@volar/language-service@2.4.0):
+ volar-service-css@0.0.61(@volar/language-service@2.4.6):
dependencies:
vscode-css-languageservice: 6.3.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
- volar-service-emmet@0.0.61(@volar/language-service@2.4.0):
+ volar-service-emmet@0.0.61(@volar/language-service@2.4.6):
dependencies:
'@emmetio/css-parser': 0.4.0
'@emmetio/html-matcher': 1.3.0
'@vscode/emmet-helper': 2.9.3
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
- volar-service-html@0.0.61(@volar/language-service@2.4.0):
+ volar-service-html@0.0.61(@volar/language-service@2.4.6):
dependencies:
vscode-html-languageservice: 5.3.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
- volar-service-prettier@0.0.61(@volar/language-service@2.4.0)(prettier@3.3.3):
+ volar-service-prettier@0.0.61(@volar/language-service@2.4.6)(prettier@3.3.3):
dependencies:
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
prettier: 3.3.3
- volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.0):
+ volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.6):
dependencies:
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
- volar-service-typescript@0.0.61(@volar/language-service@2.4.0):
+ volar-service-typescript@0.0.61(@volar/language-service@2.4.6):
dependencies:
path-browserify: 1.0.1
semver: 7.6.3
@@ -9795,14 +9337,14 @@ snapshots:
vscode-nls: 5.2.0
vscode-uri: 3.0.8
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
- volar-service-yaml@0.0.61(@volar/language-service@2.4.0):
+ volar-service-yaml@0.0.61(@volar/language-service@2.4.6):
dependencies:
vscode-uri: 3.0.8
yaml-language-server: 1.15.0
optionalDependencies:
- '@volar/language-service': 2.4.0
+ '@volar/language-service': 2.4.6
vscode-css-languageservice@6.3.0:
dependencies:
@@ -9895,45 +9437,43 @@ snapshots:
dependencies:
string-width: 4.2.3
- widest-line@4.0.1:
- dependencies:
- string-width: 5.1.2
-
widest-line@5.0.0:
dependencies:
string-width: 7.2.0
word-wrap@1.2.5: {}
- workerd@1.20240925.0:
+ workerd@1.20241022.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20240925.0
- '@cloudflare/workerd-darwin-arm64': 1.20240925.0
- '@cloudflare/workerd-linux-64': 1.20240925.0
- '@cloudflare/workerd-linux-arm64': 1.20240925.0
- '@cloudflare/workerd-windows-64': 1.20240925.0
+ '@cloudflare/workerd-darwin-64': 1.20241022.0
+ '@cloudflare/workerd-darwin-arm64': 1.20241022.0
+ '@cloudflare/workerd-linux-64': 1.20241022.0
+ '@cloudflare/workerd-linux-arm64': 1.20241022.0
+ '@cloudflare/workerd-windows-64': 1.20241022.0
- wrangler@3.78.12(@cloudflare/workers-types@4.20240925.0):
+ wrangler@3.84.0(@cloudflare/workers-types@4.20241022.0):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
- '@cloudflare/workers-shared': 0.5.4
+ '@cloudflare/workers-shared': 0.7.0
'@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
'@esbuild-plugins/node-modules-polyfill': 0.2.2(esbuild@0.17.19)
blake3-wasm: 2.1.5
chokidar: 3.6.0
+ date-fns: 4.1.0
esbuild: 0.17.19
- miniflare: 3.20240925.0
+ itty-time: 1.0.6
+ miniflare: 3.20241022.0
nanoid: 3.3.7
path-to-regexp: 6.3.0
resolve: 1.22.8
resolve.exports: 2.0.2
selfsigned: 2.4.1
source-map: 0.6.1
- unenv: unenv-nightly@2.0.0-20240919-125358-9a64854
- workerd: 1.20240925.0
+ unenv: unenv-nightly@2.0.0-20241024-111401-d4156ac
+ workerd: 1.20241022.0
xxhash-wasm: 1.0.2
optionalDependencies:
- '@cloudflare/workers-types': 4.20240925.0
+ '@cloudflare/workers-types': 4.20241022.0
fsevents: 2.3.3
transitivePeerDependencies:
- bufferutil
@@ -9946,12 +9486,6 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
- dependencies:
- ansi-styles: 6.2.1
- string-width: 5.1.2
- strip-ansi: 7.1.0
-
wrap-ansi@9.0.0:
dependencies:
ansi-styles: 6.2.1
@@ -10019,17 +9553,13 @@ snapshots:
mustache: 4.2.0
stacktracey: 2.1.8
- zod-to-json-schema@3.23.2(zod@3.23.8):
- dependencies:
- zod: 3.23.8
-
- zod-to-json-schema@3.23.3(zod@3.23.8):
+ zod-to-json-schema@3.23.5(zod@3.23.8):
dependencies:
zod: 3.23.8
- zod-to-ts@1.2.0(typescript@5.6.2)(zod@3.23.8):
+ zod-to-ts@1.2.0(typescript@5.6.3)(zod@3.23.8):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
zod: 3.23.8
zod@3.23.8: {}