} */
+ let consoleErrorMock;
+
+ before(async () => {
+ consoleErrorMock = new MockFunction(console, 'error');
+ fixture = await loadFixture({ root: './fixtures/basics/' });
+ devServer = await fixture.startDevServer({});
+ });
+
+ after(async () => {
+ consoleErrorMock.restore();
+ await devServer.stop();
+ });
+
+ beforeEach(() => {
+ consoleErrorMock.reset();
+ });
+
+ it('adds a meta tag to the page', async () => {
+ const html = await fixture.fetch('/', {}).then((res) => res.text());
+ const { document } = parseHTML(html);
+ const meta = document.querySelector('head > meta[name="x-astro-vitals-route"]');
+ assert.ok(meta);
+ assert.equal(meta.getAttribute('content'), '/');
+ });
+
+ it('adds a meta tag using the route pattern to the page', async () => {
+ const html = await fixture.fetch('/test', {}).then((res) => res.text());
+ const { document } = parseHTML(html);
+ const meta = document.querySelector('head > meta[name="x-astro-vitals-route"]');
+ assert.ok(meta);
+ assert.equal(meta.getAttribute('content'), '/[dynamic]');
+ });
+
+ it('returns a 200 response even when bad data is sent to the injected endpoint', async () => {
+ {
+ // bad data
+ const res = await fixture.fetch('/_web-vitals', { method: 'POST', body: 'garbage' });
+ assert.equal(res.status, 200);
+ }
+ {
+ // no data
+ const res = await fixture.fetch('/_web-vitals', { method: 'POST', body: '[]' });
+ assert.equal(res.status, 200);
+ }
+ assert.equal(consoleErrorMock.calls.length, 2);
+ });
+
+ it('validates data sent to the injected endpoint with Zod', async () => {
+ const res = await fixture.fetch('/_web-vitals', { method: 'POST', body: '[{}]' });
+ assert.equal(res.status, 200);
+ const call = consoleErrorMock.calls[0][0];
+ assert.ok(call instanceof Error);
+ assert.equal(call.name, 'ZodError');
+ });
+
+ describe('inserting data via the injected endpoint', () => {
+ /** @type {Response} */
+ let res;
+ before(async () => {
+ res = await fixture.fetch('/_web-vitals', {
+ method: 'POST',
+ body: JSON.stringify([
+ {
+ pathname: '/',
+ route: '/',
+ name: 'CLS',
+ id: 'v4-1711484350895-3748043125387',
+ value: 0,
+ rating: 'good',
+ },
+ ]),
+ });
+ });
+
+ it('inserting data does not error', () => {
+ assert.equal(res.status, 200);
+ assert.equal(
+ consoleErrorMock.calls.length,
+ 0,
+ 'Endpoint logged errors:\n' + consoleErrorMock.calls[0]?.join(' ')
+ );
+ });
+
+ it('inserted data can be retrieved from the database', async () => {
+ const dbRows = await fixture.fetch('/rows.json', {}).then((r) => r.json());
+ assert.deepEqual(dbRows, [
+ {
+ pathname: '/',
+ route: '/',
+ name: 'CLS',
+ id: 'v4-17114843-3748043125387',
+ value: 0,
+ rating: 'good',
+ timestamp: startOfHourISOString(),
+ },
+ ]);
+ });
+ });
+
+ it('inserted data uses a truncated timestamp in the ID', async () => {
+ // The IDs generated by the `web-vitals` package include a high resolution timestamp as the second portion,
+ // e.g. 'v4-1711484350895-3748043125387'. We reduce this data to an hourly resolution to lessen privacy concerns.
+ const dbRows = await fixture.fetch('/rows.json', {}).then((r) => r.json());
+ assert.deepEqual(dbRows[0].id, 'v4-17114843-3748043125387');
+ });
+});
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs b/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs
new file mode 100644
index 000000000000..42bfa6f6693f
--- /dev/null
+++ b/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs
@@ -0,0 +1,14 @@
+import db from '@astrojs/db';
+import node from '@astrojs/node';
+import webVitals from '@astrojs/web-vitals';
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({
+ integrations: [db(), webVitals()],
+ output: 'hybrid',
+ adapter: node({ mode: 'standalone' }),
+ devToolbar: {
+ enabled: false,
+ },
+});
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/package.json b/packages/integrations/web-vitals/test/fixtures/basics/package.json
new file mode 100644
index 000000000000..25ab0abc1b75
--- /dev/null
+++ b/packages/integrations/web-vitals/test/fixtures/basics/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "@test/web-vitals",
+ "version": "0.0.0",
+ "private": true,
+ "scripts": {
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview"
+ },
+ "dependencies": {
+ "@astrojs/db": "workspace:*",
+ "@astrojs/node": "workspace:*",
+ "@astrojs/web-vitals": "workspace:*",
+ "astro": "workspace:*"
+ }
+}
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/src/pages/[dynamic].astro b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/[dynamic].astro
new file mode 100644
index 000000000000..36c7c50e6276
--- /dev/null
+++ b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/[dynamic].astro
@@ -0,0 +1,19 @@
+---
+import type { GetStaticPaths } from "astro";
+export const getStaticPaths = (() => {
+ return [{ params: { dynamic: 'test' } }];
+}) satisfies GetStaticPaths;
+---
+
+
+
+
+
+
+ Web Vitals basics β dynamic route test
+
+
+ Web Vitals basics
+ Dynamic route test
+
+
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/src/pages/index.astro b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/index.astro
new file mode 100644
index 000000000000..06ddd6565db9
--- /dev/null
+++ b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/index.astro
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Web Vitals basics test
+
+
+ Web Vitals basics test
+
+
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/src/pages/rows.json.ts b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/rows.json.ts
new file mode 100644
index 000000000000..1a829b91546c
--- /dev/null
+++ b/packages/integrations/web-vitals/test/fixtures/basics/src/pages/rows.json.ts
@@ -0,0 +1,8 @@
+import { db, AstrojsWebVitals_Metric } from "astro:db";
+
+export const prerender = false;
+
+export async function GET() {
+ const rows = await db.select().from(AstrojsWebVitals_Metric).all();
+ return new Response(JSON.stringify(rows));
+}
diff --git a/packages/integrations/web-vitals/test/test-utils.js b/packages/integrations/web-vitals/test/test-utils.js
new file mode 100644
index 000000000000..8dd4d970bdd5
--- /dev/null
+++ b/packages/integrations/web-vitals/test/test-utils.js
@@ -0,0 +1,16 @@
+import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
+
+/** @typedef {import('../../../astro/test/test-utils').Fixture} Fixture */
+/** @typedef {import('../../../astro/test/test-utils').DevServer} DevServer */
+
+/** @type {typeof import('../../../astro/test/test-utils.js')['loadFixture']} */
+export function loadFixture(inlineConfig) {
+ if (!inlineConfig?.root) throw new Error("Must provide { root: './fixtures/...' }");
+
+ // resolve the relative root (i.e. "./fixtures/tailwindcss") to a full filepath
+ // without this, the main `loadFixture` helper will resolve relative to `packages/astro/test`
+ return baseLoadFixture({
+ ...inlineConfig,
+ root: new URL(inlineConfig.root, import.meta.url).toString(),
+ });
+}
diff --git a/packages/integrations/web-vitals/tsconfig.json b/packages/integrations/web-vitals/tsconfig.json
new file mode 100644
index 000000000000..1504b4b6dfa4
--- /dev/null
+++ b/packages/integrations/web-vitals/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "../../../tsconfig.base.json",
+ "include": ["src"],
+ "compilerOptions": {
+ "outDir": "./dist"
+ }
+}
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index 16da69b0194e..650931b8051e 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -38,15 +38,15 @@
"github-slugger": "^2.0.0",
"hast-util-from-html": "^2.0.1",
"hast-util-to-text": "^4.0.2",
- "import-meta-resolve": "^4.0.0",
+ "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.0",
- "shiki": "^1.3.0",
+ "remark-smartypants": "^3.0.1",
+ "shiki": "^1.5.1",
"unified": "^11.0.4",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
@@ -59,7 +59,7 @@
"@types/mdast": "^4.0.3",
"@types/unist": "^3.0.2",
"astro-scripts": "workspace:*",
- "esbuild": "^0.20.2",
+ "esbuild": "^0.21.2",
"mdast-util-mdx-expression": "^2.0.0"
},
"publishConfig": {
diff --git a/packages/markdown/remark/src/highlight.ts b/packages/markdown/remark/src/highlight.ts
index 3338f75b792a..41ec8880b236 100644
--- a/packages/markdown/remark/src/highlight.ts
+++ b/packages/markdown/remark/src/highlight.ts
@@ -14,7 +14,7 @@ const languagePattern = /\blanguage-(\S+)\b/;
* @param tree
* The hast tree in which to syntax highlight code blocks.
* @param highlighter
- * A fnction which receives the code and language, and returns the HTML of a syntax
+ * A function which receives the code and language, and returns the HTML of a syntax
* highlighted `` element.
*/
export async function highlightCodeBlocks(tree: Root, highlighter: Highlighter) {
diff --git a/packages/markdown/remark/src/import-plugin-default.ts b/packages/markdown/remark/src/import-plugin-default.ts
index 8c1d01b56906..1b6778f753ff 100644
--- a/packages/markdown/remark/src/import-plugin-default.ts
+++ b/packages/markdown/remark/src/import-plugin-default.ts
@@ -6,7 +6,7 @@ import type * as unified from 'unified';
let cwdUrlStr: string | undefined;
-// In non-browser enviroments, we can try to resolve from the filesystem too
+// In non-browser environments, we can try to resolve from the filesystem too
export async function importPlugin(p: string): Promise {
// Try import from this package first
try {
diff --git a/packages/studio/CHANGELOG.md b/packages/studio/CHANGELOG.md
new file mode 100644
index 000000000000..6b3d89899969
--- /dev/null
+++ b/packages/studio/CHANGELOG.md
@@ -0,0 +1,7 @@
+# @astrojs/studio
+
+## 0.1.0
+
+### Minor Changes
+
+- [#11037](https://github.com/withastro/astro/pull/11037) [`9332bb1`](https://github.com/withastro/astro/commit/9332bb1c1f237f5666ded09532ccd651837b94e5) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Created package. This package contain shared code between integrations that interact with Astro Studio and is not intended to be used by end-users at this time
diff --git a/packages/studio/README.md b/packages/studio/README.md
new file mode 100644
index 000000000000..935c200a3ada
--- /dev/null
+++ b/packages/studio/README.md
@@ -0,0 +1,34 @@
+# @astrojs/studio
+
+This package manages the connection between a local Astro project and [Astro Studio](studio). At this time, this package is not intended for direct use by end users, but rather as a dependency of other Astro packages.
+
+## Support
+
+- Get help in the [Astro Discord][discord]. Post questions in our `#support` forum, or visit our dedicated `#dev` channel to discuss current development and more!
+
+- Check our [Astro Integration Documentation][astro-integration] for more on integrations.
+
+- Submit bug reports and feature requests as [GitHub issues][issues].
+
+## Contributing
+
+This package is maintained by Astro's Core team. You're welcome to submit an issue or PR! These links will help you get started:
+
+- [Contributor Manual][contributing]
+- [Code of Conduct][coc]
+- [Community Guide][community]
+
+## License
+
+MIT
+
+Copyright (c) 2023βpresent [Astro][astro]
+
+[astro]: https://astro.build/
+[contributing]: https://github.com/withastro/astro/blob/main/CONTRIBUTING.md
+[coc]: https://github.com/withastro/.github/blob/main/CODE_OF_CONDUCT.md
+[community]: https://github.com/withastro/.github/blob/main/COMMUNITY_GUIDE.md
+[discord]: https://astro.build/chat/
+[issues]: https://github.com/withastro/astro/issues
+[astro-integration]: https://docs.astro.build/en/guides/integrations-guide/
+[studio]: https://studio.astro.build/
diff --git a/packages/studio/package.json b/packages/studio/package.json
new file mode 100644
index 000000000000..303849216c0e
--- /dev/null
+++ b/packages/studio/package.json
@@ -0,0 +1,47 @@
+{
+ "name": "@astrojs/studio",
+ "version": "0.1.0",
+ "description": "Internal package powering integrations between Astro projects and Astro Studio",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/withastro/astro.git",
+ "directory": "packages/studio"
+ },
+ "bugs": "https://github.com/withastro/astro/issues",
+ "homepage": "https://docs.astro.build/en/guides/integrations-guide/studio/",
+ "type": "module",
+ "author": "withastro",
+ "types": "./dist/index.js",
+ "main": "./dist/index.js",
+ "exports": {
+ ".": {
+ "types": "./dist/index.d.ts",
+ "import": "./dist/index.js"
+ },
+ "./package.json": "./package.json"
+ },
+ "files": [
+ "dist"
+ ],
+ "keywords": [
+ "withastro",
+ "astro-integration"
+ ],
+ "scripts": {
+ "build": "astro-scripts build \"src/**/*.ts\" && tsc",
+ "build:ci": "astro-scripts build \"src/**/*.ts\"",
+ "dev": "astro-scripts dev \"src/**/*.ts\""
+ },
+ "dependencies": {
+ "ci-info": "^4.0.0",
+ "kleur": "^4.1.5",
+ "ora": "^8.0.1"
+ },
+ "devDependencies": {
+ "astro": "workspace:*",
+ "astro-scripts": "workspace:*",
+ "typescript": "^5.4.5",
+ "vite": "^5.2.11"
+ }
+}
diff --git a/packages/studio/src/core/errors.ts b/packages/studio/src/core/errors.ts
new file mode 100644
index 000000000000..9ffead3eeb4d
--- /dev/null
+++ b/packages/studio/src/core/errors.ts
@@ -0,0 +1,15 @@
+import { cyan, red } from 'kleur/colors';
+
+export const MISSING_SESSION_ID_CI_ERROR = `${red('βΆ ASTRO_STUDIO_APP_TOKEN required')}
+
+ To authenticate with Astro Studio add the token to your CI's environment variables.\n`;
+
+export const MISSING_SESSION_ID_ERROR = `${red('βΆ Login required!')}
+
+ To authenticate with Astro Studio, run
+ ${cyan('astro login')}\n`;
+
+export const MISSING_PROJECT_ID_ERROR = `${red('βΆ Directory not linked.')}
+
+ To link this directory to an Astro Studio project, run
+ ${cyan('astro link')}\n`;
diff --git a/packages/db/src/core/tokens.ts b/packages/studio/src/core/tokens.ts
similarity index 85%
rename from packages/db/src/core/tokens.ts
rename to packages/studio/src/core/tokens.ts
index 2c75e372307f..cf343fb8f62c 100644
--- a/packages/db/src/core/tokens.ts
+++ b/packages/studio/src/core/tokens.ts
@@ -2,10 +2,14 @@ import { readFile } from 'node:fs/promises';
import { homedir } from 'node:os';
import { join } from 'node:path';
import { pathToFileURL } from 'node:url';
+import ci from 'ci-info';
import { green } from 'kleur/colors';
import ora from 'ora';
-import { safeFetch } from '../runtime/utils.js';
-import { MISSING_PROJECT_ID_ERROR, MISSING_SESSION_ID_ERROR } from './errors.js';
+import {
+ MISSING_PROJECT_ID_ERROR,
+ MISSING_SESSION_ID_CI_ERROR,
+ MISSING_SESSION_ID_ERROR,
+} from './errors.js';
import { getAstroStudioEnv, getAstroStudioUrl } from './utils.js';
export const SESSION_LOGIN_FILE = pathToFileURL(join(homedir(), '.astro', 'session-token'));
@@ -182,12 +186,17 @@ export async function getManagedAppTokenOrExit(token?: string): Promise[0],
+ options: Parameters[1] = {},
+ onNotOK: (response: Response) => void | Promise = () => {
+ throw new Error(`Request to ${url} returned a non-OK status code.`);
+ }
+): Promise {
+ const response = await fetch(url, options);
+
+ if (!response.ok) {
+ await onNotOK(response);
+ }
+
+ return response;
+}
diff --git a/packages/studio/src/core/utils.ts b/packages/studio/src/core/utils.ts
new file mode 100644
index 000000000000..7cf40f75111e
--- /dev/null
+++ b/packages/studio/src/core/utils.ts
@@ -0,0 +1,11 @@
+import { loadEnv } from 'vite';
+
+export function getAstroStudioEnv(envMode = ''): Record<`ASTRO_STUDIO_${string}`, string> {
+ const env = loadEnv(envMode, process.cwd(), 'ASTRO_STUDIO_');
+ return env;
+}
+
+export function getAstroStudioUrl(): string {
+ const env = getAstroStudioEnv();
+ return env.ASTRO_STUDIO_URL || 'https://studio.astro.build';
+}
diff --git a/packages/studio/src/index.ts b/packages/studio/src/index.ts
new file mode 100644
index 000000000000..e97d53dfc12b
--- /dev/null
+++ b/packages/studio/src/index.ts
@@ -0,0 +1,3 @@
+export * from './core/tokens.js';
+export * from './core/utils.js';
+export * from './core/errors.js';
diff --git a/packages/studio/tsconfig.json b/packages/studio/tsconfig.json
new file mode 100644
index 000000000000..18443cddf207
--- /dev/null
+++ b/packages/studio/tsconfig.json
@@ -0,0 +1,7 @@
+{
+ "extends": "../../tsconfig.base.json",
+ "include": ["src"],
+ "compilerOptions": {
+ "outDir": "./dist"
+ }
+}
diff --git a/packages/upgrade/package.json b/packages/upgrade/package.json
index a3c3438e25b9..c396409e14e9 100644
--- a/packages/upgrade/package.json
+++ b/packages/upgrade/package.json
@@ -30,7 +30,7 @@
"//b": "DEPENDENCIES IS FOR UNBUNDLED PACKAGES",
"dependencies": {
"@astrojs/cli-kit": "^0.4.1",
- "semver": "^7.6.0",
+ "semver": "^7.6.2",
"which-pm-runs": "^1.1.0",
"terminal-link": "^3.0.0"
},
diff --git a/packages/upgrade/src/actions/verify.ts b/packages/upgrade/src/actions/verify.ts
index 8d4c6f1e7cbb..c3f4b7af2af2 100644
--- a/packages/upgrade/src/actions/verify.ts
+++ b/packages/upgrade/src/actions/verify.ts
@@ -177,7 +177,7 @@ async function resolveTargetVersion(packageInfo: PackageInfo, registry: string):
packageInfo.changelogTitle = 'CHANGELOG';
} else {
// Dependency updates should not include the specific dist-tag
- // since they are just for compatability
+ // since they are just for compatibility
packageInfo.tag = undefined;
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 15bc13293cdf..d2ec86c1f0d1 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,11 +19,11 @@ importers:
version: link:benchmark
devDependencies:
'@astrojs/check':
- specifier: ^0.5.10
- version: 0.5.10(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
+ specifier: ^0.6.0
+ version: 0.6.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
'@biomejs/biome':
- specifier: 1.6.4
- version: 1.6.4
+ specifier: 1.7.1
+ version: 1.7.1
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0
@@ -37,23 +37,17 @@ importers:
specifier: ^18.17.8
version: 18.19.31
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
eslint:
- specifier: ^9.1.0
- version: 9.1.0
- eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.0(eslint@9.1.0)
+ specifier: ^9.2.0
+ version: 9.2.0
eslint-plugin-no-only-tests:
specifier: ^3.1.0
version: 3.1.0
- eslint-plugin-prettier:
- specifier: ^5.1.3
- version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@9.1.0)(prettier@3.2.5)
eslint-plugin-regexp:
specifier: ^2.5.0
- version: 2.5.0(eslint@9.1.0)
+ version: 2.5.0(eslint@9.2.0)
globby:
specifier: ^14.0.1
version: 14.0.1
@@ -73,14 +67,14 @@ importers:
specifier: ^0.2.9
version: 0.2.9
turbo:
- specifier: ^1.13.2
- version: 1.13.2
+ specifier: ^1.13.3
+ version: 1.13.3
typescript:
specifier: ~5.4.5
version: 5.4.5
typescript-eslint:
- specifier: ^7.7.0
- version: 7.7.0(eslint@9.1.0)(typescript@5.4.5)
+ specifier: ^7.8.0
+ version: 7.8.0(eslint@9.2.0)(typescript@5.4.5)
benchmark:
dependencies:
@@ -134,28 +128,28 @@ importers:
examples/basics:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/blog:
dependencies:
'@astrojs/mdx':
- specifier: ^2.3.1
+ specifier: ^3.0.0
version: link:../../packages/integrations/mdx
'@astrojs/rss':
- specifier: ^4.0.5
+ specifier: ^4.0.6
version: link:../../packages/astro-rss
'@astrojs/sitemap':
specifier: ^3.1.4
version: link:../../packages/integrations/sitemap
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/component:
devDependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/framework-alpine:
@@ -164,13 +158,13 @@ importers:
specifier: ^0.4.0
version: link:../../packages/integrations/alpinejs
'@types/alpinejs':
- specifier: ^3.13.5
+ specifier: ^3.13.10
version: 3.13.10
alpinejs:
- specifier: ^3.13.3
- version: 3.13.8
+ specifier: ^3.13.10
+ version: 3.13.10
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/framework-lit:
@@ -182,104 +176,104 @@ importers:
specifier: ^0.2.1
version: 0.2.1
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
lit:
- specifier: ^3.1.2
- version: 3.1.2
+ specifier: ^3.1.3
+ version: 3.1.3
examples/framework-multiple:
dependencies:
'@astrojs/preact':
- specifier: ^3.2.0
+ specifier: ^3.3.0
version: link:../../packages/integrations/preact
'@astrojs/react':
- specifier: ^3.3.0
+ specifier: ^3.3.4
version: link:../../packages/integrations/react
'@astrojs/solid-js':
- specifier: ^4.1.0
+ specifier: ^4.2.0
version: link:../../packages/integrations/solid
'@astrojs/svelte':
specifier: ^5.4.0
version: link:../../packages/integrations/svelte
'@astrojs/vue':
- specifier: ^4.1.0
+ specifier: ^4.2.0
version: link:../../packages/integrations/vue
'@types/react':
- specifier: ^18.2.37
- version: 18.2.78
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.15
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
examples/framework-preact:
dependencies:
'@astrojs/preact':
- specifier: ^3.2.0
+ specifier: ^3.3.0
version: link:../../packages/integrations/preact
'@preact/signals':
- specifier: ^1.2.1
- version: 1.2.1(preact@10.20.2)
+ specifier: ^1.2.3
+ version: 1.2.3(preact@10.21.0)
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
examples/framework-react:
dependencies:
'@astrojs/react':
- specifier: ^3.3.0
+ specifier: ^3.3.4
version: link:../../packages/integrations/react
'@types/react':
- specifier: ^18.2.37
- version: 18.2.78
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.15
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
examples/framework-solid:
dependencies:
'@astrojs/solid-js':
- specifier: ^4.1.0
+ specifier: ^4.2.0
version: link:../../packages/integrations/solid
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
examples/framework-svelte:
dependencies:
@@ -287,23 +281,23 @@ importers:
specifier: ^5.4.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
examples/framework-vue:
dependencies:
'@astrojs/vue':
- specifier: ^4.1.0
+ specifier: ^4.2.0
version: link:../../packages/integrations/vue
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
examples/hackernews:
dependencies:
@@ -311,13 +305,13 @@ importers:
specifier: ^8.2.5
version: link:../../packages/integrations/node
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/integration:
devDependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/middleware:
@@ -326,7 +320,7 @@ importers:
specifier: ^8.2.5
version: link:../../packages/integrations/node
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
html-minifier:
specifier: ^4.0.0
@@ -339,19 +333,19 @@ importers:
examples/minimal:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/non-html-pages:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/portfolio:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/ssr:
@@ -363,23 +357,29 @@ importers:
specifier: ^5.4.0
version: link:../../packages/integrations/svelte
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
examples/starlog:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
sass:
- specifier: ^1.69.5
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
sharp:
- specifier: ^0.32.6
- version: 0.32.6
+ specifier: ^0.33.3
+ version: 0.33.3
+
+ examples/toolbar-app:
+ devDependencies:
+ astro:
+ specifier: ^4.8.6
+ version: link:../../packages/astro
examples/view-transitions:
devDependencies:
@@ -390,16 +390,16 @@ importers:
specifier: ^5.1.0
version: link:../../packages/integrations/tailwind
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/with-markdoc:
dependencies:
'@astrojs/markdoc':
- specifier: ^0.10.0
+ specifier: ^0.11.0
version: link:../../packages/integrations/markdoc
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/with-markdown-plugins:
@@ -408,7 +408,7 @@ importers:
specifier: ^5.1.0
version: link:../../packages/markdown/remark
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
hast-util-select:
specifier: ^6.0.2
@@ -429,83 +429,83 @@ importers:
examples/with-markdown-shiki:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
examples/with-mdx:
dependencies:
'@astrojs/mdx':
- specifier: ^2.3.1
+ specifier: ^3.0.0
version: link:../../packages/integrations/mdx
'@astrojs/preact':
- specifier: ^3.2.0
+ specifier: ^3.3.0
version: link:../../packages/integrations/preact
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
examples/with-nanostores:
dependencies:
'@astrojs/preact':
- specifier: ^3.2.0
+ specifier: ^3.3.0
version: link:../../packages/integrations/preact
'@nanostores/preact':
- specifier: ^0.5.0
- version: 0.5.1(nanostores@0.9.5)(preact@10.20.2)
+ specifier: ^0.5.1
+ version: 0.5.1(nanostores@0.10.3)(preact@10.21.0)
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
nanostores:
- specifier: ^0.9.5
- version: 0.9.5
+ specifier: ^0.10.3
+ version: 0.10.3
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
examples/with-tailwindcss:
dependencies:
'@astrojs/mdx':
- specifier: ^2.3.1
+ specifier: ^3.0.0
version: link:../../packages/integrations/mdx
'@astrojs/tailwind':
specifier: ^5.1.0
version: link:../../packages/integrations/tailwind
'@types/canvas-confetti':
- specifier: ^1.6.3
+ specifier: ^1.6.4
version: 1.6.4
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
autoprefixer:
- specifier: ^10.4.15
+ specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
canvas-confetti:
- specifier: ^1.9.1
- version: 1.9.2
+ specifier: ^1.9.3
+ version: 1.9.3
postcss:
- specifier: ^8.4.28
+ specifier: ^8.4.38
version: 8.4.38
tailwindcss:
- specifier: ^3.3.5
+ specifier: ^3.4.3
version: 3.4.3
examples/with-vitest:
dependencies:
astro:
- specifier: ^4.6.3
+ specifier: ^4.8.6
version: link:../../packages/astro
vitest:
- specifier: ^1.5.0
- version: 1.5.0(@types/node@18.19.31)
+ specifier: ^1.6.0
+ version: 1.6.0(@types/node@18.19.31)
packages/astro:
dependencies:
'@astrojs/compiler':
- specifier: ^2.7.1
- version: 2.7.1
+ specifier: ^2.8.0
+ version: 2.8.0
'@astrojs/internal-helpers':
specifier: workspace:*
version: link:../internal-helpers
@@ -516,23 +516,23 @@ importers:
specifier: workspace:*
version: link:../telemetry
'@babel/core':
- specifier: ^7.24.4
- version: 7.24.4
+ specifier: ^7.24.5
+ version: 7.24.5
'@babel/generator':
- specifier: ^7.24.4
- version: 7.24.4
+ specifier: ^7.24.5
+ version: 7.24.5
'@babel/parser':
- specifier: ^7.24.4
- version: 7.24.4
+ specifier: ^7.24.5
+ version: 7.24.5
'@babel/plugin-transform-react-jsx':
specifier: ^7.23.4
- version: 7.23.4(@babel/core@7.24.4)
+ version: 7.23.4(@babel/core@7.24.5)
'@babel/traverse':
- specifier: ^7.24.1
- version: 7.24.1
+ specifier: ^7.24.5
+ version: 7.24.5
'@babel/types':
- specifier: ^7.24.0
- version: 7.24.0
+ specifier: ^7.24.5
+ version: 7.24.5
'@types/babel__core':
specifier: ^7.20.5
version: 7.20.5
@@ -558,8 +558,8 @@ importers:
specifier: ^4.0.0
version: 4.0.0
clsx:
- specifier: ^2.1.0
- version: 2.1.0
+ specifier: ^2.1.1
+ version: 2.1.1
common-ancestor-path:
specifier: ^1.0.1
version: 1.0.1
@@ -588,11 +588,11 @@ importers:
specifier: ^3.1.3
version: 3.1.3
es-module-lexer:
- specifier: ^1.5.0
- version: 1.5.0
+ specifier: ^1.5.2
+ version: 1.5.2
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
estree-walker:
specifier: ^3.0.3
version: 3.0.3
@@ -654,11 +654,11 @@ importers:
specifier: ^1.22.8
version: 1.22.8
semver:
- specifier: ^7.6.0
- version: 7.6.0
+ specifier: ^7.6.2
+ version: 7.6.2
shiki:
- specifier: ^1.3.0
- version: 1.3.0
+ specifier: ^1.5.1
+ version: 1.5.1
string-width:
specifier: ^7.1.0
version: 7.1.0
@@ -675,11 +675,11 @@ importers:
specifier: ^6.0.1
version: 6.0.1
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
vitefu:
specifier: ^0.2.5
- version: 0.2.5(vite@5.2.10)
+ version: 0.2.5(vite@5.2.11)
which-pm:
specifier: ^2.1.1
version: 2.1.1
@@ -687,22 +687,22 @@ importers:
specifier: ^21.1.1
version: 21.1.1
zod:
- specifier: ^3.23.0
- version: 3.23.0
+ specifier: ^3.23.8
+ version: 3.23.8
zod-to-json-schema:
- specifier: ^3.22.5
- version: 3.22.5(zod@3.23.0)
+ specifier: ^3.23.0
+ version: 3.23.0(zod@3.23.8)
optionalDependencies:
sharp:
- specifier: ^0.32.6
- version: 0.32.6
+ specifier: ^0.33.3
+ version: 0.33.3
devDependencies:
'@astrojs/check':
- specifier: ^0.5.10
- version: 0.5.10(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
+ specifier: ^0.6.0
+ version: 0.6.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
'@playwright/test':
- specifier: ^1.43.1
- version: 1.43.1
+ specifier: ^1.44.0
+ version: 1.44.0
'@types/aria-query':
specifier: ^5.0.4
version: 5.0.4
@@ -725,8 +725,8 @@ importers:
specifier: ^4.1.12
version: 4.1.12
'@types/diff':
- specifier: ^5.2.0
- version: 5.2.0
+ specifier: ^5.2.1
+ version: 5.2.1
'@types/dlv':
specifier: ^1.1.4
version: 1.1.4
@@ -775,9 +775,15 @@ importers:
eol:
specifier: ^0.9.1
version: 0.9.1
+ mdast-util-mdx:
+ specifier: ^3.0.0
+ version: 3.0.0
+ mdast-util-mdx-jsx:
+ specifier: ^3.1.2
+ version: 3.1.2
memfs:
- specifier: ^4.8.2
- version: 4.8.2
+ specifier: ^4.9.2
+ version: 4.9.2
node-mocks-http:
specifier: ^1.14.1
version: 1.14.1
@@ -797,11 +803,11 @@ importers:
specifier: ^0.1.2
version: 0.1.2
rollup:
- specifier: ^4.16.1
- version: 4.16.1
+ specifier: ^4.17.2
+ version: 4.17.2
sass:
- specifier: ^1.75.0
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
srcset-parse:
specifier: ^1.1.0
version: 1.1.0
@@ -816,8 +822,8 @@ importers:
version: 1.29.0
devDependencies:
'@types/prismjs':
- specifier: 1.26.3
- version: 1.26.3
+ specifier: 1.26.4
+ version: 1.26.4
astro-scripts:
specifier: workspace:*
version: link:../../scripts
@@ -850,6 +856,39 @@ importers:
specifier: workspace:*
version: link:../../../..
+ packages/astro/e2e/fixtures/actions-blog:
+ dependencies:
+ '@astrojs/check':
+ specifier: ^0.6.0
+ version: 0.6.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
+ '@astrojs/db':
+ specifier: workspace:*
+ version: link:../../../../db
+ '@astrojs/node':
+ specifier: workspace:*
+ version: link:../../../../integrations/node
+ '@astrojs/react':
+ specifier: workspace:*
+ version: link:../../../../integrations/react
+ '@types/react':
+ specifier: ^18.3.2
+ version: 18.3.2
+ '@types/react-dom':
+ specifier: ^18.3.0
+ version: 18.3.0
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+ react:
+ specifier: ^18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
+ typescript:
+ specifier: ^5.4.5
+ version: 5.4.5
+
packages/astro/e2e/fixtures/astro-component:
dependencies:
'@astrojs/preact':
@@ -862,8 +901,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/astro-envs:
dependencies:
@@ -874,29 +913,29 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/e2e/fixtures/client-only:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -941,11 +980,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/e2e/fixtures/dev-toolbar:
dependencies:
@@ -956,8 +995,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/error-cyclic:
dependencies:
@@ -968,8 +1007,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/error-sass:
dependencies:
@@ -977,8 +1016,8 @@ importers:
specifier: workspace:*
version: link:../../..
sass:
- specifier: ^1.75.0
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
packages/astro/e2e/fixtures/errors:
dependencies:
@@ -1001,26 +1040,26 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
sass:
- specifier: ^1.75.0
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/e2e/fixtures/hmr:
devDependencies:
@@ -1028,8 +1067,8 @@ importers:
specifier: workspace:*
version: link:../../..
sass:
- specifier: ^1.75.0
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
packages/astro/e2e/fixtures/hydration-race:
dependencies:
@@ -1040,8 +1079,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/i18n:
dependencies:
@@ -1073,23 +1112,23 @@ importers:
specifier: ^3.1.3
version: 3.1.3
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/lit':
specifier: workspace:*
@@ -1116,8 +1155,8 @@ importers:
packages/astro/e2e/fixtures/namespaced-component:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
devDependencies:
'@astrojs/mdx':
specifier: workspace:*
@@ -1132,23 +1171,23 @@ importers:
packages/astro/e2e/fixtures/nested-in-preact:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1172,23 +1211,23 @@ importers:
packages/astro/e2e/fixtures/nested-in-react:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1212,23 +1251,23 @@ importers:
packages/astro/e2e/fixtures/nested-in-solid:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1252,23 +1291,23 @@ importers:
packages/astro/e2e/fixtures/nested-in-svelte:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1292,23 +1331,23 @@ importers:
packages/astro/e2e/fixtures/nested-in-vue:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1332,23 +1371,23 @@ importers:
packages/astro/e2e/fixtures/nested-recursive:
dependencies:
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/preact':
specifier: workspace:*
@@ -1378,11 +1417,11 @@ importers:
packages/astro/e2e/fixtures/pass-js:
dependencies:
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
devDependencies:
'@astrojs/react':
specifier: workspace:*
@@ -1400,8 +1439,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/preact-component:
dependencies:
@@ -1415,8 +1454,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/preact-lazy-component:
dependencies:
@@ -1430,8 +1469,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/e2e/fixtures/prefetch:
dependencies:
@@ -1451,11 +1490,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/e2e/fixtures/solid-circular:
dependencies:
@@ -1467,8 +1506,8 @@ importers:
version: link:../../..
devDependencies:
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/e2e/fixtures/solid-component:
dependencies:
@@ -1482,8 +1521,8 @@ importers:
specifier: workspace:*
version: link:../../..
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/e2e/fixtures/solid-recurse:
dependencies:
@@ -1495,8 +1534,8 @@ importers:
version: link:../../..
devDependencies:
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/e2e/fixtures/svelte-component:
dependencies:
@@ -1510,8 +1549,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/e2e/fixtures/tailwindcss:
dependencies:
@@ -1540,11 +1579,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/e2e/fixtures/view-transitions:
dependencies:
@@ -1564,17 +1603,17 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/e2e/fixtures/vue-component:
dependencies:
@@ -1588,8 +1627,8 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/performance:
devDependencies:
@@ -1612,20 +1651,20 @@ importers:
specifier: workspace:*
version: link:../utils
'@types/react':
- specifier: ^18.2.79
- version: 18.2.79
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.25
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/performance/fixtures/mdoc:
dependencies:
@@ -1639,20 +1678,20 @@ importers:
specifier: workspace:*
version: link:../utils
'@types/react':
- specifier: ^18.2.79
- version: 18.2.79
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.25
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/performance/fixtures/mdx:
dependencies:
@@ -1666,20 +1705,20 @@ importers:
specifier: workspace:*
version: link:../utils
'@types/react':
- specifier: ^18.2.79
- version: 18.2.79
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.25
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/performance/fixtures/utils:
devDependencies:
@@ -1687,11 +1726,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/0-css:
dependencies:
@@ -1708,17 +1747,23 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
+
+ packages/astro/test/fixtures/actions:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
packages/astro/test/fixtures/alias:
dependencies:
@@ -1729,8 +1774,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/alias-tsconfig:
dependencies:
@@ -1744,8 +1789,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/alias-tsconfig-baseurl-only:
dependencies:
@@ -1756,8 +1801,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/alias-tsconfig/deps/namespace-package: {}
@@ -1794,11 +1839,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/astro-assets-prefix:
dependencies:
@@ -1809,11 +1854,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/astro-attrs:
dependencies:
@@ -1824,11 +1869,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/astro-basic:
dependencies:
@@ -1842,8 +1887,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/astro-check-errors:
dependencies:
@@ -1878,14 +1923,14 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/astro-class-list:
dependencies:
@@ -1908,14 +1953,14 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/astro-client-only/pkg: {}
@@ -1928,11 +1973,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/astro-component-code:
dependencies:
@@ -1994,14 +2039,14 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/astro-envs:
dependencies:
@@ -2012,8 +2057,8 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/astro-expr:
dependencies:
@@ -2024,8 +2069,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/astro-external-files:
dependencies:
@@ -2042,8 +2087,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/astro-generator:
dependencies:
@@ -2204,11 +2249,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/astro-preview-headers:
dependencies:
@@ -2252,8 +2297,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/astro-slots:
dependencies:
@@ -2282,23 +2327,23 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/before-hydration:
dependencies:
@@ -2309,8 +2354,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/build-assets:
dependencies:
@@ -2321,8 +2366,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/build-readonly-file:
dependencies:
@@ -2360,26 +2405,26 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/component-library-shared:
dependencies:
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
devDependencies:
astro:
specifier: workspace:*
@@ -2591,8 +2636,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/css-import-as-inline:
dependencies:
@@ -2606,6 +2651,18 @@ importers:
specifier: workspace:*
version: link:../../..
+ packages/astro/test/fixtures/css-inline-stylesheets-2:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
+ packages/astro/test/fixtures/css-inline-stylesheets-3:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
packages/astro/test/fixtures/css-no-code-split:
dependencies:
astro:
@@ -2633,11 +2690,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/css-order-layout:
dependencies:
@@ -2774,8 +2831,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/error-bad-js:
dependencies:
@@ -2810,23 +2867,23 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/fontsource-package:
dependencies:
'@fontsource/monofett':
- specifier: 5.0.17
- version: 5.0.17
+ specifier: 5.0.20
+ version: 5.0.20
'@fontsource/montserrat':
- specifier: 5.0.15
- version: 5.0.15
+ specifier: 5.0.18
+ version: 5.0.18
astro:
specifier: workspace:*
version: link:../../..
@@ -2900,8 +2957,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/i18n-routing:
dependencies:
@@ -2978,11 +3035,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/integration-add-page-extension:
dependencies:
@@ -2999,23 +3056,23 @@ importers:
packages/astro/test/fixtures/jsx:
dependencies:
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@astrojs/mdx':
specifier: workspace:*
@@ -3048,8 +3105,8 @@ importers:
specifier: workspace:*
version: link:../../..
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/test/fixtures/lazy-layout:
dependencies:
@@ -3069,8 +3126,8 @@ importers:
specifier: workspace:*
version: link:../../..
lit:
- specifier: ^3.1.0
- version: 3.1.2
+ specifier: ^3.1.3
+ version: 3.1.3
packages/astro/test/fixtures/markdown:
dependencies:
@@ -3108,6 +3165,12 @@ importers:
specifier: workspace:*
version: link:../../..
+ packages/astro/test/fixtures/middleware-virtual:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
packages/astro/test/fixtures/minification-html:
dependencies:
astro:
@@ -3184,24 +3247,24 @@ importers:
specifier: workspace:*
version: link:../../..
autoprefixer:
- specifier: ^10.4.15
+ specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
postcss:
- specifier: ^8.4.28
+ specifier: ^8.4.38
version: 8.4.38
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
postcss-preset-env:
- specifier: ^9.3.0
- version: 9.5.5(postcss@8.4.38)
+ specifier: ^9.5.12
+ version: 9.5.12(postcss@8.4.38)
packages/astro/test/fixtures/preact-compat-component:
dependencies:
@@ -3215,14 +3278,14 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/preact-compat-component/packages/react-lib:
dependencies:
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
packages/astro/test/fixtures/preact-component:
dependencies:
@@ -3230,14 +3293,14 @@ importers:
specifier: workspace:*
version: link:../../../../integrations/preact
'@preact/signals':
- specifier: 1.2.1
- version: 1.2.1(preact@10.20.2)
+ specifier: 1.2.3
+ version: 1.2.3(preact@10.21.0)
astro:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/public-base-404:
dependencies:
@@ -3257,23 +3320,23 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/test/fixtures/react-jsx-export:
dependencies:
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
devDependencies:
'@astrojs/react':
specifier: workspace:*
@@ -3297,8 +3360,8 @@ importers:
specifier: 'workspace:'
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/remote-css:
dependencies:
@@ -3306,6 +3369,18 @@ importers:
specifier: workspace:*
version: link:../../..
+ packages/astro/test/fixtures/reroute:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
+ packages/astro/test/fixtures/reuse-injected-entrypoint:
+ dependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../../..
+
packages/astro/test/fixtures/root-srcdir-css:
dependencies:
astro:
@@ -3348,8 +3423,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/slots-react:
dependencies:
@@ -3363,11 +3438,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/slots-solid:
dependencies:
@@ -3381,8 +3456,8 @@ importers:
specifier: workspace:*
version: link:../../..
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/test/fixtures/slots-svelte:
dependencies:
@@ -3396,8 +3471,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/slots-vue:
dependencies:
@@ -3411,8 +3486,8 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/solid-component:
dependencies:
@@ -3420,8 +3495,8 @@ importers:
specifier: workspace:*
version: link:../../../../integrations/solid
'@solidjs/router':
- specifier: ^0.9.1
- version: 0.9.1(solid-js@1.8.16)
+ specifier: ^0.13.3
+ version: 0.13.3(solid-js@1.8.17)
'@test/solid-jsx-component':
specifier: file:./deps/solid-jsx-component
version: file:packages/astro/test/fixtures/solid-component/deps/solid-jsx-component
@@ -3429,14 +3504,14 @@ importers:
specifier: workspace:*
version: link:../../..
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/test/fixtures/solid-component/deps/solid-jsx-component:
dependencies:
solid-js:
- specifier: ^1.8.5
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
packages/astro/test/fixtures/sourcemap:
dependencies:
@@ -3447,11 +3522,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/space in folder name/app:
dependencies:
@@ -3471,11 +3546,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/ssr-api-route:
dependencies:
@@ -3507,8 +3582,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/ssr-error-pages:
dependencies:
@@ -3594,8 +3669,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/ssr-split-manifest:
dependencies:
@@ -3615,8 +3690,8 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/astro/test/fixtures/static-build-code-component:
dependencies:
@@ -3642,14 +3717,14 @@ importers:
specifier: workspace:*
version: link:../../..
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/static-build-page-url-format:
dependencies:
@@ -3680,11 +3755,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/svelte-component:
dependencies:
@@ -3695,8 +3770,8 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
packages/astro/test/fixtures/tailwindcss:
dependencies:
@@ -3710,13 +3785,13 @@ importers:
specifier: workspace:*
version: link:../../..
autoprefixer:
- specifier: ^10.4.15
+ specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
postcss:
- specifier: ^8.4.28
+ specifier: ^8.4.38
version: 8.4.38
tailwindcss:
- specifier: ^3.3.5
+ specifier: ^3.4.3
version: 3.4.3
packages/astro/test/fixtures/tailwindcss-ts:
@@ -3728,10 +3803,10 @@ importers:
specifier: workspace:*
version: link:../../..
postcss:
- specifier: ^8.4.28
+ specifier: ^8.4.38
version: 8.4.38
tailwindcss:
- specifier: ^3.3.5
+ specifier: ^3.4.3
version: 3.4.3
packages/astro/test/fixtures/third-party-astro:
@@ -3740,8 +3815,8 @@ importers:
specifier: workspace:*
version: link:../../..
astro-embed:
- specifier: ^0.6.0
- version: 0.6.2(astro@packages+astro)
+ specifier: ^0.7.2
+ version: 0.7.2(astro@packages+astro)
packages/astro/test/fixtures/type-imports:
dependencies:
@@ -3764,11 +3839,11 @@ importers:
specifier: workspace:*
version: link:../../..
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/astro/test/fixtures/virtual-astro-file:
dependencies:
@@ -3791,8 +3866,8 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/vue-jsx:
dependencies:
@@ -3803,8 +3878,8 @@ importers:
specifier: workspace:*
version: link:../../..
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/vue-with-multi-renderer:
dependencies:
@@ -3818,11 +3893,11 @@ importers:
specifier: workspace:*
version: link:../../..
svelte:
- specifier: ^4.2.5
- version: 4.2.14
+ specifier: ^4.2.16
+ version: 4.2.16
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/astro/test/fixtures/with-endpoint-routes:
dependencies:
@@ -3868,18 +3943,24 @@ importers:
packages/db:
dependencies:
+ '@astrojs/studio':
+ specifier: workspace:*
+ version: link:../studio
'@libsql/client':
specifier: ^0.6.0
version: 0.6.0
async-listen:
specifier: ^3.0.1
version: 3.0.1
+ ci-info:
+ specifier: ^4.0.0
+ version: 4.0.0
deep-diff:
specifier: ^1.0.2
version: 1.0.2
drizzle-orm:
- specifier: ^0.30.9
- version: 0.30.9(@libsql/client@0.6.0)
+ specifier: ^0.30.10
+ version: 0.30.10(@libsql/client@0.6.0)
github-slugger:
specifier: ^2.0.0
version: 2.0.0
@@ -3905,18 +3986,18 @@ importers:
specifier: ^21.1.1
version: 21.1.1
zod:
- specifier: ^3.23.0
- version: 3.23.0
+ specifier: ^3.23.8
+ version: 3.23.8
devDependencies:
'@types/chai':
- specifier: ^4.3.14
- version: 4.3.14
+ specifier: ^4.3.16
+ version: 4.3.16
'@types/deep-diff':
specifier: ^1.0.5
version: 1.0.5
'@types/diff':
- specifier: ^5.2.0
- version: 5.2.0
+ specifier: ^5.2.1
+ version: 5.2.1
'@types/mocha':
specifier: ^10.0.6
version: 10.0.6
@@ -3933,8 +4014,8 @@ importers:
specifier: workspace:*
version: link:../../scripts
chai:
- specifier: ^5.1.0
- version: 5.1.0
+ specifier: ^5.1.1
+ version: 5.1.1
cheerio:
specifier: 1.0.0-rc.12
version: 1.0.0-rc.12
@@ -3945,8 +4026,8 @@ importers:
specifier: ^5.4.5
version: 5.4.5
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/db/test/fixtures/basics:
dependencies:
@@ -4041,8 +4122,8 @@ importers:
packages/db/test/fixtures/ticketing-example:
dependencies:
'@astrojs/check':
- specifier: ^0.5.5
- version: 0.5.10(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
+ specifier: ^0.6.0
+ version: 0.6.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
'@astrojs/db':
specifier: workspace:*
version: link:../../..
@@ -4050,41 +4131,41 @@ importers:
specifier: workspace:*
version: link:../../../../integrations/node
'@astrojs/react':
- specifier: ^3.0.10
+ specifier: ^3.3.4
version: link:../../../../integrations/react
'@types/react':
- specifier: ^18.2.57
- version: 18.2.78
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.19
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
specifier: workspace:*
version: link:../../../../astro
open-props:
- specifier: ^1.6.17
- version: 1.7.2
+ specifier: ^1.7.4
+ version: 1.7.4
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
simple-stack-form:
- specifier: ^0.1.10
- version: 0.1.12(astro@packages+astro)(zod@3.22.4)
+ specifier: ^0.1.12
+ version: 0.1.12(astro@packages+astro)(zod@3.23.8)
typescript:
- specifier: ^5.3.2
+ specifier: ^5.4.5
version: 5.4.5
zod:
- specifier: ^3.22.4
- version: 3.22.4
+ specifier: ^3.23.8
+ version: 3.23.8
packages/integrations/alpinejs:
devDependencies:
'@playwright/test':
- specifier: 1.43.1
- version: 1.43.1
+ specifier: 1.44.0
+ version: 1.44.0
astro:
specifier: workspace:*
version: link:../../astro
@@ -4092,8 +4173,8 @@ importers:
specifier: workspace:*
version: link:../../../scripts
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/alpinejs/test/fixtures/basics:
dependencies:
@@ -4101,11 +4182,11 @@ importers:
specifier: workspace:*
version: link:../../..
'@types/alpinejs':
- specifier: ^3.13.5
+ specifier: ^3.13.10
version: 3.13.10
alpinejs:
- specifier: ^3.13.3
- version: 3.13.8
+ specifier: ^3.13.10
+ version: 3.13.10
astro:
specifier: workspace:*
version: link:../../../../../astro
@@ -4116,11 +4197,11 @@ importers:
specifier: workspace:*
version: link:../../..
'@types/alpinejs':
- specifier: ^3.13.5
+ specifier: ^3.13.10
version: 3.13.10
alpinejs:
- specifier: ^3.13.3
- version: 3.13.8
+ specifier: ^3.13.10
+ version: 3.13.10
astro:
specifier: workspace:*
version: link:../../../../../astro
@@ -4131,11 +4212,11 @@ importers:
specifier: workspace:*
version: link:../../..
'@types/alpinejs':
- specifier: ^3.13.5
+ specifier: ^3.13.10
version: 3.13.10
alpinejs:
- specifier: ^3.13.3
- version: 3.13.8
+ specifier: ^3.13.10
+ version: 3.13.10
astro:
specifier: workspace:*
version: link:../../../../../astro
@@ -4170,8 +4251,8 @@ importers:
specifier: ^3.1.3
version: 3.1.3
sass:
- specifier: ^1.75.0
- version: 1.75.0
+ specifier: ^1.77.1
+ version: 1.77.1
packages/integrations/markdoc:
dependencies:
@@ -4188,8 +4269,8 @@ importers:
specifier: ^0.4.0
version: 0.4.0
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
github-slugger:
specifier: ^2.0.0
version: 2.0.0
@@ -4203,15 +4284,15 @@ importers:
specifier: ^4.1.5
version: 4.1.5
zod:
- specifier: ^3.23.0
- version: 3.23.0
+ specifier: ^3.23.8
+ version: 3.23.8
devDependencies:
'@types/html-escaper':
specifier: ^3.0.2
version: 3.0.2
'@types/markdown-it':
- specifier: ^14.0.1
- version: 14.0.1
+ specifier: ^14.1.1
+ version: 14.1.1
astro:
specifier: workspace:*
version: link:../../astro
@@ -4222,11 +4303,11 @@ importers:
specifier: ^5.0.0
version: 5.0.0
linkedom:
- specifier: ^0.16.11
- version: 0.16.11
+ specifier: ^0.18.0
+ version: 0.18.0
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/markdoc/test/fixtures/content-collections:
dependencies:
@@ -4330,8 +4411,8 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
preact:
- specifier: ^10.20.1
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/integrations/markdoc/test/fixtures/render-with-config:
dependencies:
@@ -4372,8 +4453,8 @@ importers:
specifier: ^8.11.3
version: 8.11.3
es-module-lexer:
- specifier: ^1.5.0
- version: 1.5.0
+ specifier: ^1.5.2
+ version: 1.5.2
estree-util-visit:
specifier: ^2.0.0
version: 2.0.0
@@ -4396,8 +4477,8 @@ importers:
specifier: ^4.0.0
version: 4.0.0
remark-smartypants:
- specifier: ^3.0.0
- version: 3.0.0
+ specifier: ^3.0.1
+ version: 3.0.1
source-map:
specifier: ^0.7.4
version: 0.7.4
@@ -4411,6 +4492,9 @@ importers:
'@types/estree':
specifier: ^1.0.5
version: 1.0.5
+ '@types/hast':
+ specifier: ^3.0.4
+ version: 3.0.4
'@types/mdast':
specifier: ^4.0.3
version: 4.0.3
@@ -4427,11 +4511,14 @@ importers:
specifier: 1.0.0-rc.12
version: 1.0.0-rc.12
linkedom:
- specifier: ^0.16.11
- version: 0.16.11
+ specifier: ^0.18.0
+ version: 0.18.0
mdast-util-mdx:
specifier: ^3.0.0
version: 3.0.0
+ mdast-util-mdx-jsx:
+ specifier: ^3.1.2
+ version: 3.1.2
mdast-util-to-string:
specifier: ^4.0.0
version: 4.0.0
@@ -4460,8 +4547,8 @@ importers:
specifier: ^11.0.4
version: 11.0.4
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/mdx/test/fixtures/css-head-mdx:
dependencies:
@@ -4472,8 +4559,8 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
astro-remote:
- specifier: 0.2.4
- version: 0.2.4
+ specifier: 0.3.3
+ version: 0.3.3
packages/integrations/mdx/test/fixtures/image-remark-imgattr:
dependencies:
@@ -4511,11 +4598,11 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/integrations/mdx/test/fixtures/mdx-infinite-loop:
dependencies:
@@ -4529,8 +4616,8 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
preact:
- specifier: ^10.19.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/integrations/mdx/test/fixtures/mdx-namespace:
dependencies:
@@ -4544,11 +4631,11 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/integrations/mdx/test/fixtures/mdx-optimize:
dependencies:
@@ -4568,11 +4655,11 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/integrations/mdx/test/fixtures/mdx-plus-react:
dependencies:
@@ -4586,11 +4673,11 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
packages/integrations/mdx/test/fixtures/mdx-vite-env-vars:
dependencies:
@@ -4766,8 +4853,8 @@ importers:
packages/integrations/partytown:
dependencies:
'@builder.io/partytown':
- specifier: ^0.10.1
- version: 0.10.1
+ specifier: ^0.10.2
+ version: 0.10.2
mrmime:
specifier: ^2.0.0
version: 2.0.0
@@ -4783,25 +4870,25 @@ importers:
dependencies:
'@babel/plugin-transform-react-jsx':
specifier: ^7.23.4
- version: 7.23.4(@babel/core@7.24.4)
+ version: 7.23.4(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-development':
specifier: ^7.22.5
version: 7.22.5
'@preact/preset-vite':
specifier: ^2.8.2
- version: 2.8.2(preact@10.20.2)
+ version: 2.8.2(preact@10.21.0)
'@preact/signals':
specifier: ^1.2.3
- version: 1.2.3(preact@10.20.2)
+ version: 1.2.3(preact@10.21.0)
babel-plugin-transform-hook-names:
specifier: ^1.0.2
version: 1.0.2
preact-render-to-string:
specifier: ~6.3.1
- version: 6.3.1(preact@10.20.2)
+ version: 6.3.1(preact@10.21.0)
preact-ssr-prepass:
specifier: ^1.2.1
- version: 1.2.1(preact@10.20.2)
+ version: 1.2.1(preact@10.21.0)
devDependencies:
astro:
specifier: workspace:*
@@ -4810,24 +4897,24 @@ importers:
specifier: workspace:*
version: link:../../../scripts
preact:
- specifier: ^10.20.2
- version: 10.20.2
+ specifier: ^10.21.0
+ version: 10.21.0
packages/integrations/react:
dependencies:
'@vitejs/plugin-react':
specifier: ^4.2.1
- version: 4.2.1(vite@5.2.10)
+ version: 4.2.1(vite@5.2.11)
ultrahtml:
specifier: ^1.5.3
version: 1.5.3
devDependencies:
'@types/react':
- specifier: ^18.2.79
- version: 18.2.79
+ specifier: ^18.3.2
+ version: 18.3.2
'@types/react-dom':
- specifier: ^18.2.25
- version: 18.2.25
+ specifier: ^18.3.0
+ version: 18.3.0
astro:
specifier: workspace:*
version: link:../../astro
@@ -4838,14 +4925,14 @@ importers:
specifier: 1.0.0-rc.12
version: 1.0.0-rc.12
react:
- specifier: ^18.2.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/react/test/fixtures/react-component:
dependencies:
@@ -4859,14 +4946,14 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
react:
- specifier: ^18.1.0
- version: 18.2.0
+ specifier: ^18.3.1
+ version: 18.3.1
react-dom:
- specifier: ^18.1.0
- version: 18.2.0(react@18.2.0)
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
vue:
- specifier: ^3.3.8
- version: 3.4.21(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/integrations/sitemap:
dependencies:
@@ -4877,8 +4964,8 @@ importers:
specifier: ^2.0.0
version: 2.0.0
zod:
- specifier: ^3.23.0
- version: 3.23.0
+ specifier: ^3.23.8
+ version: 3.23.8
devDependencies:
'@astrojs/node':
specifier: workspace:*
@@ -4933,7 +5020,7 @@ importers:
dependencies:
vite-plugin-solid:
specifier: ^2.10.2
- version: 2.10.2(solid-js@1.8.16)
+ version: 2.10.2(solid-js@1.8.17)(vite@5.2.11)
devDependencies:
astro:
specifier: workspace:*
@@ -4942,17 +5029,20 @@ importers:
specifier: workspace:*
version: link:../../../scripts
solid-js:
- specifier: ^1.8.16
- version: 1.8.16
+ specifier: ^1.8.17
+ version: 1.8.17
+ vite:
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/svelte:
dependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.0
- version: 3.1.0(svelte@4.2.15)(vite@5.2.10)
+ version: 3.1.0(svelte@4.2.16)(vite@5.2.11)
svelte2tsx:
- specifier: ^0.7.6
- version: 0.7.6(svelte@4.2.15)(typescript@5.4.5)
+ specifier: ^0.7.8
+ version: 0.7.8(svelte@4.2.16)(typescript@5.4.5)
devDependencies:
astro:
specifier: workspace:*
@@ -4961,11 +5051,11 @@ importers:
specifier: workspace:*
version: link:../../../scripts
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/tailwind:
dependencies:
@@ -4989,8 +5079,8 @@ importers:
specifier: ^3.4.3
version: 3.4.3
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
packages/integrations/tailwind/test/fixtures/basic:
dependencies:
@@ -5013,11 +5103,11 @@ importers:
specifier: ^1.1.1
version: 1.1.1
'@vercel/nft':
- specifier: ^0.26.4
- version: 0.26.4
+ specifier: ^0.27.0
+ version: 0.27.0
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
fast-glob:
specifier: ^3.3.2
version: 3.3.2
@@ -5225,13 +5315,16 @@ importers:
dependencies:
'@vitejs/plugin-vue':
specifier: ^5.0.4
- version: 5.0.4(vite@5.2.10)(vue@3.4.23)
+ version: 5.0.4(vite@5.2.11)(vue@3.4.27)
'@vitejs/plugin-vue-jsx':
specifier: ^3.1.0
- version: 3.1.0(vite@5.2.10)(vue@3.4.23)
+ version: 3.1.0(vite@5.2.11)(vue@3.4.27)
'@vue/compiler-sfc':
- specifier: ^3.4.23
- version: 3.4.23
+ specifier: ^3.4.27
+ version: 3.4.27
+ vite-plugin-vue-devtools:
+ specifier: ^7.1.3
+ version: 7.1.3(vite@5.2.11)(vue@3.4.27)
devDependencies:
astro:
specifier: workspace:*
@@ -5243,14 +5336,14 @@ importers:
specifier: 1.0.0-rc.12
version: 1.0.0-rc.12
linkedom:
- specifier: ^0.16.11
- version: 0.16.11
+ specifier: ^0.18.0
+ version: 0.18.0
vite:
- specifier: ^5.2.10
- version: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
vue:
- specifier: ^3.4.23
- version: 3.4.23(typescript@5.4.5)
+ specifier: ^3.4.27
+ version: 3.4.27(typescript@5.4.5)
packages/integrations/vue/test/fixtures/app-entrypoint:
dependencies:
@@ -5261,8 +5354,8 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
vite-svg-loader:
- specifier: 5.0.1
- version: 5.0.1
+ specifier: 5.1.0
+ version: 5.1.0
packages/integrations/vue/test/fixtures/app-entrypoint-async:
dependencies:
@@ -5273,8 +5366,8 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
vite-svg-loader:
- specifier: 5.0.1
- version: 5.0.1
+ specifier: 5.1.0
+ version: 5.1.0
packages/integrations/vue/test/fixtures/app-entrypoint-css:
dependencies:
@@ -5324,6 +5417,40 @@ importers:
specifier: workspace:*
version: link:../../../../../astro
+ packages/integrations/web-vitals:
+ dependencies:
+ web-vitals:
+ specifier: ^4.0.0
+ version: 4.0.0
+ devDependencies:
+ '@astrojs/db':
+ specifier: workspace:*
+ version: link:../../db
+ astro:
+ specifier: workspace:*
+ version: link:../../astro
+ astro-scripts:
+ specifier: workspace:*
+ version: link:../../../scripts
+ linkedom:
+ specifier: ^0.18.0
+ version: 0.18.0
+
+ packages/integrations/web-vitals/test/fixtures/basics:
+ dependencies:
+ '@astrojs/db':
+ specifier: workspace:*
+ version: link:../../../../../db
+ '@astrojs/node':
+ specifier: workspace:*
+ version: link:../../../../node
+ '@astrojs/web-vitals':
+ specifier: workspace:*
+ version: link:../../..
+ astro:
+ specifier: workspace:*
+ version: link:../../../../../astro
+
packages/internal-helpers:
devDependencies:
astro-scripts:
@@ -5345,8 +5472,8 @@ importers:
specifier: ^4.0.2
version: 4.0.2
import-meta-resolve:
- specifier: ^4.0.0
- version: 4.0.0
+ specifier: ^4.1.0
+ version: 4.1.0
mdast-util-definitions:
specifier: ^6.0.0
version: 6.0.0
@@ -5366,11 +5493,11 @@ importers:
specifier: ^11.1.0
version: 11.1.0
remark-smartypants:
- specifier: ^3.0.0
- version: 3.0.0
+ specifier: ^3.0.1
+ version: 3.0.1
shiki:
- specifier: ^1.3.0
- version: 1.3.0
+ specifier: ^1.5.1
+ version: 1.5.1
unified:
specifier: ^11.0.4
version: 11.0.4
@@ -5403,12 +5530,37 @@ importers:
specifier: workspace:*
version: link:../../../scripts
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
mdast-util-mdx-expression:
specifier: ^2.0.0
version: 2.0.0
+ packages/studio:
+ dependencies:
+ ci-info:
+ specifier: ^4.0.0
+ version: 4.0.0
+ kleur:
+ specifier: ^4.1.5
+ version: 4.1.5
+ ora:
+ specifier: ^8.0.1
+ version: 8.0.1
+ devDependencies:
+ astro:
+ specifier: workspace:*
+ version: link:../astro
+ astro-scripts:
+ specifier: workspace:*
+ version: link:../../scripts
+ typescript:
+ specifier: ^5.4.5
+ version: 5.4.5
+ vite:
+ specifier: ^5.2.11
+ version: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+
packages/telemetry:
dependencies:
ci-info:
@@ -5464,8 +5616,8 @@ importers:
specifier: ^0.4.1
version: 0.4.1
semver:
- specifier: ^7.6.0
- version: 7.6.0
+ specifier: ^7.6.2
+ version: 7.6.2
terminal-link:
specifier: ^3.0.0
version: 3.0.0
@@ -5495,8 +5647,8 @@ importers:
specifier: ^5.0.2
version: 5.0.2
esbuild:
- specifier: ^0.20.2
- version: 0.20.2
+ specifier: ^0.21.2
+ version: 0.21.2
globby:
specifier: ^14.0.1
version: 14.0.1
@@ -5507,21 +5659,21 @@ importers:
specifier: ^5.0.0
version: 5.0.0
svelte:
- specifier: ^4.2.15
- version: 4.2.15
+ specifier: ^4.2.16
+ version: 4.2.16
tar:
- specifier: ^7.0.1
- version: 7.0.1
+ specifier: ^7.1.0
+ version: 7.1.0
devDependencies:
'@octokit/action':
- specifier: ^6.1.0
- version: 6.1.0
+ specifier: ^7.0.0
+ version: 7.0.0
del:
specifier: ^7.1.0
version: 7.1.0
esbuild-plugin-copy:
specifier: ^2.1.1
- version: 2.1.1(esbuild@0.20.2)
+ version: 2.1.1(esbuild@0.21.2)
execa:
specifier: ^8.0.1
version: 8.0.1
@@ -5547,6 +5699,10 @@ packages:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
+ /@antfu/utils@0.7.8:
+ resolution: {integrity: sha512-rWQkqXRESdjXtc+7NRfK9lASQjpXJu1ayp7qi1d23zZorY+wBHVLHHoVcMsEnkqEBWTFqbztO7/QdJFzyEcLTg==}
+ dev: false
+
/@asamuzakjp/dom-selector@2.0.2:
resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==}
dependencies:
@@ -5559,11 +5715,12 @@ packages:
resolution: {integrity: sha512-ulkCYfFbYj01ie1MDOyxv2F6SpRN1TOj7fQxbP07D6HmeR+gr2JLSmINKjga2emB+b1L2KGrFKBTc+e00p54nw==}
dev: false
- /@astro-community/astro-embed-integration@0.6.2(astro@packages+astro):
- resolution: {integrity: sha512-POfrt9MMURfmcPuZZPY9M5pAbtBfpRNyzmoWKhFRiukxNFNKD5SsYG/+BxmmdmoDU6DLAsi9NERAEOuSD4ptTA==}
+ /@astro-community/astro-embed-integration@0.7.1(astro@packages+astro):
+ resolution: {integrity: sha512-uPpVx/CluktB3nOnCTUB7tQ3jms2acYWTe/JgX5tFqTjjtiL686+FcjOaQ/Ej+FNErdg+36Y66WTeIxlYw4pvQ==}
peerDependencies:
astro: '*'
dependencies:
+ '@astro-community/astro-embed-link-preview': 0.2.0
'@astro-community/astro-embed-twitter': 0.5.4(astro@packages+astro)
'@astro-community/astro-embed-vimeo': 0.3.7(astro@packages+astro)
'@astro-community/astro-embed-youtube': 0.5.2(astro@packages+astro)
@@ -5573,6 +5730,12 @@ packages:
unist-util-select: 4.0.3
dev: false
+ /@astro-community/astro-embed-link-preview@0.2.0:
+ resolution: {integrity: sha512-yXWQv9nlI7IAQxJo/mpa93ZY4G4WwN7JjiTkKZKAce3ZQQyI1qZb6+x5gVRIhkMlyHlroVKelZHFk/NVcHDZkA==}
+ dependencies:
+ '@astro-community/astro-embed-utils': 0.1.2
+ dev: false
+
/@astro-community/astro-embed-twitter@0.5.4(astro@packages+astro):
resolution: {integrity: sha512-wQyros0Uh4L8fDOCZ9+UYMoq4u+YiJZEvjnL6ZP0KL6dcsyfma/XC2/Q2DBL5SBBiIkkFcFHmzDBIPl4HsENXw==}
peerDependencies:
@@ -5606,13 +5769,13 @@ packages:
lite-youtube-embed: 0.3.2
dev: false
- /@astrojs/check@0.5.10(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5):
- resolution: {integrity: sha512-vliHXM9cu/viGeKiksUM4mXfO816ohWtawTl2ADPgTsd4nUMjFiyAl7xFZhF34yy4hq4qf7jvK1F2PlR3b5I5w==}
+ /@astrojs/check@0.6.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5):
+ resolution: {integrity: sha512-Q6fct7FvByTf0L5lvH2QwFelXtLViWhPNgMfOvrGq7spV5SPX9jQPoFxH+nRFh1oDhBBIWImRjkSpSyhX9fQHA==}
hasBin: true
peerDependencies:
typescript: ^5.0.0
dependencies:
- '@astrojs/language-server': 2.8.4(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
+ '@astrojs/language-server': 2.9.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5)
chokidar: 3.6.0
fast-glob: 3.3.2
kleur: 4.1.5
@@ -5634,11 +5797,11 @@ packages:
/@astrojs/compiler@1.8.2:
resolution: {integrity: sha512-o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==}
- /@astrojs/compiler@2.7.1:
- resolution: {integrity: sha512-/POejAYuj8WEw7ZI0J8JBvevjfp9jQ9Wmu/Bg52RiNwGXkMV7JnYpsenVfHvvf1G7R5sXHGKlTcxlQWhoUTiGQ==}
+ /@astrojs/compiler@2.8.0:
+ resolution: {integrity: sha512-yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==}
- /@astrojs/language-server@2.8.4(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5):
- resolution: {integrity: sha512-sJH5vGTBkhgA8+hdhzX78UUp4cFz4Mt7xkEkevD188OS5bDMkaue6hK+dtXWM47mnrXFveXA2u38K7S+5+IRjA==}
+ /@astrojs/language-server@2.9.0(prettier-plugin-astro@0.13.0)(prettier@3.2.5)(typescript@5.4.5):
+ resolution: {integrity: sha512-Q3wtoDh3RRfjYNfE5c7GPncAmZ6RMo3AQQCHBExtH5G4UiXYSxg4mPmSBdq+97yIXZWlN63W5V77OxUReAwQYA==}
hasBin: true
peerDependencies:
prettier: ^3.0.0
@@ -5649,22 +5812,22 @@ packages:
prettier-plugin-astro:
optional: true
dependencies:
- '@astrojs/compiler': 2.7.1
+ '@astrojs/compiler': 2.8.0
'@jridgewell/sourcemap-codec': 1.4.15
- '@volar/kit': 2.1.6(typescript@5.4.5)
- '@volar/language-core': 2.1.6
- '@volar/language-server': 2.1.6
- '@volar/language-service': 2.1.6
- '@volar/typescript': 2.1.6
+ '@volar/kit': 2.2.1(typescript@5.4.5)
+ '@volar/language-core': 2.2.1
+ '@volar/language-server': 2.2.1
+ '@volar/language-service': 2.2.1
+ '@volar/typescript': 2.2.1
fast-glob: 3.3.2
prettier: 3.2.5
prettier-plugin-astro: 0.13.0
- volar-service-css: 0.0.34(@volar/language-service@2.1.6)
- volar-service-emmet: 0.0.34(@volar/language-service@2.1.6)
- volar-service-html: 0.0.34(@volar/language-service@2.1.6)
- volar-service-prettier: 0.0.34(@volar/language-service@2.1.6)(prettier@3.2.5)
- volar-service-typescript: 0.0.34(@volar/language-service@2.1.6)
- volar-service-typescript-twoslash-queries: 0.0.34(@volar/language-service@2.1.6)
+ volar-service-css: 0.0.43(@volar/language-service@2.2.1)
+ volar-service-emmet: 0.0.43(@volar/language-service@2.2.1)
+ volar-service-html: 0.0.43(@volar/language-service@2.2.1)
+ volar-service-prettier: 0.0.43(@volar/language-service@2.2.1)(prettier@3.2.5)
+ volar-service-typescript: 0.0.43(@volar/language-service@2.2.1)
+ volar-service-typescript-twoslash-queries: 0.0.43(@volar/language-service@2.2.1)
vscode-html-languageservice: 5.2.0
vscode-uri: 3.0.8
transitivePeerDependencies:
@@ -5682,20 +5845,20 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/core@7.24.4:
- resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
+ /@babel/core@7.24.5:
+ resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helpers': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helpers': 7.24.5
+ '@babel/parser': 7.24.5
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
convert-source-map: 2.0.0
debug: 4.3.4(supports-color@8.1.1)
gensync: 1.0.0-beta.2
@@ -5705,11 +5868,11 @@ packages:
- supports-color
dev: false
- /@babel/generator@7.24.4:
- resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
+ /@babel/generator@7.24.5:
+ resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
@@ -5719,7 +5882,7 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-compilation-targets@7.23.6:
@@ -5733,7 +5896,7 @@ packages:
semver: 6.3.1
dev: false
- /@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4):
+ /@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.5):
resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5742,13 +5905,13 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
@@ -5764,46 +5927,46 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-module-imports@7.24.3:
resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4):
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ /@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5):
+ resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -5811,19 +5974,19 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-simple-access': 7.24.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.5
dev: false
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-plugin-utils@7.24.0:
@@ -5831,7 +5994,7 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4):
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5):
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -5840,39 +6003,46 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
dev: false
- /@babel/helper-simple-access@7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ /@babel/helper-simple-access@7.24.5:
+ resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
+ dev: false
+
+ /@babel/helper-split-export-declaration@7.24.5:
+ resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.24.5
dev: false
/@babel/helper-string-parser@7.24.1:
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.20:
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ /@babel/helper-validator-identifier@7.24.5:
+ resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.23.5:
@@ -5880,13 +6050,13 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helpers@7.24.4:
- resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
+ /@babel/helpers@7.24.5:
+ resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
transitivePeerDependencies:
- supports-color
dev: false
@@ -5895,20 +6065,20 @@ packages:
resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.0
- /@babel/parser@7.24.4:
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ /@babel/parser@7.24.5:
+ resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
+ /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5916,12 +6086,14 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
dev: false
- /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
+ /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5929,12 +6101,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-jsx-development@7.22.5:
- resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5942,24 +6114,24 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.4):
- resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==}
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5967,12 +6139,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.0
dev: false
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5980,16 +6152,12 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.24.3
+ '@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
dev: false
- /@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4):
- resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ /@babel/plugin-transform-react-jsx-development@7.22.5:
+ resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5997,15 +6165,70 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
dev: false
- /@babel/runtime@7.24.4:
- resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
+ /@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: false
+
+ /@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.5):
+ resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: false
+
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.5):
+ resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/types': 7.24.5
+ dev: false
+
+ /@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.5):
+ resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.0
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
+ dev: false
+
+ /@babel/runtime@7.24.4:
+ resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
@@ -6016,54 +6239,54 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
dev: false
- /@babel/traverse@7.24.1:
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ /@babel/traverse@7.24.5:
+ resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
debug: 4.3.4(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/types@7.24.0:
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ /@babel/types@7.24.5:
+ resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
to-fast-properties: 2.0.0
- /@biomejs/biome@1.6.4:
- resolution: {integrity: sha512-3groVd2oWsLC0ZU+XXgHSNbq31lUcOCBkCcA7sAQGBopHcmL+jmmdoWlY3S61zIh+f2mqQTQte1g6PZKb3JJjA==}
+ /@biomejs/biome@1.7.1:
+ resolution: {integrity: sha512-wb2UNoFXcgaMdKXKT5ytsYntaogl2FSTjDt20CZynF3v7OXQUcIpTrr+be3XoOGpoZRj3Ytq9TSpmplUREXmeA==}
engines: {node: '>=14.21.3'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@biomejs/cli-darwin-arm64': 1.6.4
- '@biomejs/cli-darwin-x64': 1.6.4
- '@biomejs/cli-linux-arm64': 1.6.4
- '@biomejs/cli-linux-arm64-musl': 1.6.4
- '@biomejs/cli-linux-x64': 1.6.4
- '@biomejs/cli-linux-x64-musl': 1.6.4
- '@biomejs/cli-win32-arm64': 1.6.4
- '@biomejs/cli-win32-x64': 1.6.4
- dev: true
-
- /@biomejs/cli-darwin-arm64@1.6.4:
- resolution: {integrity: sha512-2WZef8byI9NRzGajGj5RTrroW9BxtfbP9etigW1QGAtwu/6+cLkdPOWRAs7uFtaxBNiKFYA8j/BxV5zeAo5QOQ==}
+ '@biomejs/cli-darwin-arm64': 1.7.1
+ '@biomejs/cli-darwin-x64': 1.7.1
+ '@biomejs/cli-linux-arm64': 1.7.1
+ '@biomejs/cli-linux-arm64-musl': 1.7.1
+ '@biomejs/cli-linux-x64': 1.7.1
+ '@biomejs/cli-linux-x64-musl': 1.7.1
+ '@biomejs/cli-win32-arm64': 1.7.1
+ '@biomejs/cli-win32-x64': 1.7.1
+ dev: true
+
+ /@biomejs/cli-darwin-arm64@1.7.1:
+ resolution: {integrity: sha512-qfLrIIB58dkgiY/1tgG6fSCBK22PZaSIf6blweZBsG6iMij05mEuJt50ne+zPnNFNUmt8t43NC/qOXT3iFHQBA==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
@@ -6071,8 +6294,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-darwin-x64@1.6.4:
- resolution: {integrity: sha512-uo1zgM7jvzcoDpF6dbGizejDLCqNpUIRkCj/oEK0PB0NUw8re/cn1EnxuOLZqDpn+8G75COLQTOx8UQIBBN/Kg==}
+ /@biomejs/cli-darwin-x64@1.7.1:
+ resolution: {integrity: sha512-OGeyNsEcp5VnKbF9/TBjPCTHNEOm7oHegEve07U3KZmzqfpw2Oe3i9DVW8t6vvj1TYbrwWYCld25H34kBDY7Vg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
@@ -6080,8 +6303,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-linux-arm64-musl@1.6.4:
- resolution: {integrity: sha512-Hp8Jwt6rjj0wCcYAEN6/cfwrrPLLlGOXZ56Lei4Pt4jy39+UuPeAVFPeclrrCfxyL1wQ2xPrhd/saTHSL6DoJg==}
+ /@biomejs/cli-linux-arm64-musl@1.7.1:
+ resolution: {integrity: sha512-giH0/CzLOJ+wbxLxd5Shnr5xQf5fGnTRWLDe3lzjaF7IplVydNCEeZJtncB01SvyA6DAFJsvQ4LNxzAOQfEVCg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
@@ -6089,8 +6312,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-linux-arm64@1.6.4:
- resolution: {integrity: sha512-wAOieaMNIpLrxGc2/xNvM//CIZg7ueWy3V5A4T7gDZ3OL/Go27EKE59a+vMKsBCYmTt7jFl4yHz0TUkUbodA/w==}
+ /@biomejs/cli-linux-arm64@1.7.1:
+ resolution: {integrity: sha512-MQDf5wErj1iBvlcxCyOa0XqZYN8WJrupVgbNnqhntO3yVATg8GxduVUn1fDSaolznkDRsj7Pz3Xu1esBFwvfmg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
@@ -6098,8 +6321,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-linux-x64-musl@1.6.4:
- resolution: {integrity: sha512-wqi0hr8KAx5kBO0B+m5u8QqiYFFBJOSJVSuRqTeGWW+GYLVUtXNidykNqf1JsW6jJDpbkSp2xHKE/bTlVaG2Kg==}
+ /@biomejs/cli-linux-x64-musl@1.7.1:
+ resolution: {integrity: sha512-ySNDtPhsLxU125IFHHAxfpoHBpkM56s4mEXeO70GZtgZay/o1h8IUPWCWf5Z7gKgc4jwgYN1U1U9xabI3hZVAg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
@@ -6107,8 +6330,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-linux-x64@1.6.4:
- resolution: {integrity: sha512-qTWhuIw+/ePvOkjE9Zxf5OqSCYxtAvcTJtVmZT8YQnmY2I62JKNV2m7tf6O5ViKZUOP0mOQ6NgqHKcHH1eT8jw==}
+ /@biomejs/cli-linux-x64@1.7.1:
+ resolution: {integrity: sha512-3wmCsGcC3KZ4pfTknXHfyMMlXPMhgfXVAcG5GlrR+Tq2JGiAw0EUydaLpsSBEbcG7IxH6OiUZEJZ95kAycCHBA==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
@@ -6116,8 +6339,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-win32-arm64@1.6.4:
- resolution: {integrity: sha512-Wp3FiEeF6v6C5qMfLkHwf4YsoNHr/n0efvoC8jCKO/kX05OXaVExj+1uVQ1eGT7Pvx0XVm/TLprRO0vq/V6UzA==}
+ /@biomejs/cli-win32-arm64@1.7.1:
+ resolution: {integrity: sha512-8hIDakEqZn0i6+388noYKdZ0ZrovTwnvMU/Qp/oJou0G7EPVdXupOe0oxiQSdRN0W7f6CS/yjPCYuVGzDG6r0g==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
@@ -6125,8 +6348,8 @@ packages:
dev: true
optional: true
- /@biomejs/cli-win32-x64@1.6.4:
- resolution: {integrity: sha512-mz183Di5hTSGP7KjNWEhivcP1wnHLGmOxEROvoFsIxMYtDhzJDad4k5gI/1JbmA0xe4n52vsgqo09tBhrMT/Zg==}
+ /@biomejs/cli-win32-x64@1.7.1:
+ resolution: {integrity: sha512-3W9k3uH6Ea6VOpAS9xkkAlS0LTfnGQjmIUCegZ8SDtK2NgJ1gO+qdEkGJb0ltahusFTN1QxJ107dM7ASA9IUEg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
@@ -6134,8 +6357,8 @@ packages:
dev: true
optional: true
- /@builder.io/partytown@0.10.1:
- resolution: {integrity: sha512-HTyW2do++3JUFKTLBjTGwhUu4MTwBDq0dBlWaQm7tLaQk237tnHNkBZmquDXkZ6CkSv8aHiIH40Wm2/nxkjQsQ==}
+ /@builder.io/partytown@0.10.2:
+ resolution: {integrity: sha512-A9U+4PREWcS+CCYzKGIPovtGB/PBgnH/8oQyCE6Nr9drDJk6cMPpLQIEajpGPmG9tYF7N3FkRvhXm/AS9+0iKg==}
engines: {node: '>=18.0.0'}
hasBin: true
dev: false
@@ -6155,7 +6378,7 @@ packages:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/@changesets/assemble-release-plan@6.0.0:
@@ -6166,7 +6389,7 @@ packages:
'@changesets/get-dependents-graph': 2.0.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/@changesets/changelog-git@0.2.0:
@@ -6248,7 +6471,7 @@ packages:
'@manypkg/get-packages': 1.1.3
chalk: 2.4.2
fs-extra: 7.0.1
- semver: 7.6.0
+ semver: 7.6.2
dev: true
/@changesets/get-github-info@0.6.0:
@@ -6366,119 +6589,119 @@ packages:
dev: false
optional: true
- /@csstools/cascade-layer-name-parser@1.0.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-RRqNjxTZDUhx7pxYOBG/AkCVmPS3zYzfE47GEhIGkFuWFTQGJBgWOUUkKNo5MfxIfjDz5/1L3F3rF1oIsYaIpw==}
+ /@csstools/cascade-layer-name-parser@1.0.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-yhsonEAhaWRQvHFYhSzOUobH2Ev++fMci+ppFRagw0qVSPlcPV4FnNmlwpM/b2BM10ZeMRkVV4So6YRswD0O0w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.1
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-parser-algorithms': ^2.6.3
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/color-helpers@4.1.0:
- resolution: {integrity: sha512-pWRKF6cDwget8HowIIf2MqEmqIca/cf8/jO4b3PRtUF5EfQXYMtBIKycXB4yXTCUmwLKOoRZAzh/hjnc7ywOIg==}
+ /@csstools/color-helpers@4.2.0:
+ resolution: {integrity: sha512-hJJrSBzbfGxUsaR6X4Bzd/FLx0F1ulKnR5ljY9AiXCtsR+H+zSWQDFWlKES1BRaVZTDHLpIIHS9K2o0h+JLlrg==}
engines: {node: ^14 || ^16 || >=18}
dev: true
- /@csstools/css-calc@1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-iQqIW5vDPqQdLx07/atCuNKDprhIWjB0b8XRhUyXZWBZYUG+9mNyFwyu30rypX84WLevVo25NYW2ipxR8WyseQ==}
+ /@csstools/css-calc@1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-0owrl7AruDRKAxoSIW8XzJdz7GnuW3AOj4rYLfmXsoKIX2ZZzttzGXoiC8n8V08X7wIBlEWWVB4C8fAN18+I6Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.1
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-parser-algorithms': ^2.6.3
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/css-color-parser@1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-pQPUPo32HW3/NuZxrwr3VJHE+vGqSTVI5gK4jGbuJ7eOFUrsTmZikXcVdInCVWOvuxK5xbCzwDWoTlZUCAKN+A==}
+ /@csstools/css-color-parser@2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-Agx2YmxTcZ7TfB7KNZQ+iekaxbWSdblvtA35aTwE3KfuYyjOlCg3P4KGGdQF/cjm1pHWVSBo5duF/BRfZ8s07A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.1
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-parser-algorithms': ^2.6.3
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/color-helpers': 4.1.0
- '@csstools/css-calc': 1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/color-helpers': 4.2.0
+ '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/css-parser-algorithms@2.6.1(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-ubEkAaTfVZa+WwGhs5jbo5Xfqpeaybr/RvWzvFxRs4jfq16wH8l8Ty/QEEpINxll4xhuGfdMbipRyz5QZh9+FA==}
+ /@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/css-tokenizer@2.2.4:
- resolution: {integrity: sha512-PuWRAewQLbDhGeTvFuq2oClaSCKPIBmHyIobCV39JHRYN0byDcUWJl5baPeNUcqrjtdMNqFooE0FGl31I3JOqw==}
+ /@csstools/css-tokenizer@2.3.1:
+ resolution: {integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==}
engines: {node: ^14 || ^16 || >=18}
dev: true
- /@csstools/media-query-list-parser@2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4):
- resolution: {integrity: sha512-qqGuFfbn4rUmyOB0u8CVISIp5FfJ5GAR3mBrZ9/TKndHakdnm6pY0L/fbLcpPnrzwCyyTEZl1nUcXAYHEWneTA==}
+ /@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1):
+ resolution: {integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.6.1
- '@csstools/css-tokenizer': ^2.2.4
+ '@csstools/css-parser-algorithms': ^2.6.3
+ '@csstools/css-tokenizer': ^2.3.1
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
dev: true
- /@csstools/postcss-cascade-layers@4.0.4(postcss@8.4.38):
- resolution: {integrity: sha512-MKErv8lpEwVmAcAwidY1Kfd3oWrh2Q14kxHs9xn26XzjP/PrcdngWq63lJsZeMlBY7o+WlEOeE+FP6zPzeY2uw==}
+ /@csstools/postcss-cascade-layers@4.0.5(postcss@8.4.38):
+ resolution: {integrity: sha512-nAI2ToT2G/E4XEwJitVjCr2V2SluE9Eaiski+xfRbKSGxFmDUtua7SCG1AtMbjteIVqGDRw7uBd7qXqCZq2b1Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.1.0(postcss-selector-parser@6.0.16)
postcss: 8.4.38
postcss-selector-parser: 6.0.16
dev: true
- /@csstools/postcss-color-function@3.0.13(postcss@8.4.38):
- resolution: {integrity: sha512-gM24cIPU45HSPJ2zllz7VKjS1OKQS1sKOMI7Wsw8gFyXSGAGrxhYo++McylOqOXd8ecMaKxKQMUJqJVibvJYig==}
+ /@csstools/postcss-color-function@3.0.16(postcss@8.4.38):
+ resolution: {integrity: sha512-KtmXfckANSKsLBoTQCzggvKft1cmmmDKYjFO4yVlB23nWUgGInVBTE9T5JLmH29NNdTWSEPLWPUxoQ6XiIEn2Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
dev: true
- /@csstools/postcss-color-mix-function@2.0.13(postcss@8.4.38):
- resolution: {integrity: sha512-mD8IIfGVeWkN1H1wfCqYePOg4cDnVrOXm4P0OlYcvKriq6sImGCGShv/2D88q6s3iUlLXfUBES+DUjLVjDMhnw==}
+ /@csstools/postcss-color-mix-function@2.0.16(postcss@8.4.38):
+ resolution: {integrity: sha512-BJnD1M5Pdypl1cJuwGuzVC52PqgzaObsDLu34jgf+QU7daVFqz432PvpqvXTmfTSNt4OckOT1QIzWexEFlDNXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
dev: true
- /@csstools/postcss-exponential-functions@1.0.5(postcss@8.4.38):
- resolution: {integrity: sha512-7S7I7KgwHWQYzJJAoIjRtUf7DQs1dxipeg1A6ikZr0PYapNJX7UHz0evlpE67SQqYj1xBs70gpG7xUv3uLp4PA==}
+ /@csstools/postcss-exponential-functions@1.0.7(postcss@8.4.38):
+ resolution: {integrity: sha512-9usBPQX74OhiF/VuaVrp44UAPzqbKNyoaxEa6tbEXiFp+OAm3yB/TLRKyPUWg5tvvHGCduGJVdJJB3w8c8NBtA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-calc': 1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
postcss: 8.4.38
dev: true
@@ -6493,41 +6716,41 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-gamut-mapping@1.0.6(postcss@8.4.38):
- resolution: {integrity: sha512-qGFpHU9cRf9qqkbHh9cWMTlBtGi/ujPgP/znQdwkbB4TgDR1ddI5wRRrksBsx64sfoUSlIEd70bxXzD9FtfdLg==}
+ /@csstools/postcss-gamut-mapping@1.0.9(postcss@8.4.38):
+ resolution: {integrity: sha512-JmOeiBJj1RJriAkr+aLBaiYUpEqdNOIo3ERQ5a4uNzy18upzrQ6tz7m2Vt1GQpJ62zQj7rC5PjAhCoZCoyE31g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
postcss: 8.4.38
dev: true
- /@csstools/postcss-gradients-interpolation-method@4.0.14(postcss@8.4.38):
- resolution: {integrity: sha512-VMWC3xtpchHJoRBb/fs1gJR/5nHopX+0GwwmgdCI1DjROtfWUKIW0nv8occ922Gv0/Lk93XBtYBv8JttVBMZUQ==}
+ /@csstools/postcss-gradients-interpolation-method@4.0.17(postcss@8.4.38):
+ resolution: {integrity: sha512-qSNIqzLPKd2SadfWwHZv42lDRyYlLaM+Vx5rRIsnYCZbQxzFfe1XAwssrcCsHgba5bA6bi5oDoFCx0W+PRCpfw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
dev: true
- /@csstools/postcss-hwb-function@3.0.12(postcss@8.4.38):
- resolution: {integrity: sha512-90kIs+FsM6isAXLVoFHTTl4h0J6g1J1M6ahpIjAs6/k7a2A9FB/q+l0MHpLre0ZiPlBf2y3e1j4L+79vml7kJw==}
+ /@csstools/postcss-hwb-function@3.0.15(postcss@8.4.38):
+ resolution: {integrity: sha512-l34fRiZ7o5+pULv7OplXniBTU4TuKYNNOv0abuvUanddWGSy3+YHlMKUSgcVFo0d1DorxPAhJSTCrugl+4OmMQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -6554,25 +6777,25 @@ packages:
postcss: 8.4.38
dev: true
- /@csstools/postcss-is-pseudo-class@4.0.6(postcss@8.4.38):
- resolution: {integrity: sha512-HilOhAsMpFheMYkuaREZx+CGa4hsG6kQdzwXSsuqKDFzYz2eIMP213+3dH/vUbPXaWrzqLKr8m3i0dgYPoh7vg==}
+ /@csstools/postcss-is-pseudo-class@4.0.7(postcss@8.4.38):
+ resolution: {integrity: sha512-snT/fL6V0I/4AiObPtk2mzJ/eSvpqnf3Kyx9Mc0rI6VskjRkkrEME+kH3aMKBKwjstBrgrYUMoI+vXw2HRi9CQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.1.0(postcss-selector-parser@6.0.16)
postcss: 8.4.38
postcss-selector-parser: 6.0.16
dev: true
- /@csstools/postcss-light-dark-function@1.0.3(postcss@8.4.38):
- resolution: {integrity: sha512-izW8hvhOqJlarLcGXO5PSylW9pQS3fytmhRdx2/e1oZFi15vs7ZShOHcREHJ3FfGdYqDA10cP9uhH0A3hmm1Rw==}
+ /@csstools/postcss-light-dark-function@1.0.5(postcss@8.4.38):
+ resolution: {integrity: sha512-kKM9dtEaVmSTb3scL2pgef62KyWv6SK19JiAnCCuiDhlRE6PADKzaPPBXmP3qj4IEgIH+cQhdEosB0eroU6Fnw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -6615,39 +6838,39 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-logical-viewport-units@2.0.7(postcss@8.4.38):
- resolution: {integrity: sha512-L4G3zsp/bnU0+WXUyysihCUH14LkfMgUJsS9vKz3vCYbVobOTqQRoNXnEPpyNp8WYyolLqAWbGGJhVu8J6u2OQ==}
+ /@csstools/postcss-logical-viewport-units@2.0.9(postcss@8.4.38):
+ resolution: {integrity: sha512-iBBJuExgHwedFH9AqNOHWzZFgYnt17zhu1qWjmSihu1P5pw0lIG9q5t3uIgJJFDNmYoOGfBKan66z9u1QH8yBQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
dev: true
- /@csstools/postcss-media-minmax@1.1.4(postcss@8.4.38):
- resolution: {integrity: sha512-xl/PIO3TUbXO1ZA4SA6HCw+Q9UGe2cgeRKx3lHCzoNig2D4bT5vfVCOrwhxjUb09oHihc9eI3I0iIfVPiXaN1A==}
+ /@csstools/postcss-media-minmax@1.1.6(postcss@8.4.38):
+ resolution: {integrity: sha512-bc0frf2Lod53j6wEHVsaVElfvCf6uhc96v99M/wUfer4MmNYfO3YLx1kFuB8xXvb0AXiWx4fohCJqemHV3bfRg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-calc': 1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
- '@csstools/media-query-list-parser': 2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
+ '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
+ '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
postcss: 8.4.38
dev: true
- /@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.7(postcss@8.4.38):
- resolution: {integrity: sha512-HBDAQw1K0NilcHGMUHv8jzf2mpOtcWTVKtuY3AeZ5TS1uyWWNVi5/yuA/tREPLU9WifNdqHQ+rfbsV/8zTIkTg==}
+ /@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.9(postcss@8.4.38):
+ resolution: {integrity: sha512-PR0s3tFSxPoKoPLoKuiZuYhwQC5bQxq/gFfywX2u/kh8rMzesARPZYKxE71I3jHWi6KDHGZl9Xb5xcFPwtvLiQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
- '@csstools/media-query-list-parser': 2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
+ '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
postcss: 8.4.38
dev: true
@@ -6672,15 +6895,15 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-oklab-function@3.0.13(postcss@8.4.38):
- resolution: {integrity: sha512-xbzMmukDFAwCt2+279io7ZiamZj87s6cnU3UgKB3G+NMpRX9A6uvN8xlnTLCe384hqg6hix5vlOmwkxqACb5pg==}
+ /@csstools/postcss-oklab-function@3.0.16(postcss@8.4.38):
+ resolution: {integrity: sha512-zm8nND+EraZrmbO4mgcT8FrJrAQUfWNfMmbV5uTCpWtAcO5ycX3E3bO8T1TjczKYRxC5QMM/91n9YExYCF4Mvw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -6696,15 +6919,15 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-relative-color-syntax@2.0.13(postcss@8.4.38):
- resolution: {integrity: sha512-mENWPNcHdiEYtjHFfZP9U1jNukQgFpSQ7wvTvwiadK3qgNBiSl0vMSinM9kKsGsJLTHQ0LEAqWLHurU52I4Jeg==}
+ /@csstools/postcss-relative-color-syntax@2.0.16(postcss@8.4.38):
+ resolution: {integrity: sha512-TSM8fVqJkT8JZDranZPnkpxjU/Q1sNR192lXMND+EcKOUjYa6uYpGSfHgjnWjCRiBSciettS+sL7y9wmnas7qQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -6720,38 +6943,38 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
- /@csstools/postcss-stepped-value-functions@3.0.6(postcss@8.4.38):
- resolution: {integrity: sha512-rnyp8tWRuBXERTHVdB5hjUlif5dQgPcyN+BX55wUnYpZ3LN9QPfK2Z3/HUZymwyou8Gg6vhd6X2W+g1pLq1jYg==}
+ /@csstools/postcss-stepped-value-functions@3.0.8(postcss@8.4.38):
+ resolution: {integrity: sha512-X76+thsvsmH/SkqVbN+vjeFKe1ABGLRx8/Wl68QTb/zvJWdzgx5S/nbszZP5O3nTRc5eI8NxIOrQUiy30fR+0g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-calc': 1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
postcss: 8.4.38
dev: true
- /@csstools/postcss-text-decoration-shorthand@3.0.5(postcss@8.4.38):
- resolution: {integrity: sha512-qKxXpD0TYINkUtWDN1RHdeWKtZCzEv5j3UMT/ZGqyY27icwCFw7iKO0bUeLSHjYFBqhurCWvoOsa9REqLdrNDw==}
+ /@csstools/postcss-text-decoration-shorthand@3.0.6(postcss@8.4.38):
+ resolution: {integrity: sha512-Q8HEu4AEiwNVZBD6+DpQ8M9SajpMow4+WtmndWIAv8qxDtDYL4JK1xXWkhOGk28PrcJawOvkrEZ8Ri59UN1TJw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/color-helpers': 4.1.0
+ '@csstools/color-helpers': 4.2.0
postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /@csstools/postcss-trigonometric-functions@3.0.6(postcss@8.4.38):
- resolution: {integrity: sha512-i5Zd0bMJooZAn+ZcDmPij2WCkcOJJJ6opzK+QeDjxbMrYmoGQl0CY8FDHdeQyBF1Nly+Q0Fq3S7QfdNLKBBaCg==}
+ /@csstools/postcss-trigonometric-functions@3.0.8(postcss@8.4.38):
+ resolution: {integrity: sha512-zEzyGriPqoIYFgHJqWNy8bmoxjM4+ONyTap1ZzQK/Lll/VsCYvx0IckB33W/u89uLSVeeB8xC7uTrkoQ7ogKyQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-calc': 1.2.0(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
postcss: 8.4.38
dev: true
@@ -6773,8 +6996,8 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
- /@csstools/selector-specificity@3.0.3(postcss-selector-parser@6.0.16):
- resolution: {integrity: sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q==}
+ /@csstools/selector-specificity@3.1.0(postcss-selector-parser@6.0.16):
+ resolution: {integrity: sha512-tGDFEHZ4XJeIt5NF7/nAfLGqPckmDZSnYne5gl67p4agQolE5s4rofdQ3e+VkeukfR91lVtSQ/Jt9DqM1ICiIQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss-selector-parser: ^6.0.13
@@ -6804,6 +7027,14 @@ packages:
/@emmetio/scanner@1.0.4:
resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==}
+ /@emnapi/runtime@1.1.1:
+ resolution: {integrity: sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==}
+ requiresBuild: true
+ dependencies:
+ tslib: 2.6.2
+ dev: false
+ optional: true
+
/@esbuild/aix-ppc64@0.20.2:
resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
engines: {node: '>=12'}
@@ -6812,6 +7043,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/aix-ppc64@0.21.2:
+ resolution: {integrity: sha512-/c7hocx0pm14bHQlqUVKmxwdT/e5/KkyoY1W8F9lk/8CkE037STDDz8PXUP/LE6faj2HqchvDs9GcShxFhI78Q==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+ requiresBuild: true
+ optional: true
+
/@esbuild/android-arm64@0.20.2:
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
@@ -6820,6 +7059,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/android-arm64@0.21.2:
+ resolution: {integrity: sha512-SGZKngoTWVUriO5bDjI4WDGsNx2VKZoXcds+ita/kVYB+8IkSCKDRDaK+5yu0b5S0eq6B3S7fpiEvpsa2ammlQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
/@esbuild/android-arm@0.20.2:
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
@@ -6828,6 +7075,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/android-arm@0.21.2:
+ resolution: {integrity: sha512-G1ve3b4FeyJeyCjB4MX1CiWyTaIJwT9wAYE+8+IRA53YoN/reC/Bf2GDRXAzDTnh69Fpl+1uIKg76DiB3U6vwQ==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
/@esbuild/android-x64@0.20.2:
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
@@ -6836,6 +7091,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/android-x64@0.21.2:
+ resolution: {integrity: sha512-1wzzNoj2QtNkAYwIcWJ66UTRA80+RTQ/kuPMtEuP0X6dp5Ar23Dn566q3aV61h4EYrrgGlOgl/HdcqN/2S/2vg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
/@esbuild/darwin-arm64@0.20.2:
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
@@ -6844,6 +7107,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/darwin-arm64@0.21.2:
+ resolution: {integrity: sha512-ZyMkPWc5eTROcLOA10lEqdDSTc6ds6nuh3DeHgKip/XJrYjZDfnkCVSty8svWdy+SC1f77ULtVeIqymTzaB6/Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
/@esbuild/darwin-x64@0.20.2:
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
@@ -6852,6 +7123,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/darwin-x64@0.21.2:
+ resolution: {integrity: sha512-K4ZdVq1zP9v51h/cKVna7im7G0zGTKKB6bP2yJiSmHjjOykbd8DdhrSi8V978sF69rkwrn8zCyL2t6I3ei6j9A==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
/@esbuild/freebsd-arm64@0.20.2:
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
@@ -6860,6 +7139,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/freebsd-arm64@0.21.2:
+ resolution: {integrity: sha512-4kbOGdpA61CXqadD+Gb/Pw3YXamQGiz9mal/h93rFVSjr5cgMnmJd/gbfPRm+3BMifvnaOfS1gNWaIDxkE2A3A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
/@esbuild/freebsd-x64@0.20.2:
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
@@ -6868,6 +7155,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/freebsd-x64@0.21.2:
+ resolution: {integrity: sha512-ShS+R09nuHzDBfPeMUliKZX27Wrmr8UFp93aFf/S8p+++x5BZ+D344CLKXxmY6qzgTL3mILSImPCNJOzD6+RRg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-arm64@0.20.2:
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
@@ -6876,6 +7171,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-arm64@0.21.2:
+ resolution: {integrity: sha512-Hdu8BL+AmO+eCDvvT6kz/fPQhvuHL8YK4ExKZfANWsNe1kFGOHw7VJvS/FKSLFqheXmB3rTF3xFQIgUWPYsGnA==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-arm@0.20.2:
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
@@ -6884,6 +7187,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-arm@0.21.2:
+ resolution: {integrity: sha512-nnGXjOAv+7cM3LYRx4tJsYdgy8dGDGkAzF06oIDGppWbUkUKN9SmgQA8H0KukpU0Pjrj9XmgbWqMVSX/U7eeTA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-ia32@0.20.2:
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
@@ -6892,6 +7203,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-ia32@0.21.2:
+ resolution: {integrity: sha512-m73BOCW2V9lcj7RtEMi+gBfHC6n3+VHpwQXP5offtQMPLDkpVolYn1YGXxOZ9hp4h3UPRKuezL7WkBsw+3EB3Q==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-loong64@0.20.2:
resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
@@ -6900,6 +7219,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-loong64@0.21.2:
+ resolution: {integrity: sha512-84eYHwwWHq3myIY/6ikALMcnwkf6Qo7NIq++xH0x+cJuUNpdwh8mlpUtRY+JiGUc60yu7ElWBbVHGWTABTclGw==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-mips64el@0.20.2:
resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
@@ -6908,6 +7235,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-mips64el@0.21.2:
+ resolution: {integrity: sha512-9siSZngT0/ZKG+AH+/agwKF29LdCxw4ODi/PiE0F52B2rtLozlDP92umf8G2GPoVV611LN4pZ+nSTckebOscUA==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-ppc64@0.20.2:
resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
@@ -6916,6 +7251,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-ppc64@0.21.2:
+ resolution: {integrity: sha512-y0T4aV2CA+ic04ULya1A/8M2RDpDSK2ckgTj6jzHKFJvCq0jQg8afQQIn4EM0G8u2neyOiNHgSF9YKPfuqKOVw==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-riscv64@0.20.2:
resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
@@ -6924,6 +7267,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-riscv64@0.21.2:
+ resolution: {integrity: sha512-x5ssCdXmZC86L2Li1qQPF/VaC4VP20u/Zm8jlAu9IiVOVi79YsSz6cpPDYZl1rfKSHYCJW9XBfFCo66S5gVPSA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-s390x@0.20.2:
resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
@@ -6932,6 +7283,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-s390x@0.21.2:
+ resolution: {integrity: sha512-NP7fTpGSFWdXyvp8iAFU04uFh9ARoplFVM/m+8lTRpaYG+2ytHPZWyscSsMM6cvObSIK2KoPHXiZD4l99WaxbQ==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/linux-x64@0.20.2:
resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
@@ -6940,6 +7299,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/linux-x64@0.21.2:
+ resolution: {integrity: sha512-giZ/uOxWDKda44ZuyfKbykeXznfuVNkTgXOUOPJIjbayJV6FRpQ4zxUy9JMBPLaK9IJcdWtaoeQrYBMh3Rr4vQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
/@esbuild/netbsd-x64@0.20.2:
resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
@@ -6948,6 +7315,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/netbsd-x64@0.21.2:
+ resolution: {integrity: sha512-IeFMfGFSQfIj1d4XU+6lkbFzMR+mFELUUVYrZ+jvWzG4NGvs6o53ReEHLHpYkjRbdEjJy2W3lTekTxrFHW7YJg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ requiresBuild: true
+ optional: true
+
/@esbuild/openbsd-x64@0.20.2:
resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
@@ -6956,6 +7331,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/openbsd-x64@0.21.2:
+ resolution: {integrity: sha512-48QhWD6WxcebNNaE4FCwgvQVUnAycuTd+BdvA/oZu+/MmbpU8pY2dMEYlYzj5uNHWIG5jvdDmFXu0naQeOWUoA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ requiresBuild: true
+ optional: true
+
/@esbuild/sunos-x64@0.20.2:
resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
@@ -6964,6 +7347,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/sunos-x64@0.21.2:
+ resolution: {integrity: sha512-90r3nTBLgdIgD4FCVV9+cR6Hq2Dzs319icVsln+NTmTVwffWcCqXGml8rAoocHuJ85kZK36DCteii96ba/PX8g==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ requiresBuild: true
+ optional: true
+
/@esbuild/win32-arm64@0.20.2:
resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
@@ -6972,6 +7363,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/win32-arm64@0.21.2:
+ resolution: {integrity: sha512-sNndlsBT8OeE/MZDSGpRDJlWuhjuUz/dn80nH0EP4ZzDUYvMDVa7G87DVpweBrn4xdJYyXS/y4CQNrf7R2ODXg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@esbuild/win32-ia32@0.20.2:
resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
@@ -6980,6 +7379,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/win32-ia32@0.21.2:
+ resolution: {integrity: sha512-Ti2QChGNFzWhUNNVuU4w21YkYTErsNh3h+CzvlEhzgRbwsJ7TrWQqRzW3bllLKKvTppuF3DJ3XP1GEg11AfrEQ==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@esbuild/win32-x64@0.20.2:
resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
@@ -6988,13 +7395,21 @@ packages:
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@9.1.0):
+ /@esbuild/win32-x64@0.21.2:
+ resolution: {integrity: sha512-VEfTCZicoZnZ6sGkjFPGRFFJuL2fZn2bLhsekZl1CJslflp2cJS/VoKs1jMk+3pDfsGW6CfQVUckP707HwbXeQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@eslint-community/eslint-utils@4.4.0(eslint@9.2.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 9.1.0
+ eslint: 9.2.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -7020,43 +7435,231 @@ packages:
- supports-color
dev: true
- /@eslint/js@9.1.1:
- resolution: {integrity: sha512-5WoDz3Y19Bg2BnErkZTp0en+c/i9PvgFS7MBe1+m60HjFr0hrphlAGp4yzI7pxpt4xShln4ZyYp4neJm8hmOkQ==}
+ /@eslint/js@9.2.0:
+ resolution: {integrity: sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
- /@fontsource/monofett@5.0.17:
- resolution: {integrity: sha512-MTSxMPkTXeqEVeaugMh9nUbSqL/0tm0KlwdTInRv3s1JY3S7rzM1hnue+m8p1ZU89viNNjeCBTLaE77MosKdjQ==}
+ /@fontsource/monofett@5.0.20:
+ resolution: {integrity: sha512-jXQ8gj9N2mfIlb8eEg2oiEOAGpFJlpnFRxEUeSJoETgmK19OCdZNwk9uQpo92JqoAn7gySeLcLKjqaJynFDVcQ==}
+ dev: false
+
+ /@fontsource/montserrat@5.0.18:
+ resolution: {integrity: sha512-85JBs2rCdFK/VBdSb401e2lXk5gynVo2zi3Rh2Guem4WNtT2q52+V90o3KzjmajY3TPJvCZA/kI7R05ev7148g==}
+ dev: false
+
+ /@humanwhocodes/config-array@0.13.0:
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
+ engines: {node: '>=10.10.0'}
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.3.4(supports-color@8.1.1)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@humanwhocodes/module-importer@1.0.1:
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+ dev: true
+
+ /@humanwhocodes/object-schema@2.0.3:
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+ dev: true
+
+ /@humanwhocodes/retry@0.2.3:
+ resolution: {integrity: sha512-X38nUbachlb01YMlvPFojKoiXq+LzZvuSce70KPMPdeM1Rj03k4dR7lDslhbqXn3Ang4EU3+EAmwEAsbrjHW3g==}
+ engines: {node: '>=18.18'}
+ dev: true
+
+ /@img/sharp-darwin-arm64@0.33.3:
+ resolution: {integrity: sha512-FaNiGX1MrOuJ3hxuNzWgsT/mg5OHG/Izh59WW2mk1UwYHUwtfbhk5QNKYZgxf0pLOhx9ctGiGa2OykD71vOnSw==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-darwin-x64@0.33.3:
+ resolution: {integrity: sha512-2QeSl7QDK9ru//YBT4sQkoq7L0EAJZA3rtV+v9p8xTKl4U1bUqTIaCnoC7Ctx2kCjQgwFXDasOtPTCT8eCTXvw==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-darwin-arm64@1.0.2:
+ resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==}
+ engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-darwin-x64@1.0.2:
+ resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==}
+ engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linux-arm64@1.0.2:
+ resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==}
+ engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linux-arm@1.0.2:
+ resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==}
+ engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linux-s390x@1.0.2:
+ resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==}
+ engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linux-x64@1.0.2:
+ resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==}
+ engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linuxmusl-arm64@1.0.2:
+ resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==}
+ engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-libvips-linuxmusl-x64@1.0.2:
+ resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==}
+ engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@img/sharp-linux-arm64@0.33.3:
+ resolution: {integrity: sha512-Zf+sF1jHZJKA6Gor9hoYG2ljr4wo9cY4twaxgFDvlG0Xz9V7sinsPp8pFd1XtlhTzYo0IhDbl3rK7P6MzHpnYA==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-linux-arm@0.33.3:
+ resolution: {integrity: sha512-Q7Ee3fFSC9P7vUSqVEF0zccJsZ8GiiCJYGWDdhEjdlOeS9/jdkyJ6sUSPj+bL8VuOYFSbofrW0t/86ceVhx32w==}
+ engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-linux-s390x@0.33.3:
+ resolution: {integrity: sha512-vFk441DKRFepjhTEH20oBlFrHcLjPfI8B0pMIxGm3+yilKyYeHEVvrZhYFdqIseSclIqbQ3SnZMwEMWonY5XFA==}
+ engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [s390x]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-linux-x64@0.33.3:
+ resolution: {integrity: sha512-Q4I++herIJxJi+qmbySd072oDPRkCg/SClLEIDh5IL9h1zjhqjv82H0Seupd+q2m0yOfD+/fJnjSoDFtKiHu2g==}
+ engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.2
+ dev: false
+ optional: true
+
+ /@img/sharp-linuxmusl-arm64@0.33.3:
+ resolution: {integrity: sha512-qnDccehRDXadhM9PM5hLvcPRYqyFCBN31kq+ErBSZtZlsAc1U4Z85xf/RXv1qolkdu+ibw64fUDaRdktxTNP9A==}
+ engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.2
dev: false
+ optional: true
- /@fontsource/montserrat@5.0.15:
- resolution: {integrity: sha512-ZJbsCIJp6VHL1wYQUPpyBjXMzwGdfFedrmrw4r5sFi7WrMpnfJv+el1uVO6yDPIqnVqkPvjJ+xeKgJwnj2LuQQ==}
+ /@img/sharp-linuxmusl-x64@0.33.3:
+ resolution: {integrity: sha512-Jhchim8kHWIU/GZ+9poHMWRcefeaxFIs9EBqf9KtcC14Ojk6qua7ghKiPs0sbeLbLj/2IGBtDcxHyjCdYWkk2w==}
+ engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.2
dev: false
+ optional: true
- /@humanwhocodes/config-array@0.13.0:
- resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
- engines: {node: '>=10.10.0'}
+ /@img/sharp-wasm32@0.33.3:
+ resolution: {integrity: sha512-68zivsdJ0koE96stdUfM+gmyaK/NcoSZK5dV5CAjES0FUXS9lchYt8LAB5rTbM7nlWtxaU/2GON0HVN6/ZYJAQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [wasm32]
+ requiresBuild: true
dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.4(supports-color@8.1.1)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@humanwhocodes/module-importer@1.0.1:
- resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
- engines: {node: '>=12.22'}
- dev: true
+ '@emnapi/runtime': 1.1.1
+ dev: false
+ optional: true
- /@humanwhocodes/object-schema@2.0.3:
- resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
- dev: true
+ /@img/sharp-win32-ia32@0.33.3:
+ resolution: {integrity: sha512-CyimAduT2whQD8ER4Ux7exKrtfoaUiVr7HG0zZvO0XTFn2idUWljjxv58GxNTkFb8/J9Ub9AqITGkJD6ZginxQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- /@humanwhocodes/retry@0.2.3:
- resolution: {integrity: sha512-X38nUbachlb01YMlvPFojKoiXq+LzZvuSce70KPMPdeM1Rj03k4dR7lDslhbqXn3Ang4EU3+EAmwEAsbrjHW3g==}
- engines: {node: '>=18.18'}
- dev: true
+ /@img/sharp-win32-x64@0.33.3:
+ resolution: {integrity: sha512-viT4fUIDKnli3IfOephGnolMzhz5VaTvDRkYqtZxOMIoMQ4MrAziO7pT1nVnOt2FAm7qW5aa+CCc13aEY6Le0g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -7073,7 +7676,7 @@ packages:
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
engines: {node: '>=18.0.0'}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.0
dev: false
/@jest/schemas@29.6.3:
@@ -7083,6 +7686,14 @@ packages:
'@sinclair/typebox': 0.27.8
dev: false
+ /@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462:
+ resolution: {integrity: sha512-etqLfpSJ5zaw76KUNF603be6d6QsiQPmaHr9FKEp4zhLZJzWCCMH6Icak7MtLUFLZLMpL761mZNImi/joBo1ZA==}
+ dependencies:
+ '@vscode/l10n': 0.0.18
+ vscode-languageserver-textdocument: 1.0.11
+ vscode-languageserver-types: 3.17.5
+ vscode-uri: 3.0.8
+
/@jridgewell/gen-mapping@0.3.5:
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
@@ -7112,6 +7723,46 @@ packages:
resolution: {integrity: sha512-n5JEf16Wr4mdkRMZ8wMP/wN9/sHmTjRPbouXjJH371mZ2LEGDl72t8tEsMRNFerQN/QJtivOxqK1frdGa4QK5Q==}
engines: {node: '>=10'}
+ /@jsonjoy.com/base64@1.1.2(tslib@2.6.2):
+ resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
+ /@jsonjoy.com/json-pack@1.0.4(tslib@2.6.2):
+ resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.6.2)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.6.2)
+ hyperdyperid: 1.2.0
+ thingies: 1.21.0(tslib@2.6.2)
+ tslib: 2.6.2
+ dev: true
+
+ /@jsonjoy.com/util@1.1.3(tslib@2.6.2):
+ resolution: {integrity: sha512-g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/@libsql/client@0.6.0:
resolution: {integrity: sha512-qhQzTG/y2IEVbL3+9PULDvlQFWJ/RnjFXECr/Nc3nRngGiiMysDaOV5VUzYk7DulUX98EA4wi+z3FspKrUplUA==}
dependencies:
@@ -7276,7 +7927,7 @@ packages:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.0
+ semver: 7.6.2
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -7328,15 +7979,15 @@ packages:
- supports-color
dev: false
- /@nanostores/preact@0.5.1(nanostores@0.9.5)(preact@10.20.2):
+ /@nanostores/preact@0.5.1(nanostores@0.10.3)(preact@10.21.0):
resolution: {integrity: sha512-kofyeDwzM3TrOd37ay+Xxgk3Cn6jih23dxELc7Mr9IJV55jmWATfNP9b7O/awwCL7CE5z5PfzFnNk/W+tMaWGw==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
nanostores: ^0.9.0 || ^0.10.0
preact: '>=10.0.0'
dependencies:
- nanostores: 0.9.5
- preact: 10.20.2
+ nanostores: 0.10.3
+ preact: 10.21.0
dev: false
/@neon-rs/load@0.0.4:
@@ -7361,112 +8012,104 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- /@octokit/action@6.1.0:
- resolution: {integrity: sha512-lo+nHx8kAV86bxvOVOI3vFjX3gXPd/L7guAUbvs3pUvnR2KC+R7yjBkA1uACt4gYhs4LcWP3AXSGQzsbeN2XXw==}
+ /@octokit/action@7.0.0:
+ resolution: {integrity: sha512-YVstbUS7vbW0frVGAGtYpSqjbgCwQW1OO0WS+sc/fx0RnW0PP4kPgMCmkgkLAm51WyYTWOOQRA1HuaGTSFgyfQ==}
engines: {node: '>= 18'}
dependencies:
- '@octokit/auth-action': 4.1.0
- '@octokit/core': 5.2.0
- '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.2.0)
- '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.2.0)
- '@octokit/types': 12.6.0
+ '@octokit/auth-action': 5.1.1
+ '@octokit/core': 6.1.2
+ '@octokit/plugin-paginate-rest': 11.3.0(@octokit/core@6.1.2)
+ '@octokit/plugin-rest-endpoint-methods': 13.2.1(@octokit/core@6.1.2)
+ '@octokit/types': 13.4.0
undici: 6.13.0
dev: true
- /@octokit/auth-action@4.1.0:
- resolution: {integrity: sha512-m+3t7K46IYyMk7Bl6/lF4Rv09GqDZjYmNg8IWycJ2Fa3YE3DE7vQcV6G2hUPmR9NDqenefNJwVtlisMjzymPiQ==}
+ /@octokit/auth-action@5.1.1:
+ resolution: {integrity: sha512-JE2gbAZcwwVuww88YY7oB97P6eVAPgKZk2US9Uyz+ZUw5ubeRkZqog7G/gUEAjayIFt8s0UX3qNntP1agVcB0g==}
engines: {node: '>= 18'}
dependencies:
- '@octokit/auth-token': 4.0.0
+ '@octokit/auth-token': 5.1.1
'@octokit/types': 13.4.0
dev: true
- /@octokit/auth-token@4.0.0:
- resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
+ /@octokit/auth-token@5.1.1:
+ resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==}
engines: {node: '>= 18'}
dev: true
- /@octokit/core@5.2.0:
- resolution: {integrity: sha512-1LFfa/qnMQvEOAdzlQymH0ulepxbxnCYAKJZfMci/5XJyIHWgEYnDmgnKakbTh7CH2tFQ5O60oYDvns4i9RAIg==}
+ /@octokit/core@6.1.2:
+ resolution: {integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==}
engines: {node: '>= 18'}
dependencies:
- '@octokit/auth-token': 4.0.0
- '@octokit/graphql': 7.1.0
- '@octokit/request': 8.4.0
- '@octokit/request-error': 5.1.0
+ '@octokit/auth-token': 5.1.1
+ '@octokit/graphql': 8.1.1
+ '@octokit/request': 9.1.1
+ '@octokit/request-error': 6.1.1
'@octokit/types': 13.4.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
+ before-after-hook: 3.0.2
+ universal-user-agent: 7.0.2
dev: true
- /@octokit/endpoint@9.0.5:
- resolution: {integrity: sha512-ekqR4/+PCLkEBF6qgj8WqJfvDq65RH85OAgrtnVp1mSxaXF03u2xW/hUdweGS5654IlC0wkNYC18Z50tSYTAFw==}
+ /@octokit/endpoint@10.1.1:
+ resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==}
engines: {node: '>= 18'}
dependencies:
'@octokit/types': 13.4.0
- universal-user-agent: 6.0.1
+ universal-user-agent: 7.0.2
dev: true
- /@octokit/graphql@7.1.0:
- resolution: {integrity: sha512-r+oZUH7aMFui1ypZnAvZmn0KSqAUgE1/tUXIWaqUCa1758ts/Jio84GZuzsvUkme98kv0WFY8//n0J1Z+vsIsQ==}
+ /@octokit/graphql@8.1.1:
+ resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==}
engines: {node: '>= 18'}
dependencies:
- '@octokit/request': 8.4.0
+ '@octokit/request': 9.1.1
'@octokit/types': 13.4.0
- universal-user-agent: 6.0.1
- dev: true
-
- /@octokit/openapi-types@20.0.0:
- resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==}
+ universal-user-agent: 7.0.2
dev: true
/@octokit/openapi-types@22.0.1:
resolution: {integrity: sha512-1yN5m1IMNXthoBDUXFF97N1gHop04B3H8ws7wtOr8GgRyDO1gKALjwMHARNBoMBiB/2vEe/vxstrApcJZzQbnQ==}
dev: true
- /@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.2.0):
- resolution: {integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==}
+ /@octokit/openapi-types@22.2.0:
+ resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==}
+ dev: true
+
+ /@octokit/plugin-paginate-rest@11.3.0(@octokit/core@6.1.2):
+ resolution: {integrity: sha512-n4znWfRinnUQF6TPyxs7EctSAA3yVSP4qlJP2YgI3g9d4Ae2n5F3XDOjbUluKRxPU3rfsgpOboI4O4VtPc6Ilg==}
engines: {node: '>= 18'}
peerDependencies:
- '@octokit/core': '5'
+ '@octokit/core': '>=6'
dependencies:
- '@octokit/core': 5.2.0
- '@octokit/types': 12.6.0
+ '@octokit/core': 6.1.2
+ '@octokit/types': 13.5.0
dev: true
- /@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.2.0):
- resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==}
+ /@octokit/plugin-rest-endpoint-methods@13.2.1(@octokit/core@6.1.2):
+ resolution: {integrity: sha512-YMWBw6Exh1ZBs5cCE0AnzYxSQDIJS00VlBqISTgNYmu5MBdeM07K/MAJjy/VkNaH5jpJmD/5HFUvIZ+LDB5jSQ==}
engines: {node: '>= 18'}
peerDependencies:
- '@octokit/core': '5'
+ '@octokit/core': '>=6'
dependencies:
- '@octokit/core': 5.2.0
- '@octokit/types': 12.6.0
+ '@octokit/core': 6.1.2
+ '@octokit/types': 13.5.0
dev: true
- /@octokit/request-error@5.1.0:
- resolution: {integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==}
+ /@octokit/request-error@6.1.1:
+ resolution: {integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==}
engines: {node: '>= 18'}
dependencies:
'@octokit/types': 13.4.0
- deprecation: 2.3.1
- once: 1.4.0
dev: true
- /@octokit/request@8.4.0:
- resolution: {integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==}
+ /@octokit/request@9.1.1:
+ resolution: {integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==}
engines: {node: '>= 18'}
dependencies:
- '@octokit/endpoint': 9.0.5
- '@octokit/request-error': 5.1.0
+ '@octokit/endpoint': 10.1.1
+ '@octokit/request-error': 6.1.1
'@octokit/types': 13.4.0
- universal-user-agent: 6.0.1
- dev: true
-
- /@octokit/types@12.6.0:
- resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==}
- dependencies:
- '@octokit/openapi-types': 20.0.0
+ universal-user-agent: 7.0.2
dev: true
/@octokit/types@13.4.0:
@@ -7475,6 +8118,12 @@ packages:
'@octokit/openapi-types': 22.0.1
dev: true
+ /@octokit/types@13.5.0:
+ resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==}
+ dependencies:
+ '@octokit/openapi-types': 22.2.0
+ dev: true
+
/@parse5/tools@0.3.0:
resolution: {integrity: sha512-zxRyTHkqb7WQMV8kTNBKWb1BeOFUKXBXTBWuxg9H9hfvQB3IwP6Iw2U75Ia5eyRxPNltmY7E8YAlz6zWwUnjKg==}
dependencies:
@@ -7487,20 +8136,19 @@ packages:
requiresBuild: true
optional: true
- /@pkgr/core@0.1.1:
- resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
- engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- dev: true
-
- /@playwright/test@1.43.1:
- resolution: {integrity: sha512-HgtQzFgNEEo4TE22K/X7sYTYNqEMMTZmFS8kTq6m8hXj+m1D8TgwgIbumHddJa9h4yl4GkKb8/bgAl2+g7eDgA==}
+ /@playwright/test@1.44.0:
+ resolution: {integrity: sha512-rNX5lbNidamSUorBhB4XZ9SQTjAqfe5M+p37Z8ic0jPFBMo5iCtQz1kRWkEMg+rYOKSlVycpQmpqjSFq7LXOfg==}
engines: {node: '>=16'}
hasBin: true
dependencies:
- playwright: 1.43.1
+ playwright: 1.44.0
dev: true
- /@preact/preset-vite@2.8.2(preact@10.20.2):
+ /@polka/url@1.0.0-next.25:
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
+ dev: false
+
+ /@preact/preset-vite@2.8.2(preact@10.21.0):
resolution: {integrity: sha512-m3tl+M8IO8jgiHnk+7LSTFl8axdPXloewi7iGVLdmCwf34XOzEUur0bZVewW4DUbUipFjTS2CXu27+5f/oexBA==}
peerDependencies:
'@babel/core': 7.x
@@ -7511,9 +8159,9 @@ packages:
vite:
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.5)
'@babel/plugin-transform-react-jsx-development': 7.22.5
- '@prefresh/vite': 2.4.5(preact@10.20.2)
+ '@prefresh/vite': 2.4.5(preact@10.21.0)
'@rollup/pluginutils': 4.2.1
babel-plugin-transform-hook-names: 1.0.2
debug: 4.3.4(supports-color@8.1.1)
@@ -7532,41 +8180,32 @@ packages:
resolution: {integrity: sha512-O/XGxwP85h1F7+ouqTMOIZ3+V1whfaV9ToIVcuyGriD4JkSD00cQo54BKdqjvBJxbenvp7ynfqRHEwI6e+NIhw==}
dev: false
- /@preact/signals@1.2.1(preact@10.20.2):
- resolution: {integrity: sha512-hRPvp1C2ooDzOHqfnhdpHgoIFDbYFAXLhoid3+jSItuPPD/J0r/UsiWKv/8ZO/oEhjRaP0M5niuRYsWqmY2GEA==}
- peerDependencies:
- preact: 10.x
- dependencies:
- '@preact/signals-core': 1.6.0
- preact: 10.20.2
- dev: false
-
- /@preact/signals@1.2.3(preact@10.20.2):
+ /@preact/signals@1.2.3(preact@10.21.0):
resolution: {integrity: sha512-M2DXse3Wi8HwjI1d2vQWOLJ3lHogvqTsJYvl4ofXRXgMFQzJ7kmlZvlt5i8x5S5VwgZu0ghru4HkLqOoFfU2JQ==}
peerDependencies:
preact: 10.x
dependencies:
'@preact/signals-core': 1.6.0
- preact: 10.20.2
+ preact: 10.21.0
dev: false
/@prefresh/babel-plugin@0.5.1:
resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==}
dev: false
- /@prefresh/core@1.5.2(preact@10.20.2):
+ /@prefresh/core@1.5.2(preact@10.21.0):
resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==}
peerDependencies:
preact: ^10.0.0
dependencies:
- preact: 10.20.2
+ preact: 10.21.0
dev: false
/@prefresh/utils@1.2.0:
resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==}
dev: false
- /@prefresh/vite@2.4.5(preact@10.20.2):
+ /@prefresh/vite@2.4.5(preact@10.21.0):
resolution: {integrity: sha512-iForDVJ2M8gQYnm5pHumvTEJjGGc7YNYC0GVKnHFL+GvFfKHfH9Rpq67nUAzNbjuLEpqEOUuQVQajMazWu2ZNQ==}
peerDependencies:
preact: ^10.4.0
@@ -7575,12 +8214,12 @@ packages:
vite:
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@prefresh/babel-plugin': 0.5.1
- '@prefresh/core': 1.5.2(preact@10.20.2)
+ '@prefresh/core': 1.5.2(preact@10.21.0)
'@prefresh/utils': 1.2.0
'@rollup/pluginutils': 4.2.1
- preact: 10.20.2
+ preact: 10.21.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -7593,120 +8232,134 @@ packages:
picomatch: 2.3.1
dev: false
- /@rollup/rollup-android-arm-eabi@4.16.1:
- resolution: {integrity: sha512-92/y0TqNLRYOTXpm6Z7mnpvKAG9P7qmK7yJeRJSdzElNCUnsgbpAsGqerUboYRIQKzgfq4pWu9xVkgpWLfmNsw==}
+ /@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
+ dependencies:
+ '@types/estree': 1.0.5
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ dev: false
+
+ /@rollup/rollup-android-arm-eabi@4.17.2:
+ resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-android-arm64@4.16.1:
- resolution: {integrity: sha512-ttWB6ZCfRLuDIUiE0yiu5gcqOsYjA5F7kEV1ggHMj20FwLZ8A1FMeahZJFl/pnOmcnD2QL0z4AcDuo27utGU8A==}
+ /@rollup/rollup-android-arm64@4.17.2:
+ resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-arm64@4.16.1:
- resolution: {integrity: sha512-QLDvPLetbqjHojTGFw9+nuSP3YY/iz2k1cep6crYlr97sS+ZJ0W43b8Z0zC00+lnFZj6JSNxiA4DjboNQMuh1A==}
+ /@rollup/rollup-darwin-arm64@4.17.2:
+ resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-x64@4.16.1:
- resolution: {integrity: sha512-TAUK/D8khRrRIa1KwRzo8JNKk3tcqaeXWdtsiLgA8zmACWwlWLjPCJ4DULGHQrMkeBjp1Cd3Yuwx04lZgFx5Vg==}
+ /@rollup/rollup-darwin-x64@4.17.2:
+ resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.16.1:
- resolution: {integrity: sha512-KO+WGZjrh6zyFTD1alIFkfdtxf8B4BC+hqd3kBZHscPLvE5FR/6QKsyuCT0JlERxxYBSUKNUQ/UHyX5uwO1x2A==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.17.2:
+ resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm-musleabihf@4.16.1:
- resolution: {integrity: sha512-NqxbllzIB1WoAo4ThUXVtd21iiM5IHMTTXmXySKBLVcZvkU0HIZmatlP7hLzb5yQubcmdIeWmncd2NdsjocEiw==}
+ /@rollup/rollup-linux-arm-musleabihf@4.17.2:
+ resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.16.1:
- resolution: {integrity: sha512-snma5NvV8y7IECQ5rq0sr0f3UUu+92NVmG/913JXJMcXo84h9ak9TA5UI9Cl2XRM9j3m37QwDBtEYnJzRkSmxA==}
+ /@rollup/rollup-linux-arm64-gnu@4.17.2:
+ resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.16.1:
- resolution: {integrity: sha512-KOvqGprlD84ueivhCi2flvcUwDRD20mAsE3vxQNVEI2Di9tnPGAfEu6UcrSPZbM+jG2w1oSr43hrPo0RNg6GGg==}
+ /@rollup/rollup-linux-arm64-musl@4.17.2:
+ resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-powerpc64le-gnu@4.16.1:
- resolution: {integrity: sha512-/gsNwtiGLqYwN4vP+EIdUC6Q6LTlpupWqokqIndvZcjn9ig/5P01WyaYCU2wvfL/2Z82jp5kX8c1mDBOvCP3zg==}
+ /@rollup/rollup-linux-powerpc64le-gnu@4.17.2:
+ resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.16.1:
- resolution: {integrity: sha512-uU8zuGkQfGqfD9w6VRJZI4IuG4JIfNxxJgEmLMAmPVHREKGsxFVfgHy5c6CexQF2vOfgjB33OsET3Vdn2lln9A==}
+ /@rollup/rollup-linux-riscv64-gnu@4.17.2:
+ resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-s390x-gnu@4.16.1:
- resolution: {integrity: sha512-lsjLtDgtcGFEuBP6yrXwkRN5/wKlvUZtfbKZZu0yaoNpiBL4epgnO21osAALIspVRnl4qZgyLFd8xjCYYWgwfw==}
+ /@rollup/rollup-linux-s390x-gnu@4.17.2:
+ resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.16.1:
- resolution: {integrity: sha512-N2ZizKhUryqqrMfdCnjhJhZRgv61C6gK+hwVtCIKC8ts8J+go+vqENnGexwg21nHIOvLN5mBM8a7DI2vlyIOPg==}
+ /@rollup/rollup-linux-x64-gnu@4.17.2:
+ resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.16.1:
- resolution: {integrity: sha512-5ICeMxqg66FrOA2AbnBQ2TJVxfvZsKLxmof0ibvPLaYtbsJqnTUtJOofgWb46Gjd4uZcA4rdsp4JCxegzQPqCg==}
+ /@rollup/rollup-linux-x64-musl@4.17.2:
+ resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.16.1:
- resolution: {integrity: sha512-1vIP6Ce02L+qWD7uZYRiFiuAJo3m9kARatWmFSnss0gZnVj2Id7OPUU9gm49JPGasgcR3xMqiH3fqBJ8t00yVg==}
+ /@rollup/rollup-win32-arm64-msvc@4.17.2:
+ resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.16.1:
- resolution: {integrity: sha512-Y3M92DcVsT6LoP+wrKpoUWPaazaP1fzbNkp0a0ZSj5Y//+pQVfVe/tQdsYQQy7dwXR30ZfALUIc9PCh9Izir6w==}
+ /@rollup/rollup-win32-ia32-msvc@4.17.2:
+ resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.16.1:
- resolution: {integrity: sha512-x0fvpHMuF7fK5r8oZxSi8VYXkrVmRgubXpO/wcf15Lk3xZ4Jvvh5oG+u7Su1776A7XzVKZhD2eRc4t7H50gL3w==}
+ /@rollup/rollup-win32-x64-msvc@4.17.2:
+ resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@shikijs/core@1.3.0:
- resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==}
+ /@shikijs/core@1.5.1:
+ resolution: {integrity: sha512-xjV63pRUBvxA1LsxOUhRKLPh0uUjwBLzAKLdEuYSLIylo71sYuwDcttqNP01Ib1TZlLfO840CXHPlgUUsYFjzg==}
dev: false
/@sinclair/typebox@0.27.8:
@@ -7717,15 +8370,15 @@ packages:
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
- /@solidjs/router@0.9.1(solid-js@1.8.16):
- resolution: {integrity: sha512-kRY75piOQsyoH75E/RP6lr7uVGFCjeeCCCJx7Z2D1Vc6+I1yFQjLCvE+6agXGwqDoWi6vbETP1g7gmp/L1mNLg==}
+ /@solidjs/router@0.13.3(solid-js@1.8.17):
+ resolution: {integrity: sha512-p8zznlvnN3KySMXqT8irhubgDNTETNa/guaGHU/cZl7kuiPO3PmkWNYfoNCygtEpoxLmLpf62/ZKeyhFdZexsw==}
peerDependencies:
- solid-js: ^1.8.4
+ solid-js: ^1.8.6
dependencies:
- solid-js: 1.8.16
+ solid-js: 1.8.17
dev: false
- /@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0)(svelte@4.2.15)(vite@5.2.10):
+ /@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.0)(svelte@4.2.16)(vite@5.2.11):
resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==}
engines: {node: ^18.0.0 || >=20}
peerDependencies:
@@ -7736,15 +8389,15 @@ packages:
vite:
optional: true
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.15)(vite@5.2.10)
+ '@sveltejs/vite-plugin-svelte': 3.1.0(svelte@4.2.16)(vite@5.2.11)
debug: 4.3.4(supports-color@8.1.1)
- svelte: 4.2.15
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ svelte: 4.2.16
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
transitivePeerDependencies:
- supports-color
dev: false
- /@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.15)(vite@5.2.10):
+ /@sveltejs/vite-plugin-svelte@3.1.0(svelte@4.2.16)(vite@5.2.11):
resolution: {integrity: sha512-sY6ncCvg+O3njnzbZexcVtUqOBE3iYmQPJ9y+yXSkOwG576QI/xJrBnQSRXFLGwJNBa0T78JEKg5cIR0WOAuUw==}
engines: {node: ^18.0.0 || >=20}
peerDependencies:
@@ -7754,15 +8407,15 @@ packages:
vite:
optional: true
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0)(svelte@4.2.15)(vite@5.2.10)
+ '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.0)(svelte@4.2.16)(vite@5.2.11)
debug: 4.3.4(supports-color@8.1.1)
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.10
- svelte: 4.2.15
- svelte-hmr: 0.16.0(svelte@4.2.15)
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
- vitefu: 0.2.5(vite@5.2.10)
+ svelte: 4.2.16
+ svelte-hmr: 0.16.0(svelte@4.2.16)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vitefu: 0.2.5(vite@5.2.11)
transitivePeerDependencies:
- supports-color
dev: false
@@ -7798,8 +8451,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
@@ -7808,19 +8461,19 @@ packages:
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
dev: false
/@types/babel__traverse@7.20.5:
resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
/@types/body-parser@1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -7833,8 +8486,8 @@ packages:
resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==}
dev: false
- /@types/chai@4.3.14:
- resolution: {integrity: sha512-Wj71sXE4Q4AkGdG9Tvq1u/fquNz9EdG4LIJMwVVII7ashjD/8cf8fyIfJAjRr6YcsXnSE8cOGQPq1gqeR8z+3w==}
+ /@types/chai@4.3.16:
+ resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
dev: true
/@types/clean-css@4.2.11:
@@ -7871,8 +8524,8 @@ packages:
resolution: {integrity: sha512-PQyNSy1YMZU1hgZA5tTYfHPpUAo9Dorn1PZho2/budQLfqLu3JIP37JAavnwYpR1S2yFZTXa3hxaE4ifGW5jaA==}
dev: true
- /@types/diff@5.2.0:
- resolution: {integrity: sha512-pjJH+02ukgJRW0mViDUA1cdC+wzSgRu0e4cPuogPLAw0i66y62iMP0ZlXoJAmoXrKRZnF3pMDwyKZsgNVlMX4A==}
+ /@types/diff@5.2.1:
+ resolution: {integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==}
dev: true
/@types/dlv@1.1.4:
@@ -7952,6 +8605,13 @@ packages:
/@types/linkify-it@3.0.5:
resolution: {integrity: sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@types/linkify-it@5.0.0:
+ resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
+ dev: true
/@types/markdown-it@12.2.3:
resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==}
@@ -7962,11 +8622,11 @@ packages:
dev: false
optional: true
- /@types/markdown-it@14.0.1:
- resolution: {integrity: sha512-6WfOG3jXR78DW8L5cTYCVVGAsIFZskRHCDo5tbqa+qtKVt4oDRVH7hyIWu1SpDQJlmIoEivNQZ5h+AGAOrgOtQ==}
+ /@types/markdown-it@14.1.1:
+ resolution: {integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==}
dependencies:
- '@types/linkify-it': 3.0.5
- '@types/mdurl': 1.0.5
+ '@types/linkify-it': 5.0.0
+ '@types/mdurl': 2.0.0
dev: true
/@types/mathjax@0.0.40:
@@ -7980,6 +8640,13 @@ packages:
/@types/mdurl@1.0.5:
resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@types/mdurl@2.0.0:
+ resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
+ dev: true
/@types/mdx@2.0.13:
resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
@@ -8039,8 +8706,8 @@ packages:
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
dev: true
- /@types/prismjs@1.26.3:
- resolution: {integrity: sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==}
+ /@types/prismjs@1.26.4:
+ resolution: {integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==}
dev: true
/@types/probe-image-size@7.2.4:
@@ -8068,19 +8735,13 @@ packages:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
dev: true
- /@types/react-dom@18.2.25:
- resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==}
- dependencies:
- '@types/react': 18.2.78
-
- /@types/react@18.2.78:
- resolution: {integrity: sha512-qOwdPnnitQY4xKlKayt42q5W5UQrSHjgoXNVEtxeqdITJ99k4VXJOP3vt8Rkm9HmgJpH50UNU+rlqfkfWOqp0A==}
+ /@types/react-dom@18.3.0:
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
- '@types/prop-types': 15.7.12
- csstype: 3.1.3
+ '@types/react': 18.3.2
- /@types/react@18.2.79:
- resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==}
+ /@types/react@18.3.2:
+ resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==}
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -8177,8 +8838,8 @@ packages:
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
dev: true
- /@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0)(eslint@9.1.0)(typescript@5.4.5):
- resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==}
+ /@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0)(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -8189,25 +8850,25 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/type-utils': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/type-utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@8.1.1)
- eslint: 9.1.0
+ eslint: 9.2.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@7.7.0(eslint@9.1.0)(typescript@5.4.5):
- resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==}
+ /@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -8216,27 +8877,27 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@8.1.1)
- eslint: 9.1.0
+ eslint: 9.2.0
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager@7.7.0:
- resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==}
+ /@typescript-eslint/scope-manager@7.8.0:
+ resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
dev: true
- /@typescript-eslint/type-utils@7.7.0(eslint@9.1.0)(typescript@5.4.5):
- resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==}
+ /@typescript-eslint/type-utils@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -8245,23 +8906,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
debug: 4.3.4(supports-color@8.1.1)
- eslint: 9.1.0
+ eslint: 9.2.0
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types@7.7.0:
- resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==}
+ /@typescript-eslint/types@7.8.0:
+ resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==}
engines: {node: ^18.18.0 || >=20.0.0}
dev: true
- /@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5):
- resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==}
+ /@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5):
+ resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -8269,43 +8930,43 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.4
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.4.5)
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@7.7.0(eslint@9.1.0)(typescript@5.4.5):
- resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==}
+ /@typescript-eslint/utils@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- eslint: 9.1.0
- semver: 7.6.0
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ eslint: 9.2.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys@7.7.0:
- resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==}
+ /@typescript-eslint/visitor-keys@7.8.0:
+ resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.7.0
+ '@typescript-eslint/types': 7.8.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -8356,8 +9017,8 @@ packages:
resolution: {integrity: sha512-NtKiIbn9Cq6HWGy+qRudz28mz5nxfOJWls5Pnckjw1yCfSX8rhXdvY/il3Sy3Zd5n/sKCM2h7VSCCpJF/oaDrQ==}
dev: false
- /@vercel/nft@0.26.4:
- resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==}
+ /@vercel/nft@0.27.0:
+ resolution: {integrity: sha512-W5pValyhToK9hbgEUAM6sLRUIl1I++RsFnXKHXtND50P1+vZ+OYPCzq1OOz0Ok6ghK6aOwae8G/rEAXkLedC+w==}
engines: {node: '>=16'}
hasBin: true
dependencies:
@@ -8378,7 +9039,7 @@ packages:
- supports-color
dev: false
- /@vitejs/plugin-react@4.2.1(vite@5.2.10):
+ /@vitejs/plugin-react@4.2.1(vite@5.2.11):
resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -8387,17 +9048,17 @@ packages:
vite:
optional: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.5)
'@types/babel__core': 7.20.5
react-refresh: 0.14.0
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
transitivePeerDependencies:
- supports-color
dev: false
- /@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.10)(vue@3.4.23):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11)(vue@3.4.27):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -8407,16 +9068,16 @@ packages:
vite:
optional: true
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.4)
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
- vue: 3.4.23(typescript@5.4.5)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vue: 3.4.27(typescript@5.4.5)
transitivePeerDependencies:
- supports-color
dev: false
- /@vitejs/plugin-vue@5.0.4(vite@5.2.10)(vue@3.4.23):
+ /@vitejs/plugin-vue@5.0.4(vite@5.2.11)(vue@3.4.27):
resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
@@ -8426,42 +9087,42 @@ packages:
vite:
optional: true
dependencies:
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
- vue: 3.4.23(typescript@5.4.5)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vue: 3.4.27(typescript@5.4.5)
dev: false
- /@vitest/expect@1.5.0:
- resolution: {integrity: sha512-0pzuCI6KYi2SIC3LQezmxujU9RK/vwC1U9R0rLuGlNGcOuDWxqWKu6nUdFsX9tH1WU0SXtAxToOsEjeUn1s3hA==}
+ /@vitest/expect@1.6.0:
+ resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==}
dependencies:
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
chai: 4.4.1
dev: false
- /@vitest/runner@1.5.0:
- resolution: {integrity: sha512-7HWwdxXP5yDoe7DTpbif9l6ZmDwCzcSIK38kTSIt6CFEpMjX4EpCgT6wUmS0xTXqMI6E/ONmfgRKmaujpabjZQ==}
+ /@vitest/runner@1.6.0:
+ resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==}
dependencies:
- '@vitest/utils': 1.5.0
+ '@vitest/utils': 1.6.0
p-limit: 5.0.0
pathe: 1.1.2
dev: false
- /@vitest/snapshot@1.5.0:
- resolution: {integrity: sha512-qpv3fSEuNrhAO3FpH6YYRdaECnnRjg9VxbhdtPwPRnzSfHVXnNzzrpX4cJxqiwgRMo7uRMWDFBlsBq4Cr+rO3A==}
+ /@vitest/snapshot@1.6.0:
+ resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==}
dependencies:
magic-string: 0.30.10
pathe: 1.1.2
pretty-format: 29.7.0
dev: false
- /@vitest/spy@1.5.0:
- resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==}
+ /@vitest/spy@1.6.0:
+ resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==}
dependencies:
tinyspy: 2.2.1
dev: false
- /@vitest/utils@1.5.0:
- resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==}
+ /@vitest/utils@1.6.0:
+ resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -8469,30 +9130,30 @@ packages:
pretty-format: 29.7.0
dev: false
- /@volar/kit@2.1.6(typescript@5.4.5):
- resolution: {integrity: sha512-dSuXChDGM0nSG/0fxqlNfadjpAeeo1P1SJPBQ+pDf8H1XrqeJq5gIhxRTEbiS+dyNIG69ATq1CArkbCif+oxJw==}
+ /@volar/kit@2.2.1(typescript@5.4.5):
+ resolution: {integrity: sha512-Ga1uqGfNATdJd0nlpRxFcJoew6xqJwkATvsPiAMvinmfmmJzkGLdVLZl8aNnaDq2TBId/+5daPbwBMAzdu1Sjw==}
peerDependencies:
typescript: '*'
dependencies:
- '@volar/language-service': 2.1.6
- '@volar/typescript': 2.1.6
+ '@volar/language-service': 2.2.1
+ '@volar/typescript': 2.2.1
typesafe-path: 0.2.2
typescript: 5.4.5
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /@volar/language-core@2.1.6:
- resolution: {integrity: sha512-pAlMCGX/HatBSiDFMdMyqUshkbwWbLxpN/RL7HCQDOo2gYBE+uS+nanosLc1qR6pTQ/U8q00xt8bdrrAFPSC0A==}
+ /@volar/language-core@2.2.1:
+ resolution: {integrity: sha512-iHJAZKcYldZgyS8gx6DfIZApViVBeqbf6iPhqoZpG5A6F4zsZiFldKfwaKaBA3/wnOTWE2i8VUbXywI1WywCPg==}
dependencies:
- '@volar/source-map': 2.1.6
+ '@volar/source-map': 2.2.1
- /@volar/language-server@2.1.6:
- resolution: {integrity: sha512-0w+FV8ro37hVb3qE4ONo3VbS5kEQXv4H/D2xCePyY5dRw6XnbJAPFNKvoxI9mxHTPonvIG1si5rN9MSGSKtgZQ==}
+ /@volar/language-server@2.2.1:
+ resolution: {integrity: sha512-29j2owXGUd9nk9+vuRbasoRp5XcRQSbzHUwBUh9Yhf9zkctTZZJDT+Q1wjBKI+5XohR7UVQCBEvmLp4L+WirwA==}
dependencies:
- '@volar/language-core': 2.1.6
- '@volar/language-service': 2.1.6
- '@volar/snapshot-document': 2.1.6
- '@volar/typescript': 2.1.6
+ '@volar/language-core': 2.2.1
+ '@volar/language-service': 2.2.1
+ '@volar/snapshot-document': 2.2.1
+ '@volar/typescript': 2.2.1
'@vscode/l10n': 0.0.16
path-browserify: 1.0.1
request-light: 0.7.0
@@ -8501,29 +9162,29 @@ packages:
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /@volar/language-service@2.1.6:
- resolution: {integrity: sha512-1OpbbPQ6wUIumwMP5r45y8utVEmvq1n6BC8JHqGKsuFr9RGFIldDBlvA/xuO3MDKhjmmPGPHKb54kg1/YN78ow==}
+ /@volar/language-service@2.2.1:
+ resolution: {integrity: sha512-Zt0xELrxTJ+Aag44qkXSFRRIPh2XrhRTYaxUmZNY6QIIu5wWfroySK4LZaA6g7WhloGTrATstk3OxPS0RSlbRw==}
dependencies:
- '@volar/language-core': 2.1.6
+ '@volar/language-core': 2.2.1
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /@volar/snapshot-document@2.1.6:
- resolution: {integrity: sha512-YNYk1sCOrGg7VHbZM+1It97q0GWhFxdqIwnxSNFoL0X1LuSRXoCT2DRb/aa1J6aBpPMbKqSFUWHGQEAFUnc4Zw==}
+ /@volar/snapshot-document@2.2.1:
+ resolution: {integrity: sha512-ISq74JwzdPcjw7TjZZ9VdOYdgwPoX/X3Jus3emD4ftG59v0gomIp11yz7Ds65rUi/coss/uTPse+onXR+64rpg==}
dependencies:
vscode-languageserver-protocol: 3.17.5
vscode-languageserver-textdocument: 1.0.11
- /@volar/source-map@2.1.6:
- resolution: {integrity: sha512-TeyH8pHHonRCHYI91J7fWUoxi0zWV8whZTVRlsWHSYfjm58Blalkf9LrZ+pj6OiverPTmrHRkBsG17ScQyWECw==}
+ /@volar/source-map@2.2.1:
+ resolution: {integrity: sha512-w1Bgpguhbp7YTr7VUFu6gb4iAZjeEPsOX4zpgiuvlldbzvIWDWy4t0jVifsIsxZ99HAu+c3swiME7wt+GeNqhA==}
dependencies:
muggle-string: 0.4.1
- /@volar/typescript@2.1.6:
- resolution: {integrity: sha512-JgPGhORHqXuyC3r6skPmPHIZj4LoMmGlYErFTuPNBq9Nhc9VTv7ctHY7A3jMN3ngKEfRrfnUcwXHztvdSQqNfw==}
+ /@volar/typescript@2.2.1:
+ resolution: {integrity: sha512-Z/tqluR7Hz5/5dCqQp7wo9C/6tSv/IYl+tTzgzUt2NjTq95bKSsuO4E+V06D0c+3aP9x5S9jggLqw451hpnc6Q==}
dependencies:
- '@volar/language-core': 2.1.6
+ '@volar/language-core': 2.2.1
path-browserify: 1.0.1
/@vscode/emmet-helper@2.9.2:
@@ -8545,7 +9206,7 @@ packages:
resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
dev: false
- /@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.4):
+ /@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5):
resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -8553,15 +9214,15 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
'@vue/babel-helper-vue-transform-on': 1.2.2
- '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.4)
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.5)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
@@ -8569,7 +9230,7 @@ packages:
- supports-color
dev: false
- /@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.4):
+ /@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.5):
resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -8578,159 +9239,119 @@ packages:
optional: true
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@vue/compiler-sfc': 3.4.23
+ '@babel/parser': 7.24.5
+ '@vue/compiler-sfc': 3.4.27
dev: false
- /@vue/compiler-core@3.4.21:
- resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==}
+ /@vue/compiler-core@3.4.27:
+ resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.21
+ '@babel/parser': 7.24.5
+ '@vue/shared': 3.4.27
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- dev: false
-
- /@vue/compiler-core@3.4.23:
- resolution: {integrity: sha512-HAFmuVEwNqNdmk+w4VCQ2pkLk1Vw4XYiiyxEp3z/xvl14aLTUBw2OfVH3vBcx+FtGsynQLkkhK410Nah1N2yyQ==}
- dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.23
- entities: 4.5.0
- estree-walker: 2.0.2
- source-map-js: 1.2.0
-
- /@vue/compiler-dom@3.4.21:
- resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
- dependencies:
- '@vue/compiler-core': 3.4.21
- '@vue/shared': 3.4.21
- dev: false
- /@vue/compiler-dom@3.4.23:
- resolution: {integrity: sha512-t0b9WSTnCRrzsBGrDd1LNR5HGzYTr7LX3z6nNBG+KGvZLqrT0mY6NsMzOqlVMBKKXKVuusbbB5aOOFgTY+senw==}
+ /@vue/compiler-dom@3.4.27:
+ resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
dependencies:
- '@vue/compiler-core': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/compiler-core': 3.4.27
+ '@vue/shared': 3.4.27
- /@vue/compiler-sfc@3.4.21:
- resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
+ /@vue/compiler-sfc@3.4.27:
+ resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.21
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
+ '@babel/parser': 7.24.5
+ '@vue/compiler-core': 3.4.27
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.38
source-map-js: 1.2.0
- dev: false
- /@vue/compiler-sfc@3.4.23:
- resolution: {integrity: sha512-fSDTKTfzaRX1kNAUiaj8JB4AokikzStWgHooMhaxyjZerw624L+IAP/fvI4ZwMpwIh8f08PVzEnu4rg8/Npssw==}
+ /@vue/compiler-ssr@3.4.27:
+ resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.23
- '@vue/compiler-dom': 3.4.23
- '@vue/compiler-ssr': 3.4.23
- '@vue/shared': 3.4.23
- estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.38
- source-map-js: 1.2.0
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
- /@vue/compiler-ssr@3.4.21:
- resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
+ /@vue/devtools-core@7.1.3(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==}
dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ '@vue/devtools-shared': 7.1.3
+ mitt: 3.0.1
+ nanoid: 3.3.7
+ pathe: 1.1.2
+ vite-hot-client: 0.2.3(vite@5.2.11)
+ transitivePeerDependencies:
+ - vite
+ - vue
dev: false
- /@vue/compiler-ssr@3.4.23:
- resolution: {integrity: sha512-hb6Uj2cYs+tfqz71Wj6h3E5t6OKvb4MVcM2Nl5i/z1nv1gjEhw+zYaNOV+Xwn+SSN/VZM0DgANw5TuJfxfezPg==}
- dependencies:
- '@vue/compiler-dom': 3.4.23
- '@vue/shared': 3.4.23
-
- /@vue/reactivity@3.1.5:
- resolution: {integrity: sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==}
+ /@vue/devtools-kit@7.1.3(vue@3.4.27):
+ resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==}
+ peerDependencies:
+ vue: ^3.0.0
dependencies:
- '@vue/shared': 3.1.5
+ '@vue/devtools-shared': 7.1.3
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ vue: 3.4.27(typescript@5.4.5)
dev: false
- /@vue/reactivity@3.4.21:
- resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==}
+ /@vue/devtools-shared@7.1.3:
+ resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}
dependencies:
- '@vue/shared': 3.4.21
+ rfdc: 1.3.1
dev: false
- /@vue/reactivity@3.4.23:
- resolution: {integrity: sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==}
- dependencies:
- '@vue/shared': 3.4.23
-
- /@vue/runtime-core@3.4.21:
- resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==}
+ /@vue/reactivity@3.1.5:
+ resolution: {integrity: sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==}
dependencies:
- '@vue/reactivity': 3.4.21
- '@vue/shared': 3.4.21
+ '@vue/shared': 3.1.5
dev: false
- /@vue/runtime-core@3.4.23:
- resolution: {integrity: sha512-FeQ9MZEXoFzFkFiw9MQQ/FWs3srvrP+SjDKSeRIiQHIhtkzoj0X4rWQlRNHbGuSwLra6pMyjAttwixNMjc/xLw==}
+ /@vue/reactivity@3.4.27:
+ resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
dependencies:
- '@vue/reactivity': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/shared': 3.4.27
- /@vue/runtime-dom@3.4.21:
- resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==}
+ /@vue/runtime-core@3.4.27:
+ resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
dependencies:
- '@vue/runtime-core': 3.4.21
- '@vue/shared': 3.4.21
- csstype: 3.1.3
- dev: false
+ '@vue/reactivity': 3.4.27
+ '@vue/shared': 3.4.27
- /@vue/runtime-dom@3.4.23:
- resolution: {integrity: sha512-RXJFwwykZWBkMiTPSLEWU3kgVLNAfActBfWFlZd0y79FTUxexogd0PLG4HH2LfOktjRxV47Nulygh0JFXe5f9A==}
+ /@vue/runtime-dom@3.4.27:
+ resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
dependencies:
- '@vue/runtime-core': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/runtime-core': 3.4.27
+ '@vue/shared': 3.4.27
csstype: 3.1.3
- /@vue/server-renderer@3.4.21(vue@3.4.21):
- resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==}
- peerDependencies:
- vue: 3.4.21
- dependencies:
- '@vue/compiler-ssr': 3.4.21
- '@vue/shared': 3.4.21
- vue: 3.4.21(typescript@5.4.5)
- dev: false
-
- /@vue/server-renderer@3.4.23(vue@3.4.23):
- resolution: {integrity: sha512-LDwGHtnIzvKFNS8dPJ1SSU5Gvm36p2ck8wCZc52fc3k/IfjKcwCyrWEf0Yag/2wTFUBXrqizfhK9c/mC367dXQ==}
+ /@vue/server-renderer@3.4.27(vue@3.4.27):
+ resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
peerDependencies:
- vue: 3.4.23
+ vue: 3.4.27
dependencies:
- '@vue/compiler-ssr': 3.4.23
- '@vue/shared': 3.4.23
- vue: 3.4.23(typescript@5.4.5)
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
+ vue: 3.4.27(typescript@5.4.5)
/@vue/shared@3.1.5:
resolution: {integrity: sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==}
dev: false
- /@vue/shared@3.4.21:
- resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==}
- dev: false
-
- /@vue/shared@3.4.23:
- resolution: {integrity: sha512-wBQ0gvf+SMwsCQOyusNw/GoXPV47WGd1xB5A1Pgzy0sQ3Bi5r5xm3n+92y3gCnB3MWqnRDdvfkRGxhKtbBRNgg==}
+ /@vue/shared@3.4.27:
+ resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
/@webcomponents/template-shadowroot@0.2.1:
resolution: {integrity: sha512-fXL/vIUakyZL62hyvUh+EMwbVoTc0hksublmRz6ai6et8znHkJa6gtqMUZo1oc7dIz46exHSIImml9QTdknMHg==}
@@ -8808,8 +9429,8 @@ packages:
uri-js: 4.4.1
dev: true
- /alpinejs@3.13.8:
- resolution: {integrity: sha512-XolbBJryCndomtaHd/KHQjQeD/L72FJxy/YhLLFD4Lr7zzGcpcbg+UgXteMR2pYg1KhRUr6V4O3GfN1zJAmRWw==}
+ /alpinejs@3.13.10:
+ resolution: {integrity: sha512-86RB307VWICex0vG15Eq0x058cNNsvS57ohrjN6n/TJAVSFV+zXOK/E34nNHDHc6Poq+yTNCLqEzPqEkRBTMRQ==}
dependencies:
'@vue/reactivity': 3.1.5
dev: false
@@ -8979,24 +9600,28 @@ packages:
astro: link:packages/astro
dev: false
- /astro-embed@0.6.2(astro@packages+astro):
- resolution: {integrity: sha512-Ep7zU2H+fqIT6Y70BcbAX8hchFy6K1Hjz5HIyYQQ0ehxPE01qEWmcus1Xu9voTzim8EYhpd9OBEwmRP53EaX+Q==}
+ /astro-embed@0.7.2(astro@packages+astro):
+ resolution: {integrity: sha512-v/j6yRA9Wa+TEHBV64dQU5bLKuYiy1mNudiKIM+nvFe1bAUh+4wzQOf3lRofrxyBMgHaZbr8Xy7oLS9PVzu5jg==}
peerDependencies:
astro: '*'
dependencies:
- '@astro-community/astro-embed-integration': 0.6.2(astro@packages+astro)
+ '@astro-community/astro-embed-integration': 0.7.1(astro@packages+astro)
+ '@astro-community/astro-embed-link-preview': 0.2.0
'@astro-community/astro-embed-twitter': 0.5.4(astro@packages+astro)
'@astro-community/astro-embed-vimeo': 0.3.7(astro@packages+astro)
'@astro-community/astro-embed-youtube': 0.5.2(astro@packages+astro)
astro: link:packages/astro
dev: false
- /astro-remote@0.2.4:
- resolution: {integrity: sha512-iMFOuEVaLPWixNhx4acQc7h9ODMsLElb8itVpyREC/xPsUVf+124Nt80LIdFGV93lmYhIiFu2yf87cdsOxoubg==}
+ /astro-remote@0.3.3:
+ resolution: {integrity: sha512-ufS/aOBXQKAe6hZ5NbiHUsC01o0ZcEwS+nNhd/mr1avLV+NbgYJEbwY8VRorzLs/GH5COOTaxl2795DkGIUTcw==}
+ engines: {node: '>=18.14.1'}
dependencies:
entities: 4.5.0
- marked: 4.3.0
- ultrahtml: 0.1.3
+ marked: 12.0.2
+ marked-footnote: 1.2.2(marked@12.0.2)
+ marked-smartypants: 1.1.6(marked@12.0.2)
+ ultrahtml: 1.5.3
dev: false
/async-listen@3.0.1:
@@ -9067,12 +9692,7 @@ packages:
dependencies:
dequal: 2.0.3
- /b4a@1.6.6:
- resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==}
- requiresBuild: true
- dev: false
-
- /babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.24.4):
+ /babel-plugin-jsx-dom-expressions@0.37.19(@babel/core@7.24.5):
resolution: {integrity: sha512-nef2eLpWBgFggwrYwN6O3dNKn3RnlX6n4DIamNEAeHwp03kVQUaKUiLaEPnHPJHwxie1KwPelyIY9QikU03vUA==}
peerDependencies:
'@babel/core': ^7.20.12
@@ -9080,10 +9700,10 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.18.6
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
- '@babel/types': 7.24.0
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
+ '@babel/types': 7.24.5
html-entities: 2.3.3
validate-html-nesting: 1.2.2
dev: false
@@ -9097,7 +9717,7 @@ packages:
optional: true
dev: false
- /babel-preset-solid@1.8.16(@babel/core@7.24.4):
+ /babel-preset-solid@1.8.16(@babel/core@7.24.5):
resolution: {integrity: sha512-b4HFg/xaKM+H3Tu5iUlZ/43TJOZnhi85xrm3JrXDQ0s4cmtmU37bXXYzb2m55G4QKiFjxLAjvb7sUorPrAMs5w==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -9105,8 +9725,8 @@ packages:
'@babel/core':
optional: true
dependencies:
- '@babel/core': 7.24.4
- babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ babel-plugin-jsx-dom-expressions: 0.37.19(@babel/core@7.24.5)
dev: false
/bail@2.0.2:
@@ -9115,50 +9735,21 @@ packages:
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /bare-events@2.2.2:
- resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==}
- requiresBuild: true
- dev: false
- optional: true
-
- /bare-fs@2.2.3:
- resolution: {integrity: sha512-amG72llr9pstfXOBOHve1WjiuKKAMnebcmMbPWDZ7BCevAoJLpugjuAPRsDINEyjT0a6tbaVx3DctkXIRbLuJw==}
- requiresBuild: true
- dependencies:
- bare-events: 2.2.2
- bare-path: 2.1.1
- streamx: 2.16.1
- dev: false
- optional: true
-
- /bare-os@2.2.1:
- resolution: {integrity: sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==}
- requiresBuild: true
- dev: false
- optional: true
-
- /bare-path@2.1.1:
- resolution: {integrity: sha512-OHM+iwRDRMDBsSW7kl3dO62JyHdBKO3B25FB9vNQBPcGHMo4+eA8Yj41Lfbk3pS/seDY+siNge0LdRTulAau/A==}
- requiresBuild: true
- dependencies:
- bare-os: 2.2.1
- dev: false
- optional: true
-
/base-64@1.0.0:
resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==}
dev: false
/base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ requiresBuild: true
dev: false
/bcp-47-match@2.0.3:
resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==}
dev: false
- /before-after-hook@2.2.3:
- resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+ /before-after-hook@3.0.2:
+ resolution: {integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==}
dev: true
/better-path-resolve@1.0.0:
@@ -9184,15 +9775,6 @@ packages:
file-uri-to-path: 1.0.0
dev: false
- /bl@4.1.0:
- resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- requiresBuild: true
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: false
-
/body-parser@1.20.2:
resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -9269,6 +9851,7 @@ packages:
/buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ requiresBuild: true
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
@@ -9344,8 +9927,8 @@ packages:
/caniuse-lite@1.0.30001610:
resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==}
- /canvas-confetti@1.9.2:
- resolution: {integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==}
+ /canvas-confetti@1.9.3:
+ resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==}
dev: false
/ccount@2.0.1:
@@ -9364,12 +9947,12 @@ packages:
type-detect: 4.0.8
dev: false
- /chai@5.1.0:
- resolution: {integrity: sha512-kDZ7MZyM6Q1DhR9jy7dalKohXQ2yrlXkk59CR52aRKxJrobmlBNqnFQxX9xOX8w+4mz8SYlKJa/7D7ddltFXCw==}
+ /chai@5.1.1:
+ resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
engines: {node: '>=12'}
dependencies:
assertion-error: 2.0.1
- check-error: 2.0.0
+ check-error: 2.1.1
deep-eql: 5.0.1
loupe: 3.1.0
pathval: 2.0.0
@@ -9421,8 +10004,8 @@ packages:
get-func-name: 2.0.2
dev: false
- /check-error@2.0.0:
- resolution: {integrity: sha512-tjLAOBHKVxtPoHe/SA7kNOMvhCRdCJ3vETdeY0RuAc9popf+hyaSV6ZEg9hr4cpWF7jmo/JSWEnLDrnijS9Tog==}
+ /check-error@2.1.1:
+ resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
engines: {node: '>= 16'}
dev: true
@@ -9479,11 +10062,6 @@ packages:
optionalDependencies:
fsevents: 2.3.3
- /chownr@1.1.4:
- resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
- requiresBuild: true
- dev: false
-
/chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
@@ -9579,8 +10157,8 @@ packages:
engines: {node: '>=0.8'}
dev: true
- /clsx@2.1.0:
- resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ /clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
dev: false
@@ -9737,8 +10315,8 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /css-blank-pseudo@6.0.1(postcss@8.4.38):
- resolution: {integrity: sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==}
+ /css-blank-pseudo@6.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
@@ -9747,13 +10325,13 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
- /css-has-pseudo@6.0.3(postcss@8.4.38):
- resolution: {integrity: sha512-qIsDxK/z0byH/mpNsv5hzQ5NOl8m1FRmOLgZpx4bG5uYHnOlO2XafeMI4mFIgNSViHwoUWcxSJZyyijaAmbs+A==}
+ /css-has-pseudo@6.0.4(postcss@8.4.38):
+ resolution: {integrity: sha512-u9vuyeksska4OMRC061xTQb2RJZv7T1JJjnZbaQpNhZRPF1UqGpBqHnlcwRS/1vv+QOpD4NVsaFT4U1zmkciuA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.1.0(postcss-selector-parser@6.0.16)
postcss: 8.4.38
postcss-selector-parser: 6.0.16
postcss-value-parser: 4.2.0
@@ -9948,14 +10526,6 @@ packages:
dependencies:
character-entities: 2.0.2
- /decompress-response@6.0.0:
- resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
- engines: {node: '>=10'}
- requiresBuild: true
- dependencies:
- mimic-response: 3.1.0
- dev: false
-
/dedent-js@1.0.1:
resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==}
dev: false
@@ -9976,12 +10546,6 @@ packages:
engines: {node: '>=6'}
dev: true
- /deep-extend@0.6.0:
- resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
- engines: {node: '>=4.0.0'}
- requiresBuild: true
- dev: false
-
/deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
@@ -10068,10 +10632,6 @@ packages:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- /deprecation@2.3.1:
- resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
- dev: true
-
/dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
@@ -10093,6 +10653,7 @@ packages:
/detect-libc@2.0.3:
resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
engines: {node: '>=8'}
+ requiresBuild: true
dev: false
/deterministic-object-hash@2.0.2:
@@ -10171,8 +10732,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /drizzle-orm@0.30.9(@libsql/client@0.6.0):
- resolution: {integrity: sha512-VOiCFsexErmgqvNCOmbzmqDCZzZsHoz6SkWAjTFxsTr1AllKDbDJ2+GgedLXsXMDgpg/ljDG1zItIFeZtiO2LA==}
+ /drizzle-orm@0.30.10(@libsql/client@0.6.0):
+ resolution: {integrity: sha512-IRy/QmMWw9lAQHpwbUh1b8fcn27S/a9zMIzqea1WNOxK9/4EB8gIo+FZWLiPXzl2n9ixGSv8BhsLZiOppWEwBw==}
peerDependencies:
'@aws-sdk/client-rds-data': '>=3'
'@cloudflare/workers-types': '>=3'
@@ -10298,13 +10859,6 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- /end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- requiresBuild: true
- dependencies:
- once: 1.4.0
- dev: false
-
/enhanced-resolve@5.16.0:
resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
engines: {node: '>=10.13.0'}
@@ -10335,6 +10889,10 @@ packages:
is-arrayish: 0.2.1
dev: true
+ /error-stack-parser-es@0.1.1:
+ resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}
+ dev: false
+
/es-abstract@1.23.3:
resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
@@ -10399,8 +10957,8 @@ packages:
engines: {node: '>= 0.4'}
dev: true
- /es-module-lexer@1.5.0:
- resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==}
+ /es-module-lexer@1.5.2:
+ resolution: {integrity: sha512-l60ETUTmLqbVbVHv1J4/qj+M8nq7AwMzEcg3kmJDt9dCNrTk+yHcYFf/Kw75pMDwd9mPcIGCG5LcS20SxYRzFA==}
dev: false
/es-object-atoms@1.0.0:
@@ -10434,14 +10992,14 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild-plugin-copy@2.1.1(esbuild@0.20.2):
+ /esbuild-plugin-copy@2.1.1(esbuild@0.21.2):
resolution: {integrity: sha512-Bk66jpevTcV8KMFzZI1P7MZKZ+uDcrZm2G2egZ2jNIvVnivDpodZI+/KnpL3Jnap0PBdIHU7HwFGB8r+vV5CVw==}
peerDependencies:
esbuild: '>= 0.14.0'
dependencies:
chalk: 4.1.2
chokidar: 3.6.0
- esbuild: 0.20.2
+ esbuild: 0.21.2
fs-extra: 10.1.0
globby: 11.1.0
dev: true
@@ -10476,6 +11034,36 @@ packages:
'@esbuild/win32-ia32': 0.20.2
'@esbuild/win32-x64': 0.20.2
+ /esbuild@0.21.2:
+ resolution: {integrity: sha512-LmHPAa5h4tSxz+g/D8IHY6wCjtIiFx8I7/Q0Aq+NmvtoYvyMnJU0KQJcqB6QH30X9x/W4CemgUtPgQDZFca5SA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.2
+ '@esbuild/android-arm': 0.21.2
+ '@esbuild/android-arm64': 0.21.2
+ '@esbuild/android-x64': 0.21.2
+ '@esbuild/darwin-arm64': 0.21.2
+ '@esbuild/darwin-x64': 0.21.2
+ '@esbuild/freebsd-arm64': 0.21.2
+ '@esbuild/freebsd-x64': 0.21.2
+ '@esbuild/linux-arm': 0.21.2
+ '@esbuild/linux-arm64': 0.21.2
+ '@esbuild/linux-ia32': 0.21.2
+ '@esbuild/linux-loong64': 0.21.2
+ '@esbuild/linux-mips64el': 0.21.2
+ '@esbuild/linux-ppc64': 0.21.2
+ '@esbuild/linux-riscv64': 0.21.2
+ '@esbuild/linux-s390x': 0.21.2
+ '@esbuild/linux-x64': 0.21.2
+ '@esbuild/netbsd-x64': 0.21.2
+ '@esbuild/openbsd-x64': 0.21.2
+ '@esbuild/sunos-x64': 0.21.2
+ '@esbuild/win32-arm64': 0.21.2
+ '@esbuild/win32-ia32': 0.21.2
+ '@esbuild/win32-x64': 0.21.2
+
/escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -10496,51 +11084,21 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- /eslint-config-prettier@9.1.0(eslint@9.1.0):
- resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
- hasBin: true
- peerDependencies:
- eslint: '>=7.0.0'
- dependencies:
- eslint: 9.1.0
- dev: true
-
/eslint-plugin-no-only-tests@3.1.0:
resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==}
engines: {node: '>=5.0.0'}
dev: true
- /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@9.1.0)(prettier@3.2.5):
- resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- '@types/eslint': '>=8.0.0'
- eslint: '>=8.0.0'
- eslint-config-prettier: '*'
- prettier: '>=3.0.0'
- peerDependenciesMeta:
- '@types/eslint':
- optional: true
- eslint-config-prettier:
- optional: true
- dependencies:
- eslint: 9.1.0
- eslint-config-prettier: 9.1.0(eslint@9.1.0)
- prettier: 3.2.5
- prettier-linter-helpers: 1.0.0
- synckit: 0.8.8
- dev: true
-
- /eslint-plugin-regexp@2.5.0(eslint@9.1.0):
+ /eslint-plugin-regexp@2.5.0(eslint@9.2.0):
resolution: {integrity: sha512-I7vKcP0o75WS5SHiVNXN+Eshq49sbrweMQIuqSL3AId9AwDe9Dhbfug65vw64LxmOd4v+yf5l5Xt41y9puiq0g==}
engines: {node: ^18 || >=20}
peerDependencies:
eslint: '>=8.44.0'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint-community/regexpp': 4.10.0
comment-parser: 1.4.1
- eslint: 9.1.0
+ eslint: 9.2.0
jsdoc-type-pratt-parser: 4.0.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
@@ -10565,15 +11123,15 @@ packages:
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
dev: true
- /eslint@9.1.0:
- resolution: {integrity: sha512-1TCBecGFQtItia2o39P7Z4BK1X7ByNPxAiWJvwiyTGcOwYnTiiASgMpNA6a+beu8cFPhEDWvPf6mIlYUJv6sgA==}
+ /eslint@9.2.0:
+ resolution: {integrity: sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint-community/regexpp': 4.10.0
'@eslint/eslintrc': 3.0.2
- '@eslint/js': 9.1.1
+ '@eslint/js': 9.2.0
'@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.2.3
@@ -10715,12 +11273,6 @@ packages:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- /expand-template@2.0.3:
- resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
- engines: {node: '>=6'}
- requiresBuild: true
- dev: false
-
/express@4.19.2:
resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
@@ -10787,15 +11339,6 @@ packages:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
- /fast-diff@1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
- dev: true
-
- /fast-fifo@1.3.2:
- resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- requiresBuild: true
- dev: false
-
/fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
@@ -10953,11 +11496,6 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- /fs-constants@1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- requiresBuild: true
- dev: false
-
/fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
@@ -11106,11 +11644,6 @@ packages:
tar: 6.2.1
dev: false
- /github-from-package@0.0.0:
- resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
- requiresBuild: true
- dev: false
-
/github-slugger@2.0.0:
resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
@@ -11134,7 +11667,7 @@ packages:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.0.4
+ minipass: 7.1.0
path-scurry: 1.10.2
/glob@7.2.3:
@@ -11467,15 +12000,6 @@ packages:
dependencies:
'@types/hast': 3.0.4
- /hast-util-to-text@4.0.1:
- resolution: {integrity: sha512-RHL7Vo2n06ZocCFWqmbyhZ1pCYX/mSKdywt9YD5U6Hquu5syV+dImCXFKLFt02JoK5QxkQFS0PoVdFdPXuPffQ==}
- dependencies:
- '@types/hast': 3.0.4
- '@types/unist': 3.0.2
- hast-util-is-element: 3.0.0
- unist-util-find-after: 5.0.0
- dev: true
-
/hast-util-to-text@4.0.2:
resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==}
dependencies:
@@ -11483,7 +12007,6 @@ packages:
'@types/unist': 3.0.2
hast-util-is-element: 3.0.0
unist-util-find-after: 5.0.0
- dev: false
/hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
@@ -11517,6 +12040,10 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ /hookable@5.5.3:
+ resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
+ dev: false
+
/hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
@@ -11630,6 +12157,11 @@ packages:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
engines: {node: '>=16.17.0'}
+ /hyperdyperid@1.2.0:
+ resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
+ engines: {node: '>=10.18'}
+ dev: true
+
/hyperid@3.2.0:
resolution: {integrity: sha512-PdTtDo+Rmza9nEhTunaDSUKwbC69TIzLEpZUwiB6f+0oqmY0UPfhyHCPt6K1NQ4WFv5yJBTG5vELztVWP+nEVQ==}
dependencies:
@@ -11654,6 +12186,7 @@ packages:
/ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+ requiresBuild: true
dev: false
/ignore@5.3.1:
@@ -11671,8 +12204,8 @@ packages:
resolve-from: 4.0.0
dev: true
- /import-meta-resolve@4.0.0:
- resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==}
+ /import-meta-resolve@4.1.0:
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
dev: false
/imurmurhash@0.1.4:
@@ -11698,11 +12231,7 @@ packages:
/inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
-
- /ini@1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
requiresBuild: true
- dev: false
/inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
@@ -12193,8 +12722,8 @@ packages:
uhyphen: 0.2.0
dev: false
- /linkedom@0.16.11:
- resolution: {integrity: sha512-WgaTVbj7itjyXTsCvgerpneERXShcnNJF5VIV+/4SLtyRLN+HppPre/WDHRofAr2IpEuujSNgJbCBd5lMl6lRw==}
+ /linkedom@0.18.0:
+ resolution: {integrity: sha512-Xtu+w437ENHrgggnSHssua47vYXX/a/MzNdo+AR3UuWoOAxGZNwDSvjRPnPbVRFoygT990HS+7BDVBE1MK6FLQ==}
dependencies:
css-select: 5.1.0
cssom: 0.5.0
@@ -12215,14 +12744,6 @@ packages:
dependencies:
'@types/trusted-types': 2.0.7
- /lit@3.1.2:
- resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==}
- dependencies:
- '@lit/reactive-element': 2.0.4
- lit-element: 4.0.4
- lit-html: 3.1.2
- dev: false
-
/lit@3.1.3:
resolution: {integrity: sha512-l4slfspEsnCcHVRTvaP7YnkTZEZggNFywLEIhQaGhYDczG+tu/vlgm/KaWIEjIp+ZyV20r2JnZctMb8LeLCG7Q==}
dependencies:
@@ -12384,13 +12905,6 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.15
dev: false
- /magic-string@0.30.9:
- resolution: {integrity: sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==}
- engines: {node: '>=12'}
- dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
- dev: false
-
/make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -12421,9 +12935,26 @@ packages:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
dev: false
- /marked@4.3.0:
- resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
- engines: {node: '>= 12'}
+ /marked-footnote@1.2.2(marked@12.0.2):
+ resolution: {integrity: sha512-TFBEHwHLSSedub7P6XHHs+dMMOnDeNV5+kFDo4trU//gDd8iM57lg9jr9NGwDifPwLllHwKmFcRNp5uYvO2Fnw==}
+ peerDependencies:
+ marked: '>=7.0.0'
+ dependencies:
+ marked: 12.0.2
+ dev: false
+
+ /marked-smartypants@1.1.6(marked@12.0.2):
+ resolution: {integrity: sha512-38rdxcV3+EHrvoHioSrgBDvOmFb+TNcszZggrl15qe4MEfQxBArfSgsGgFP0YqHlGy8Rgoyi4gN4ThBWzwNJeA==}
+ peerDependencies:
+ marked: '>=4 <13'
+ dependencies:
+ marked: 12.0.2
+ smartypants: 0.2.2
+ dev: false
+
+ /marked@12.0.2:
+ resolution: {integrity: sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==}
+ engines: {node: '>= 18'}
hasBin: true
dev: false
@@ -12668,10 +13199,13 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /memfs@4.8.2:
- resolution: {integrity: sha512-j4WKth315edViMBGkHW6NTF0QBjsTrcRDmYNcGsPq+ozMEyCCCIlX2d2mJ5wuh6iHvJ3FevUrr48v58YRqVdYg==}
+ /memfs@4.9.2:
+ resolution: {integrity: sha512-f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==}
engines: {node: '>= 4.0.0'}
dependencies:
+ '@jsonjoy.com/json-pack': 1.0.4(tslib@2.6.2)
+ '@jsonjoy.com/util': 1.1.3(tslib@2.6.2)
+ sonic-forest: 1.0.3(tslib@2.6.2)
tslib: 2.6.2
dev: true
@@ -13079,12 +13613,6 @@ packages:
resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
engines: {node: '>=12'}
- /mimic-response@3.1.0:
- resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
- engines: {node: '>=10'}
- requiresBuild: true
- dev: false
-
/min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
@@ -13126,6 +13654,7 @@ packages:
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ requiresBuild: true
dev: false
/minipass@3.3.6:
@@ -13140,8 +13669,8 @@ packages:
engines: {node: '>=8'}
dev: false
- /minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ /minipass@7.1.0:
+ resolution: {integrity: sha512-oGZRv2OT1lO2UF1zUcwdTb3wqUwI0kBGTgt/T7OdSj6M6N5m3o5uPf0AIW6lVxGGoiWUR7e2AwTE+xiwK8WQig==}
engines: {node: '>=16 || 14 >=14.17'}
/minizlib@2.1.2:
@@ -13156,10 +13685,14 @@ packages:
resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
engines: {node: '>= 18'}
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.0
rimraf: 5.0.5
dev: false
+ /mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+ dev: false
+
/mixme@0.5.10:
resolution: {integrity: sha512-5H76ANWinB1H3twpJ6JY8uvAtpmFvHNArpilJAjXRKXSDDLPIMoZArw5SH0q9z+lLs8IrMw7Q2VWpWimFKFT1Q==}
engines: {node: '>= 8.0.0'}
@@ -13169,11 +13702,6 @@ packages:
resolution: {integrity: sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==}
dev: true
- /mkdirp-classic@0.5.3:
- resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- requiresBuild: true
- dev: false
-
/mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
@@ -13268,14 +13796,9 @@ packages:
hasBin: true
dev: false
- /nanostores@0.9.5:
- resolution: {integrity: sha512-Z+p+g8E7yzaWwOe5gEUB2Ox0rCEeXWYIZWmYvw/ajNYX8DlXdMvMDj8DWfM/subqPAcsf8l8Td4iAwO1DeIIRQ==}
- engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
- dev: false
-
- /napi-build-utils@1.0.2:
- resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
- requiresBuild: true
+ /nanostores@0.10.3:
+ resolution: {integrity: sha512-Nii8O1XqmawqSCf9o2aWqVxhKRN01+iue9/VEd1TiJCr9VT5XxgPFbF1Edl1XN6pwJcZRsl8Ki+z01yb/T/C2g==}
+ engines: {node: ^18.0.0 || >=20.0.0}
dev: false
/natural-compare@1.4.0:
@@ -13306,19 +13829,6 @@ packages:
tslib: 2.6.2
dev: false
- /node-abi@3.57.0:
- resolution: {integrity: sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==}
- engines: {node: '>=10'}
- requiresBuild: true
- dependencies:
- semver: 7.6.0
- dev: false
-
- /node-addon-api@6.1.0:
- resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
- requiresBuild: true
- dev: false
-
/node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
@@ -13486,6 +13996,7 @@ packages:
/once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ requiresBuild: true
dependencies:
wrappy: 1.0.2
@@ -13509,8 +14020,8 @@ packages:
which-pm-runs: 1.1.0
dev: true
- /open-props@1.7.2:
- resolution: {integrity: sha512-RheKypVzZBCSZ6c5iJaFWG0OBqdtql3eRFXRYrSNLh6vGzU8NSAHuq9iJPj++DrpPGs1pqlRa2BelwwBHjX3Xg==}
+ /open-props@1.7.4:
+ resolution: {integrity: sha512-LfzWOJq4I79GxtpT1/CucxujndqWjAdcC2H6gSJo1TmFGzyGv1VJWJQ1BQnui0/YgTNI+AaG1pEcq5/DCGL8RQ==}
dev: false
/open@10.1.0:
@@ -13745,7 +14256,7 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
lru-cache: 10.2.0
- minipass: 7.0.4
+ minipass: 7.1.0
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
@@ -13777,6 +14288,10 @@ packages:
engines: {node: '>= 14.16'}
dev: true
+ /perfect-debounce@1.0.0:
+ resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+ dev: false
+
/periscopic@3.1.0:
resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
dependencies:
@@ -13817,18 +14332,18 @@ packages:
pathe: 1.1.2
dev: false
- /playwright-core@1.43.1:
- resolution: {integrity: sha512-EI36Mto2Vrx6VF7rm708qSnesVQKbxEWvPrfA1IPY6HgczBplDx7ENtx+K2n4kJ41sLLkuGfmb0ZLSSXlDhqPg==}
+ /playwright-core@1.44.0:
+ resolution: {integrity: sha512-ZTbkNpFfYcGWohvTTl+xewITm7EOuqIqex0c7dNZ+aXsbrLj0qI8XlGKfPpipjm0Wny/4Lt4CJsWJk1stVS5qQ==}
engines: {node: '>=16'}
hasBin: true
dev: true
- /playwright@1.43.1:
- resolution: {integrity: sha512-V7SoH0ai2kNt1Md9E3Gwas5B9m8KR2GVvwZnAI6Pg0m3sh7UvgiYhRrhsziCmqMJNouPckiOhk8T+9bSAK0VIA==}
+ /playwright@1.44.0:
+ resolution: {integrity: sha512-F9b3GUCLQ3Nffrfb6dunPOkE5Mh68tR7zN32L4jCk4FjQamgesGay7/dAAe1WaMEGV04DkdJfcJzjoCKygUaRQ==}
engines: {node: '>=16'}
hasBin: true
dependencies:
- playwright-core: 1.43.1
+ playwright-core: 1.44.0
optionalDependencies:
fsevents: 2.3.2
dev: true
@@ -13862,15 +14377,15 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-color-functional-notation@6.0.8(postcss@8.4.38):
- resolution: {integrity: sha512-BilFPTHcfWEnuQeqL83nbSPVK3tcU57S60aOrqgditarNDzOojyF0Gdc2Ur5L+zox366QjrCe0rOBLDO2pNvRQ==}
+ /postcss-color-functional-notation@6.0.11(postcss@8.4.38):
+ resolution: {integrity: sha512-gJ+hAtAsgBF4w7eh28Pg7EA60lx7vE5xO/B/yZawaI6FYHky+5avA9YSe73nJHnAMEVFpCMeJc6Wts5g+niksg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -13898,42 +14413,42 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-media@10.0.4(postcss@8.4.38):
- resolution: {integrity: sha512-Ubs7O3wj2prghaKRa68VHBvuy3KnTQ0zbGwqDYY1mntxJD0QL2AeiAy+AMfl3HBedTCVr2IcFNktwty9YpSskA==}
+ /postcss-custom-media@10.0.6(postcss@8.4.38):
+ resolution: {integrity: sha512-BjihQoIO4Wjqv9fQNExSJIim8UAmkhLxuJnhJsLTRFSba1y1MhxkJK5awsM//6JJ+/Tu5QUxf624RQAvKHv6SA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/cascade-layer-name-parser': 1.0.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
- '@csstools/media-query-list-parser': 2.1.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
+ '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
+ '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
postcss: 8.4.38
dev: true
- /postcss-custom-properties@13.3.7(postcss@8.4.38):
- resolution: {integrity: sha512-0N9F/GUCr/D0IazjzHahyYW2bQVDT6qDtEudiGHAhMd3XqhfM3VmfYVlkc/40DOhsPtngSNb54/Ctu8msvFOvQ==}
+ /postcss-custom-properties@13.3.10(postcss@8.4.38):
+ resolution: {integrity: sha512-ejaalIpl7p0k0L5ngIZ86AZGmp3m1KdeOCbSQTK4gQcB1ncaoPTHorw206+tsZRIhIDYvh5ZButEje6740YDXw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/cascade-layer-name-parser': 1.0.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
postcss-value-parser: 4.2.0
dev: true
- /postcss-custom-selectors@7.1.8(postcss@8.4.38):
- resolution: {integrity: sha512-fqDkGSEsO7+oQaqdRdR8nwwqH+N2uk6LE/2g4myVJJYz/Ly418lHKEleKTdV/GzjBjFcG4n0dbfuH/Pd2BE8YA==}
+ /postcss-custom-selectors@7.1.10(postcss@8.4.38):
+ resolution: {integrity: sha512-bV/6+IExyT2J4kMzX6c+ZMlN1xDfjcC4ePr1ywKezcTgwgUn11qQN3jdzFBpo8Dk1K7vO/OYOwMb5AtJP4JZcg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/cascade-layer-name-parser': 1.0.9(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
postcss: 8.4.38
postcss-selector-parser: 6.0.16
dev: true
@@ -14028,15 +14543,15 @@ packages:
camelcase-css: 2.0.1
postcss: 8.4.38
- /postcss-lab-function@6.0.13(postcss@8.4.38):
- resolution: {integrity: sha512-tzEThi3prSyomnVqaAU+k/YJib4rxeeTKVfMt+mPcEugFgp0t6xRjoc7fzaWCoEwYLC6GxGLD8/Ugx8COCqabw==}
+ /postcss-lab-function@6.0.16(postcss@8.4.38):
+ resolution: {integrity: sha512-QWv0VxfjgIl8jBR/wuQcm/o31jn4P/LwzYuVKzNQoO5t7HPcU0d3RfWUiDrHN3frmSv+YYZppr3P81tKFTDyqg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/css-color-parser': 1.6.3(@csstools/css-parser-algorithms@2.6.1)(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-parser-algorithms': 2.6.1(@csstools/css-tokenizer@2.2.4)
- '@csstools/css-tokenizer': 2.2.4
+ '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3)(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1)
+ '@csstools/css-tokenizer': 2.3.1
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
'@csstools/utilities': 1.0.0(postcss@8.4.38)
postcss: 8.4.38
@@ -14077,14 +14592,14 @@ packages:
postcss: 8.4.38
postcss-selector-parser: 6.0.16
- /postcss-nesting@12.1.1(postcss@8.4.38):
- resolution: {integrity: sha512-qc74KvIAQNa5ujZKG1UV286dhaDW6basbUy2i9AzNU/T8C9hpvGu9NZzm1SfePe2yP7sPYgpA8d4sPVopn2Hhw==}
+ /postcss-nesting@12.1.3(postcss@8.4.38):
+ resolution: {integrity: sha512-8XVmgNNYlmIg1qxSP7O5n76nm0I71noCzlSCl7oqaL2opJ5nSB7r8/726yObKrUTRt6ipjiqHB1wYrMVTM66Sg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.0.16)
- '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.1.0(postcss-selector-parser@6.0.16)
postcss: 8.4.38
postcss-selector-parser: 6.0.16
dev: true
@@ -14126,56 +14641,56 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-preset-env@9.5.5(postcss@8.4.38):
- resolution: {integrity: sha512-tg71KfEgTHMM+C4LpWtKfHFWEunfWj1JThq/Odsw60MOowcffBrMAcSBDE+imftW5/BD3mpOiiTL6c+KcnGaLQ==}
+ /postcss-preset-env@9.5.12(postcss@8.4.38):
+ resolution: {integrity: sha512-aSeT8hNFKAgywopQE9MINFR5rZjRoA1MKv/Z09aLNlF3ki7Es3oeoFDx52po1QbBVvFuU9wSH/IosqqAa3oJow==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-cascade-layers': 4.0.4(postcss@8.4.38)
- '@csstools/postcss-color-function': 3.0.13(postcss@8.4.38)
- '@csstools/postcss-color-mix-function': 2.0.13(postcss@8.4.38)
- '@csstools/postcss-exponential-functions': 1.0.5(postcss@8.4.38)
+ '@csstools/postcss-cascade-layers': 4.0.5(postcss@8.4.38)
+ '@csstools/postcss-color-function': 3.0.16(postcss@8.4.38)
+ '@csstools/postcss-color-mix-function': 2.0.16(postcss@8.4.38)
+ '@csstools/postcss-exponential-functions': 1.0.7(postcss@8.4.38)
'@csstools/postcss-font-format-keywords': 3.0.2(postcss@8.4.38)
- '@csstools/postcss-gamut-mapping': 1.0.6(postcss@8.4.38)
- '@csstools/postcss-gradients-interpolation-method': 4.0.14(postcss@8.4.38)
- '@csstools/postcss-hwb-function': 3.0.12(postcss@8.4.38)
+ '@csstools/postcss-gamut-mapping': 1.0.9(postcss@8.4.38)
+ '@csstools/postcss-gradients-interpolation-method': 4.0.17(postcss@8.4.38)
+ '@csstools/postcss-hwb-function': 3.0.15(postcss@8.4.38)
'@csstools/postcss-ic-unit': 3.0.6(postcss@8.4.38)
'@csstools/postcss-initial': 1.0.1(postcss@8.4.38)
- '@csstools/postcss-is-pseudo-class': 4.0.6(postcss@8.4.38)
- '@csstools/postcss-light-dark-function': 1.0.3(postcss@8.4.38)
+ '@csstools/postcss-is-pseudo-class': 4.0.7(postcss@8.4.38)
+ '@csstools/postcss-light-dark-function': 1.0.5(postcss@8.4.38)
'@csstools/postcss-logical-float-and-clear': 2.0.1(postcss@8.4.38)
'@csstools/postcss-logical-overflow': 1.0.1(postcss@8.4.38)
'@csstools/postcss-logical-overscroll-behavior': 1.0.1(postcss@8.4.38)
'@csstools/postcss-logical-resize': 2.0.1(postcss@8.4.38)
- '@csstools/postcss-logical-viewport-units': 2.0.7(postcss@8.4.38)
- '@csstools/postcss-media-minmax': 1.1.4(postcss@8.4.38)
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.7(postcss@8.4.38)
+ '@csstools/postcss-logical-viewport-units': 2.0.9(postcss@8.4.38)
+ '@csstools/postcss-media-minmax': 1.1.6(postcss@8.4.38)
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.9(postcss@8.4.38)
'@csstools/postcss-nested-calc': 3.0.2(postcss@8.4.38)
'@csstools/postcss-normalize-display-values': 3.0.2(postcss@8.4.38)
- '@csstools/postcss-oklab-function': 3.0.13(postcss@8.4.38)
+ '@csstools/postcss-oklab-function': 3.0.16(postcss@8.4.38)
'@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38)
- '@csstools/postcss-relative-color-syntax': 2.0.13(postcss@8.4.38)
+ '@csstools/postcss-relative-color-syntax': 2.0.16(postcss@8.4.38)
'@csstools/postcss-scope-pseudo-class': 3.0.1(postcss@8.4.38)
- '@csstools/postcss-stepped-value-functions': 3.0.6(postcss@8.4.38)
- '@csstools/postcss-text-decoration-shorthand': 3.0.5(postcss@8.4.38)
- '@csstools/postcss-trigonometric-functions': 3.0.6(postcss@8.4.38)
+ '@csstools/postcss-stepped-value-functions': 3.0.8(postcss@8.4.38)
+ '@csstools/postcss-text-decoration-shorthand': 3.0.6(postcss@8.4.38)
+ '@csstools/postcss-trigonometric-functions': 3.0.8(postcss@8.4.38)
'@csstools/postcss-unset-value': 3.0.1(postcss@8.4.38)
autoprefixer: 10.4.19(postcss@8.4.38)
browserslist: 4.23.0
- css-blank-pseudo: 6.0.1(postcss@8.4.38)
- css-has-pseudo: 6.0.3(postcss@8.4.38)
+ css-blank-pseudo: 6.0.2(postcss@8.4.38)
+ css-has-pseudo: 6.0.4(postcss@8.4.38)
css-prefers-color-scheme: 9.0.1(postcss@8.4.38)
cssdb: 8.0.0
postcss: 8.4.38
postcss-attribute-case-insensitive: 6.0.3(postcss@8.4.38)
postcss-clamp: 4.1.0(postcss@8.4.38)
- postcss-color-functional-notation: 6.0.8(postcss@8.4.38)
+ postcss-color-functional-notation: 6.0.11(postcss@8.4.38)
postcss-color-hex-alpha: 9.0.4(postcss@8.4.38)
postcss-color-rebeccapurple: 9.0.3(postcss@8.4.38)
- postcss-custom-media: 10.0.4(postcss@8.4.38)
- postcss-custom-properties: 13.3.7(postcss@8.4.38)
- postcss-custom-selectors: 7.1.8(postcss@8.4.38)
+ postcss-custom-media: 10.0.6(postcss@8.4.38)
+ postcss-custom-properties: 13.3.10(postcss@8.4.38)
+ postcss-custom-selectors: 7.1.10(postcss@8.4.38)
postcss-dir-pseudo-class: 8.0.1(postcss@8.4.38)
postcss-double-position-gradients: 5.0.6(postcss@8.4.38)
postcss-focus-visible: 9.0.1(postcss@8.4.38)
@@ -14183,20 +14698,20 @@ packages:
postcss-font-variant: 5.0.0(postcss@8.4.38)
postcss-gap-properties: 5.0.1(postcss@8.4.38)
postcss-image-set-function: 6.0.3(postcss@8.4.38)
- postcss-lab-function: 6.0.13(postcss@8.4.38)
+ postcss-lab-function: 6.0.16(postcss@8.4.38)
postcss-logical: 7.0.1(postcss@8.4.38)
- postcss-nesting: 12.1.1(postcss@8.4.38)
+ postcss-nesting: 12.1.3(postcss@8.4.38)
postcss-opacity-percentage: 2.0.0(postcss@8.4.38)
postcss-overflow-shorthand: 5.0.1(postcss@8.4.38)
postcss-page-break: 3.0.4(postcss@8.4.38)
postcss-place: 9.0.1(postcss@8.4.38)
- postcss-pseudo-class-any-link: 9.0.1(postcss@8.4.38)
+ postcss-pseudo-class-any-link: 9.0.2(postcss@8.4.38)
postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.38)
postcss-selector-not: 7.0.2(postcss@8.4.38)
dev: true
- /postcss-pseudo-class-any-link@9.0.1(postcss@8.4.38):
- resolution: {integrity: sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==}
+ /postcss-pseudo-class-any-link@9.0.2(postcss@8.4.38):
+ resolution: {integrity: sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
@@ -14241,45 +14756,25 @@ packages:
picocolors: 1.0.0
source-map-js: 1.2.0
- /preact-render-to-string@6.3.1(preact@10.20.2):
+ /preact-render-to-string@6.3.1(preact@10.21.0):
resolution: {integrity: sha512-NQ28WrjLtWY6lKDlTxnFpKHZdpjfF+oE6V4tZ0rTrunHrtZp6Dm0oFrcJalt/5PNeqJz4j1DuZDS0Y6rCBoqDA==}
peerDependencies:
preact: '>=10'
dependencies:
- preact: 10.20.2
+ preact: 10.21.0
pretty-format: 3.8.0
dev: false
- /preact-ssr-prepass@1.2.1(preact@10.20.2):
+ /preact-ssr-prepass@1.2.1(preact@10.21.0):
resolution: {integrity: sha512-bLgbUfy8nL+PZghAPpyk9MF+cmXjdwEnxYPaJBmwbzFQqzIz8dQVBqjwB60RqZ9So/vIf6BRfHCiwFGuMCyfbQ==}
peerDependencies:
preact: '>=10 || ^10.0.0-beta.0 || ^10.0.0-alpha.0'
dependencies:
- preact: 10.20.2
+ preact: 10.21.0
dev: false
- /preact@10.20.2:
- resolution: {integrity: sha512-S1d1ernz3KQ+Y2awUxKakpfOg2CEmJmwOP+6igPx6dgr6pgDvenqYviyokWso2rhHvGtTlWWnJDa7RaPbQerTg==}
-
- /prebuild-install@7.1.2:
- resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
- engines: {node: '>=10'}
- hasBin: true
- requiresBuild: true
- dependencies:
- detect-libc: 2.0.3
- expand-template: 2.0.3
- github-from-package: 0.0.0
- minimist: 1.2.8
- mkdirp-classic: 0.5.3
- napi-build-utils: 1.0.2
- node-abi: 3.57.0
- pump: 3.0.0
- rc: 1.2.8
- simple-get: 4.0.1
- tar-fs: 2.1.1
- tunnel-agent: 0.6.0
- dev: false
+ /preact@10.21.0:
+ resolution: {integrity: sha512-aQAIxtzWEwH8ou+OovWVSVNlFImL7xUCwJX3YMqA3U8iKCNC34999fFOnWjYNsylgfPgMexpbk7WYOLtKr/mxg==}
/preferred-pm@3.1.3:
resolution: {integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==}
@@ -14295,13 +14790,6 @@ packages:
engines: {node: '>= 0.8.0'}
dev: true
- /prettier-linter-helpers@1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
- dependencies:
- fast-diff: 1.3.0
- dev: true
-
/prettier-plugin-astro@0.13.0:
resolution: {integrity: sha512-5HrJNnPmZqTUNoA97zn4gNQv9BgVhv+et03314WpQ9H9N8m2L9OSV798olwmG2YLXPl1iSstlJCR1zB3x5xG4g==}
engines: {node: ^14.15.0 || >=16.0.0}
@@ -14381,14 +14869,6 @@ packages:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
- /pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
- requiresBuild: true
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
- dev: false
-
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
@@ -14408,11 +14888,6 @@ packages:
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /queue-tick@1.0.1:
- resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
- requiresBuild: true
- dev: false
-
/quick-lru@4.0.1:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
@@ -14438,28 +14913,17 @@ packages:
unpipe: 1.0.0
dev: true
- /rc@1.2.8:
- resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
- hasBin: true
- requiresBuild: true
- dependencies:
- deep-extend: 0.6.0
- ini: 1.3.8
- minimist: 1.2.8
- strip-json-comments: 2.0.1
- dev: false
-
- /react-dom@18.2.0(react@18.2.0):
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ /react-dom@18.3.1(react@18.3.1):
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
- react: ^18.2.0
+ react: ^18.3.1
peerDependenciesMeta:
react:
optional: true
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.1
+ scheduler: 0.23.2
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
@@ -14470,8 +14934,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ /react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
@@ -14513,6 +14977,7 @@ packages:
/readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ requiresBuild: true
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
@@ -14585,7 +15050,7 @@ packages:
'@types/hast': 3.0.4
'@types/mathjax': 0.0.40
hast-util-from-dom: 5.0.0
- hast-util-to-text: 4.0.1
+ hast-util-to-text: 4.0.2
jsdom: 23.2.0
mathjax-full: 3.2.2
unified: 11.0.4
@@ -14747,8 +15212,8 @@ packages:
- supports-color
dev: true
- /remark-smartypants@3.0.0:
- resolution: {integrity: sha512-6/xo47aZxWJd1L6VsDWX5EJRtRC2X0+vBRVh6MPD1doayFC6VRrxez6Z8GcEDqznvf9Ly+EtpasNYQptyhy8nQ==}
+ /remark-smartypants@3.0.1:
+ resolution: {integrity: sha512-qyshfCl2eLO0i0558e79ZJsfojC5wjnYLByjt0FmjJQN6aYwcRxpoj784LZJSoWCdnA2ubh5rLNGb8Uur/wDng==}
engines: {node: '>=16.0.0'}
dependencies:
retext: 9.0.0
@@ -14858,6 +15323,10 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ /rfdc@1.3.1:
+ resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ dev: false
+
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
@@ -14872,29 +15341,29 @@ packages:
glob: 10.3.12
dev: false
- /rollup@4.16.1:
- resolution: {integrity: sha512-5CaD3MPDlPKfhqzRvWXK96G6ELJfPZNb3LHiZxTHgDdC6jvwfGz2E8nY+9g1ONk4ttHsK1WaFP19Js4PSr1E3g==}
+ /rollup@4.17.2:
+ resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.16.1
- '@rollup/rollup-android-arm64': 4.16.1
- '@rollup/rollup-darwin-arm64': 4.16.1
- '@rollup/rollup-darwin-x64': 4.16.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.16.1
- '@rollup/rollup-linux-arm-musleabihf': 4.16.1
- '@rollup/rollup-linux-arm64-gnu': 4.16.1
- '@rollup/rollup-linux-arm64-musl': 4.16.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.16.1
- '@rollup/rollup-linux-riscv64-gnu': 4.16.1
- '@rollup/rollup-linux-s390x-gnu': 4.16.1
- '@rollup/rollup-linux-x64-gnu': 4.16.1
- '@rollup/rollup-linux-x64-musl': 4.16.1
- '@rollup/rollup-win32-arm64-msvc': 4.16.1
- '@rollup/rollup-win32-ia32-msvc': 4.16.1
- '@rollup/rollup-win32-x64-msvc': 4.16.1
+ '@rollup/rollup-android-arm-eabi': 4.17.2
+ '@rollup/rollup-android-arm64': 4.17.2
+ '@rollup/rollup-darwin-arm64': 4.17.2
+ '@rollup/rollup-darwin-x64': 4.17.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.17.2
+ '@rollup/rollup-linux-arm64-gnu': 4.17.2
+ '@rollup/rollup-linux-arm64-musl': 4.17.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.17.2
+ '@rollup/rollup-linux-s390x-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-musl': 4.17.2
+ '@rollup/rollup-win32-arm64-msvc': 4.17.2
+ '@rollup/rollup-win32-ia32-msvc': 4.17.2
+ '@rollup/rollup-win32-x64-msvc': 4.17.2
fsevents: 2.3.3
/rrweb-cssom@0.6.0:
@@ -14945,8 +15414,8 @@ packages:
dependencies:
suf-log: 2.5.3
- /sass@1.75.0:
- resolution: {integrity: sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==}
+ /sass@1.77.1:
+ resolution: {integrity: sha512-OMEyfirt9XEfyvocduUIOlUSkWOXS/LAt6oblR/ISXCTukyavjex+zQNm51pPCOiFKY1QpWvEH1EeCkgyV3I6w==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -14964,8 +15433,8 @@ packages:
xmlchars: 2.2.0
dev: true
- /scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
+ /scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
dependencies:
loose-envify: 1.4.0
@@ -15003,6 +15472,11 @@ packages:
dependencies:
lru-cache: 6.0.0
+ /semver@7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -15093,19 +15567,34 @@ packages:
/setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- /sharp@0.32.6:
- resolution: {integrity: sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==}
- engines: {node: '>=14.15.0'}
+ /sharp@0.33.3:
+ resolution: {integrity: sha512-vHUeXJU1UvlO/BNwTpT0x/r53WkLUVxrmb5JTgW92fdFCFk0ispLMAeu/jPO2vjkXM1fYUi3K7/qcLF47pwM1A==}
+ engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0}
requiresBuild: true
dependencies:
color: 4.2.3
detect-libc: 2.0.3
- node-addon-api: 6.1.0
- prebuild-install: 7.1.2
semver: 7.6.0
- simple-get: 4.0.1
- tar-fs: 3.0.5
- tunnel-agent: 0.6.0
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.3
+ '@img/sharp-darwin-x64': 0.33.3
+ '@img/sharp-libvips-darwin-arm64': 1.0.2
+ '@img/sharp-libvips-darwin-x64': 1.0.2
+ '@img/sharp-libvips-linux-arm': 1.0.2
+ '@img/sharp-libvips-linux-arm64': 1.0.2
+ '@img/sharp-libvips-linux-s390x': 1.0.2
+ '@img/sharp-libvips-linux-x64': 1.0.2
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.2
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.2
+ '@img/sharp-linux-arm': 0.33.3
+ '@img/sharp-linux-arm64': 0.33.3
+ '@img/sharp-linux-s390x': 0.33.3
+ '@img/sharp-linux-x64': 0.33.3
+ '@img/sharp-linuxmusl-arm64': 0.33.3
+ '@img/sharp-linuxmusl-x64': 0.33.3
+ '@img/sharp-wasm32': 0.33.3
+ '@img/sharp-win32-ia32': 0.33.3
+ '@img/sharp-win32-x64': 0.33.3
dev: false
/shebang-command@1.2.0:
@@ -15152,10 +15641,10 @@ packages:
vscode-textmate: 5.2.0
dev: true
- /shiki@1.3.0:
- resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==}
+ /shiki@1.5.1:
+ resolution: {integrity: sha512-vx4Ds3M3B9ZEmLeSXqBAB85osBWV8ErZfP69kuFQZozPgHc33m7spLTCUkcjwEjFm3gk3F9IdXMv8kX+v9xDHA==}
dependencies:
- '@shikijs/core': 1.3.0
+ '@shikijs/core': 1.5.1
dev: false
/side-channel@1.0.6:
@@ -15183,21 +15672,7 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- /simple-concat@1.0.1:
- resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
- requiresBuild: true
- dev: false
-
- /simple-get@4.0.1:
- resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
- requiresBuild: true
- dependencies:
- decompress-response: 6.0.0
- once: 1.4.0
- simple-concat: 1.0.1
- dev: false
-
- /simple-stack-form@0.1.12(astro@packages+astro)(zod@3.22.4):
+ /simple-stack-form@0.1.12(astro@packages+astro)(zod@3.23.8):
resolution: {integrity: sha512-cqxiA0/91WddM9Jya8Es1wfDurBfm8pUOmgMb08OB32wpmQLz2JQpjcarFNYkj5ZXfmE3qkGqakvx+6TCwxqUQ==}
hasBin: true
peerDependencies:
@@ -15209,7 +15684,7 @@ packages:
fs-extra: 11.2.0
just-map-values: 3.2.0
kleur: 4.1.5
- zod: 3.22.4
+ zod: 3.23.8
dev: false
/simple-swizzle@0.2.2:
@@ -15219,6 +15694,15 @@ packages:
is-arrayish: 0.3.2
dev: false
+ /sirv@2.0.4:
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
+ engines: {node: '>= 10'}
+ dependencies:
+ '@polka/url': 1.0.0-next.25
+ mrmime: 2.0.0
+ totalist: 3.0.1
+ dev: false
+
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: false
@@ -15269,24 +15753,42 @@ packages:
yargs: 15.4.1
dev: true
- /solid-js@1.8.16:
- resolution: {integrity: sha512-rja94MNU9flF3qQRLNsu60QHKBDKBkVE1DldJZPIfn2ypIn3NV2WpSbGTQIvsyGPBo+9E2IMjwqnqpbgfWuzeg==}
+ /smartypants@0.2.2:
+ resolution: {integrity: sha512-TzobUYoEft/xBtb2voRPryAUIvYguG0V7Tt3de79I1WfXgCwelqVsGuZSnu3GFGRZhXR90AeEYIM+icuB/S06Q==}
+ hasBin: true
+ dev: false
+
+ /solid-js@1.8.17:
+ resolution: {integrity: sha512-E0FkUgv9sG/gEBWkHr/2XkBluHb1fkrHywUgA6o6XolPDCJ4g1HaLmQufcBBhiF36ee40q+HpG/vCZu7fLpI3Q==}
dependencies:
csstype: 3.1.3
seroval: 1.0.5
seroval-plugins: 1.0.5(seroval@1.0.5)
- /solid-refresh@0.6.3(solid-js@1.8.16):
+ /solid-refresh@0.6.3(solid-js@1.8.17):
resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==}
peerDependencies:
solid-js: ^1.3
dependencies:
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-module-imports': 7.24.3
- '@babel/types': 7.24.0
- solid-js: 1.8.16
+ '@babel/types': 7.24.5
+ solid-js: 1.8.17
dev: false
+ /sonic-forest@1.0.3(tslib@2.6.2):
+ resolution: {integrity: sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ tree-dump: 1.0.1(tslib@2.6.2)
+ tslib: 2.6.2
+ dev: true
+
/source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
@@ -15332,6 +15834,11 @@ packages:
resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==}
dev: true
+ /speakingurl@14.0.1:
+ resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
+
/speech-rule-engine@4.0.7:
resolution: {integrity: sha512-sJrL3/wHzNwJRLBdf6CjJWIlxC04iYKkyXvYSVsWVOiC2DSkHmxsqOhEeMsBA9XK+CHuNcsdkbFDnoUfAsmp9g==}
hasBin: true
@@ -15380,16 +15887,6 @@ packages:
mixme: 0.5.10
dev: true
- /streamx@2.16.1:
- resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
- requiresBuild: true
- dependencies:
- fast-fifo: 1.3.2
- queue-tick: 1.0.1
- optionalDependencies:
- bare-events: 2.2.2
- dev: false
-
/string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -15444,6 +15941,7 @@ packages:
/string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ requiresBuild: true
dependencies:
safe-buffer: 5.2.1
dev: false
@@ -15494,6 +15992,8 @@ packages:
/strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
+ requiresBuild: true
+ dev: true
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
@@ -15581,49 +16081,29 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svelte-hmr@0.16.0(svelte@4.2.15):
+ /svelte-hmr@0.16.0(svelte@4.2.16):
resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==}
engines: {node: ^12.20 || ^14.13.1 || >= 16}
peerDependencies:
svelte: ^3.19.0 || ^4.0.0
dependencies:
- svelte: 4.2.15
+ svelte: 4.2.16
dev: false
- /svelte2tsx@0.7.6(svelte@4.2.15)(typescript@5.4.5):
- resolution: {integrity: sha512-awHvYsakyiGjRqqSOhb2F+qJ6lUT9klQe0UQofAcdHNaKKeDHA8kEZ8zYKGG3BiDPurKYMGvH5/lZ+jeIoG7yQ==}
+ /svelte2tsx@0.7.8(svelte@4.2.16)(typescript@5.4.5):
+ resolution: {integrity: sha512-ABK3RDFcy59AqAiU1N5Kxu1RnKrb1GDMrQjLgNgJfE8Q+coCKpjCAPtUVKQM2HnmuqeNWcT3NqfXbE+ZmN5Pow==}
peerDependencies:
svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0
typescript: ^4.9.4 || ^5.0.0
dependencies:
dedent-js: 1.0.1
pascal-case: 3.1.2
- svelte: 4.2.15
+ svelte: 4.2.16
typescript: 5.4.5
dev: false
- /svelte@4.2.14:
- resolution: {integrity: sha512-ry3+YlWqZpHxLy45MW4MZIxNdvB+Wl7p2nnstWKbOAewaJyNJuOtivSbRChcfIej6wFBjWqyKmf/NgK1uW2JAA==}
- engines: {node: '>=16'}
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.25
- '@types/estree': 1.0.5
- acorn: 8.11.3
- aria-query: 5.3.0
- axobject-query: 4.0.0
- code-red: 1.0.4
- css-tree: 2.3.1
- estree-walker: 3.0.3
- is-reference: 3.0.2
- locate-character: 3.0.0
- magic-string: 0.30.9
- periscopic: 3.1.0
- dev: false
-
- /svelte@4.2.15:
- resolution: {integrity: sha512-j9KJSccHgLeRERPlhMKrCXpk2TqL2m5Z+k+OBTQhZOhIdCCd3WfqV+ylPWeipEwq17P/ekiSFWwrVQv93i3bsg==}
+ /svelte@4.2.16:
+ resolution: {integrity: sha512-mQwHpqHD2PmFcCyHaZ7XiTqposaLvJ75WpYcyY5/ce3qxbYtwQpZ+M7ZKP+2CG5U6kfnBZBpPLyofhlE6ROrnQ==}
engines: {node: '>=16'}
dependencies:
'@ampproject/remapping': 2.3.0
@@ -15663,14 +16143,6 @@ packages:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /synckit@0.8.8:
- resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==}
- engines: {node: ^14.18.0 || >=16.0.0}
- dependencies:
- '@pkgr/core': 0.1.1
- tslib: 2.6.2
- dev: true
-
/tailwindcss@3.4.3:
resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
engines: {node: '>=14.0.0'}
@@ -15706,48 +16178,6 @@ packages:
engines: {node: '>=6'}
dev: false
- /tar-fs@2.1.1:
- resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
- requiresBuild: true
- dependencies:
- chownr: 1.1.4
- mkdirp-classic: 0.5.3
- pump: 3.0.0
- tar-stream: 2.2.0
- dev: false
-
- /tar-fs@3.0.5:
- resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==}
- requiresBuild: true
- dependencies:
- pump: 3.0.0
- tar-stream: 3.1.7
- optionalDependencies:
- bare-fs: 2.2.3
- bare-path: 2.1.1
- dev: false
-
- /tar-stream@2.2.0:
- resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
- engines: {node: '>=6'}
- requiresBuild: true
- dependencies:
- bl: 4.1.0
- end-of-stream: 1.4.4
- fs-constants: 1.0.0
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: false
-
- /tar-stream@3.1.7:
- resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- requiresBuild: true
- dependencies:
- b4a: 1.6.6
- fast-fifo: 1.3.2
- streamx: 2.16.1
- dev: false
-
/tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
@@ -15760,13 +16190,13 @@ packages:
yallist: 4.0.0
dev: false
- /tar@7.0.1:
- resolution: {integrity: sha512-IjMhdQMZFpKsHEQT3woZVxBtCQY+0wk3CVxdRkGXEgyGa0dNS/ehPvOMr2nmfC7x5Zj2N+l6yZUpmICjLGS35w==}
+ /tar@7.1.0:
+ resolution: {integrity: sha512-ENhg4W6BmjYxl8GTaE7/h99f0aXiSWv4kikRZ9n2/JRxypZniE84ILZqimAhxxX7Zb8Px6pFdheW3EeHfhnXQQ==}
engines: {node: '>=18'}
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
- minipass: 5.0.0
+ minipass: 7.1.0
minizlib: 3.0.1
mkdirp: 3.0.1
yallist: 5.0.0
@@ -15800,6 +16230,18 @@ packages:
dependencies:
any-promise: 1.3.0
+ /thingies@1.21.0(tslib@2.6.2):
+ resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
+ engines: {node: '>=10.18'}
+ peerDependencies:
+ tslib: ^2
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/timestring@6.0.0:
resolution: {integrity: sha512-wMctrWD2HZZLuIlchlkE2dfXJh7J2KDI9Dwl+2abPYg0mswQHfOAyQW3jJg1pY5VfttSINZuKcXoB3FGypVklA==}
engines: {node: '>=8'}
@@ -15847,6 +16289,11 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ /totalist@3.0.1:
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
+ engines: {node: '>=6'}
+ dev: false
+
/tough-cookie@4.1.3:
resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}
engines: {node: '>=6'}
@@ -15867,6 +16314,18 @@ packages:
punycode: 2.3.1
dev: true
+ /tree-dump@1.0.1(tslib@2.6.2):
+ resolution: {integrity: sha512-WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+ peerDependenciesMeta:
+ tslib:
+ optional: true
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
@@ -15951,71 +16410,64 @@ packages:
yargs: 17.7.2
dev: true
- /tunnel-agent@0.6.0:
- resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
- requiresBuild: true
- dependencies:
- safe-buffer: 5.2.1
- dev: false
-
- /turbo-darwin-64@1.13.2:
- resolution: {integrity: sha512-CCSuD8CfmtncpohCuIgq7eAzUas0IwSbHfI8/Q3vKObTdXyN8vAo01gwqXjDGpzG9bTEVedD0GmLbD23dR0MLA==}
+ /turbo-darwin-64@1.13.3:
+ resolution: {integrity: sha512-glup8Qx1qEFB5jerAnXbS8WrL92OKyMmg5Hnd4PleLljAeYmx+cmmnsmLT7tpaVZIN58EAAwu8wHC6kIIqhbWA==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-darwin-arm64@1.13.2:
- resolution: {integrity: sha512-0HySm06/D2N91rJJ89FbiI/AodmY8B3WDSFTVEpu2+8spUw7hOJ8okWOT0e5iGlyayUP9gr31eOeL3VFZkpfCw==}
+ /turbo-darwin-arm64@1.13.3:
+ resolution: {integrity: sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-64@1.13.2:
- resolution: {integrity: sha512-7HnibgbqZrjn4lcfIouzlPu8ZHSBtURG4c7Bedu7WJUDeZo+RE1crlrQm8wuwO54S0siYqUqo7GNHxu4IXbioQ==}
+ /turbo-linux-64@1.13.3:
+ resolution: {integrity: sha512-G+HGrau54iAnbXLfl+N/PynqpDwi/uDzb6iM9hXEDG+yJnSJxaHMShhOkXYJPk9offm9prH33Khx2scXrYVW1g==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-linux-arm64@1.13.2:
- resolution: {integrity: sha512-sUq4dbpk6SNKg/Hkwn256Vj2AEYSQdG96repio894h5/LEfauIK2QYiC/xxAeW3WBMc6BngmvNyURIg7ltrePg==}
+ /turbo-linux-arm64@1.13.3:
+ resolution: {integrity: sha512-qWwEl5VR02NqRyl68/3pwp3c/olZuSp+vwlwrunuoNTm6JXGLG5pTeme4zoHNnk0qn4cCX7DFrOboArlYxv0wQ==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-64@1.13.2:
- resolution: {integrity: sha512-DqzhcrciWq3dpzllJR2VVIyOhSlXYCo4mNEWl98DJ3FZ08PEzcI3ceudlH6F0t/nIcfSItK1bDP39cs7YoZHEA==}
+ /turbo-windows-64@1.13.3:
+ resolution: {integrity: sha512-Nudr4bRChfJzBPzEmpVV85VwUYRCGKecwkBFpbp2a4NtrJ3+UP1VZES653ckqCu2FRyRuS0n03v9euMbAvzH+Q==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo-windows-arm64@1.13.2:
- resolution: {integrity: sha512-WnPMrwfCXxK69CdDfS1/j2DlzcKxSmycgDAqV0XCYpK/812KB0KlvsVAt5PjEbZGXkY88pCJ1BLZHAjF5FcbqA==}
+ /turbo-windows-arm64@1.13.3:
+ resolution: {integrity: sha512-ouJCgsVLd3icjRLmRvHQDDZnmGzT64GBupM1Y+TjtYn2LVaEBoV6hicFy8x5DUpnqdLy+YpCzRMkWlwhmkX7sQ==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /turbo@1.13.2:
- resolution: {integrity: sha512-rX/d9f4MgRT3yK6cERPAkfavIxbpBZowDQpgvkYwGMGDQ0Nvw1nc0NVjruE76GrzXQqoxR1UpnmEP54vBARFHQ==}
+ /turbo@1.13.3:
+ resolution: {integrity: sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==}
hasBin: true
optionalDependencies:
- turbo-darwin-64: 1.13.2
- turbo-darwin-arm64: 1.13.2
- turbo-linux-64: 1.13.2
- turbo-linux-arm64: 1.13.2
- turbo-windows-64: 1.13.2
- turbo-windows-arm64: 1.13.2
+ turbo-darwin-64: 1.13.3
+ turbo-darwin-arm64: 1.13.3
+ turbo-linux-64: 1.13.3
+ turbo-linux-arm64: 1.13.3
+ turbo-windows-64: 1.13.3
+ turbo-windows-arm64: 1.13.3
dev: true
/type-check@0.4.0:
@@ -16118,10 +16570,10 @@ packages:
/typescript-auto-import-cache@0.3.2:
resolution: {integrity: sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==}
dependencies:
- semver: 7.6.0
+ semver: 7.6.2
- /typescript-eslint@7.7.0(eslint@9.1.0)(typescript@5.4.5):
- resolution: {integrity: sha512-wZZ+7mTQJCn4mGAvzdERtL4vwKGM/mF9cMSMeKUllz3Hgbd1Mdd5L60Q+nJmCio9RB4OyMMr0EX4Ry2Q7jiAyw==}
+ /typescript-eslint@7.8.0(eslint@9.2.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-sheFG+/D8N/L7gC3WT0Q8sB97Nm573Yfr+vZFzl/4nBdYcmviBPtwGSX9TJ7wpVg28ocerKVOt+k2eGmHzcgVA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -16130,10 +16582,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 7.7.0(@typescript-eslint/parser@7.7.0)(eslint@9.1.0)(typescript@5.4.5)
- '@typescript-eslint/parser': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.1.0)(typescript@5.4.5)
- eslint: 9.1.0
+ '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0)(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
@@ -16157,10 +16609,6 @@ packages:
/uhyphen@0.2.0:
resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==}
- /ultrahtml@0.1.3:
- resolution: {integrity: sha512-P24ulZdT9UKyQuKA1IApdAZ+F9lwruGvmKb4pG3+sMvR3CjN0pjawPnxuSABHQFB+XqnB35TVXzJPOBYjCv6Kw==}
- dev: false
-
/ultrahtml@1.5.3:
resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
dev: false
@@ -16297,8 +16745,8 @@ packages:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- /universal-user-agent@6.0.1:
- resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
+ /universal-user-agent@7.0.2:
+ resolution: {integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==}
dev: true
/universalify@0.1.2:
@@ -16349,6 +16797,7 @@ packages:
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ requiresBuild: true
/utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
@@ -16399,8 +16848,19 @@ packages:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- /vite-node@1.5.0(@types/node@18.19.31):
- resolution: {integrity: sha512-tV8h6gMj6vPzVCa7l+VGq9lwoJjW8Y79vst8QZZGiuRAfijU+EEWuc0kFpmndQrWhMMhet1jdSF+40KSZUqIIw==}
+ /vite-hot-client@0.2.3(vite@5.2.11):
+ resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}
+ peerDependencies:
+ vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ dev: false
+
+ /vite-node@1.6.0(@types/node@18.19.31):
+ resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
@@ -16408,7 +16868,7 @@ packages:
debug: 4.3.4(supports-color@8.1.1)
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -16420,7 +16880,34 @@ packages:
- terser
dev: false
- /vite-plugin-solid@2.10.2(solid-js@1.8.16):
+ /vite-plugin-inspect@0.8.4(vite@5.2.11):
+ resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@nuxt/kit': '*'
+ vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0
+ peerDependenciesMeta:
+ '@nuxt/kit':
+ optional: true
+ vite:
+ optional: true
+ dependencies:
+ '@antfu/utils': 0.7.8
+ '@rollup/pluginutils': 5.1.0
+ debug: 4.3.4(supports-color@8.1.1)
+ error-stack-parser-es: 0.1.1
+ fs-extra: 11.2.0
+ open: 10.1.0
+ perfect-debounce: 1.0.0
+ picocolors: 1.0.0
+ sirv: 2.0.4
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ transitivePeerDependencies:
+ - rollup
+ - supports-color
+ dev: false
+
+ /vite-plugin-solid@2.10.2(solid-js@1.8.17)(vite@5.2.11):
resolution: {integrity: sha512-AOEtwMe2baBSXMXdo+BUwECC8IFHcKS6WQV/1NEd+Q7vHPap5fmIhLcAzr+DUJ04/KHx/1UBU0l1/GWP+rMAPQ==}
peerDependencies:
'@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.*
@@ -16432,13 +16919,60 @@ packages:
vite:
optional: true
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@types/babel__core': 7.20.5
- babel-preset-solid: 1.8.16(@babel/core@7.24.4)
+ babel-preset-solid: 1.8.16(@babel/core@7.24.5)
merge-anything: 5.1.7
- solid-js: 1.8.16
- solid-refresh: 0.6.3(solid-js@1.8.16)
- vitefu: 0.2.5(vite@5.2.10)
+ solid-js: 1.8.17
+ solid-refresh: 0.6.3(solid-js@1.8.17)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vitefu: 0.2.5(vite@5.2.11)
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /vite-plugin-vue-devtools@7.1.3(vite@5.2.11)(vue@3.4.27):
+ resolution: {integrity: sha512-qv8Z4yok9RYo6TEs89WnIAlmTHby/+XTim8tlSnMs3lAPcQqqcl/wGRY8gAeYrGCANngOqO+VuabW3Jb1HZtyw==}
+ engines: {node: '>=v14.21.3'}
+ peerDependencies:
+ vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ '@vue/devtools-core': 7.1.3(vite@5.2.11)(vue@3.4.27)
+ '@vue/devtools-kit': 7.1.3(vue@3.4.27)
+ '@vue/devtools-shared': 7.1.3
+ execa: 8.0.1
+ sirv: 2.0.4
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vite-plugin-inspect: 0.8.4(vite@5.2.11)
+ vite-plugin-vue-inspector: 5.0.1(vite@5.2.11)
+ transitivePeerDependencies:
+ - '@nuxt/kit'
+ - rollup
+ - supports-color
+ - vue
+ dev: false
+
+ /vite-plugin-vue-inspector@5.0.1(vite@5.2.11):
+ resolution: {integrity: sha512-R93P8iFa6BPODhc/aOtO04A8FFMMyFIfm8ZVSmN+8vU1TgwsHya734APGpX4fVHSPX2aVwYyiezXBUYQ0Opsqw==}
+ peerDependencies:
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
+ peerDependenciesMeta:
+ vite:
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ '@vue/compiler-dom': 3.4.27
+ kolorist: 1.8.0
+ magic-string: 0.30.10
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
transitivePeerDependencies:
- supports-color
dev: false
@@ -16451,12 +16985,12 @@ packages:
vue:
optional: true
dependencies:
- '@vue/compiler-sfc': 3.4.21
+ '@vue/compiler-sfc': 3.4.27
svgo: 3.2.0
dev: false
- /vite-svg-loader@5.0.1:
- resolution: {integrity: sha512-EUfcuqk1NomuacwiuL3mvCfinkm4XN0AHN8BXG737eDlhC0jnp5jxdCxakV+juP/YhhjV5tq/c/bLcm3waWv4Q==}
+ /vite-svg-loader@5.1.0:
+ resolution: {integrity: sha512-M/wqwtOEjgb956/+m5ZrYT/Iq6Hax0OakWbokj8+9PXOnB7b/4AxESHieEtnNEy7ZpjsjYW1/5nK8fATQMmRxw==}
peerDependencies:
vue: '>=3.2.13'
peerDependenciesMeta:
@@ -16466,8 +17000,8 @@ packages:
svgo: 3.2.0
dev: false
- /vite@5.2.10(@types/node@18.19.31)(sass@1.75.0):
- resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}
+ /vite@5.2.11(@types/node@18.19.31)(sass@1.77.1):
+ resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -16497,12 +17031,12 @@ packages:
'@types/node': 18.19.31
esbuild: 0.20.2
postcss: 8.4.38
- rollup: 4.16.1
- sass: 1.75.0
+ rollup: 4.17.2
+ sass: 1.77.1
optionalDependencies:
fsevents: 2.3.3
- /vitefu@0.2.5(vite@5.2.10):
+ /vitefu@0.2.5(vite@5.2.11):
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
@@ -16510,18 +17044,18 @@ packages:
vite:
optional: true
dependencies:
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
dev: false
- /vitest@1.5.0(@types/node@18.19.31):
- resolution: {integrity: sha512-d8UKgR0m2kjdxDWX6911uwxout6GHS0XaGH1cksSIVVG8kRlE7G7aBw7myKQCvDI5dT4j7ZMa+l706BIORMDLw==}
+ /vitest@1.6.0(@types/node@18.19.31):
+ resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 1.5.0
- '@vitest/ui': 1.5.0
+ '@vitest/browser': 1.6.0
+ '@vitest/ui': 1.6.0
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -16539,25 +17073,25 @@ packages:
optional: true
dependencies:
'@types/node': 18.19.31
- '@vitest/expect': 1.5.0
- '@vitest/runner': 1.5.0
- '@vitest/snapshot': 1.5.0
- '@vitest/spy': 1.5.0
- '@vitest/utils': 1.5.0
+ '@vitest/expect': 1.6.0
+ '@vitest/runner': 1.6.0
+ '@vitest/snapshot': 1.6.0
+ '@vitest/spy': 1.6.0
+ '@vitest/utils': 1.6.0
acorn-walk: 8.3.2
chai: 4.4.1
debug: 4.3.4(supports-color@8.1.1)
execa: 8.0.1
local-pkg: 0.5.0
- magic-string: 0.30.9
+ magic-string: 0.30.10
pathe: 1.1.2
picocolors: 1.0.0
std-env: 3.7.0
strip-literal: 2.1.0
tinybench: 2.7.0
tinypool: 0.8.4
- vite: 5.2.10(@types/node@18.19.31)(sass@1.75.0)
- vite-node: 1.5.0(@types/node@18.19.31)
+ vite: 5.2.11(@types/node@18.19.31)(sass@1.77.1)
+ vite-node: 1.6.0(@types/node@18.19.31)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -16569,48 +17103,48 @@ packages:
- terser
dev: false
- /volar-service-css@0.0.34(@volar/language-service@2.1.6):
- resolution: {integrity: sha512-C7ua0j80ZD7bsgALAz/cA1bykPehoIa5n+3+Ccr+YLpj0fypqw9iLUmGLX11CqzqNCO2XFGe/1eXB/c+SWrF/g==}
+ /volar-service-css@0.0.43(@volar/language-service@2.2.1):
+ resolution: {integrity: sha512-rg2gTXhswq6Wz8euZgCRS68+7EPH+3R7SeTqYfAAtHKoU0rS1bwdxP1CWHezyxnHrLMiXEypCgJJWcMTay3W7g==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
peerDependenciesMeta:
'@volar/language-service':
optional: true
dependencies:
- '@volar/language-service': 2.1.6
+ '@volar/language-service': 2.2.1
vscode-css-languageservice: 6.2.13
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /volar-service-emmet@0.0.34(@volar/language-service@2.1.6):
- resolution: {integrity: sha512-ubQvMCmHPp8Ic82LMPkgrp9ot+u2p/RDd0RyT0EykRkZpWsagHUF5HWkVheLfiMyx2rFuWx/+7qZPOgypx6h6g==}
+ /volar-service-emmet@0.0.43(@volar/language-service@2.2.1):
+ resolution: {integrity: sha512-ODsSOsSScVTNSD1Z+e4EV21RuN3q38ahGnuyxKYHW9Fg0RwfLatHl6wIRfj21XlVVa8twBMsA/Fp43ObuDEBxQ==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
peerDependenciesMeta:
'@volar/language-service':
optional: true
dependencies:
- '@volar/language-service': 2.1.6
+ '@volar/language-service': 2.2.1
'@vscode/emmet-helper': 2.9.2
- vscode-html-languageservice: 5.2.0
+ vscode-html-languageservice: /@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462
- /volar-service-html@0.0.34(@volar/language-service@2.1.6):
- resolution: {integrity: sha512-kMEneea1tQbiRcyKavqdrSVt8zV06t+0/3pGkjO3gV6sikXTNShIDkdtB4Tq9vE2cQdM50TuS7utVV7iysUxHw==}
+ /volar-service-html@0.0.43(@volar/language-service@2.2.1):
+ resolution: {integrity: sha512-Z/S7SCkHmpoR708WTQLCE3k+hfT16xjMfq9Htv7Y3yJeykah1jZO8oZX3433OPFfbS/ZFbGa2VlAIgDTVRU5Pg==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
peerDependenciesMeta:
'@volar/language-service':
optional: true
dependencies:
- '@volar/language-service': 2.1.6
- vscode-html-languageservice: 5.2.0
+ '@volar/language-service': 2.2.1
+ vscode-html-languageservice: /@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
- /volar-service-prettier@0.0.34(@volar/language-service@2.1.6)(prettier@3.2.5):
- resolution: {integrity: sha512-BNfJ8FwfPi1Wm/JkuzNjraOLdtKieGksNT/bDyquygVawv1QUzO2HB1hiMKfZGdcSFG5ZL9R0j7bBfRTfXA2gg==}
+ /volar-service-prettier@0.0.43(@volar/language-service@2.2.1)(prettier@3.2.5):
+ resolution: {integrity: sha512-Beq+iNyG05PlSPTISOFK5Yoj29rXdGb6htvyFk2u0jVFRGX1QD0Pb5ze9OiqfUVwT+3cFZhPrSPndbTR1ft/aA==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
prettier: ^2.2 || ^3.0
peerDependenciesMeta:
'@volar/language-service':
@@ -16618,31 +17152,31 @@ packages:
prettier:
optional: true
dependencies:
- '@volar/language-service': 2.1.6
+ '@volar/language-service': 2.2.1
prettier: 3.2.5
vscode-uri: 3.0.8
- /volar-service-typescript-twoslash-queries@0.0.34(@volar/language-service@2.1.6):
- resolution: {integrity: sha512-XAY2YtWKUp6ht89gxt3L5Dr46LU45d/VlBkj1KXUwNlinpoWiGN4Nm3B6DRF3VoBThAnQgm4c7WD0S+5yTzh+w==}
+ /volar-service-typescript-twoslash-queries@0.0.43(@volar/language-service@2.2.1):
+ resolution: {integrity: sha512-FUqgvK2a6YxNO0P+zmY5syVatD8I7+qEA+mj1lotqQxwtY0Gh3UDCCqTVapX1E4VxF/pvNac7eVOBkCUVVZC5w==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
peerDependenciesMeta:
'@volar/language-service':
optional: true
dependencies:
- '@volar/language-service': 2.1.6
+ '@volar/language-service': 2.2.1
- /volar-service-typescript@0.0.34(@volar/language-service@2.1.6):
- resolution: {integrity: sha512-NbAry0w8ZXFgGsflvMwmPDCzgJGx3C+eYxFEbldaumkpTAJiywECWiUbPIOfmEHgpOllUKSnhwtLlWFK4YnfQg==}
+ /volar-service-typescript@0.0.43(@volar/language-service@2.2.1):
+ resolution: {integrity: sha512-oXYZHuM7QYBmgSiheFkoQPyUzzvm9ddaUzfDqc9cOM+fDuMAkUer2bEqnqZXerGjhsjuXNCu4PGlSOJJMxWe3A==}
peerDependencies:
- '@volar/language-service': ~2.1.0
+ '@volar/language-service': ~2.2.0
peerDependenciesMeta:
'@volar/language-service':
optional: true
dependencies:
- '@volar/language-service': 2.1.6
+ '@volar/language-service': 2.2.1
path-browserify: 1.0.1
- semver: 7.6.0
+ semver: 7.6.2
typescript-auto-import-cache: 0.3.2
vscode-languageserver-textdocument: 1.0.11
vscode-nls: 5.2.0
@@ -16702,35 +17236,19 @@ packages:
/vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- /vue@3.4.21(typescript@5.4.5):
- resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@vue/compiler-dom': 3.4.21
- '@vue/compiler-sfc': 3.4.21
- '@vue/runtime-dom': 3.4.21
- '@vue/server-renderer': 3.4.21(vue@3.4.21)
- '@vue/shared': 3.4.21
- typescript: 5.4.5
- dev: false
-
- /vue@3.4.23(typescript@5.4.5):
- resolution: {integrity: sha512-X1y6yyGJ28LMUBJ0k/qIeKHstGd+BlWQEOT40x3auJFTmpIhpbKLgN7EFsqalnJXq1Km5ybDEsp6BhuWKciUDg==}
+ /vue@3.4.27(typescript@5.4.5):
+ resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.23
- '@vue/compiler-sfc': 3.4.23
- '@vue/runtime-dom': 3.4.23
- '@vue/server-renderer': 3.4.23(vue@3.4.23)
- '@vue/shared': 3.4.23
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-sfc': 3.4.27
+ '@vue/runtime-dom': 3.4.27
+ '@vue/server-renderer': 3.4.27(vue@3.4.27)
+ '@vue/shared': 3.4.27
typescript: 5.4.5
/w3c-xmlserializer@5.0.0:
@@ -16758,6 +17276,10 @@ packages:
resolution: {integrity: sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==}
dev: false
+ /web-vitals@4.0.0:
+ resolution: {integrity: sha512-8wQd4jkwFRwY5q3yAmHZAJ5MjnKR1vRACK+g2OEC8nUqi0WOxBrXfOxGNlJ+QtxzzSn/TkQO58wkW0coE68n0Q==}
+ dev: false
+
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -16907,6 +17429,7 @@ packages:
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ requiresBuild: true
/ws@8.16.0:
resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
@@ -17054,20 +17577,16 @@ packages:
engines: {node: '>=12.20'}
dev: false
- /zod-to-json-schema@3.22.5(zod@3.23.0):
- resolution: {integrity: sha512-+akaPo6a0zpVCCseDed504KBJUQpEW5QZw7RMneNmKw+fGaML1Z9tUNLnHHAC8x6dzVRO1eB2oEMyZRnuBZg7Q==}
+ /zod-to-json-schema@3.23.0(zod@3.23.8):
+ resolution: {integrity: sha512-az0uJ243PxsRIa2x1WmNE/pnuA05gUq/JB8Lwe1EDCCL/Fz9MgjYQ0fPlyc2Tcv6aF2ZA7WM5TWaRZVEFaAIag==}
peerDependencies:
- zod: ^3.22.4
+ zod: ^3.23.3
dependencies:
- zod: 3.23.0
- dev: false
-
- /zod@3.22.4:
- resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
+ zod: 3.23.8
dev: false
- /zod@3.23.0:
- resolution: {integrity: sha512-OFLT+LTocvabn6q76BTwVB0hExEBS0IduTr3cqZyMqEDbOnYmcU+y0tUAYbND4uwclpBGi4I4UUBGzylWpjLGA==}
+ /zod@3.23.8:
+ resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
dev: false
/zwitch@2.0.4:
@@ -17097,5 +17616,5 @@ packages:
resolution: {directory: packages/astro/test/fixtures/solid-component/deps/solid-jsx-component, type: directory}
name: '@test/solid-jsx-component'
dependencies:
- solid-js: 1.8.16
+ solid-js: 1.8.17
dev: false
diff --git a/scripts/cmd/build.js b/scripts/cmd/build.js
index 1830cddcf1ff..5dd2006432c7 100644
--- a/scripts/cmd/build.js
+++ b/scripts/cmd/build.js
@@ -179,7 +179,7 @@ async function getWorkspacePackageVersion(packageName) {
const version = deps[packageName];
if (!version) {
throw new Error(
- `Unable to resolve "${packageName}". Is it a depdendency of the workspace root?`
+ `Unable to resolve "${packageName}". Is it a dependency of the workspace root?`
);
}
return version.replace(/^\D+/, '');
diff --git a/scripts/package.json b/scripts/package.json
index 43b4d614865a..817cf25d5028 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -9,15 +9,15 @@
},
"dependencies": {
"arg": "^5.0.2",
- "esbuild": "^0.20.2",
+ "esbuild": "^0.21.2",
"globby": "^14.0.1",
"kleur": "^4.1.5",
"p-limit": "^5.0.0",
- "svelte": "^4.2.15",
- "tar": "^7.0.1"
+ "svelte": "^4.2.16",
+ "tar": "^7.1.0"
},
"devDependencies": {
- "@octokit/action": "^6.1.0",
+ "@octokit/action": "^7.0.0",
"del": "^7.1.0",
"esbuild-plugin-copy": "^2.1.1",
"execa": "^8.0.1",
diff --git a/scripts/smoke/check.js b/scripts/smoke/check.js
index 6318fe98a88d..128b1b45464f 100644
--- a/scripts/smoke/check.js
+++ b/scripts/smoke/check.js
@@ -6,9 +6,11 @@ import * as path from 'node:path';
import pLimit from 'p-limit';
import { tsconfigResolverSync } from 'tsconfig-resolver';
+const skippedExamples = ['toolbar-app', 'component']
+
function checkExamples() {
let examples = readdirSync('./examples', { withFileTypes: true });
- examples = examples.filter((dirent) => dirent.isDirectory());
+ examples = examples.filter((dirent) => dirent.isDirectory()).filter((dirent) => !skippedExamples.includes(dirent.name));
console.log(`Running astro check on ${examples.length} examples...`);